From 76d9eeaaf20bd947d64983d2218a913fc8b34ea4 Mon Sep 17 00:00:00 2001 From: Audrey Penven Date: Tue, 8 Oct 2019 18:35:01 +0200 Subject: [PATCH 01/40] sketch of some tests --- .../protocol/test/stability/sortedoracles.ts | 75 +++++++++++++++++++ 1 file changed, 75 insertions(+) diff --git a/packages/protocol/test/stability/sortedoracles.ts b/packages/protocol/test/stability/sortedoracles.ts index 2b2230956fa..e152bbac2cc 100644 --- a/packages/protocol/test/stability/sortedoracles.ts +++ b/packages/protocol/test/stability/sortedoracles.ts @@ -330,5 +330,80 @@ contract('SortedOracles', (accounts: string[]) => { sortedOracles.report(aToken, numerator, denominator, NULL_ADDRESS, NULL_ADDRESS) ) }) + + describe('when there exists exactly one other report, by this oracle', () => { + const newNumerator = 12 + const newExpectedNumerator = expectedDenominator.times(numerator).div(denominator) + beforeEach(async () => { + await sortedOracles.report(aToken, numerator, denominator, NULL_ADDRESS, NULL_ADDRESS, { + from: anOracle, + }) + }) + it('should reset the median rate', async () => { + const [initialNumerator, initialDenominator] = await sortedOracles.medianRate(aToken) + assertEqualBN(initialNumerator, expectedNumerator) + assertEqualBN(initialDenominator, expectedDenominator) + + await sortedOracles.report(aToken, newNumerator, denominator, NULL_ADDRESS, NULL_ADDRESS, { + from: anOracle, + }) + + const [actualNumerator, actualDenominator] = await sortedOracles.medianRate(aToken) + assertEqualBN(actualNumerator, newExpectedNumerator) + assertEqualBN(actualDenominator, expectedDenominator) + }) + }) + + describe('when there exists another report, by another oracle', () => { + const otherNumerator = 15 + const otherDenominator = 1 + const anotherOracle = accounts[6] + beforeEach(async () => { + await sortedOracles.addOracle(aToken, anotherOracle) + await sortedOracles.report( + aToken, + otherNumerator, + otherDenominator, + NULL_ADDRESS, + NULL_ADDRESS, + { + from: anotherOracle, + } + ) + }) + it('should add a report', async () => { + assert.equal((await sortedOracles.numRates(aToken)).toNumber(), 1) + await sortedOracles.report(aToken, numerator, denominator, NULL_ADDRESS, anotherOracle, { + from: anOracle, + }) + assert.equal((await sortedOracles.numRates(aToken)).toNumber(), 2) + }) + }) + + describe("making a second report when another oracle's report exists", () => { + const secondNumerator = 12 + const secondExpectedNumerator = expectedDenominator.times(secondNumerator).div(denominator) + const anotherOracle = accounts[6] + beforeEach(async () => { + await sortedOracles.addOracle(aToken, anotherOracle) + await sortedOracles.report(aToken, numerator, denominator, NULL_ADDRESS, NULL_ADDRESS, { + from: anOracle, + }) + console.info('added the first report') + }) + it('should work at all', async () => { + await sortedOracles.report(aToken, secondNumerator, denominator, anOracle, NULL_ADDRESS, { + from: anotherOracle, + }) + const [actualNumerator, actualDenominator] = await sortedOracles.medianRate(aToken) + assertEqualBN(actualNumerator, secondExpectedNumerator) + assertEqualBN(actualDenominator, expectedDenominator) + + await sortedOracles.report(aToken, 8, 1, NULL_ADDRESS, anotherOracle, { + from: anOracle, + }) + console.info('made it') + }) + }) }) }) From f3bb54aa33255c62a00d350606d30d06ead7163b Mon Sep 17 00:00:00 2001 From: Audrey Penven Date: Thu, 10 Oct 2019 14:37:58 +0200 Subject: [PATCH 02/40] Fix and add a test for a bug that prevented the most recent oracle from reporting again. --- .../common/linkedlists/SortedLinkedList.sol | 6 +- .../contracts/stability/SortedOracles.sol | 33 +++--- .../protocol/test/stability/sortedoracles.ts | 100 +++++++++++------- 3 files changed, 84 insertions(+), 55 deletions(-) diff --git a/packages/protocol/contracts/common/linkedlists/SortedLinkedList.sol b/packages/protocol/contracts/common/linkedlists/SortedLinkedList.sol index 80a057324dc..a4a57a5399d 100644 --- a/packages/protocol/contracts/common/linkedlists/SortedLinkedList.sol +++ b/packages/protocol/contracts/common/linkedlists/SortedLinkedList.sol @@ -173,9 +173,13 @@ library SortedLinkedList { greaterKey == bytes32(0) && isValueBetween(list, value, list.list.head, greaterKey) ) { return (list.list.head, greaterKey); - } else if (isValueBetween(list, value, lesserKey, list.list.elements[lesserKey].nextKey)) { + } else if ( + lesserKey != bytes32(0) && + isValueBetween(list, value, lesserKey, list.list.elements[lesserKey].nextKey)) + { return (lesserKey, list.list.elements[lesserKey].nextKey); } else if ( + greaterKey != bytes32(0) && isValueBetween(list, value, list.list.elements[greaterKey].previousKey, greaterKey) ) { return (list.list.elements[greaterKey].previousKey, greaterKey); diff --git a/packages/protocol/contracts/stability/SortedOracles.sol b/packages/protocol/contracts/stability/SortedOracles.sol index d62ece7160d..adc6c729eee 100644 --- a/packages/protocol/contracts/stability/SortedOracles.sol +++ b/packages/protocol/contracts/stability/SortedOracles.sol @@ -156,23 +156,28 @@ contract SortedOracles is ISortedOracles, Ownable, Initializable { uint256 value = numerator.mul(DENOMINATOR).div(denominator); if (rates[token].contains(msg.sender)) { rates[token].update(msg.sender, value, lesserKey, greaterKey); - timestamps[token].update( - msg.sender, - // solhint-disable-next-line not-rely-on-time - now, - timestamps[token].getHead(), - address(0) - ); + + // Rather than update the timestamp, we remove it and re-add it at the + // head of the list later. The reason for this is that we need to handle + // a few different cases: + // 1. This oracle is the only one to report so far. lesserKey = address(0) + // 2. Other oracles have reported since this one's last report. lesserKey = getHead() + // 3. Other oracles have reported, but the most recent is this one. + // lesserKey = key immediately after getHead() + // + // However, if we just remove this timestamp, timestamps[token].getHead() + // does the right thing in all cases. + timestamps[token].remove(msg.sender); } else { rates[token].insert(msg.sender, value, lesserKey, greaterKey); - timestamps[token].insert( - msg.sender, - // solhint-disable-next-line not-rely-on-time - now, - timestamps[token].getHead(), - address(0) - ); } + timestamps[token].insert( + msg.sender, + // solhint-disable-next-line not-rely-on-time + now, + timestamps[token].getHead(), + address(0) + ); emit OracleReported(token, msg.sender, now, value, DENOMINATOR); uint256 newMedian = rates[token].getMedianValue(); if (newMedian != originalMedian) { diff --git a/packages/protocol/test/stability/sortedoracles.ts b/packages/protocol/test/stability/sortedoracles.ts index e152bbac2cc..bac7cce8526 100644 --- a/packages/protocol/test/stability/sortedoracles.ts +++ b/packages/protocol/test/stability/sortedoracles.ts @@ -253,10 +253,18 @@ contract('SortedOracles', (accounts: string[]) => { }) describe('#report', () => { + function expectedNumeratorFromGiven( + givenNumerator: number | BigNumber, + givenDenominator: number | BigNumber + ): BigNumber { + return expectedDenominator.times(givenNumerator).div(givenDenominator) + } + const numerator = 10 const denominator = 1 const expectedDenominator = new BigNumber(2).pow(64) - const expectedNumerator = expectedDenominator.times(numerator).div(denominator) + const expectedNumerator = expectedNumeratorFromGiven(numerator, denominator) + beforeEach(async () => { await sortedOracles.addOracle(aToken, anOracle) }) @@ -331,9 +339,10 @@ contract('SortedOracles', (accounts: string[]) => { ) }) - describe('when there exists exactly one other report, by this oracle', () => { + describe('when there exists exactly one other report, made by this oracle', () => { const newNumerator = 12 - const newExpectedNumerator = expectedDenominator.times(numerator).div(denominator) + const newExpectedNumerator = expectedNumeratorFromGiven(newNumerator, denominator) + beforeEach(async () => { await sortedOracles.report(aToken, numerator, denominator, NULL_ADDRESS, NULL_ADDRESS, { from: anOracle, @@ -352,57 +361,68 @@ contract('SortedOracles', (accounts: string[]) => { assertEqualBN(actualNumerator, newExpectedNumerator) assertEqualBN(actualDenominator, expectedDenominator) }) - }) - - describe('when there exists another report, by another oracle', () => { - const otherNumerator = 15 - const otherDenominator = 1 - const anotherOracle = accounts[6] - beforeEach(async () => { - await sortedOracles.addOracle(aToken, anotherOracle) - await sortedOracles.report( - aToken, - otherNumerator, - otherDenominator, - NULL_ADDRESS, - NULL_ADDRESS, - { - from: anotherOracle, - } - ) - }) - it('should add a report', async () => { - assert.equal((await sortedOracles.numRates(aToken)).toNumber(), 1) - await sortedOracles.report(aToken, numerator, denominator, NULL_ADDRESS, anotherOracle, { + it('should not change the number of total reports', async () => { + const initialNumReports = await sortedOracles.numRates(aToken) + await sortedOracles.report(aToken, newNumerator, denominator, NULL_ADDRESS, NULL_ADDRESS, { from: anOracle, }) - assert.equal((await sortedOracles.numRates(aToken)).toNumber(), 2) + + assertEqualBN(initialNumReports, await sortedOracles.numRates(aToken)) }) }) - describe("making a second report when another oracle's report exists", () => { - const secondNumerator = 12 - const secondExpectedNumerator = expectedDenominator.times(secondNumerator).div(denominator) + describe('when there are multiple reports, the most recent one done by this oracle', () => { const anotherOracle = accounts[6] + const anOracleNumerator1 = 2 + const anOracleNumerator2 = 3 + const anotherOracleNumerator = 1 + + const anOracleExpectedNumerator1 = expectedNumeratorFromGiven(anOracleNumerator1, denominator) + const anOracleExpectedNumerator2 = expectedNumeratorFromGiven(anOracleNumerator2, denominator) + + const anotherOracleExpectedNumerator = expectedNumeratorFromGiven( + anotherOracleNumerator, + denominator + ) + beforeEach(async () => { - await sortedOracles.addOracle(aToken, anotherOracle) - await sortedOracles.report(aToken, numerator, denominator, NULL_ADDRESS, NULL_ADDRESS, { + sortedOracles.addOracle(aToken, anotherOracle) + await sortedOracles.report(aToken, anotherOracleNumerator, 1, NULL_ADDRESS, NULL_ADDRESS, { + from: anotherOracle, + }) + await timeTravel(5, web3) + await sortedOracles.report(aToken, anOracleNumerator1, 1, anotherOracle, NULL_ADDRESS, { from: anOracle, }) - console.info('added the first report') + await timeTravel(5, web3) + + // confirm the setup worked + const initialRates = await sortedOracles.getRates(aToken) + assertEqualBN(initialRates['1'][0], anOracleExpectedNumerator1) + assertEqualBN(initialRates['1'][1], anotherOracleExpectedNumerator) }) - it('should work at all', async () => { - await sortedOracles.report(aToken, secondNumerator, denominator, anOracle, NULL_ADDRESS, { - from: anotherOracle, + + it('updates the list of rates correctly', async () => { + await sortedOracles.report(aToken, anOracleNumerator2, 1, anotherOracle, NULL_ADDRESS, { + from: anOracle, }) - const [actualNumerator, actualDenominator] = await sortedOracles.medianRate(aToken) - assertEqualBN(actualNumerator, secondExpectedNumerator) - assertEqualBN(actualDenominator, expectedDenominator) + const resultRates = await sortedOracles.getRates(aToken) + assertEqualBN(resultRates['1'][0], anOracleExpectedNumerator2) + assertEqualBN(resultRates['1'][1], anotherOracleExpectedNumerator) + }) - await sortedOracles.report(aToken, 8, 1, NULL_ADDRESS, anotherOracle, { + it('updates the latest timestamp', async () => { + const initialTimestamps = await sortedOracles.getTimestamps(aToken) + await sortedOracles.report(aToken, anOracleNumerator2, 1, anotherOracle, NULL_ADDRESS, { from: anOracle, }) - console.info('made it') + const resultTimestamps = await sortedOracles.getTimestamps(aToken) + + // the second timestamp, belonging to anotherOracle should be unchanged + assertEqualBN(initialTimestamps['1']['1'], resultTimestamps['1']['1']) + + // the most recent timestamp, belonging to anOracle in both cases, should change + assert.isTrue(resultTimestamps['1']['0'].gt(initialTimestamps['1']['0'])) }) }) }) From 1f39bf59a7697544275220baf9ea3a2041885f2f Mon Sep 17 00:00:00 2001 From: Audrey Penven Date: Mon, 30 Sep 2019 17:30:47 +0200 Subject: [PATCH 03/40] add new account type for oracle --- packages/celotool/src/cmds/deploy/initial/contracts.ts | 3 +++ packages/celotool/src/lib/generate_utils.ts | 5 ++++- packages/protocol/contracts/stability/SortedOracles.sol | 1 + 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/packages/celotool/src/cmds/deploy/initial/contracts.ts b/packages/celotool/src/cmds/deploy/initial/contracts.ts index 59b1d41f77c..af8a8fbe6f3 100644 --- a/packages/celotool/src/cmds/deploy/initial/contracts.ts +++ b/packages/celotool/src/cmds/deploy/initial/contracts.ts @@ -115,6 +115,9 @@ export const handler = async (argv: InitialArgv) => { }, stableToken: { initialAccounts: getAddressesFor(AccountType.FAUCET, mnemonic, 2), + priceOracleAccount: privateKeyToAddress( + generatePrivateKey(mnemonic, AccountType.PRICE_ORACLE, 0) + ), }, }) diff --git a/packages/celotool/src/lib/generate_utils.ts b/packages/celotool/src/lib/generate_utils.ts index f7ddc588ee4..4597788d2d0 100644 --- a/packages/celotool/src/lib/generate_utils.ts +++ b/packages/celotool/src/lib/generate_utils.ts @@ -27,6 +27,7 @@ export enum AccountType { TX_NODE = 2, BOOTNODE = 3, FAUCET = 4, + PRICE_ORACLE = 5, } export enum ConsensusType { @@ -45,6 +46,7 @@ export const MNEMONIC_ACCOUNT_TYPE_CHOICES = [ 'tx_node', 'bootnode', 'faucet', + 'price_oracle', ] export const add0x = (str: string) => { @@ -134,12 +136,13 @@ export const generateGenesisFromEnv = (enablePetersburg: boolean = true) => { // Assing DEFAULT ammount of gold to 2 faucet accounts const faucetAddresses = getStrippedAddressesFor(AccountType.FAUCET, mnemonic, 2) + const priceOracleAddress = getStrippedAddressesFor(AccountType.PRICE_ORACLE, mnemonic, 1) return generateGenesis({ validators, consensusType, blockTime, - initialAccounts: faucetAddresses, + initialAccounts: faucetAddresses.concat(priceOracleAddress), epoch, chainId, requestTimeout, diff --git a/packages/protocol/contracts/stability/SortedOracles.sol b/packages/protocol/contracts/stability/SortedOracles.sol index adc6c729eee..ecc8ddd5d6c 100644 --- a/packages/protocol/contracts/stability/SortedOracles.sol +++ b/packages/protocol/contracts/stability/SortedOracles.sol @@ -138,6 +138,7 @@ contract SortedOracles is ISortedOracles, Ownable, Initializable { * @notice Updates an oracle value and the median. * @param token The address of the token for which the Celo Gold exchange rate is being reported. * @param numerator The amount of tokens equal to `denominator` Celo Gold. + * @param denominator The amount of Celo Gold that the `numerator` tokens are equal to. * @param lesserKey The element which should be just left of the new oracle value. * @param greaterKey The element which should be just right of the new oracle value. * @dev Note that only one of `lesserKey` or `greaterKey` needs to be correct to reduce friction. From a98543096efe635e95aae3f55e0e5d1c4e9ae270 Mon Sep 17 00:00:00 2001 From: Audrey Penven Date: Wed, 2 Oct 2019 12:58:29 +0200 Subject: [PATCH 04/40] whitelist oracle account in the migration --- packages/protocol/migrations/08_stabletoken.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/protocol/migrations/08_stabletoken.ts b/packages/protocol/migrations/08_stabletoken.ts index 5bc02ece37d..6178d55c37d 100644 --- a/packages/protocol/migrations/08_stabletoken.ts +++ b/packages/protocol/migrations/08_stabletoken.ts @@ -59,6 +59,7 @@ module.exports = deploymentForCoreContract( SortedOraclesInstance >('SortedOracles', artifacts) + await sortedOracles.addOracle(stableToken.address, config.stableToken.priceOracleAccount) await sortedOracles.addOracle(stableToken.address, minerAddress) await sortedOracles.report( stableToken.address, From 93ecc5145582bf9bb0f105c3702ba4056ac4112e Mon Sep 17 00:00:00 2001 From: Audrey Penven Date: Mon, 30 Sep 2019 18:21:02 +0200 Subject: [PATCH 05/40] try to get the migration to do the right thing --- .../exchange_rates/oracle_exchange_rates.csv | 11522 ++++++++-------- .../scripts/python/exchange_rate_sim.py | 12 +- 2 files changed, 5767 insertions(+), 5767 deletions(-) diff --git a/packages/protocol/exchange_rates/oracle_exchange_rates.csv b/packages/protocol/exchange_rates/oracle_exchange_rates.csv index 73940318bcb..fc7673726fd 100644 --- a/packages/protocol/exchange_rates/oracle_exchange_rates.csv +++ b/packages/protocol/exchange_rates/oracle_exchange_rates.csv @@ -1,5762 +1,5762 @@ timestamp,stableValue,goldValue -1561501135.0,10000000,10000000 -1561501735.0,10000679,10000000 -1561502335.0,9989254,10000000 -1561502935.0,9943538,10000000 -1561503535.0,9943634,10000000 -1561504135.0,9928599,10000000 -1561504735.0,9909343,10000000 -1561505335.0,9847515,10000000 -1561505935.0,9828017,10000000 -1561506535.0,9818788,10000000 -1561507135.0,9792935,10000000 -1561507735.0,9819538,10000000 -1561508335.0,9891620,10000000 -1561508935.0,9904482,10000000 -1561509535.0,9934352,10000000 -1561510135.0,10010725,10000000 -1561510735.0,10029345,10000000 -1561511335.0,10094661,10000000 -1561511935.0,10057483,10000000 -1561512535.0,10052375,10000000 -1561513135.0,10107511,10000000 -1561513735.0,10136632,10000000 -1561514335.0,10138624,10000000 -1561514935.0,10178129,10000000 -1561515535.0,10194925,10000000 -1561516135.0,10217530,10000000 -1561516735.0,10203064,10000000 -1561517335.0,10212590,10000000 -1561517935.0,10227222,10000000 -1561518535.0,10206659,10000000 -1561519135.0,10118728,10000000 -1561519735.0,10115887,10000000 -1561520335.0,10220550,10000000 -1561520935.0,10108028,10000000 -1561521535.0,10070275,10000000 -1561522135.0,10061378,10000000 -1561522735.0,10073313,10000000 -1561523335.0,10121514,10000000 -1561523935.0,10166214,10000000 -1561524535.0,10222240,10000000 -1561525135.0,10282241,10000000 -1561525735.0,10254805,10000000 -1561526335.0,10253051,10000000 -1561526935.0,10232364,10000000 -1561527535.0,10251637,10000000 -1561528135.0,10236245,10000000 -1561528735.0,10197597,10000000 -1561529335.0,10280038,10000000 -1561529935.0,10274253,10000000 -1561530535.0,10247595,10000000 -1561531135.0,10283523,10000000 -1561531735.0,10232419,10000000 -1561532335.0,10211626,10000000 -1561532935.0,10182449,10000000 -1561533535.0,10099670,10000000 -1561534135.0,9989160,10000000 -1561534735.0,9987392,10000000 -1561535335.0,9960753,10000000 -1561535935.0,9933957,10000000 -1561536535.0,9966484,10000000 -1561537135.0,9929850,10000000 -1561537735.0,10000804,10000000 -1561538335.0,9930955,10000000 -1561538935.0,9816660,10000000 -1561539535.0,9808035,10000000 -1561540135.0,9824912,10000000 -1561540735.0,9893718,10000000 -1561541335.0,9874010,10000000 -1561541935.0,9859173,10000000 -1561542535.0,9852826,10000000 -1561543135.0,9953189,10000000 -1561543735.0,9879081,10000000 -1561544335.0,9893702,10000000 -1561544935.0,9893392,10000000 -1561545535.0,9854522,10000000 -1561546135.0,9839426,10000000 -1561546735.0,9844541,10000000 -1561547335.0,9810147,10000000 -1561547935.0,9810777,10000000 -1561548535.0,9838575,10000000 -1561549135.0,9869973,10000000 -1561549735.0,9851458,10000000 -1561550335.0,9840700,10000000 -1561550935.0,9842779,10000000 -1561551535.0,9878253,10000000 -1561552135.0,9885590,10000000 -1561552735.0,9936128,10000000 -1561553335.0,9957585,10000000 -1561553935.0,9892715,10000000 -1561554535.0,9935603,10000000 -1561555135.0,9909234,10000000 -1561555735.0,9932061,10000000 -1561556335.0,9932360,10000000 -1561556935.0,9971338,10000000 -1561557535.0,9973906,10000000 -1561558135.0,9980442,10000000 -1561558735.0,9912538,10000000 -1561559335.0,9969832,10000000 -1561559935.0,9971506,10000000 -1561560535.0,9955719,10000000 -1561561135.0,10009775,10000000 -1561561735.0,10033847,10000000 -1561562335.0,10044510,10000000 -1561562935.0,10065253,10000000 -1561563535.0,10068481,10000000 -1561564135.0,10024305,10000000 -1561564735.0,9971898,10000000 -1561565335.0,10010834,10000000 -1561565935.0,10055571,10000000 -1561566535.0,10078871,10000000 -1561567135.0,10092498,10000000 -1561567735.0,10134049,10000000 -1561568335.0,10183570,10000000 -1561568935.0,10202164,10000000 -1561569535.0,10245377,10000000 -1561570135.0,10283814,10000000 -1561570735.0,10261770,10000000 -1561571335.0,10297292,10000000 -1561571935.0,10254276,10000000 -1561572535.0,10158886,10000000 -1561573135.0,10188353,10000000 -1561573735.0,10171956,10000000 -1561574335.0,10255176,10000000 -1561574935.0,10202786,10000000 -1561575535.0,10243445,10000000 -1561576135.0,10233820,10000000 -1561576735.0,10246023,10000000 -1561577335.0,10200005,10000000 -1561577935.0,10303227,10000000 -1561578535.0,10291869,10000000 -1561579135.0,10379982,10000000 -1561579735.0,10377096,10000000 -1561580335.0,10325193,10000000 -1561580935.0,10291190,10000000 -1561581535.0,10348518,10000000 -1561582135.0,10324252,10000000 -1561582735.0,10328436,10000000 -1561583335.0,10389343,10000000 -1561583935.0,10436943,10000000 -1561584535.0,10393487,10000000 -1561585135.0,10381507,10000000 -1561585735.0,10449840,10000000 -1561586335.0,10426741,10000000 -1561586935.0,10469220,10000000 -1561587535.0,10479101,10000000 -1561588135.0,10425526,10000000 -1561588735.0,10439425,10000000 -1561589335.0,10414088,10000000 -1561589935.0,10420090,10000000 -1561590535.0,10386468,10000000 -1561591135.0,10415031,10000000 -1561591735.0,10413102,10000000 -1561592335.0,10453463,10000000 -1561592935.0,10406729,10000000 -1561593535.0,10399808,10000000 -1561594135.0,10446734,10000000 -1561594735.0,10501392,10000000 -1561595335.0,10546777,10000000 -1561595935.0,10585338,10000000 -1561596535.0,10553751,10000000 -1561597135.0,10573797,10000000 -1561597735.0,10602971,10000000 -1561598335.0,10615220,10000000 -1561598935.0,10647221,10000000 -1561599535.0,10628540,10000000 -1561600135.0,10664429,10000000 -1561600735.0,10653532,10000000 -1561601335.0,10616997,10000000 -1561601935.0,10552408,10000000 -1561602535.0,10601882,10000000 -1561603135.0,10549816,10000000 -1561603735.0,10505423,10000000 -1561604335.0,10437536,10000000 -1561604935.0,10527431,10000000 -1561605535.0,10611333,10000000 -1561606135.0,10576750,10000000 -1561606735.0,10497301,10000000 -1561607335.0,10464075,10000000 -1561607935.0,10436539,10000000 -1561608535.0,10416028,10000000 -1561609135.0,10432988,10000000 -1561609735.0,10388707,10000000 -1561610335.0,10383569,10000000 -1561610935.0,10400893,10000000 -1561611535.0,10416922,10000000 -1561612135.0,10432465,10000000 -1561612735.0,10407193,10000000 -1561613335.0,10399678,10000000 -1561613935.0,10430730,10000000 -1561614535.0,10373932,10000000 -1561615135.0,10415174,10000000 -1561615735.0,10396292,10000000 -1561616335.0,10437366,10000000 -1561616935.0,10359800,10000000 -1561617535.0,10379053,10000000 -1561618135.0,10355204,10000000 -1561618735.0,10402131,10000000 -1561619335.0,10397546,10000000 -1561619935.0,10353553,10000000 -1561620535.0,10390308,10000000 -1561621135.0,10354147,10000000 -1561621735.0,10303804,10000000 -1561622335.0,10260296,10000000 -1561622935.0,10221906,10000000 -1561623535.0,10187507,10000000 -1561624135.0,10156900,10000000 -1561624735.0,10193903,10000000 -1561625335.0,10234862,10000000 -1561625935.0,10286686,10000000 -1561626535.0,10369019,10000000 -1561627135.0,10392375,10000000 -1561627735.0,10386948,10000000 -1561628335.0,10331858,10000000 -1561628935.0,10312104,10000000 -1561629535.0,10312496,10000000 -1561630135.0,10369518,10000000 -1561630735.0,10342059,10000000 -1561631335.0,10412010,10000000 -1561631935.0,10480770,10000000 -1561632535.0,10470170,10000000 -1561633135.0,10455172,10000000 -1561633735.0,10456261,10000000 -1561634335.0,10422562,10000000 -1561634935.0,10375394,10000000 -1561635535.0,10351706,10000000 -1561636135.0,10373145,10000000 -1561636735.0,10275544,10000000 -1561637335.0,10305922,10000000 -1561637935.0,10376575,10000000 -1561638535.0,10430562,10000000 -1561639135.0,10503145,10000000 -1561639735.0,10438978,10000000 -1561640335.0,10392901,10000000 -1561640935.0,10462408,10000000 -1561641535.0,10480003,10000000 -1561642135.0,10536514,10000000 -1561642735.0,10546448,10000000 -1561643335.0,10574391,10000000 -1561643935.0,10530988,10000000 -1561644535.0,10508309,10000000 -1561645135.0,10550041,10000000 -1561645735.0,10558592,10000000 -1561646335.0,10557633,10000000 -1561646935.0,10595438,10000000 -1561647535.0,10560263,10000000 -1561648135.0,10487572,10000000 -1561648735.0,10451132,10000000 -1561649335.0,10439533,10000000 -1561649935.0,10506522,10000000 -1561650535.0,10465278,10000000 -1561651135.0,10497621,10000000 -1561651735.0,10522610,10000000 -1561652335.0,10559722,10000000 -1561652935.0,10625221,10000000 -1561653535.0,10625724,10000000 -1561654135.0,10673323,10000000 -1561654735.0,10630340,10000000 -1561655335.0,10679199,10000000 -1561655935.0,10696168,10000000 -1561656535.0,10648242,10000000 -1561657135.0,10550144,10000000 -1561657735.0,10545385,10000000 -1561658335.0,10538221,10000000 -1561658935.0,10636666,10000000 -1561659535.0,10737667,10000000 -1561660135.0,10693413,10000000 -1561660735.0,10738915,10000000 -1561661335.0,10734039,10000000 -1561661935.0,10727902,10000000 -1561662535.0,10670576,10000000 -1561663135.0,10659064,10000000 -1561663735.0,10676240,10000000 -1561664335.0,10649319,10000000 -1561664935.0,10679716,10000000 -1561665535.0,10685804,10000000 -1561666135.0,10764890,10000000 -1561666735.0,10801349,10000000 -1561667335.0,10823249,10000000 -1561667935.0,10831087,10000000 -1561668535.0,10814852,10000000 -1561669135.0,10859019,10000000 -1561669735.0,10834426,10000000 -1561670335.0,10869237,10000000 -1561670935.0,10868340,10000000 -1561671535.0,10876720,10000000 -1561672135.0,10969213,10000000 -1561672735.0,11003930,10000000 -1561673335.0,11040219,10000000 -1561673935.0,11023020,10000000 -1561674535.0,11025050,10000000 -1561675135.0,11035143,10000000 -1561675735.0,11002358,10000000 -1561676335.0,10959865,10000000 -1561676935.0,10971903,10000000 -1561677535.0,11031924,10000000 -1561678135.0,10978899,10000000 -1561678735.0,10986079,10000000 -1561679335.0,10955314,10000000 -1561679935.0,10978005,10000000 -1561680535.0,10994636,10000000 -1561681135.0,10937471,10000000 -1561681735.0,10883911,10000000 -1561682335.0,10905407,10000000 -1561682935.0,10913532,10000000 -1561683535.0,10929785,10000000 -1561684135.0,10957789,10000000 -1561684735.0,10987912,10000000 -1561685335.0,11092624,10000000 -1561685935.0,11111826,10000000 -1561686535.0,11114945,10000000 -1561687135.0,11101652,10000000 -1561687735.0,11176623,10000000 -1561688335.0,11226172,10000000 -1561688935.0,11197588,10000000 -1561689535.0,11150014,10000000 -1561690135.0,11101653,10000000 -1561690735.0,11144154,10000000 -1561691335.0,11192903,10000000 -1561691935.0,11203021,10000000 -1561692535.0,11115896,10000000 -1561693135.0,11054568,10000000 -1561693735.0,11072107,10000000 -1561694335.0,11071225,10000000 -1561694935.0,11075419,10000000 -1561695535.0,11066641,10000000 -1561696135.0,11044342,10000000 -1561696735.0,11058699,10000000 -1561697335.0,11051223,10000000 -1561697935.0,10973739,10000000 -1561698535.0,10949414,10000000 -1561699135.0,10963664,10000000 -1561699735.0,10946838,10000000 -1561700335.0,10978479,10000000 -1561700935.0,11057391,10000000 -1561701535.0,10995823,10000000 -1561702135.0,11144592,10000000 -1561702735.0,11123302,10000000 -1561703335.0,11116959,10000000 -1561703935.0,11145204,10000000 -1561704535.0,11081498,10000000 -1561705135.0,11086671,10000000 -1561705735.0,11088449,10000000 -1561706335.0,11064978,10000000 -1561706935.0,11079331,10000000 -1561707535.0,11049251,10000000 -1561708135.0,11052147,10000000 -1561708735.0,10980283,10000000 -1561709335.0,11007289,10000000 -1561709935.0,11050809,10000000 -1561710535.0,11134616,10000000 -1561711135.0,11102015,10000000 -1561711735.0,11131157,10000000 -1561712335.0,11119428,10000000 -1561712935.0,11163570,10000000 -1561713535.0,11092945,10000000 -1561714135.0,11064358,10000000 -1561714735.0,11061436,10000000 -1561715335.0,11135954,10000000 -1561715935.0,11058731,10000000 -1561716535.0,11092932,10000000 -1561717135.0,11091594,10000000 -1561717735.0,11109316,10000000 -1561718335.0,11084850,10000000 -1561718935.0,11016468,10000000 -1561719535.0,11075889,10000000 -1561720135.0,11027453,10000000 -1561720735.0,11035171,10000000 -1561721335.0,10988027,10000000 -1561721935.0,11001000,10000000 -1561722535.0,11056043,10000000 -1561723135.0,11071466,10000000 -1561723735.0,11043495,10000000 -1561724335.0,11038265,10000000 -1561724935.0,11055419,10000000 -1561725535.0,10989054,10000000 -1561726135.0,11014488,10000000 -1561726735.0,11021515,10000000 -1561727335.0,11008235,10000000 -1561727935.0,11035571,10000000 -1561728535.0,11060662,10000000 -1561729135.0,11062606,10000000 -1561729735.0,11054099,10000000 -1561730335.0,11028063,10000000 -1561730935.0,11047844,10000000 -1561731535.0,11122783,10000000 -1561732135.0,11150294,10000000 -1561732735.0,11185575,10000000 -1561733335.0,11127420,10000000 -1561733935.0,11057168,10000000 -1561734535.0,11088400,10000000 -1561735135.0,11062112,10000000 -1561735735.0,11116496,10000000 -1561736335.0,11107128,10000000 -1561736935.0,11100892,10000000 -1561737535.0,11121251,10000000 -1561738135.0,11104667,10000000 -1561738735.0,11001156,10000000 -1561739335.0,11063583,10000000 -1561739935.0,11049837,10000000 -1561740535.0,11070722,10000000 -1561741135.0,11043730,10000000 -1561741735.0,11027394,10000000 -1561742335.0,11022457,10000000 -1561742935.0,11055185,10000000 -1561743535.0,11076039,10000000 -1561744135.0,11004715,10000000 -1561744735.0,11034309,10000000 -1561745335.0,11041917,10000000 -1561745935.0,11039511,10000000 -1561746535.0,11082871,10000000 -1561747135.0,10990883,10000000 -1561747735.0,11003190,10000000 -1561748335.0,11001379,10000000 -1561748935.0,11037970,10000000 -1561749535.0,11061351,10000000 -1561750135.0,11105194,10000000 -1561750735.0,11054060,10000000 -1561751335.0,11100111,10000000 -1561751935.0,11039261,10000000 -1561752535.0,11035362,10000000 -1561753135.0,11016637,10000000 -1561753735.0,11045498,10000000 -1561754335.0,11037653,10000000 -1561754935.0,11059457,10000000 -1561755535.0,11085563,10000000 -1561756135.0,11073262,10000000 -1561756735.0,11115413,10000000 -1561757335.0,11127032,10000000 -1561757935.0,11041033,10000000 -1561758535.0,10995273,10000000 -1561759135.0,10958266,10000000 -1561759735.0,10950834,10000000 -1561760335.0,10927271,10000000 -1561760935.0,10949269,10000000 -1561761535.0,10921844,10000000 -1561762135.0,10960382,10000000 -1561762735.0,10979766,10000000 -1561763335.0,10906468,10000000 -1561763935.0,10900918,10000000 -1561764535.0,10869623,10000000 -1561765135.0,10897202,10000000 -1561765735.0,10966415,10000000 -1561766335.0,10901727,10000000 -1561766935.0,10888575,10000000 -1561767535.0,10992355,10000000 -1561768135.0,10937795,10000000 -1561768735.0,10964531,10000000 -1561769335.0,10875185,10000000 -1561769935.0,10866662,10000000 -1561770535.0,10848765,10000000 -1561771135.0,10790261,10000000 -1561771735.0,10736193,10000000 -1561772335.0,10775116,10000000 -1561772935.0,10769331,10000000 -1561773535.0,10832994,10000000 -1561774135.0,10796398,10000000 -1561774735.0,10778180,10000000 -1561775335.0,10842325,10000000 -1561775935.0,10930856,10000000 -1561776535.0,10969458,10000000 -1561777135.0,10990256,10000000 -1561777735.0,11020457,10000000 -1561778335.0,11018591,10000000 -1561778935.0,11122178,10000000 -1561779535.0,11171579,10000000 -1561780135.0,11138880,10000000 -1561780735.0,11203538,10000000 -1561781335.0,11189339,10000000 -1561781935.0,11192740,10000000 -1561782535.0,11214234,10000000 -1561783135.0,11171223,10000000 -1561783735.0,11198818,10000000 -1561784335.0,11301722,10000000 -1561784935.0,11258250,10000000 -1561785535.0,11183765,10000000 -1561786135.0,11170457,10000000 -1561786735.0,11149497,10000000 -1561787335.0,11205457,10000000 -1561787935.0,11155043,10000000 -1561788535.0,11246355,10000000 -1561789135.0,11195410,10000000 -1561789735.0,11215910,10000000 -1561790335.0,11315909,10000000 -1561790935.0,11384050,10000000 -1561791535.0,11432584,10000000 -1561792135.0,11432261,10000000 -1561792735.0,11447372,10000000 -1561793335.0,11411552,10000000 -1561793935.0,11496188,10000000 -1561794535.0,11475335,10000000 -1561795135.0,11458745,10000000 -1561795735.0,11453817,10000000 -1561796335.0,11446189,10000000 -1561796935.0,11417608,10000000 -1561797535.0,11412774,10000000 -1561798135.0,11397843,10000000 -1561798735.0,11428498,10000000 -1561799335.0,11463130,10000000 -1561799935.0,11455887,10000000 -1561800535.0,11445186,10000000 -1561801135.0,11326473,10000000 -1561801735.0,11327774,10000000 -1561802335.0,11292633,10000000 -1561802935.0,11245893,10000000 -1561803535.0,11292397,10000000 -1561804135.0,11259926,10000000 -1561804735.0,11257715,10000000 -1561805335.0,11332385,10000000 -1561805935.0,11370656,10000000 -1561806535.0,11370418,10000000 -1561807135.0,11350623,10000000 -1561807735.0,11349275,10000000 -1561808335.0,11216307,10000000 -1561808935.0,11252623,10000000 -1561809535.0,11252567,10000000 -1561810135.0,11316470,10000000 -1561810735.0,11356287,10000000 -1561811335.0,11385017,10000000 -1561811935.0,11505492,10000000 -1561812535.0,11525556,10000000 -1561813135.0,11544797,10000000 -1561813735.0,11566427,10000000 -1561814335.0,11690560,10000000 -1561814935.0,11709528,10000000 -1561815535.0,11584189,10000000 -1561816135.0,11583621,10000000 -1561816735.0,11581876,10000000 -1561817335.0,11616646,10000000 -1561817935.0,11616874,10000000 -1561818535.0,11578004,10000000 -1561819135.0,11525116,10000000 -1561819735.0,11517767,10000000 -1561820335.0,11540380,10000000 -1561820935.0,11614528,10000000 -1561821535.0,11691361,10000000 -1561822135.0,11671435,10000000 -1561822735.0,11648661,10000000 -1561823335.0,11650364,10000000 -1561823935.0,11525634,10000000 -1561824535.0,11585106,10000000 -1561825135.0,11528152,10000000 -1561825735.0,11530488,10000000 -1561826335.0,11468442,10000000 -1561826935.0,11468508,10000000 -1561827535.0,11478237,10000000 -1561828135.0,11439095,10000000 -1561828735.0,11462991,10000000 -1561829335.0,11455178,10000000 -1561829935.0,11491994,10000000 -1561830535.0,11452216,10000000 -1561831135.0,11444077,10000000 -1561831735.0,11453656,10000000 -1561832335.0,11420904,10000000 -1561832935.0,11322852,10000000 -1561833535.0,11349379,10000000 -1561834135.0,11347219,10000000 -1561834735.0,11371215,10000000 -1561835335.0,11320575,10000000 -1561835935.0,11357487,10000000 -1561836535.0,11392622,10000000 -1561837135.0,11393612,10000000 -1561837735.0,11442020,10000000 -1561838335.0,11332657,10000000 -1561838935.0,11284652,10000000 -1561839535.0,11229510,10000000 -1561840135.0,11162522,10000000 -1561840735.0,11133523,10000000 -1561841335.0,11136449,10000000 -1561841935.0,11209638,10000000 -1561842535.0,11215182,10000000 -1561843135.0,11244796,10000000 -1561843735.0,11231669,10000000 -1561844335.0,11316201,10000000 -1561844935.0,11276737,10000000 -1561845535.0,11225840,10000000 -1561846135.0,11235960,10000000 -1561846735.0,11324805,10000000 -1561847335.0,11308441,10000000 -1561847935.0,11298254,10000000 -1561848535.0,11369598,10000000 -1561849135.0,11315498,10000000 -1561849735.0,11271691,10000000 -1561850335.0,11188934,10000000 -1561850935.0,11072883,10000000 -1561851535.0,11016488,10000000 -1561852135.0,10932781,10000000 -1561852735.0,10878148,10000000 -1561853335.0,10942865,10000000 -1561853935.0,10899459,10000000 -1561854535.0,10864980,10000000 -1561855135.0,10920673,10000000 -1561855735.0,10920959,10000000 -1561856335.0,10991917,10000000 -1561856935.0,11030050,10000000 -1561857535.0,11026428,10000000 -1561858135.0,11118619,10000000 -1561858735.0,11151756,10000000 -1561859335.0,11121267,10000000 -1561859935.0,11066689,10000000 -1561860535.0,11176039,10000000 -1561861135.0,11149938,10000000 -1561861735.0,11183874,10000000 -1561862335.0,11207221,10000000 -1561862935.0,11247616,10000000 -1561863535.0,11320628,10000000 -1561864135.0,11198820,10000000 -1561864735.0,11178236,10000000 -1561865335.0,11174338,10000000 -1561865935.0,11245531,10000000 -1561866535.0,11221013,10000000 -1561867135.0,11188365,10000000 -1561867735.0,11221889,10000000 -1561868335.0,11195777,10000000 -1561868935.0,11230414,10000000 -1561869535.0,11304196,10000000 -1561870135.0,11375767,10000000 -1561870735.0,11335537,10000000 -1561871335.0,11241091,10000000 -1561871935.0,11266327,10000000 -1561872535.0,11258743,10000000 -1561873135.0,11343584,10000000 -1561873735.0,11267510,10000000 -1561874335.0,11298323,10000000 -1561874935.0,11266735,10000000 -1561875535.0,11279061,10000000 -1561876135.0,11323013,10000000 -1561876735.0,11340440,10000000 -1561877335.0,11351526,10000000 -1561877935.0,11393758,10000000 -1561878535.0,11399226,10000000 -1561879135.0,11395040,10000000 -1561879735.0,11468255,10000000 -1561880335.0,11365641,10000000 -1561880935.0,11402063,10000000 -1561881535.0,11486841,10000000 -1561882135.0,11511665,10000000 -1561882735.0,11559492,10000000 -1561883335.0,11626012,10000000 -1561883935.0,11703093,10000000 -1561884535.0,11654273,10000000 -1561885135.0,11690163,10000000 -1561885735.0,11810137,10000000 -1561886335.0,11760385,10000000 -1561886935.0,11762941,10000000 -1561887535.0,11738285,10000000 -1561888135.0,11703849,10000000 -1561888735.0,11711169,10000000 -1561889335.0,11685334,10000000 -1561889935.0,11629636,10000000 -1561890535.0,11558399,10000000 -1561891135.0,11616194,10000000 -1561891735.0,11715931,10000000 -1561892335.0,11811661,10000000 -1561892935.0,11766784,10000000 -1561893535.0,11698525,10000000 -1561894135.0,11685229,10000000 -1561894735.0,11722878,10000000 -1561895335.0,11711505,10000000 -1561895935.0,11787022,10000000 -1561896535.0,11838920,10000000 -1561897135.0,11855598,10000000 -1561897735.0,11811614,10000000 -1561898335.0,11793449,10000000 -1561898935.0,11876047,10000000 -1561899535.0,11853257,10000000 -1561900135.0,11838380,10000000 -1561900735.0,11780252,10000000 -1561901335.0,11833922,10000000 -1561901935.0,11830141,10000000 -1561902535.0,11839131,10000000 -1561903135.0,11754843,10000000 -1561903735.0,11729453,10000000 -1561904335.0,11669751,10000000 -1561904935.0,11678352,10000000 -1561905535.0,11760389,10000000 -1561906135.0,11702149,10000000 -1561906735.0,11619991,10000000 -1561907335.0,11624914,10000000 -1561907935.0,11660281,10000000 -1561908535.0,11633904,10000000 -1561909135.0,11613878,10000000 -1561909735.0,11625608,10000000 -1561910335.0,11619708,10000000 -1561910935.0,11636376,10000000 -1561911535.0,11586418,10000000 -1561912135.0,11539718,10000000 -1561912735.0,11538753,10000000 -1561913335.0,11581704,10000000 -1561913935.0,11608328,10000000 -1561914535.0,11596929,10000000 -1561915135.0,11615099,10000000 -1561915735.0,11578482,10000000 -1561916335.0,11569605,10000000 -1561916935.0,11494298,10000000 -1561917535.0,11426414,10000000 -1561918135.0,11289484,10000000 -1561918735.0,11359835,10000000 -1561919335.0,11388752,10000000 -1561919935.0,11422590,10000000 -1561920535.0,11452060,10000000 -1561921135.0,11466389,10000000 -1561921735.0,11471523,10000000 -1561922335.0,11447824,10000000 -1561922935.0,11472445,10000000 -1561923535.0,11470550,10000000 -1561924135.0,11457048,10000000 -1561924735.0,11438779,10000000 -1561925335.0,11399641,10000000 -1561925935.0,11397942,10000000 -1561926535.0,11335295,10000000 -1561927135.0,11287969,10000000 -1561927735.0,11299295,10000000 -1561928335.0,11371260,10000000 -1561928935.0,11375477,10000000 -1561929535.0,11365850,10000000 -1561930135.0,11393289,10000000 -1561930735.0,11439699,10000000 -1561931335.0,11510157,10000000 -1561931935.0,11514179,10000000 -1561932535.0,11575099,10000000 -1561933135.0,11553731,10000000 -1561933735.0,11467831,10000000 -1561934335.0,11544453,10000000 -1561934935.0,11578795,10000000 -1561935535.0,11570433,10000000 -1561936135.0,11575166,10000000 -1561936735.0,11630481,10000000 -1561937335.0,11645830,10000000 -1561937935.0,11563124,10000000 -1561938535.0,11611352,10000000 -1561939135.0,11685721,10000000 -1561939735.0,11754030,10000000 -1561940335.0,11782310,10000000 -1561940935.0,11821036,10000000 -1561941535.0,11793975,10000000 -1561942135.0,11821999,10000000 -1561942735.0,11809397,10000000 -1561943335.0,11753096,10000000 -1561943935.0,11714849,10000000 -1561944535.0,11697644,10000000 -1561945135.0,11711197,10000000 -1561945735.0,11718841,10000000 -1561946335.0,11798719,10000000 -1561946935.0,11755202,10000000 -1561947535.0,11847617,10000000 -1561948135.0,11886291,10000000 -1561948735.0,11876710,10000000 -1561949335.0,11813015,10000000 -1561949935.0,11855408,10000000 -1561950535.0,11791281,10000000 -1561951135.0,11874352,10000000 -1561951735.0,11823369,10000000 -1561952335.0,11870186,10000000 -1561952935.0,11848005,10000000 -1561953535.0,11942874,10000000 -1561954135.0,11878444,10000000 -1561954735.0,11889394,10000000 -1561955335.0,11835137,10000000 -1561955935.0,11883977,10000000 -1561956535.0,11942617,10000000 -1561957135.0,12004862,10000000 -1561957735.0,11959893,10000000 -1561958335.0,11972798,10000000 -1561958935.0,11975100,10000000 -1561959535.0,12003050,10000000 -1561960135.0,12053372,10000000 -1561960735.0,12135471,10000000 -1561961335.0,12047622,10000000 -1561961935.0,12054760,10000000 -1561962535.0,12134144,10000000 -1561963135.0,12175530,10000000 -1561963735.0,12250173,10000000 -1561964335.0,12205083,10000000 -1561964935.0,12226979,10000000 -1561965535.0,12190680,10000000 -1561966135.0,12222883,10000000 -1561966735.0,12200147,10000000 -1561967335.0,12235876,10000000 -1561967935.0,12253847,10000000 -1561968535.0,12259609,10000000 -1561969135.0,12219517,10000000 -1561969735.0,12191508,10000000 -1561970335.0,12161505,10000000 -1561970935.0,12141569,10000000 -1561971535.0,12129429,10000000 -1561972135.0,12149713,10000000 -1561972735.0,12119832,10000000 -1561973335.0,12172243,10000000 -1561973935.0,12183866,10000000 -1561974535.0,12186547,10000000 -1561975135.0,12165614,10000000 -1561975735.0,12188413,10000000 -1561976335.0,12252540,10000000 -1561976935.0,12294725,10000000 -1561977535.0,12327360,10000000 -1561978135.0,12324101,10000000 -1561978735.0,12288358,10000000 -1561979335.0,12278880,10000000 -1561979935.0,12182976,10000000 -1561980535.0,12202047,10000000 -1561981135.0,12279137,10000000 -1561981735.0,12357004,10000000 -1561982335.0,12313179,10000000 -1561982935.0,12364845,10000000 -1561983535.0,12378540,10000000 -1561984135.0,12369534,10000000 -1561984735.0,12304466,10000000 -1561985335.0,12227246,10000000 -1561985935.0,12286320,10000000 -1561986535.0,12250522,10000000 -1561987135.0,12258340,10000000 -1561987735.0,12256106,10000000 -1561988335.0,12209160,10000000 -1561988935.0,12227326,10000000 -1561989535.0,12229585,10000000 -1561990135.0,12294207,10000000 -1561990735.0,12351542,10000000 -1561991335.0,12369711,10000000 -1561991935.0,12439593,10000000 -1561992535.0,12462691,10000000 -1561993135.0,12535759,10000000 -1561993735.0,12463697,10000000 -1561994335.0,12434228,10000000 -1561994935.0,12389555,10000000 -1561995535.0,12403045,10000000 -1561996135.0,12369457,10000000 -1561996735.0,12435046,10000000 -1561997335.0,12460916,10000000 -1561997935.0,12501011,10000000 -1561998535.0,12559968,10000000 -1561999135.0,12526092,10000000 -1561999735.0,12500438,10000000 -1562000335.0,12618499,10000000 -1562000935.0,12733001,10000000 -1562001535.0,12643790,10000000 -1562002135.0,12567838,10000000 -1562002735.0,12544195,10000000 -1562003335.0,12634502,10000000 -1562003935.0,12561185,10000000 -1562004535.0,12508049,10000000 -1562005135.0,12434641,10000000 -1562005735.0,12445173,10000000 -1562006335.0,12479683,10000000 -1562006935.0,12495507,10000000 -1562007535.0,12470424,10000000 -1562008135.0,12498415,10000000 -1562008735.0,12546126,10000000 -1562009335.0,12516159,10000000 -1562009935.0,12460665,10000000 -1562010535.0,12464403,10000000 -1562011135.0,12417343,10000000 -1562011735.0,12503742,10000000 -1562012335.0,12493285,10000000 -1562012935.0,12594579,10000000 -1562013535.0,12520652,10000000 -1562014135.0,12485494,10000000 -1562014735.0,12452832,10000000 -1562015335.0,12450180,10000000 -1562015935.0,12437044,10000000 -1562016535.0,12431528,10000000 -1562017135.0,12467052,10000000 -1562017735.0,12478656,10000000 -1562018335.0,12516853,10000000 -1562018935.0,12500451,10000000 -1562019535.0,12447450,10000000 -1562020135.0,12410045,10000000 -1562020735.0,12396190,10000000 -1562021335.0,12415636,10000000 -1562021935.0,12373424,10000000 -1562022535.0,12298826,10000000 -1562023135.0,12303706,10000000 -1562023735.0,12303033,10000000 -1562024335.0,12290393,10000000 -1562024935.0,12347821,10000000 -1562025535.0,12354514,10000000 -1562026135.0,12332241,10000000 -1562026735.0,12365094,10000000 -1562027335.0,12369036,10000000 -1562027935.0,12396019,10000000 -1562028535.0,12417194,10000000 -1562029135.0,12423106,10000000 -1562029735.0,12475947,10000000 -1562030335.0,12501339,10000000 -1562030935.0,12472445,10000000 -1562031535.0,12509784,10000000 -1562032135.0,12479438,10000000 -1562032735.0,12430899,10000000 -1562033335.0,12369776,10000000 -1562033935.0,12364084,10000000 -1562034535.0,12340526,10000000 -1562035135.0,12284542,10000000 -1562035735.0,12341931,10000000 -1562036335.0,12415550,10000000 -1562036935.0,12482336,10000000 -1562037535.0,12453250,10000000 -1562038135.0,12376988,10000000 -1562038735.0,12477946,10000000 -1562039335.0,12530607,10000000 -1562039935.0,12585851,10000000 -1562040535.0,12555752,10000000 -1562041135.0,12576529,10000000 -1562041735.0,12427292,10000000 -1562042335.0,12436810,10000000 -1562042935.0,12441676,10000000 -1562043535.0,12371848,10000000 -1562044135.0,12360931,10000000 -1562044735.0,12449003,10000000 -1562045335.0,12403137,10000000 -1562045935.0,12511754,10000000 -1562046535.0,12544352,10000000 -1562047135.0,12500103,10000000 -1562047735.0,12501494,10000000 -1562048335.0,12582945,10000000 -1562048935.0,12623250,10000000 -1562049535.0,12654313,10000000 -1562050135.0,12683745,10000000 -1562050735.0,12704265,10000000 -1562051335.0,12578801,10000000 -1562051935.0,12591419,10000000 -1562052535.0,12581923,10000000 -1562053135.0,12537979,10000000 -1562053735.0,12630871,10000000 -1562054335.0,12639277,10000000 -1562054935.0,12605837,10000000 -1562055535.0,12512639,10000000 -1562056135.0,12504224,10000000 -1562056735.0,12406526,10000000 -1562057335.0,12362856,10000000 -1562057935.0,12309219,10000000 -1562058535.0,12327321,10000000 -1562059135.0,12336266,10000000 -1562059735.0,12349205,10000000 -1562060335.0,12322131,10000000 -1562060935.0,12257252,10000000 -1562061535.0,12266568,10000000 -1562062135.0,12295946,10000000 -1562062735.0,12355547,10000000 -1562063335.0,12500915,10000000 -1562063935.0,12491375,10000000 -1562064535.0,12502730,10000000 -1562065135.0,12491242,10000000 -1562065735.0,12521420,10000000 -1562066335.0,12534778,10000000 -1562066935.0,12584945,10000000 -1562067535.0,12489837,10000000 -1562068135.0,12446636,10000000 -1562068735.0,12396877,10000000 -1562069335.0,12334981,10000000 -1562069935.0,12272592,10000000 -1562070535.0,12245136,10000000 -1562071135.0,12195784,10000000 -1562071735.0,12208077,10000000 -1562072335.0,12243930,10000000 -1562072935.0,12280718,10000000 -1562073535.0,12362354,10000000 -1562074135.0,12381831,10000000 -1562074735.0,12428405,10000000 -1562075335.0,12424612,10000000 -1562075935.0,12405323,10000000 -1562076535.0,12454729,10000000 -1562077135.0,12527674,10000000 -1562077735.0,12480729,10000000 -1562078335.0,12445121,10000000 -1562078935.0,12466773,10000000 -1562079535.0,12455561,10000000 -1562080135.0,12524695,10000000 -1562080735.0,12519689,10000000 -1562081335.0,12513691,10000000 -1562081935.0,12434398,10000000 -1562082535.0,12517798,10000000 -1562083135.0,12446181,10000000 -1562083735.0,12449587,10000000 -1562084335.0,12449615,10000000 -1562084935.0,12313913,10000000 -1562085535.0,12253440,10000000 -1562086135.0,12289269,10000000 -1562086735.0,12269831,10000000 -1562087335.0,12243721,10000000 -1562087935.0,12249704,10000000 -1562088535.0,12203030,10000000 -1562089135.0,12281862,10000000 -1562089735.0,12172027,10000000 -1562090335.0,12101687,10000000 -1562090935.0,12151768,10000000 -1562091535.0,12140163,10000000 -1562092135.0,12145043,10000000 -1562092735.0,12129729,10000000 -1562093335.0,12167239,10000000 -1562093935.0,12091462,10000000 -1562094535.0,12120058,10000000 -1562095135.0,12163720,10000000 -1562095735.0,12233658,10000000 -1562096335.0,12163562,10000000 -1562096935.0,12168808,10000000 -1562097535.0,12233997,10000000 -1562098135.0,12208190,10000000 -1562098735.0,12181162,10000000 -1562099335.0,12174082,10000000 -1562099935.0,12171937,10000000 -1562100535.0,12122127,10000000 -1562101135.0,12151740,10000000 -1562101735.0,12144738,10000000 -1562102335.0,12152502,10000000 -1562102935.0,12162942,10000000 -1562103535.0,12190227,10000000 -1562104135.0,12138810,10000000 -1562104735.0,12128118,10000000 -1562105335.0,12005487,10000000 -1562105935.0,12079045,10000000 -1562106535.0,12071645,10000000 -1562107135.0,12130167,10000000 -1562107735.0,12138203,10000000 -1562108335.0,12124024,10000000 -1562108935.0,12174038,10000000 -1562109535.0,12290614,10000000 -1562110135.0,12290494,10000000 -1562110735.0,12218101,10000000 -1562111335.0,12242158,10000000 -1562111935.0,12302549,10000000 -1562112535.0,12345819,10000000 -1562113135.0,12405730,10000000 -1562113735.0,12457206,10000000 -1562114335.0,12407766,10000000 -1562114935.0,12408652,10000000 -1562115535.0,12427719,10000000 -1562116135.0,12490127,10000000 -1562116735.0,12392791,10000000 -1562117335.0,12452027,10000000 -1562117935.0,12461313,10000000 -1562118535.0,12527994,10000000 -1562119135.0,12463010,10000000 -1562119735.0,12377247,10000000 -1562120335.0,12320865,10000000 -1562120935.0,12280446,10000000 -1562121535.0,12287225,10000000 -1562122135.0,12398536,10000000 -1562122735.0,12492269,10000000 -1562123335.0,12519742,10000000 -1562123935.0,12519422,10000000 -1562124535.0,12485116,10000000 -1562125135.0,12449049,10000000 -1562125735.0,12482803,10000000 -1562126335.0,12463043,10000000 -1562126935.0,12468976,10000000 -1562127535.0,12424987,10000000 -1562128135.0,12441322,10000000 -1562128735.0,12475430,10000000 -1562129335.0,12493050,10000000 -1562129935.0,12521075,10000000 -1562130535.0,12497062,10000000 -1562131135.0,12473244,10000000 -1562131735.0,12505033,10000000 -1562132335.0,12446842,10000000 -1562132935.0,12465784,10000000 -1562133535.0,12458774,10000000 -1562134135.0,12382970,10000000 -1562134735.0,12351814,10000000 -1562135335.0,12336468,10000000 -1562135935.0,12270442,10000000 -1562136535.0,12248251,10000000 -1562137135.0,12236103,10000000 -1562137735.0,12289399,10000000 -1562138335.0,12250561,10000000 -1562138935.0,12247712,10000000 -1562139535.0,12196478,10000000 -1562140135.0,12190825,10000000 -1562140735.0,12201648,10000000 -1562141335.0,12227925,10000000 -1562141935.0,12294001,10000000 -1562142535.0,12268740,10000000 -1562143135.0,12271422,10000000 -1562143735.0,12232133,10000000 -1562144335.0,12195800,10000000 -1562144935.0,12202841,10000000 -1562145535.0,12279650,10000000 -1562146135.0,12270185,10000000 -1562146735.0,12251880,10000000 -1562147335.0,12300697,10000000 -1562147935.0,12350300,10000000 -1562148535.0,12316984,10000000 -1562149135.0,12292061,10000000 -1562149735.0,12218982,10000000 -1562150335.0,12195854,10000000 -1562150935.0,12153242,10000000 -1562151535.0,12155304,10000000 -1562152135.0,12056873,10000000 -1562152735.0,12012541,10000000 -1562153335.0,12011603,10000000 -1562153935.0,12031483,10000000 -1562154535.0,12057118,10000000 -1562155135.0,12055872,10000000 -1562155735.0,12003352,10000000 -1562156335.0,11987620,10000000 -1562156935.0,12012801,10000000 -1562157535.0,11992141,10000000 -1562158135.0,11963509,10000000 -1562158735.0,12008163,10000000 -1562159335.0,12053614,10000000 -1562159935.0,12059037,10000000 -1562160535.0,12065822,10000000 -1562161135.0,12069305,10000000 -1562161735.0,12084030,10000000 -1562162335.0,12044068,10000000 -1562162935.0,12043781,10000000 -1562163535.0,12040145,10000000 -1562164135.0,12036767,10000000 -1562164735.0,12039231,10000000 -1562165335.0,12016921,10000000 -1562165935.0,11982524,10000000 -1562166535.0,11975145,10000000 -1562167135.0,11912669,10000000 -1562167735.0,11925236,10000000 -1562168335.0,11901396,10000000 -1562168935.0,11927579,10000000 -1562169535.0,11988349,10000000 -1562170135.0,12039552,10000000 -1562170735.0,12129539,10000000 -1562171335.0,12095854,10000000 -1562171935.0,12090172,10000000 -1562172535.0,12172987,10000000 -1562173135.0,12216431,10000000 -1562173735.0,12259009,10000000 -1562174335.0,12125889,10000000 -1562174935.0,12088013,10000000 -1562175535.0,12114743,10000000 -1562176135.0,12136981,10000000 -1562176735.0,12240567,10000000 -1562177335.0,12268468,10000000 -1562177935.0,12251790,10000000 -1562178535.0,12263840,10000000 -1562179135.0,12174569,10000000 -1562179735.0,12215836,10000000 -1562180335.0,12254762,10000000 -1562180935.0,12254215,10000000 -1562181535.0,12148894,10000000 -1562182135.0,12069835,10000000 -1562182735.0,12042025,10000000 -1562183335.0,12061299,10000000 -1562183935.0,12128741,10000000 -1562184535.0,12141835,10000000 -1562185135.0,12193429,10000000 -1562185735.0,12172335,10000000 -1562186335.0,12199766,10000000 -1562186935.0,12202416,10000000 -1562187535.0,12279899,10000000 -1562188135.0,12216282,10000000 -1562188735.0,12255452,10000000 -1562189335.0,12234468,10000000 -1562189935.0,12293184,10000000 -1562190535.0,12305467,10000000 -1562191135.0,12353027,10000000 -1562191735.0,12346367,10000000 -1562192335.0,12346685,10000000 -1562192935.0,12314965,10000000 -1562193535.0,12403197,10000000 -1562194135.0,12504534,10000000 -1562194735.0,12440904,10000000 -1562195335.0,12482404,10000000 -1562195935.0,12447025,10000000 -1562196535.0,12499084,10000000 -1562197135.0,12503663,10000000 -1562197735.0,12461005,10000000 -1562198335.0,12487094,10000000 -1562198935.0,12540576,10000000 -1562199535.0,12583839,10000000 -1562200135.0,12599796,10000000 -1562200735.0,12603357,10000000 -1562201335.0,12615546,10000000 -1562201935.0,12523738,10000000 -1562202535.0,12402129,10000000 -1562203135.0,12400501,10000000 -1562203735.0,12430853,10000000 -1562204335.0,12504936,10000000 -1562204935.0,12583887,10000000 -1562205535.0,12555644,10000000 -1562206135.0,12608139,10000000 -1562206735.0,12538270,10000000 -1562207335.0,12537497,10000000 -1562207935.0,12501550,10000000 -1562208535.0,12461616,10000000 -1562209135.0,12381931,10000000 -1562209735.0,12410635,10000000 -1562210335.0,12442377,10000000 -1562210935.0,12357266,10000000 -1562211535.0,12239110,10000000 -1562212135.0,12227900,10000000 -1562212735.0,12302160,10000000 -1562213335.0,12288325,10000000 -1562213935.0,12309782,10000000 -1562214535.0,12270581,10000000 -1562215135.0,12233972,10000000 -1562215735.0,12224095,10000000 -1562216335.0,12244657,10000000 -1562216935.0,12205476,10000000 -1562217535.0,12225728,10000000 -1562218135.0,12152104,10000000 -1562218735.0,12140732,10000000 -1562219335.0,12044380,10000000 -1562219935.0,12003799,10000000 -1562220535.0,11910518,10000000 -1562221135.0,11891592,10000000 -1562221735.0,11952479,10000000 -1562222335.0,11967170,10000000 -1562222935.0,12120952,10000000 -1562223535.0,12108838,10000000 -1562224135.0,12081808,10000000 -1562224735.0,12099386,10000000 -1562225335.0,12184511,10000000 -1562225935.0,12118133,10000000 -1562226535.0,12136500,10000000 -1562227135.0,12133603,10000000 -1562227735.0,12089107,10000000 -1562228335.0,12020849,10000000 -1562228935.0,11931512,10000000 -1562229535.0,12011843,10000000 -1562230135.0,12068946,10000000 -1562230735.0,12138217,10000000 -1562231335.0,12118871,10000000 -1562231935.0,12146401,10000000 -1562232535.0,12136451,10000000 -1562233135.0,12152996,10000000 -1562233735.0,12137707,10000000 -1562234335.0,12159248,10000000 -1562234935.0,12210547,10000000 -1562235535.0,12233664,10000000 -1562236135.0,12258800,10000000 -1562236735.0,12300240,10000000 -1562237335.0,12372854,10000000 -1562237935.0,12423580,10000000 -1562238535.0,12406450,10000000 -1562239135.0,12325036,10000000 -1562239735.0,12358057,10000000 -1562240335.0,12409030,10000000 -1562240935.0,12421473,10000000 -1562241535.0,12364762,10000000 -1562242135.0,12400337,10000000 -1562242735.0,12420103,10000000 -1562243335.0,12453941,10000000 -1562243935.0,12534161,10000000 -1562244535.0,12609470,10000000 -1562245135.0,12716747,10000000 -1562245735.0,12777612,10000000 -1562246335.0,12777311,10000000 -1562246935.0,12799200,10000000 -1562247535.0,12905794,10000000 -1562248135.0,12880788,10000000 -1562248735.0,12868275,10000000 -1562249335.0,12862853,10000000 -1562249935.0,12756776,10000000 -1562250535.0,12832610,10000000 -1562251135.0,12815434,10000000 -1562251735.0,12768821,10000000 -1562252335.0,12727452,10000000 -1562252935.0,12653417,10000000 -1562253535.0,12739541,10000000 -1562254135.0,12693846,10000000 -1562254735.0,12710842,10000000 -1562255335.0,12684912,10000000 -1562255935.0,12645864,10000000 -1562256535.0,12698642,10000000 -1562257135.0,12750113,10000000 -1562257735.0,12702749,10000000 -1562258335.0,12767619,10000000 -1562258935.0,12729205,10000000 -1562259535.0,12745267,10000000 -1562260135.0,12781975,10000000 -1562260735.0,12782199,10000000 -1562261335.0,12679316,10000000 -1562261935.0,12664505,10000000 -1562262535.0,12707432,10000000 -1562263135.0,12687406,10000000 -1562263735.0,12687080,10000000 -1562264335.0,12693839,10000000 -1562264935.0,12685956,10000000 -1562265535.0,12659434,10000000 -1562266135.0,12729725,10000000 -1562266735.0,12726707,10000000 -1562267335.0,12735916,10000000 -1562267935.0,12721543,10000000 -1562268535.0,12686302,10000000 -1562269135.0,12612226,10000000 -1562269735.0,12580067,10000000 -1562270335.0,12506886,10000000 -1562270935.0,12483081,10000000 -1562271535.0,12477422,10000000 -1562272135.0,12543282,10000000 -1562272735.0,12480696,10000000 -1562273335.0,12441035,10000000 -1562273935.0,12449649,10000000 -1562274535.0,12428358,10000000 -1562275135.0,12468644,10000000 -1562275735.0,12495123,10000000 -1562276335.0,12580032,10000000 -1562276935.0,12684252,10000000 -1562277535.0,12688659,10000000 -1562278135.0,12754251,10000000 -1562278735.0,12820337,10000000 -1562279335.0,12766800,10000000 -1562279935.0,12774778,10000000 -1562280535.0,12876055,10000000 -1562281135.0,12746596,10000000 -1562281735.0,12726277,10000000 -1562282335.0,12707547,10000000 -1562282935.0,12725180,10000000 -1562283535.0,12684264,10000000 -1562284135.0,12648249,10000000 -1562284735.0,12673631,10000000 -1562285335.0,12637292,10000000 -1562285935.0,12628321,10000000 -1562286535.0,12672883,10000000 -1562287135.0,12789520,10000000 -1562287735.0,12818068,10000000 -1562288335.0,12825620,10000000 -1562288935.0,12796060,10000000 -1562289535.0,12895704,10000000 -1562290135.0,12893614,10000000 -1562290735.0,12920285,10000000 -1562291335.0,12856500,10000000 -1562291935.0,12901701,10000000 -1562292535.0,13020431,10000000 -1562293135.0,13035929,10000000 -1562293735.0,12956758,10000000 -1562294335.0,12973285,10000000 -1562294935.0,13007319,10000000 -1562295535.0,12929181,10000000 -1562296135.0,13044010,10000000 -1562296735.0,13132751,10000000 -1562297335.0,13117082,10000000 -1562297935.0,13141560,10000000 -1562298535.0,13105698,10000000 -1562299135.0,13045910,10000000 -1562299735.0,12971187,10000000 -1562300335.0,12920646,10000000 -1562300935.0,12916906,10000000 -1562301535.0,12916913,10000000 -1562302135.0,13016090,10000000 -1562302735.0,13018828,10000000 -1562303335.0,13023943,10000000 -1562303935.0,13017638,10000000 -1562304535.0,12944464,10000000 -1562305135.0,12941960,10000000 -1562305735.0,12952756,10000000 -1562306335.0,12828251,10000000 -1562306935.0,12765604,10000000 -1562307535.0,12842238,10000000 -1562308135.0,12901356,10000000 -1562308735.0,12889247,10000000 -1562309335.0,12907347,10000000 -1562309935.0,12856230,10000000 -1562310535.0,12859018,10000000 -1562311135.0,12848726,10000000 -1562311735.0,12774312,10000000 -1562312335.0,12785029,10000000 -1562312935.0,12831647,10000000 -1562313535.0,12748600,10000000 -1562314135.0,12802218,10000000 -1562314735.0,12879892,10000000 -1562315335.0,12852491,10000000 -1562315935.0,12784349,10000000 -1562316535.0,12851873,10000000 -1562317135.0,12781024,10000000 -1562317735.0,12710432,10000000 -1562318335.0,12767147,10000000 -1562318935.0,12787206,10000000 -1562319535.0,12768342,10000000 -1562320135.0,12761179,10000000 -1562320735.0,12795226,10000000 -1562321335.0,12752905,10000000 -1562321935.0,12794760,10000000 -1562322535.0,12783477,10000000 -1562323135.0,12773567,10000000 -1562323735.0,12758359,10000000 -1562324335.0,12720118,10000000 -1562324935.0,12750574,10000000 -1562325535.0,12675278,10000000 -1562326135.0,12740551,10000000 -1562326735.0,12609731,10000000 -1562327335.0,12638553,10000000 -1562327935.0,12665859,10000000 -1562328535.0,12688741,10000000 -1562329135.0,12724626,10000000 -1562329735.0,12841790,10000000 -1562330335.0,12856751,10000000 -1562330935.0,12923997,10000000 -1562331535.0,12953742,10000000 -1562332135.0,13019656,10000000 -1562332735.0,12991315,10000000 -1562333335.0,13016242,10000000 -1562333935.0,12998196,10000000 -1562334535.0,12990251,10000000 -1562335135.0,13004630,10000000 -1562335735.0,13063918,10000000 -1562336335.0,13133280,10000000 -1562336935.0,13128391,10000000 -1562337535.0,13248635,10000000 -1562338135.0,13304295,10000000 -1562338735.0,13309387,10000000 -1562339335.0,13290758,10000000 -1562339935.0,13262901,10000000 -1562340535.0,13331755,10000000 -1562341135.0,13355578,10000000 -1562341735.0,13323564,10000000 -1562342335.0,13386049,10000000 -1562342935.0,13327640,10000000 -1562343535.0,13381360,10000000 -1562344135.0,13422701,10000000 -1562344735.0,13462329,10000000 -1562345335.0,13473149,10000000 -1562345935.0,13410503,10000000 -1562346535.0,13430908,10000000 -1562347135.0,13415182,10000000 -1562347735.0,13370048,10000000 -1562348335.0,13364712,10000000 -1562348935.0,13313351,10000000 -1562349535.0,13295139,10000000 -1562350135.0,13214837,10000000 -1562350735.0,13184432,10000000 -1562351335.0,13190970,10000000 -1562351935.0,13177524,10000000 -1562352535.0,13218183,10000000 -1562353135.0,13115291,10000000 -1562353735.0,13073142,10000000 -1562354335.0,13030065,10000000 -1562354935.0,13047302,10000000 -1562355535.0,12989842,10000000 -1562356135.0,12965941,10000000 -1562356735.0,12931519,10000000 -1562357335.0,13075085,10000000 -1562357935.0,12998304,10000000 -1562358535.0,13033686,10000000 -1562359135.0,12987205,10000000 -1562359735.0,12922730,10000000 -1562360335.0,12890575,10000000 -1562360935.0,12927471,10000000 -1562361535.0,12841161,10000000 -1562362135.0,12723935,10000000 -1562362735.0,12688515,10000000 -1562363335.0,12792892,10000000 -1562363935.0,12864715,10000000 -1562364535.0,12861066,10000000 -1562365135.0,12855909,10000000 -1562365735.0,12816151,10000000 -1562366335.0,12787601,10000000 -1562366935.0,12808690,10000000 -1562367535.0,12839019,10000000 -1562368135.0,12902494,10000000 -1562368735.0,12889252,10000000 -1562369335.0,12936188,10000000 -1562369935.0,12848551,10000000 -1562370535.0,12658399,10000000 -1562371135.0,12597770,10000000 -1562371735.0,12567513,10000000 -1562372335.0,12524321,10000000 -1562372935.0,12474281,10000000 -1562373535.0,12399990,10000000 -1562374135.0,12364855,10000000 -1562374735.0,12375777,10000000 -1562375335.0,12379767,10000000 -1562375935.0,12331550,10000000 -1562376535.0,12302665,10000000 -1562377135.0,12348802,10000000 -1562377735.0,12348703,10000000 -1562378335.0,12527045,10000000 -1562378935.0,12519862,10000000 -1562379535.0,12465033,10000000 -1562380135.0,12526229,10000000 -1562380735.0,12562024,10000000 -1562381335.0,12577861,10000000 -1562381935.0,12604257,10000000 -1562382535.0,12656323,10000000 -1562383135.0,12653793,10000000 -1562383735.0,12643627,10000000 -1562384335.0,12595705,10000000 -1562384935.0,12633346,10000000 -1562385535.0,12639342,10000000 -1562386135.0,12656858,10000000 -1562386735.0,12694696,10000000 -1562387335.0,12782949,10000000 -1562387935.0,12697537,10000000 -1562388535.0,12716500,10000000 -1562389135.0,12653191,10000000 -1562389735.0,12650457,10000000 -1562390335.0,12670396,10000000 -1562390935.0,12615074,10000000 -1562391535.0,12655038,10000000 -1562392135.0,12657161,10000000 -1562392735.0,12653866,10000000 -1562393335.0,12631723,10000000 -1562393935.0,12696020,10000000 -1562394535.0,12663121,10000000 -1562395135.0,12678704,10000000 -1562395735.0,12662112,10000000 -1562396335.0,12599261,10000000 -1562396935.0,12621091,10000000 -1562397535.0,12572985,10000000 -1562398135.0,12649411,10000000 -1562398735.0,12550560,10000000 -1562399335.0,12607530,10000000 -1562399935.0,12568313,10000000 -1562400535.0,12531943,10000000 -1562401135.0,12546380,10000000 -1562401735.0,12548423,10000000 -1562402335.0,12566031,10000000 -1562402935.0,12612612,10000000 -1562403535.0,12499285,10000000 -1562404135.0,12484107,10000000 -1562404735.0,12446094,10000000 -1562405335.0,12510703,10000000 -1562405935.0,12369402,10000000 -1562406535.0,12299974,10000000 -1562407135.0,12365383,10000000 -1562407735.0,12448509,10000000 -1562408335.0,12467459,10000000 -1562408935.0,12490262,10000000 -1562409535.0,12487994,10000000 -1562410135.0,12414647,10000000 -1562410735.0,12359198,10000000 -1562411335.0,12335490,10000000 -1562411935.0,12180692,10000000 -1562412535.0,12191793,10000000 -1562413135.0,12170396,10000000 -1562413735.0,12214960,10000000 -1562414335.0,12199600,10000000 -1562414935.0,12186167,10000000 -1562415535.0,12182459,10000000 -1562416135.0,12056926,10000000 -1562416735.0,12031537,10000000 -1562417335.0,11958453,10000000 -1562417935.0,12065653,10000000 -1562418535.0,12103178,10000000 -1562419135.0,12085461,10000000 -1562419735.0,12099996,10000000 -1562420335.0,12173111,10000000 -1562420935.0,12085721,10000000 -1562421535.0,12033233,10000000 -1562422135.0,12007218,10000000 -1562422735.0,12063141,10000000 -1562423335.0,12019956,10000000 -1562423935.0,12015577,10000000 -1562424535.0,11958717,10000000 -1562425135.0,12004508,10000000 -1562425735.0,12046979,10000000 -1562426335.0,12015722,10000000 -1562426935.0,12091944,10000000 -1562427535.0,12034142,10000000 -1562428135.0,11937493,10000000 -1562428735.0,11861074,10000000 -1562429335.0,11794194,10000000 -1562429935.0,11745416,10000000 -1562430535.0,11790365,10000000 -1562431135.0,11787796,10000000 -1562431735.0,11818577,10000000 -1562432335.0,11774603,10000000 -1562432935.0,11785528,10000000 -1562433535.0,11835150,10000000 -1562434135.0,11777471,10000000 -1562434735.0,11799241,10000000 -1562435335.0,11664461,10000000 -1562435935.0,11758043,10000000 -1562436535.0,11742540,10000000 -1562437135.0,11772697,10000000 -1562437735.0,11755064,10000000 -1562438335.0,11727722,10000000 -1562438935.0,11817852,10000000 -1562439535.0,11815325,10000000 -1562440135.0,11802987,10000000 -1562440735.0,11783274,10000000 -1562441335.0,11788418,10000000 -1562441935.0,11784482,10000000 -1562442535.0,11739820,10000000 -1562443135.0,11860387,10000000 -1562443735.0,11856479,10000000 -1562444335.0,11877749,10000000 -1562444935.0,11925887,10000000 -1562445535.0,11868848,10000000 -1562446135.0,11884095,10000000 -1562446735.0,11897735,10000000 -1562447335.0,11902981,10000000 -1562447935.0,11904871,10000000 -1562448535.0,12030490,10000000 -1562449135.0,12010402,10000000 -1562449735.0,12120048,10000000 -1562450335.0,12228809,10000000 -1562450935.0,12172137,10000000 -1562451535.0,12278395,10000000 -1562452135.0,12269713,10000000 -1562452735.0,12318731,10000000 -1562453335.0,12292709,10000000 -1562453935.0,12309236,10000000 -1562454535.0,12326804,10000000 -1562455135.0,12261685,10000000 -1562455735.0,12288081,10000000 -1562456335.0,12349678,10000000 -1562456935.0,12317860,10000000 -1562457535.0,12330680,10000000 -1562458135.0,12330067,10000000 -1562458735.0,12224150,10000000 -1562459335.0,12274137,10000000 -1562459935.0,12254052,10000000 -1562460535.0,12283790,10000000 -1562461135.0,12205301,10000000 -1562461735.0,12198195,10000000 -1562462335.0,12198899,10000000 -1562462935.0,12127844,10000000 -1562463535.0,12145224,10000000 -1562464135.0,12140690,10000000 -1562464735.0,12133034,10000000 -1562465335.0,12076580,10000000 -1562465935.0,12095978,10000000 -1562466535.0,12164379,10000000 -1562467135.0,12156312,10000000 -1562467735.0,12152955,10000000 -1562468335.0,12130715,10000000 -1562468935.0,12106871,10000000 -1562469535.0,12051536,10000000 -1562470135.0,12086233,10000000 -1562470735.0,12202872,10000000 -1562471335.0,12248530,10000000 -1562471935.0,12272252,10000000 -1562472535.0,12226191,10000000 -1562473135.0,12270065,10000000 -1562473735.0,12256213,10000000 -1562474335.0,12311166,10000000 -1562474935.0,12316951,10000000 -1562475535.0,12323477,10000000 -1562476135.0,12308280,10000000 -1562476735.0,12318737,10000000 -1562477335.0,12278265,10000000 -1562477935.0,12254044,10000000 -1562478535.0,12204629,10000000 -1562479135.0,12192836,10000000 -1562479735.0,12156667,10000000 -1562480335.0,12071580,10000000 -1562480935.0,12043612,10000000 -1562481535.0,12113875,10000000 -1562482135.0,12105642,10000000 -1562482735.0,12082857,10000000 -1562483335.0,12025087,10000000 -1562483935.0,11993317,10000000 -1562484535.0,11955950,10000000 -1562485135.0,12000110,10000000 -1562485735.0,11953674,10000000 -1562486335.0,11917393,10000000 -1562486935.0,11978221,10000000 -1562487535.0,12037473,10000000 -1562488135.0,12027260,10000000 -1562488735.0,11986904,10000000 -1562489335.0,12042391,10000000 -1562489935.0,12039650,10000000 -1562490535.0,11938696,10000000 -1562491135.0,11908259,10000000 -1562491735.0,11926516,10000000 -1562492335.0,11943236,10000000 -1562492935.0,11913787,10000000 -1562493535.0,11841466,10000000 -1562494135.0,11780166,10000000 -1562494735.0,11840838,10000000 -1562495335.0,11811091,10000000 -1562495935.0,11715889,10000000 -1562496535.0,11683772,10000000 -1562497135.0,11762906,10000000 -1562497735.0,11705094,10000000 -1562498335.0,11748771,10000000 -1562498935.0,11759827,10000000 -1562499535.0,11772951,10000000 -1562500135.0,11723390,10000000 -1562500735.0,11750819,10000000 -1562501335.0,11692170,10000000 -1562501935.0,11690046,10000000 -1562502535.0,11701040,10000000 -1562503135.0,11710034,10000000 -1562503735.0,11704700,10000000 -1562504335.0,11753074,10000000 -1562504935.0,11806261,10000000 -1562505535.0,11714929,10000000 -1562506135.0,11705337,10000000 -1562506735.0,11718799,10000000 -1562507335.0,11758099,10000000 -1562507935.0,11781825,10000000 -1562508535.0,11778246,10000000 -1562509135.0,11775114,10000000 -1562509735.0,11745704,10000000 -1562510335.0,11719075,10000000 -1562510935.0,11765964,10000000 -1562511535.0,11766698,10000000 -1562512135.0,11772746,10000000 -1562512735.0,11717877,10000000 -1562513335.0,11737456,10000000 -1562513935.0,11789508,10000000 -1562514535.0,11901026,10000000 -1562515135.0,11959442,10000000 -1562515735.0,12020858,10000000 -1562516335.0,12096645,10000000 -1562516935.0,12052735,10000000 -1562517535.0,12004886,10000000 -1562518135.0,12078162,10000000 -1562518735.0,12110206,10000000 -1562519335.0,12128179,10000000 -1562519935.0,12161710,10000000 -1562520535.0,12155414,10000000 -1562521135.0,12194694,10000000 -1562521735.0,12208478,10000000 -1562522335.0,12197515,10000000 -1562522935.0,12173387,10000000 -1562523535.0,12211502,10000000 -1562524135.0,12177834,10000000 -1562524735.0,12196085,10000000 -1562525335.0,12213039,10000000 -1562525935.0,12279110,10000000 -1562526535.0,12281627,10000000 -1562527135.0,12312933,10000000 -1562527735.0,12338248,10000000 -1562528335.0,12346611,10000000 -1562528935.0,12347298,10000000 -1562529535.0,12302146,10000000 -1562530135.0,12257229,10000000 -1562530735.0,12170007,10000000 -1562531335.0,12184167,10000000 -1562531935.0,12229539,10000000 -1562532535.0,12216430,10000000 -1562533135.0,12190539,10000000 -1562533735.0,12145862,10000000 -1562534335.0,12112599,10000000 -1562534935.0,12146435,10000000 -1562535535.0,12138769,10000000 -1562536135.0,12104145,10000000 -1562536735.0,12017329,10000000 -1562537335.0,12034480,10000000 -1562537935.0,12003705,10000000 -1562538535.0,11971968,10000000 -1562539135.0,11997238,10000000 -1562539735.0,12061709,10000000 -1562540335.0,12127952,10000000 -1562540935.0,12134982,10000000 -1562541535.0,12162786,10000000 -1562542135.0,12121084,10000000 -1562542735.0,12145931,10000000 -1562543335.0,12046357,10000000 -1562543935.0,11909496,10000000 -1562544535.0,11886153,10000000 -1562545135.0,11962906,10000000 -1562545735.0,12011428,10000000 -1562546335.0,11945465,10000000 -1562546935.0,11881467,10000000 -1562547535.0,11879200,10000000 -1562548135.0,11927297,10000000 -1562548735.0,11931759,10000000 -1562549335.0,11990290,10000000 -1562549935.0,11860781,10000000 -1562550535.0,11818662,10000000 -1562551135.0,11821559,10000000 -1562551735.0,11851139,10000000 -1562552335.0,11862651,10000000 -1562552935.0,11903977,10000000 -1562553535.0,11919854,10000000 -1562554135.0,11959494,10000000 -1562554735.0,12033564,10000000 -1562555335.0,12089394,10000000 -1562555935.0,12015041,10000000 -1562556535.0,11970220,10000000 -1562557135.0,12001705,10000000 -1562557735.0,12064586,10000000 -1562558335.0,12058424,10000000 -1562558935.0,12051874,10000000 -1562559535.0,12068363,10000000 -1562560135.0,12112771,10000000 -1562560735.0,12141515,10000000 -1562561335.0,12133590,10000000 -1562561935.0,12126170,10000000 -1562562535.0,12130106,10000000 -1562563135.0,12115234,10000000 -1562563735.0,12124645,10000000 -1562564335.0,12132608,10000000 -1562564935.0,12207063,10000000 -1562565535.0,12226115,10000000 -1562566135.0,12206218,10000000 -1562566735.0,12223498,10000000 -1562567335.0,12264131,10000000 -1562567935.0,12208207,10000000 -1562568535.0,12094652,10000000 -1562569135.0,12050134,10000000 -1562569735.0,12124646,10000000 -1562570335.0,12181326,10000000 -1562570935.0,12183518,10000000 -1562571535.0,12201475,10000000 -1562572135.0,12239376,10000000 -1562572735.0,12095680,10000000 -1562573335.0,12172440,10000000 -1562573935.0,12138091,10000000 -1562574535.0,12136169,10000000 -1562575135.0,12057377,10000000 -1562575735.0,12114981,10000000 -1562576335.0,12105967,10000000 -1562576935.0,12125173,10000000 -1562577535.0,12170505,10000000 -1562578135.0,12237721,10000000 -1562578735.0,12242526,10000000 -1562579335.0,12329591,10000000 -1562579935.0,12238222,10000000 -1562580535.0,12218772,10000000 -1562581135.0,12144917,10000000 -1562581735.0,12103688,10000000 -1562582335.0,12141255,10000000 -1562582935.0,12060170,10000000 -1562583535.0,11979828,10000000 -1562584135.0,11961634,10000000 -1562584735.0,11937906,10000000 -1562585335.0,11981140,10000000 -1562585935.0,12045338,10000000 -1562586535.0,11997520,10000000 -1562587135.0,12025644,10000000 -1562587735.0,11998361,10000000 -1562588335.0,11985003,10000000 -1562588935.0,11980885,10000000 -1562589535.0,12023411,10000000 -1562590135.0,12051655,10000000 -1562590735.0,12025613,10000000 -1562591335.0,12013451,10000000 -1562591935.0,12029132,10000000 -1562592535.0,11935136,10000000 -1562593135.0,11918355,10000000 -1562593735.0,11925035,10000000 -1562594335.0,11945341,10000000 -1562594935.0,11960409,10000000 -1562595535.0,11988080,10000000 -1562596135.0,11892268,10000000 -1562596735.0,11849823,10000000 -1562597335.0,11984104,10000000 -1562597935.0,11996705,10000000 -1562598535.0,11941479,10000000 -1562599135.0,12024287,10000000 -1562599735.0,11982206,10000000 -1562600335.0,12011031,10000000 -1562600935.0,11998800,10000000 -1562601535.0,11962099,10000000 -1562602135.0,11896324,10000000 -1562602735.0,11883040,10000000 -1562603335.0,11867654,10000000 -1562603935.0,11841260,10000000 -1562604535.0,11773425,10000000 -1562605135.0,11734123,10000000 -1562605735.0,11806630,10000000 -1562606335.0,11810490,10000000 -1562606935.0,11824367,10000000 -1562607535.0,11745420,10000000 -1562608135.0,11838379,10000000 -1562608735.0,11857430,10000000 -1562609335.0,11864413,10000000 -1562609935.0,11894564,10000000 -1562610535.0,11901284,10000000 -1562611135.0,11885592,10000000 -1562611735.0,11821155,10000000 -1562612335.0,11791222,10000000 -1562612935.0,11735637,10000000 -1562613535.0,11799859,10000000 -1562614135.0,11769746,10000000 -1562614735.0,11701669,10000000 -1562615335.0,11733527,10000000 -1562615935.0,11774496,10000000 -1562616535.0,11777814,10000000 -1562617135.0,11766963,10000000 -1562617735.0,11778315,10000000 -1562618335.0,11764337,10000000 -1562618935.0,11779185,10000000 -1562619535.0,11696907,10000000 -1562620135.0,11709556,10000000 -1562620735.0,11692196,10000000 -1562621335.0,11671983,10000000 -1562621935.0,11647605,10000000 -1562622535.0,11610374,10000000 -1562623135.0,11579395,10000000 -1562623735.0,11475749,10000000 -1562624335.0,11530616,10000000 -1562624935.0,11565239,10000000 -1562625535.0,11636275,10000000 -1562626135.0,11591104,10000000 -1562626735.0,11459323,10000000 -1562627335.0,11471861,10000000 -1562627935.0,11445277,10000000 -1562628535.0,11493166,10000000 -1562629135.0,11576865,10000000 -1562629735.0,11620328,10000000 -1562630335.0,11600987,10000000 -1562630935.0,11594027,10000000 -1562631535.0,11582091,10000000 -1562632135.0,11582590,10000000 -1562632735.0,11536419,10000000 -1562633335.0,11423798,10000000 -1562633935.0,11378542,10000000 -1562634535.0,11352209,10000000 -1562635135.0,11332793,10000000 -1562635735.0,11318599,10000000 -1562636335.0,11272183,10000000 -1562636935.0,11197853,10000000 -1562637535.0,11185316,10000000 -1562638135.0,11166794,10000000 -1562638735.0,11209613,10000000 -1562639335.0,11200940,10000000 -1562639935.0,11275150,10000000 -1562640535.0,11333726,10000000 -1562641135.0,11290245,10000000 -1562641735.0,11293987,10000000 -1562642335.0,11396893,10000000 -1562642935.0,11369676,10000000 -1562643535.0,11382487,10000000 -1562644135.0,11493030,10000000 -1562644735.0,11497975,10000000 -1562645335.0,11540520,10000000 -1562645935.0,11565765,10000000 -1562646535.0,11721301,10000000 -1562647135.0,11715001,10000000 -1562647735.0,11757241,10000000 -1562648335.0,11713954,10000000 -1562648935.0,11778931,10000000 -1562649535.0,11741133,10000000 -1562650135.0,11733926,10000000 -1562650735.0,11746353,10000000 -1562651335.0,11683024,10000000 -1562651935.0,11709680,10000000 -1562652535.0,11761268,10000000 -1562653135.0,11702456,10000000 -1562653735.0,11675936,10000000 -1562654335.0,11688787,10000000 -1562654935.0,11647169,10000000 -1562655535.0,11682080,10000000 -1562656135.0,11629301,10000000 -1562656735.0,11671673,10000000 -1562657335.0,11669859,10000000 -1562657935.0,11705849,10000000 -1562658535.0,11713059,10000000 -1562659135.0,11704087,10000000 -1562659735.0,11580646,10000000 -1562660335.0,11701181,10000000 -1562660935.0,11728078,10000000 -1562661535.0,11717585,10000000 -1562662135.0,11681174,10000000 -1562662735.0,11684237,10000000 -1562663335.0,11748717,10000000 -1562663935.0,11772687,10000000 -1562664535.0,11776557,10000000 -1562665135.0,11751803,10000000 -1562665735.0,11721976,10000000 -1562666335.0,11716191,10000000 -1562666935.0,11783643,10000000 -1562667535.0,11768899,10000000 -1562668135.0,11882636,10000000 -1562668735.0,11866638,10000000 -1562669335.0,11969355,10000000 -1562669935.0,11903018,10000000 -1562670535.0,11865126,10000000 -1562671135.0,11852643,10000000 -1562671735.0,11752690,10000000 -1562672335.0,11766604,10000000 -1562672935.0,11671489,10000000 -1562673535.0,11541532,10000000 -1562674135.0,11476788,10000000 -1562674735.0,11460673,10000000 -1562675335.0,11352459,10000000 -1562675935.0,11377635,10000000 -1562676535.0,11383382,10000000 -1562677135.0,11333378,10000000 -1562677735.0,11278797,10000000 -1562678335.0,11274084,10000000 -1562678935.0,11331048,10000000 -1562679535.0,11260352,10000000 -1562680135.0,11299252,10000000 -1562680735.0,11355473,10000000 -1562681335.0,11255800,10000000 -1562681935.0,11190628,10000000 -1562682535.0,11220151,10000000 -1562683135.0,11205272,10000000 -1562683735.0,11232247,10000000 -1562684335.0,11168924,10000000 -1562684935.0,11168724,10000000 -1562685535.0,11267271,10000000 -1562686135.0,11300395,10000000 -1562686735.0,11318448,10000000 -1562687335.0,11220095,10000000 -1562687935.0,11222987,10000000 -1562688535.0,11178487,10000000 -1562689135.0,11176591,10000000 -1562689735.0,11178005,10000000 -1562690335.0,11169219,10000000 -1562690935.0,11192813,10000000 -1562691535.0,11076816,10000000 -1562692135.0,11066079,10000000 -1562692735.0,11094186,10000000 -1562693335.0,11024719,10000000 -1562693935.0,10972806,10000000 -1562694535.0,10899997,10000000 -1562695135.0,10904285,10000000 -1562695735.0,10912041,10000000 -1562696335.0,10851378,10000000 -1562696935.0,10869947,10000000 -1562697535.0,10883965,10000000 -1562698135.0,10946539,10000000 -1562698735.0,10965698,10000000 -1562699335.0,10924794,10000000 -1562699935.0,10898496,10000000 -1562700535.0,10914576,10000000 -1562701135.0,10878835,10000000 -1562701735.0,10839995,10000000 -1562702335.0,10835942,10000000 -1562702935.0,10791389,10000000 -1562703535.0,10839196,10000000 -1562704135.0,10836621,10000000 -1562704735.0,10915121,10000000 -1562705335.0,10933984,10000000 -1562705935.0,10940907,10000000 -1562706535.0,10933743,10000000 -1562707135.0,10934460,10000000 -1562707735.0,10972285,10000000 -1562708335.0,10987106,10000000 -1562708935.0,10986421,10000000 -1562709535.0,11057591,10000000 -1562710135.0,11063637,10000000 -1562710735.0,11052685,10000000 -1562711335.0,11021561,10000000 -1562711935.0,11044148,10000000 -1562712535.0,11070314,10000000 -1562713135.0,11060698,10000000 -1562713735.0,11063814,10000000 -1562714335.0,11023261,10000000 -1562714935.0,10985883,10000000 -1562715535.0,10996319,10000000 -1562716135.0,11004334,10000000 -1562716735.0,11049376,10000000 -1562717335.0,10981830,10000000 -1562717935.0,11031559,10000000 -1562718535.0,11029811,10000000 -1562719135.0,11089940,10000000 -1562719735.0,11166236,10000000 -1562720335.0,11156277,10000000 -1562720935.0,11256228,10000000 -1562721535.0,11323497,10000000 -1562722135.0,11343947,10000000 -1562722735.0,11386066,10000000 -1562723335.0,11357191,10000000 -1562723935.0,11323176,10000000 -1562724535.0,11306329,10000000 -1562725135.0,11227055,10000000 -1562725735.0,11213565,10000000 -1562726335.0,11237580,10000000 -1562726935.0,11220987,10000000 -1562727535.0,11277189,10000000 -1562728135.0,11278329,10000000 -1562728735.0,11313806,10000000 -1562729335.0,11360058,10000000 -1562729935.0,11327283,10000000 -1562730535.0,11274284,10000000 -1562731135.0,11233807,10000000 -1562731735.0,11349656,10000000 -1562732335.0,11308398,10000000 -1562732935.0,11291034,10000000 -1562733535.0,11305401,10000000 -1562734135.0,11233442,10000000 -1562734735.0,11225448,10000000 -1562735335.0,11229319,10000000 -1562735935.0,11261952,10000000 -1562736535.0,11213656,10000000 -1562737135.0,11208881,10000000 -1562737735.0,11242191,10000000 -1562738335.0,11333049,10000000 -1562738935.0,11360459,10000000 -1562739535.0,11376837,10000000 -1562740135.0,11425853,10000000 -1562740735.0,11488196,10000000 -1562741335.0,11380716,10000000 -1562741935.0,11416558,10000000 -1562742535.0,11432432,10000000 -1562743135.0,11441744,10000000 -1562743735.0,11427789,10000000 -1562744335.0,11391461,10000000 -1562744935.0,11423791,10000000 -1562745535.0,11443207,10000000 -1562746135.0,11400162,10000000 -1562746735.0,11447488,10000000 -1562747335.0,11450261,10000000 -1562747935.0,11354780,10000000 -1562748535.0,11394047,10000000 -1562749135.0,11472715,10000000 -1562749735.0,11388422,10000000 -1562750335.0,11394068,10000000 -1562750935.0,11371485,10000000 -1562751535.0,11493770,10000000 -1562752135.0,11489854,10000000 -1562752735.0,11423636,10000000 -1562753335.0,11415733,10000000 -1562753935.0,11422650,10000000 -1562754535.0,11345500,10000000 -1562755135.0,11346159,10000000 -1562755735.0,11303960,10000000 -1562756335.0,11307129,10000000 -1562756935.0,11283576,10000000 -1562757535.0,11358953,10000000 -1562758135.0,11371157,10000000 -1562758735.0,11338698,10000000 -1562759335.0,11368812,10000000 -1562759935.0,11365594,10000000 -1562760535.0,11414921,10000000 -1562761135.0,11331068,10000000 -1562761735.0,11417130,10000000 -1562762335.0,11382761,10000000 -1562762935.0,11342398,10000000 -1562763535.0,11325988,10000000 -1562764135.0,11335983,10000000 -1562764735.0,11279553,10000000 -1562765335.0,11244109,10000000 -1562765935.0,11236325,10000000 -1562766535.0,11284220,10000000 -1562767135.0,11263368,10000000 -1562767735.0,11305203,10000000 -1562768335.0,11322724,10000000 -1562768935.0,11317560,10000000 -1562769535.0,11283365,10000000 -1562770135.0,11279247,10000000 -1562770735.0,11282235,10000000 -1562771335.0,11340761,10000000 -1562771935.0,11326512,10000000 -1562772535.0,11310166,10000000 -1562773135.0,11347758,10000000 -1562773735.0,11289839,10000000 -1562774335.0,11320125,10000000 -1562774935.0,11309007,10000000 -1562775535.0,11333495,10000000 -1562776135.0,11359970,10000000 -1562776735.0,11384725,10000000 -1562777335.0,11413103,10000000 -1562777935.0,11388834,10000000 -1562778535.0,11416503,10000000 -1562779135.0,11438360,10000000 -1562779735.0,11471727,10000000 -1562780335.0,11491087,10000000 -1562780935.0,11557459,10000000 -1562781535.0,11534493,10000000 -1562782135.0,11489481,10000000 -1562782735.0,11548144,10000000 -1562783335.0,11617359,10000000 -1562783935.0,11622962,10000000 -1562784535.0,11567767,10000000 -1562785135.0,11555076,10000000 -1562785735.0,11568906,10000000 -1562786335.0,11507170,10000000 -1562786935.0,11449054,10000000 -1562787535.0,11426306,10000000 -1562788135.0,11421725,10000000 -1562788735.0,11436733,10000000 -1562789335.0,11479870,10000000 -1562789935.0,11464756,10000000 -1562790535.0,11459954,10000000 -1562791135.0,11494661,10000000 -1562791735.0,11519213,10000000 -1562792335.0,11527342,10000000 -1562792935.0,11413833,10000000 -1562793535.0,11498312,10000000 -1562794135.0,11427253,10000000 -1562794735.0,11373926,10000000 -1562795335.0,11454707,10000000 -1562795935.0,11403674,10000000 -1562796535.0,11391105,10000000 -1562797135.0,11420245,10000000 -1562797735.0,11438595,10000000 -1562798335.0,11407544,10000000 -1562798935.0,11473093,10000000 -1562799535.0,11445397,10000000 -1562800135.0,11456456,10000000 -1562800735.0,11462745,10000000 -1562801335.0,11413504,10000000 -1562801935.0,11439248,10000000 -1562802535.0,11531378,10000000 -1562803135.0,11598228,10000000 -1562803735.0,11573871,10000000 -1562804335.0,11603202,10000000 -1562804935.0,11582701,10000000 -1562805535.0,11659604,10000000 -1562806135.0,11720383,10000000 -1562806735.0,11639811,10000000 -1562807335.0,11538537,10000000 -1562807935.0,11558467,10000000 -1562808535.0,11536095,10000000 -1562809135.0,11525137,10000000 -1562809735.0,11520241,10000000 -1562810335.0,11515553,10000000 -1562810935.0,11551196,10000000 -1562811535.0,11668491,10000000 -1562812135.0,11632012,10000000 -1562812735.0,11647470,10000000 -1562813335.0,11624094,10000000 -1562813935.0,11591039,10000000 -1562814535.0,11615094,10000000 -1562815135.0,11531045,10000000 -1562815735.0,11600883,10000000 -1562816335.0,11608458,10000000 -1562816935.0,11629284,10000000 -1562817535.0,11599513,10000000 -1562818135.0,11539826,10000000 -1562818735.0,11597017,10000000 -1562819335.0,11606893,10000000 -1562819935.0,11631560,10000000 -1562820535.0,11687059,10000000 -1562821135.0,11690001,10000000 -1562821735.0,11692467,10000000 -1562822335.0,11689178,10000000 -1562822935.0,11606072,10000000 -1562823535.0,11643146,10000000 -1562824135.0,11688824,10000000 -1562824735.0,11658683,10000000 -1562825335.0,11629426,10000000 -1562825935.0,11622866,10000000 -1562826535.0,11625699,10000000 -1562827135.0,11537349,10000000 -1562827735.0,11527675,10000000 -1562828335.0,11544140,10000000 -1562828935.0,11524501,10000000 -1562829535.0,11459774,10000000 -1562830135.0,11442502,10000000 -1562830735.0,11449200,10000000 -1562831335.0,11387682,10000000 -1562831935.0,11264881,10000000 -1562832535.0,11288220,10000000 -1562833135.0,11283128,10000000 -1562833735.0,11282428,10000000 -1562834335.0,11269242,10000000 -1562834935.0,11275854,10000000 -1562835535.0,11263716,10000000 -1562836135.0,11383365,10000000 -1562836735.0,11388596,10000000 -1562837335.0,11416348,10000000 -1562837935.0,11390298,10000000 -1562838535.0,11350945,10000000 -1562839135.0,11291593,10000000 -1562839735.0,11330041,10000000 -1562840335.0,11324916,10000000 -1562840935.0,11262722,10000000 -1562841535.0,11272485,10000000 -1562842135.0,11292902,10000000 -1562842735.0,11280573,10000000 -1562843335.0,11361298,10000000 -1562843935.0,11398761,10000000 -1562844535.0,11419909,10000000 -1562845135.0,11334285,10000000 -1562845735.0,11346424,10000000 -1562846335.0,11352899,10000000 -1562846935.0,11319280,10000000 -1562847535.0,11283279,10000000 -1562848135.0,11277375,10000000 -1562848735.0,11350150,10000000 -1562849335.0,11372472,10000000 -1562849935.0,11303765,10000000 -1562850535.0,11262952,10000000 -1562851135.0,11296883,10000000 -1562851735.0,11268761,10000000 -1562852335.0,11306783,10000000 -1562852935.0,11329379,10000000 -1562853535.0,11281265,10000000 -1562854135.0,11199183,10000000 -1562854735.0,11213195,10000000 -1562855335.0,11160496,10000000 -1562855935.0,11155097,10000000 -1562856535.0,11218729,10000000 -1562857135.0,11217261,10000000 -1562857735.0,11151443,10000000 -1562858335.0,11194560,10000000 -1562858935.0,11134959,10000000 -1562859535.0,11158001,10000000 -1562860135.0,11173973,10000000 -1562860735.0,11167436,10000000 -1562861335.0,11100221,10000000 -1562861935.0,11103677,10000000 -1562862535.0,11105112,10000000 -1562863135.0,11091759,10000000 -1562863735.0,11210334,10000000 -1562864335.0,11199970,10000000 -1562864935.0,11163558,10000000 -1562865535.0,11147431,10000000 -1562866135.0,11120800,10000000 -1562866735.0,11093593,10000000 -1562867335.0,11068692,10000000 -1562867935.0,11015879,10000000 -1562868535.0,10971562,10000000 -1562869135.0,11002170,10000000 -1562869735.0,11029924,10000000 -1562870335.0,11070373,10000000 -1562870935.0,11094854,10000000 -1562871535.0,11096450,10000000 -1562872135.0,11099149,10000000 -1562872735.0,11085761,10000000 -1562873335.0,10987473,10000000 -1562873935.0,10971751,10000000 -1562874535.0,10931978,10000000 -1562875135.0,10964897,10000000 -1562875735.0,10991162,10000000 -1562876335.0,10970107,10000000 -1562876935.0,10987481,10000000 -1562877535.0,10991206,10000000 -1562878135.0,11057304,10000000 -1562878735.0,10992866,10000000 -1562879335.0,10935617,10000000 -1562879935.0,10901465,10000000 -1562880535.0,10920916,10000000 -1562881135.0,10966833,10000000 -1562881735.0,10927551,10000000 -1562882335.0,10883561,10000000 -1562882935.0,10885331,10000000 -1562883535.0,10887678,10000000 -1562884135.0,10866251,10000000 -1562884735.0,10875250,10000000 -1562885335.0,10849637,10000000 -1562885935.0,10813173,10000000 -1562886535.0,10869206,10000000 -1562887135.0,10847427,10000000 -1562887735.0,10868910,10000000 -1562888335.0,10881442,10000000 -1562888935.0,10833791,10000000 -1562889535.0,10853405,10000000 -1562890135.0,10873896,10000000 -1562890735.0,10887116,10000000 -1562891335.0,10856635,10000000 -1562891935.0,10920277,10000000 -1562892535.0,10928572,10000000 -1562893135.0,10998934,10000000 -1562893735.0,10976149,10000000 -1562894335.0,10900978,10000000 -1562894935.0,10884651,10000000 -1562895535.0,10929180,10000000 -1562896135.0,10944067,10000000 -1562896735.0,10999330,10000000 -1562897335.0,11031845,10000000 -1562897935.0,11001682,10000000 -1562898535.0,11038555,10000000 -1562899135.0,11025395,10000000 -1562899735.0,11035372,10000000 -1562900335.0,11118035,10000000 -1562900935.0,11163487,10000000 -1562901535.0,11195514,10000000 -1562902135.0,11145610,10000000 -1562902735.0,11144405,10000000 -1562903335.0,11121864,10000000 -1562903935.0,11022113,10000000 -1562904535.0,11074677,10000000 -1562905135.0,11030751,10000000 -1562905735.0,11144718,10000000 -1562906335.0,11039504,10000000 -1562906935.0,11058782,10000000 -1562907535.0,11047693,10000000 -1562908135.0,11042826,10000000 -1562908735.0,11064678,10000000 -1562909335.0,11043375,10000000 -1562909935.0,11061849,10000000 -1562910535.0,11052924,10000000 -1562911135.0,11048889,10000000 -1562911735.0,11073134,10000000 -1562912335.0,11142918,10000000 -1562912935.0,11216410,10000000 -1562913535.0,11191302,10000000 -1562914135.0,11202715,10000000 -1562914735.0,11234734,10000000 -1562915335.0,11261751,10000000 -1562915935.0,11285058,10000000 -1562916535.0,11239713,10000000 -1562917135.0,11225613,10000000 -1562917735.0,11206887,10000000 -1562918335.0,11214056,10000000 -1562918935.0,11238708,10000000 -1562919535.0,11184436,10000000 -1562920135.0,11241722,10000000 -1562920735.0,11258100,10000000 -1562921335.0,11209957,10000000 -1562921935.0,11171449,10000000 -1562922535.0,11145263,10000000 -1562923135.0,11182694,10000000 -1562923735.0,11158814,10000000 -1562924335.0,11132898,10000000 -1562924935.0,11120312,10000000 -1562925535.0,11104884,10000000 -1562926135.0,11140710,10000000 -1562926735.0,11157168,10000000 -1562927335.0,11126615,10000000 -1562927935.0,11137683,10000000 -1562928535.0,11015019,10000000 -1562929135.0,11006231,10000000 -1562929735.0,10990149,10000000 -1562930335.0,10915773,10000000 -1562930935.0,10827710,10000000 -1562931535.0,10840670,10000000 -1562932135.0,10814473,10000000 -1562932735.0,10837857,10000000 -1562933335.0,10840712,10000000 -1562933935.0,10870483,10000000 -1562934535.0,10880724,10000000 -1562935135.0,10838675,10000000 -1562935735.0,10820625,10000000 -1562936335.0,10952554,10000000 -1562936935.0,10916742,10000000 -1562937535.0,10942049,10000000 -1562938135.0,10919406,10000000 -1562938735.0,10947079,10000000 -1562939335.0,10956973,10000000 -1562939935.0,10939845,10000000 -1562940535.0,11005161,10000000 -1562941135.0,11007956,10000000 -1562941735.0,10917761,10000000 -1562942335.0,10960770,10000000 -1562942935.0,10980669,10000000 -1562943535.0,11030695,10000000 -1562944135.0,10998488,10000000 -1562944735.0,10958404,10000000 -1562945335.0,10880134,10000000 -1562945935.0,10928141,10000000 -1562946535.0,10991433,10000000 -1562947135.0,11010547,10000000 -1562947735.0,11107649,10000000 -1562948335.0,11106425,10000000 -1562948935.0,11100642,10000000 -1562949535.0,11066295,10000000 -1562950135.0,11153620,10000000 -1562950735.0,11187184,10000000 -1562951335.0,11161603,10000000 -1562951935.0,11198991,10000000 -1562952535.0,11130124,10000000 -1562953135.0,11166675,10000000 -1562953735.0,11108264,10000000 -1562954335.0,11119944,10000000 -1562954935.0,11126205,10000000 -1562955535.0,11043215,10000000 -1562956135.0,11010043,10000000 -1562956735.0,11031286,10000000 -1562957335.0,10918653,10000000 -1562957935.0,10892214,10000000 -1562958535.0,10912520,10000000 -1562959135.0,10997423,10000000 -1562959735.0,11006934,10000000 -1562960335.0,11040940,10000000 -1562960935.0,11150626,10000000 -1562961535.0,11171678,10000000 -1562962135.0,11168650,10000000 -1562962735.0,11147959,10000000 -1562963335.0,11140191,10000000 -1562963935.0,11152823,10000000 -1562964535.0,11201445,10000000 -1562965135.0,11219405,10000000 -1562965735.0,11238060,10000000 -1562966335.0,11196966,10000000 -1562966935.0,11201984,10000000 -1562967535.0,11231569,10000000 -1562968135.0,11215774,10000000 -1562968735.0,11205272,10000000 -1562969335.0,11216003,10000000 -1562969935.0,11159065,10000000 -1562970535.0,11153151,10000000 -1562971135.0,11221632,10000000 -1562971735.0,11211332,10000000 -1562972335.0,11188099,10000000 -1562972935.0,11171930,10000000 -1562973535.0,11192855,10000000 -1562974135.0,11227573,10000000 -1562974735.0,11281245,10000000 -1562975335.0,11280093,10000000 -1562975935.0,11330242,10000000 -1562976535.0,11299633,10000000 -1562977135.0,11344428,10000000 -1562977735.0,11399995,10000000 -1562978335.0,11379451,10000000 -1562978935.0,11418765,10000000 -1562979535.0,11477121,10000000 -1562980135.0,11513565,10000000 -1562980735.0,11535434,10000000 -1562981335.0,11572620,10000000 -1562981935.0,11533470,10000000 -1562982535.0,11537508,10000000 -1562983135.0,11497707,10000000 -1562983735.0,11493959,10000000 -1562984335.0,11472355,10000000 -1562984935.0,11511084,10000000 -1562985535.0,11571879,10000000 -1562986135.0,11639983,10000000 -1562986735.0,11676814,10000000 -1562987335.0,11689146,10000000 -1562987935.0,11757437,10000000 -1562988535.0,11760289,10000000 -1562989135.0,11746406,10000000 -1562989735.0,11737468,10000000 -1562990335.0,11732298,10000000 -1562990935.0,11733608,10000000 -1562991535.0,11844730,10000000 -1562992135.0,11846898,10000000 -1562992735.0,11797386,10000000 -1562993335.0,11861844,10000000 -1562993935.0,11868129,10000000 -1562994535.0,11821178,10000000 -1562995135.0,11802559,10000000 -1562995735.0,11831341,10000000 -1562996335.0,11825383,10000000 -1562996935.0,11755484,10000000 -1562997535.0,11750379,10000000 -1562998135.0,11760309,10000000 -1562998735.0,11723715,10000000 -1562999335.0,11791901,10000000 -1562999935.0,11804098,10000000 -1563000535.0,11823599,10000000 -1563001135.0,11914325,10000000 -1563001735.0,11929719,10000000 -1563002335.0,11965387,10000000 -1563002935.0,11959362,10000000 -1563003535.0,11947722,10000000 -1563004135.0,11996747,10000000 -1563004735.0,11997368,10000000 -1563005335.0,11945818,10000000 -1563005935.0,11958984,10000000 -1563006535.0,11886559,10000000 -1563007135.0,11867726,10000000 -1563007735.0,11874966,10000000 -1563008335.0,11836484,10000000 -1563008935.0,11766362,10000000 -1563009535.0,11770435,10000000 -1563010135.0,11690511,10000000 -1563010735.0,11660922,10000000 -1563011335.0,11665150,10000000 -1563011935.0,11645281,10000000 -1563012535.0,11677573,10000000 -1563013135.0,11693668,10000000 -1563013735.0,11754038,10000000 -1563014335.0,11730486,10000000 -1563014935.0,11718982,10000000 -1563015535.0,11787124,10000000 -1563016135.0,11820912,10000000 -1563016735.0,11759380,10000000 -1563017335.0,11740784,10000000 -1563017935.0,11712683,10000000 -1563018535.0,11735096,10000000 -1563019135.0,11717731,10000000 -1563019735.0,11692779,10000000 -1563020335.0,11718253,10000000 -1563020935.0,11761695,10000000 -1563021535.0,11678780,10000000 -1563022135.0,11675185,10000000 -1563022735.0,11746160,10000000 -1563023335.0,11759553,10000000 -1563023935.0,11735753,10000000 -1563024535.0,11779251,10000000 -1563025135.0,11723853,10000000 -1563025735.0,11715673,10000000 -1563026335.0,11751237,10000000 -1563026935.0,11864084,10000000 -1563027535.0,11950416,10000000 -1563028135.0,12050878,10000000 -1563028735.0,12013195,10000000 -1563029335.0,11953166,10000000 -1563029935.0,11989852,10000000 -1563030535.0,11929398,10000000 -1563031135.0,11894157,10000000 -1563031735.0,11900062,10000000 -1563032335.0,11905573,10000000 -1563032935.0,11959659,10000000 -1563033535.0,11864662,10000000 -1563034135.0,11844872,10000000 -1563034735.0,11908007,10000000 -1563035335.0,11866493,10000000 -1563035935.0,11897406,10000000 -1563036535.0,11850514,10000000 -1563037135.0,11898778,10000000 -1563037735.0,11933218,10000000 -1563038335.0,11983222,10000000 -1563038935.0,11976311,10000000 -1563039535.0,11993899,10000000 -1563040135.0,11934662,10000000 -1563040735.0,11922378,10000000 -1563041335.0,11998525,10000000 -1563041935.0,12062652,10000000 -1563042535.0,12153213,10000000 -1563043135.0,12265735,10000000 -1563043735.0,12264519,10000000 -1563044335.0,12265442,10000000 -1563044935.0,12200467,10000000 -1563045535.0,12168611,10000000 -1563046135.0,12213002,10000000 -1563046735.0,12152094,10000000 -1563047335.0,12168331,10000000 -1563047935.0,12097740,10000000 -1563048535.0,12152139,10000000 -1563049135.0,12117627,10000000 -1563049735.0,12075218,10000000 -1563050335.0,12101761,10000000 -1563050935.0,12129894,10000000 -1563051535.0,12138648,10000000 -1563052135.0,12194353,10000000 -1563052735.0,12189380,10000000 -1563053335.0,12249967,10000000 -1563053935.0,12315512,10000000 -1563054535.0,12263573,10000000 -1563055135.0,12309447,10000000 -1563055735.0,12339157,10000000 -1563056335.0,12379992,10000000 -1563056935.0,12395705,10000000 -1563057535.0,12391189,10000000 -1563058135.0,12325957,10000000 -1563058735.0,12334444,10000000 -1563059335.0,12296760,10000000 -1563059935.0,12245306,10000000 -1563060535.0,12274207,10000000 -1563061135.0,12261406,10000000 -1563061735.0,12275729,10000000 -1563062335.0,12274973,10000000 -1563062935.0,12302681,10000000 -1563063535.0,12321154,10000000 -1563064135.0,12307188,10000000 -1563064735.0,12261459,10000000 -1563065335.0,12334734,10000000 -1563065935.0,12253862,10000000 -1563066535.0,12222119,10000000 -1563067135.0,12307978,10000000 -1563067735.0,12315227,10000000 -1563068335.0,12218479,10000000 -1563068935.0,12151630,10000000 -1563069535.0,12233055,10000000 -1563070135.0,12277047,10000000 -1563070735.0,12236672,10000000 -1563071335.0,12230546,10000000 -1563071935.0,12246596,10000000 -1563072535.0,12213717,10000000 -1563073135.0,12228562,10000000 -1563073735.0,12261874,10000000 -1563074335.0,12236110,10000000 -1563074935.0,12211815,10000000 -1563075535.0,12184941,10000000 -1563076135.0,12198011,10000000 -1563076735.0,12131894,10000000 -1563077335.0,12176392,10000000 -1563077935.0,12207115,10000000 -1563078535.0,12243765,10000000 -1563079135.0,12236198,10000000 -1563079735.0,12181298,10000000 -1563080335.0,12243871,10000000 -1563080935.0,12182188,10000000 -1563081535.0,12184090,10000000 -1563082135.0,12203194,10000000 -1563082735.0,12175179,10000000 -1563083335.0,12067203,10000000 -1563083935.0,12036078,10000000 -1563084535.0,12083504,10000000 -1563085135.0,12108204,10000000 -1563085735.0,12016399,10000000 -1563086335.0,12030815,10000000 -1563086935.0,12041599,10000000 -1563087535.0,12040830,10000000 -1563088135.0,12070032,10000000 -1563088735.0,12040880,10000000 -1563089335.0,12002737,10000000 -1563089935.0,12062163,10000000 -1563090535.0,12068932,10000000 -1563091135.0,12055602,10000000 -1563091735.0,12002632,10000000 -1563092335.0,11934414,10000000 -1563092935.0,11921814,10000000 -1563093535.0,11851281,10000000 -1563094135.0,11893191,10000000 -1563094735.0,11950695,10000000 -1563095335.0,11984885,10000000 -1563095935.0,11990946,10000000 -1563096535.0,11999944,10000000 -1563097135.0,12035866,10000000 -1563097735.0,11961688,10000000 -1563098335.0,12001536,10000000 -1563098935.0,12090444,10000000 -1563099535.0,12003081,10000000 -1563100135.0,12083242,10000000 -1563100735.0,12081225,10000000 -1563101335.0,12068637,10000000 -1563101935.0,12069511,10000000 -1563102535.0,12031918,10000000 -1563103135.0,11964907,10000000 -1563103735.0,11960773,10000000 -1563104335.0,12059827,10000000 -1563104935.0,12037729,10000000 -1563105535.0,11975393,10000000 -1563106135.0,12053354,10000000 -1563106735.0,12135188,10000000 -1563107335.0,12110400,10000000 -1563107935.0,12071157,10000000 -1563108535.0,12160372,10000000 -1563109135.0,12139613,10000000 -1563109735.0,12172707,10000000 -1563110335.0,12184490,10000000 -1563110935.0,12112182,10000000 -1563111535.0,12095615,10000000 -1563112135.0,11972906,10000000 -1563112735.0,11894381,10000000 -1563113335.0,12006844,10000000 -1563113935.0,11960639,10000000 -1563114535.0,11901464,10000000 -1563115135.0,11901976,10000000 -1563115735.0,11942305,10000000 -1563116335.0,12013531,10000000 -1563116935.0,12018381,10000000 -1563117535.0,12069432,10000000 -1563118135.0,12156997,10000000 -1563118735.0,12164176,10000000 -1563119335.0,12176376,10000000 -1563119935.0,12190311,10000000 -1563120535.0,12238371,10000000 -1563121135.0,12191649,10000000 -1563121735.0,12163565,10000000 -1563122335.0,12047138,10000000 -1563122935.0,12094843,10000000 -1563123535.0,12127047,10000000 -1563124135.0,12191191,10000000 -1563124735.0,12299987,10000000 -1563125335.0,12306266,10000000 -1563125935.0,12217134,10000000 -1563126535.0,12291497,10000000 -1563127135.0,12386386,10000000 -1563127735.0,12375202,10000000 -1563128335.0,12455518,10000000 -1563128935.0,12356757,10000000 -1563129535.0,12406441,10000000 -1563130135.0,12448609,10000000 -1563130735.0,12402296,10000000 -1563131335.0,12481413,10000000 -1563131935.0,12440136,10000000 -1563132535.0,12412432,10000000 -1563133135.0,12394313,10000000 -1563133735.0,12381162,10000000 -1563134335.0,12382580,10000000 -1563134935.0,12445747,10000000 -1563135535.0,12444295,10000000 -1563136135.0,12413369,10000000 -1563136735.0,12391631,10000000 -1563137335.0,12356219,10000000 -1563137935.0,12410908,10000000 -1563138535.0,12415866,10000000 -1563139135.0,12397526,10000000 -1563139735.0,12444920,10000000 -1563140335.0,12540318,10000000 -1563140935.0,12530403,10000000 -1563141535.0,12605363,10000000 -1563142135.0,12582596,10000000 -1563142735.0,12621013,10000000 -1563143335.0,12635359,10000000 -1563143935.0,12678792,10000000 -1563144535.0,12622522,10000000 -1563145135.0,12541016,10000000 -1563145735.0,12509615,10000000 -1563146335.0,12474072,10000000 -1563146935.0,12514997,10000000 -1563147535.0,12584614,10000000 -1563148135.0,12500110,10000000 -1563148735.0,12406964,10000000 -1563149335.0,12386916,10000000 -1563149935.0,12387945,10000000 -1563150535.0,12393373,10000000 -1563151135.0,12445122,10000000 -1563151735.0,12422529,10000000 -1563152335.0,12462914,10000000 -1563152935.0,12474550,10000000 -1563153535.0,12530852,10000000 -1563154135.0,12519529,10000000 -1563154735.0,12440827,10000000 -1563155335.0,12425498,10000000 -1563155935.0,12391397,10000000 -1563156535.0,12447280,10000000 -1563157135.0,12443687,10000000 -1563157735.0,12479236,10000000 -1563158335.0,12425173,10000000 -1563158935.0,12368821,10000000 -1563159535.0,12293949,10000000 -1563160135.0,12273816,10000000 -1563160735.0,12236150,10000000 -1563161335.0,12108232,10000000 -1563161935.0,12059238,10000000 -1563162535.0,12060603,10000000 -1563163135.0,11992488,10000000 -1563163735.0,11993119,10000000 -1563164335.0,11863958,10000000 -1563164935.0,11833738,10000000 -1563165535.0,11884410,10000000 -1563166135.0,11863476,10000000 -1563166735.0,11853400,10000000 -1563167335.0,11946502,10000000 -1563167935.0,11910428,10000000 -1563168535.0,11864576,10000000 -1563169135.0,11874435,10000000 -1563169735.0,11777511,10000000 -1563170335.0,11793973,10000000 -1563170935.0,11778641,10000000 -1563171535.0,11831122,10000000 -1563172135.0,11853522,10000000 -1563172735.0,11849630,10000000 -1563173335.0,11848982,10000000 -1563173935.0,11868156,10000000 -1563174535.0,11752759,10000000 -1563175135.0,11728568,10000000 -1563175735.0,11737682,10000000 -1563176335.0,11787748,10000000 -1563176935.0,11755961,10000000 -1563177535.0,11834165,10000000 -1563178135.0,11898102,10000000 -1563178735.0,11889548,10000000 -1563179335.0,11839295,10000000 -1563179935.0,11843589,10000000 -1563180535.0,11861539,10000000 -1563181135.0,11786279,10000000 -1563181735.0,11792929,10000000 -1563182335.0,11806229,10000000 -1563182935.0,11795853,10000000 -1563183535.0,11902248,10000000 -1563184135.0,11888673,10000000 -1563184735.0,11887329,10000000 -1563185335.0,11922115,10000000 -1563185935.0,11868084,10000000 -1563186535.0,11934967,10000000 -1563187135.0,11924346,10000000 -1563187735.0,11900757,10000000 -1563188335.0,11805182,10000000 -1563188935.0,11821970,10000000 -1563189535.0,11794498,10000000 -1563190135.0,11769215,10000000 -1563190735.0,11846016,10000000 -1563191335.0,11760950,10000000 -1563191935.0,11784365,10000000 -1563192535.0,11770349,10000000 -1563193135.0,11689969,10000000 -1563193735.0,11672214,10000000 -1563194335.0,11658610,10000000 -1563194935.0,11745035,10000000 -1563195535.0,11712431,10000000 -1563196135.0,11719887,10000000 -1563196735.0,11687910,10000000 -1563197335.0,11719495,10000000 -1563197935.0,11756668,10000000 -1563198535.0,11757759,10000000 -1563199135.0,11719040,10000000 -1563199735.0,11667633,10000000 -1563200335.0,11658129,10000000 -1563200935.0,11510802,10000000 -1563201535.0,11514007,10000000 -1563202135.0,11562748,10000000 -1563202735.0,11517555,10000000 -1563203335.0,11558905,10000000 -1563203935.0,11599677,10000000 -1563204535.0,11568983,10000000 -1563205135.0,11519996,10000000 -1563205735.0,11570959,10000000 -1563206335.0,11584187,10000000 -1563206935.0,11568905,10000000 -1563207535.0,11571545,10000000 -1563208135.0,11514912,10000000 -1563208735.0,11536842,10000000 -1563209335.0,11497900,10000000 -1563209935.0,11536670,10000000 -1563210535.0,11466743,10000000 -1563211135.0,11434112,10000000 -1563211735.0,11452970,10000000 -1563212335.0,11454809,10000000 -1563212935.0,11545441,10000000 -1563213535.0,11579442,10000000 -1563214135.0,11612589,10000000 -1563214735.0,11620881,10000000 -1563215335.0,11620269,10000000 -1563215935.0,11592299,10000000 -1563216535.0,11573161,10000000 -1563217135.0,11550077,10000000 -1563217735.0,11543621,10000000 -1563218335.0,11436059,10000000 -1563218935.0,11393581,10000000 -1563219535.0,11420098,10000000 -1563220135.0,11451680,10000000 -1563220735.0,11446357,10000000 -1563221335.0,11431750,10000000 -1563221935.0,11421159,10000000 -1563222535.0,11422120,10000000 -1563223135.0,11471402,10000000 -1563223735.0,11460646,10000000 -1563224335.0,11558315,10000000 -1563224935.0,11503997,10000000 -1563225535.0,11570225,10000000 -1563226135.0,11567376,10000000 -1563226735.0,11580232,10000000 -1563227335.0,11558255,10000000 -1563227935.0,11573999,10000000 -1563228535.0,11571984,10000000 -1563229135.0,11590246,10000000 -1563229735.0,11620615,10000000 -1563230335.0,11590831,10000000 -1563230935.0,11555335,10000000 -1563231535.0,11519661,10000000 -1563232135.0,11485099,10000000 -1563232735.0,11388246,10000000 -1563233335.0,11474388,10000000 -1563233935.0,11505820,10000000 -1563234535.0,11546298,10000000 -1563235135.0,11534507,10000000 -1563235735.0,11598586,10000000 -1563236335.0,11613973,10000000 -1563236935.0,11630641,10000000 -1563237535.0,11604135,10000000 -1563238135.0,11542812,10000000 -1563238735.0,11548929,10000000 -1563239335.0,11535217,10000000 -1563239935.0,11590964,10000000 -1563240535.0,11547542,10000000 -1563241135.0,11554501,10000000 -1563241735.0,11553710,10000000 -1563242335.0,11541161,10000000 -1563242935.0,11632748,10000000 -1563243535.0,11587950,10000000 -1563244135.0,11613510,10000000 -1563244735.0,11645253,10000000 -1563245335.0,11625115,10000000 -1563245935.0,11617918,10000000 -1563246535.0,11659711,10000000 -1563247135.0,11669838,10000000 -1563247735.0,11694596,10000000 -1563248335.0,11727371,10000000 -1563248935.0,11751935,10000000 -1563249535.0,11749112,10000000 -1563250135.0,11743721,10000000 -1563250735.0,11749202,10000000 -1563251335.0,11768903,10000000 -1563251935.0,11761962,10000000 -1563252535.0,11837251,10000000 -1563253135.0,11881746,10000000 -1563253735.0,11868294,10000000 -1563254335.0,11810116,10000000 -1563254935.0,11836743,10000000 -1563255535.0,11811401,10000000 -1563256135.0,11736549,10000000 -1563256735.0,11728430,10000000 -1563257335.0,11749565,10000000 -1563257935.0,11762016,10000000 -1563258535.0,11655229,10000000 -1563259135.0,11697494,10000000 -1563259735.0,11674874,10000000 -1563260335.0,11654501,10000000 -1563260935.0,11685400,10000000 -1563261535.0,11659448,10000000 -1563262135.0,11681327,10000000 -1563262735.0,11667419,10000000 -1563263335.0,11684878,10000000 -1563263935.0,11643014,10000000 -1563264535.0,11570716,10000000 -1563265135.0,11498908,10000000 -1563265735.0,11594050,10000000 -1563266335.0,11588687,10000000 -1563266935.0,11567621,10000000 -1563267535.0,11520983,10000000 -1563268135.0,11547294,10000000 -1563268735.0,11495114,10000000 -1563269335.0,11479287,10000000 -1563269935.0,11453513,10000000 -1563270535.0,11445927,10000000 -1563271135.0,11341200,10000000 -1563271735.0,11350852,10000000 -1563272335.0,11351690,10000000 -1563272935.0,11298773,10000000 -1563273535.0,11295126,10000000 -1563274135.0,11347620,10000000 -1563274735.0,11341465,10000000 -1563275335.0,11309083,10000000 -1563275935.0,11319441,10000000 -1563276535.0,11333283,10000000 -1563277135.0,11287006,10000000 -1563277735.0,11275591,10000000 -1563278335.0,11223915,10000000 -1563278935.0,11214959,10000000 -1563279535.0,11212538,10000000 -1563280135.0,11178236,10000000 -1563280735.0,11184764,10000000 -1563281335.0,11194672,10000000 -1563281935.0,11116604,10000000 -1563282535.0,11157630,10000000 -1563283135.0,11227958,10000000 -1563283735.0,11129659,10000000 -1563284335.0,11174666,10000000 -1563284935.0,11178604,10000000 -1563285535.0,11123300,10000000 -1563286135.0,11089912,10000000 -1563286735.0,11061578,10000000 -1563287335.0,11034397,10000000 -1563287935.0,11108118,10000000 -1563288535.0,11159711,10000000 -1563289135.0,11270695,10000000 -1563289735.0,11257021,10000000 -1563290335.0,11263082,10000000 -1563290935.0,11229428,10000000 -1563291535.0,11193921,10000000 -1563292135.0,11172265,10000000 -1563292735.0,11199172,10000000 -1563293335.0,11303698,10000000 -1563293935.0,11303178,10000000 -1563294535.0,11364554,10000000 -1563295135.0,11360932,10000000 -1563295735.0,11300368,10000000 -1563296335.0,11280043,10000000 -1563296935.0,11239301,10000000 -1563297535.0,11246643,10000000 -1563298135.0,11265040,10000000 -1563298735.0,11220783,10000000 -1563299335.0,11253707,10000000 -1563299935.0,11293800,10000000 -1563300535.0,11323274,10000000 -1563301135.0,11356789,10000000 -1563301735.0,11300804,10000000 -1563302335.0,11304196,10000000 -1563302935.0,11327345,10000000 -1563303535.0,11379389,10000000 -1563304135.0,11407910,10000000 -1563304735.0,11496677,10000000 -1563305335.0,11507885,10000000 -1563305935.0,11504348,10000000 -1563306535.0,11489815,10000000 -1563307135.0,11436760,10000000 -1563307735.0,11428635,10000000 -1563308335.0,11569809,10000000 -1563308935.0,11644769,10000000 -1563309535.0,11689848,10000000 -1563310135.0,11703512,10000000 -1563310735.0,11719035,10000000 -1563311335.0,11785851,10000000 -1563311935.0,11785418,10000000 -1563312535.0,11787605,10000000 -1563313135.0,11830699,10000000 -1563313735.0,11816887,10000000 -1563314335.0,11893553,10000000 -1563314935.0,11858299,10000000 -1563315535.0,11908663,10000000 -1563316135.0,11908122,10000000 -1563316735.0,11931658,10000000 -1563317335.0,11941835,10000000 -1563317935.0,11944300,10000000 -1563318535.0,11998831,10000000 -1563319135.0,11956106,10000000 -1563319735.0,11925553,10000000 -1563320335.0,11775878,10000000 -1563320935.0,11655698,10000000 -1563321535.0,11653923,10000000 -1563322135.0,11639138,10000000 -1563322735.0,11642641,10000000 -1563323335.0,11663493,10000000 -1563323935.0,11640652,10000000 -1563324535.0,11630030,10000000 -1563325135.0,11699502,10000000 -1563325735.0,11711755,10000000 -1563326335.0,11662674,10000000 -1563326935.0,11653152,10000000 -1563327535.0,11625020,10000000 -1563328135.0,11625319,10000000 -1563328735.0,11573585,10000000 -1563329335.0,11549390,10000000 -1563329935.0,11516548,10000000 -1563330535.0,11494947,10000000 -1563331135.0,11541292,10000000 -1563331735.0,11541656,10000000 -1563332335.0,11607535,10000000 -1563332935.0,11614973,10000000 -1563333535.0,11524930,10000000 -1563334135.0,11516758,10000000 -1563334735.0,11511139,10000000 -1563335335.0,11474572,10000000 -1563335935.0,11420304,10000000 -1563336535.0,11494368,10000000 -1563337135.0,11482880,10000000 -1563337735.0,11482624,10000000 -1563338335.0,11532076,10000000 -1563338935.0,11571440,10000000 -1563339535.0,11588575,10000000 -1563340135.0,11605299,10000000 -1563340735.0,11650266,10000000 -1563341335.0,11621493,10000000 -1563341935.0,11609938,10000000 -1563342535.0,11604533,10000000 -1563343135.0,11554387,10000000 -1563343735.0,11490950,10000000 -1563344335.0,11534179,10000000 -1563344935.0,11485982,10000000 -1563345535.0,11446456,10000000 -1563346135.0,11464746,10000000 -1563346735.0,11417606,10000000 -1563347335.0,11426994,10000000 -1563347935.0,11424767,10000000 -1563348535.0,11370268,10000000 -1563349135.0,11376338,10000000 -1563349735.0,11365326,10000000 -1563350335.0,11396566,10000000 -1563350935.0,11390959,10000000 -1563351535.0,11409333,10000000 -1563352135.0,11439154,10000000 -1563352735.0,11377366,10000000 -1563353335.0,11321042,10000000 -1563353935.0,11307998,10000000 -1563354535.0,11310108,10000000 -1563355135.0,11395421,10000000 -1563355735.0,11356226,10000000 -1563356335.0,11402423,10000000 -1563356935.0,11432589,10000000 -1563357535.0,11400678,10000000 -1563358135.0,11402849,10000000 -1563358735.0,11417661,10000000 -1563359335.0,11444621,10000000 -1563359935.0,11410714,10000000 -1563360535.0,11388541,10000000 -1563361135.0,11400025,10000000 -1563361735.0,11315665,10000000 -1563362335.0,11315516,10000000 -1563362935.0,11305331,10000000 -1563363535.0,11287473,10000000 -1563364135.0,11274769,10000000 -1563364735.0,11288402,10000000 -1563365335.0,11283569,10000000 -1563365935.0,11339711,10000000 -1563366535.0,11352358,10000000 -1563367135.0,11285800,10000000 -1563367735.0,11280492,10000000 -1563368335.0,11265565,10000000 -1563368935.0,11234434,10000000 -1563369535.0,11330575,10000000 -1563370135.0,11261185,10000000 -1563370735.0,11231543,10000000 -1563371335.0,11209702,10000000 -1563371935.0,11281703,10000000 -1563372535.0,11219413,10000000 -1563373135.0,11296541,10000000 -1563373735.0,11233144,10000000 -1563374335.0,11187536,10000000 -1563374935.0,11185451,10000000 -1563375535.0,11220351,10000000 -1563376135.0,11248909,10000000 -1563376735.0,11240611,10000000 -1563377335.0,11299435,10000000 -1563377935.0,11308535,10000000 -1563378535.0,11300372,10000000 -1563379135.0,11256911,10000000 -1563379735.0,11285281,10000000 -1563380335.0,11252272,10000000 -1563380935.0,11266610,10000000 -1563381535.0,11267592,10000000 -1563382135.0,11319161,10000000 -1563382735.0,11375672,10000000 -1563383335.0,11339770,10000000 -1563383935.0,11441903,10000000 -1563384535.0,11531710,10000000 -1563385135.0,11499679,10000000 -1563385735.0,11458152,10000000 -1563386335.0,11428687,10000000 -1563386935.0,11383554,10000000 -1563387535.0,11458863,10000000 -1563388135.0,11394057,10000000 -1563388735.0,11417379,10000000 -1563389335.0,11416647,10000000 -1563389935.0,11414413,10000000 -1563390535.0,11407442,10000000 -1563391135.0,11476512,10000000 -1563391735.0,11556588,10000000 -1563392335.0,11565045,10000000 -1563392935.0,11573656,10000000 -1563393535.0,11619441,10000000 -1563394135.0,11614296,10000000 -1563394735.0,11546838,10000000 -1563395335.0,11577536,10000000 -1563395935.0,11569022,10000000 -1563396535.0,11519624,10000000 -1563397135.0,11612438,10000000 -1563397735.0,11654319,10000000 -1563398335.0,11709372,10000000 -1563398935.0,11710461,10000000 -1563399535.0,11714806,10000000 -1563400135.0,11726767,10000000 -1563400735.0,11657839,10000000 -1563401335.0,11689213,10000000 -1563401935.0,11740922,10000000 -1563402535.0,11685649,10000000 -1563403135.0,11674709,10000000 -1563403735.0,11729010,10000000 -1563404335.0,11806493,10000000 -1563404935.0,11731481,10000000 -1563405535.0,11726450,10000000 -1563406135.0,11741320,10000000 -1563406735.0,11747256,10000000 -1563407335.0,11769355,10000000 -1563407935.0,11798245,10000000 -1563408535.0,11816745,10000000 -1563409135.0,11827388,10000000 -1563409735.0,11803655,10000000 -1563410335.0,11854118,10000000 -1563410935.0,11819130,10000000 -1563411535.0,11768278,10000000 -1563412135.0,11758781,10000000 -1563412735.0,11841261,10000000 -1563413335.0,11735124,10000000 -1563413935.0,11798121,10000000 -1563414535.0,11811591,10000000 -1563415135.0,11799091,10000000 -1563415735.0,11761935,10000000 -1563416335.0,11738815,10000000 -1563416935.0,11838568,10000000 -1563417535.0,11861126,10000000 -1563418135.0,11920584,10000000 -1563418735.0,11929388,10000000 -1563419335.0,11898173,10000000 -1563419935.0,11905300,10000000 -1563420535.0,11929217,10000000 -1563421135.0,11927604,10000000 -1563421735.0,11885944,10000000 -1563422335.0,11815164,10000000 -1563422935.0,11803667,10000000 -1563423535.0,11868706,10000000 -1563424135.0,11922043,10000000 -1563424735.0,12002825,10000000 -1563425335.0,12062779,10000000 -1563425935.0,12075678,10000000 -1563426535.0,12078707,10000000 -1563427135.0,12095657,10000000 -1563427735.0,11959716,10000000 -1563428335.0,11942152,10000000 -1563428935.0,11962465,10000000 -1563429535.0,11974386,10000000 -1563430135.0,11993990,10000000 -1563430735.0,12031154,10000000 -1563431335.0,11999627,10000000 -1563431935.0,11938658,10000000 -1563432535.0,11947626,10000000 -1563433135.0,11914472,10000000 -1563433735.0,11893124,10000000 -1563434335.0,11874791,10000000 -1563434935.0,11929984,10000000 -1563435535.0,11948636,10000000 -1563436135.0,11928299,10000000 -1563436735.0,11932554,10000000 -1563437335.0,11887775,10000000 -1563437935.0,11872945,10000000 -1563438535.0,11839754,10000000 -1563439135.0,11871534,10000000 -1563439735.0,11892149,10000000 -1563440335.0,12017186,10000000 -1563440935.0,12102893,10000000 -1563441535.0,12051977,10000000 -1563442135.0,12047080,10000000 -1563442735.0,11974403,10000000 -1563443335.0,12090221,10000000 -1563443935.0,12130009,10000000 -1563444535.0,12263231,10000000 -1563445135.0,12232923,10000000 -1563445735.0,12180709,10000000 -1563446335.0,12210700,10000000 -1563446935.0,12282779,10000000 -1563447535.0,12269945,10000000 -1563448135.0,12226307,10000000 -1563448735.0,12224498,10000000 -1563449335.0,12156061,10000000 -1563449935.0,12203960,10000000 -1563450535.0,12126028,10000000 -1563451135.0,12135162,10000000 -1563451735.0,12208124,10000000 -1563452335.0,12177665,10000000 -1563452935.0,12227934,10000000 -1563453535.0,12305444,10000000 -1563454135.0,12339580,10000000 -1563454735.0,12311679,10000000 -1563455335.0,12237605,10000000 -1563455935.0,12165668,10000000 -1563456535.0,12176519,10000000 -1563457135.0,12169516,10000000 -1563457735.0,12137428,10000000 -1563458335.0,12172129,10000000 -1563458935.0,12157210,10000000 -1563459535.0,12170635,10000000 -1563460135.0,12173377,10000000 -1563460735.0,12178622,10000000 -1563461335.0,12246599,10000000 -1563461935.0,12278689,10000000 -1563462535.0,12269412,10000000 -1563463135.0,12214529,10000000 -1563463735.0,12179830,10000000 -1563464335.0,12127427,10000000 -1563464935.0,12078902,10000000 -1563465535.0,12003730,10000000 -1563466135.0,11969134,10000000 -1563466735.0,11959740,10000000 -1563467335.0,11876451,10000000 -1563467935.0,11791217,10000000 -1563468535.0,11832073,10000000 -1563469135.0,11853821,10000000 -1563469735.0,11879262,10000000 -1563470335.0,11871755,10000000 -1563470935.0,11899261,10000000 -1563471535.0,11908395,10000000 -1563472135.0,11986576,10000000 -1563472735.0,12004176,10000000 -1563473335.0,11986674,10000000 -1563473935.0,11948496,10000000 -1563474535.0,11901730,10000000 -1563475135.0,11934934,10000000 -1563475735.0,11947760,10000000 -1563476335.0,11983432,10000000 -1563476935.0,11995461,10000000 -1563477535.0,12022338,10000000 -1563478135.0,12029794,10000000 -1563478735.0,12023522,10000000 -1563479335.0,12043553,10000000 -1563479935.0,12130237,10000000 -1563480535.0,12182067,10000000 -1563481135.0,12180451,10000000 -1563481735.0,12176044,10000000 -1563482335.0,12168017,10000000 -1563482935.0,12102103,10000000 -1563483535.0,12220005,10000000 -1563484135.0,12180915,10000000 -1563484735.0,12267656,10000000 -1563485335.0,12283345,10000000 -1563485935.0,12295458,10000000 -1563486535.0,12277423,10000000 -1563487135.0,12318925,10000000 -1563487735.0,12277597,10000000 -1563488335.0,12316204,10000000 -1563488935.0,12233667,10000000 -1563489535.0,12218524,10000000 -1563490135.0,12277656,10000000 -1563490735.0,12315108,10000000 -1563491335.0,12363045,10000000 -1563491935.0,12363767,10000000 -1563492535.0,12329292,10000000 -1563493135.0,12391081,10000000 -1563493735.0,12429342,10000000 -1563494335.0,12513511,10000000 -1563494935.0,12583505,10000000 -1563495535.0,12570763,10000000 -1563496135.0,12528384,10000000 -1563496735.0,12532935,10000000 -1563497335.0,12605762,10000000 -1563497935.0,12703492,10000000 -1563498535.0,12764620,10000000 -1563499135.0,12747005,10000000 -1563499735.0,12698112,10000000 -1563500335.0,12761379,10000000 -1563500935.0,12776558,10000000 -1563501535.0,12810767,10000000 -1563502135.0,12804186,10000000 -1563502735.0,12752478,10000000 -1563503335.0,12778531,10000000 -1563503935.0,12840065,10000000 -1563504535.0,12859322,10000000 -1563505135.0,12851733,10000000 -1563505735.0,12845912,10000000 -1563506335.0,12884128,10000000 -1563506935.0,12828105,10000000 -1563507535.0,12788591,10000000 -1563508135.0,12831089,10000000 -1563508735.0,12854941,10000000 -1563509335.0,12827038,10000000 -1563509935.0,12849581,10000000 -1563510535.0,12967218,10000000 -1563511135.0,12962812,10000000 -1563511735.0,13014825,10000000 -1563512335.0,13012395,10000000 -1563512935.0,12999362,10000000 -1563513535.0,12930817,10000000 -1563514135.0,12916723,10000000 -1563514735.0,12958294,10000000 -1563515335.0,12870969,10000000 -1563515935.0,12824920,10000000 -1563516535.0,12780865,10000000 -1563517135.0,12716260,10000000 -1563517735.0,12663543,10000000 -1563518335.0,12741502,10000000 -1563518935.0,12829945,10000000 -1563519535.0,12876449,10000000 -1563520135.0,12855652,10000000 -1563520735.0,12872591,10000000 -1563521335.0,12957371,10000000 -1563521935.0,12857656,10000000 -1563522535.0,12859085,10000000 -1563523135.0,12862245,10000000 -1563523735.0,12892286,10000000 -1563524335.0,12906881,10000000 -1563524935.0,12874808,10000000 -1563525535.0,12973963,10000000 -1563526135.0,13049217,10000000 -1563526735.0,13022004,10000000 -1563527335.0,12965754,10000000 -1563527935.0,13023994,10000000 -1563528535.0,13041241,10000000 -1563529135.0,13033393,10000000 -1563529735.0,13058055,10000000 -1563530335.0,12995361,10000000 -1563530935.0,12888918,10000000 -1563531535.0,12963844,10000000 -1563532135.0,13020865,10000000 -1563532735.0,13093475,10000000 -1563533335.0,12987269,10000000 -1563533935.0,13015491,10000000 -1563534535.0,13003483,10000000 -1563535135.0,12982753,10000000 -1563535735.0,13005709,10000000 -1563536335.0,13021029,10000000 -1563536935.0,13040188,10000000 -1563537535.0,13149443,10000000 -1563538135.0,13159278,10000000 -1563538735.0,13211613,10000000 -1563539335.0,13085947,10000000 -1563539935.0,13082419,10000000 -1563540535.0,13093298,10000000 -1563541135.0,13024459,10000000 -1563541735.0,13073122,10000000 -1563542335.0,13002205,10000000 -1563542935.0,13040635,10000000 -1563543535.0,12991573,10000000 -1563544135.0,13044155,10000000 -1563544735.0,12978014,10000000 -1563545335.0,13013449,10000000 -1563545935.0,12992852,10000000 -1563546535.0,12946794,10000000 -1563547135.0,12923289,10000000 -1563547735.0,12893107,10000000 -1563548335.0,12854935,10000000 -1563548935.0,12914944,10000000 -1563549535.0,12895588,10000000 -1563550135.0,12921937,10000000 -1563550735.0,12892957,10000000 -1563551335.0,12879880,10000000 -1563551935.0,12846384,10000000 -1563552535.0,12814634,10000000 -1563553135.0,12915272,10000000 -1563553735.0,12885577,10000000 -1563554335.0,12747176,10000000 -1563554935.0,12721992,10000000 -1563555535.0,12696538,10000000 -1563556135.0,12738978,10000000 -1563556735.0,12659588,10000000 -1563557335.0,12645739,10000000 -1563557935.0,12674072,10000000 -1563558535.0,12689680,10000000 -1563559135.0,12700050,10000000 -1563559735.0,12756141,10000000 -1563560335.0,12733658,10000000 -1563560935.0,12655880,10000000 -1563561535.0,12722772,10000000 -1563562135.0,12812874,10000000 -1563562735.0,12778016,10000000 -1563563335.0,12706626,10000000 -1563563935.0,12673280,10000000 -1563564535.0,12548597,10000000 -1563565135.0,12485515,10000000 -1563565735.0,12529531,10000000 -1563566335.0,12572325,10000000 -1563566935.0,12627412,10000000 -1563567535.0,12602851,10000000 -1563568135.0,12547525,10000000 -1563568735.0,12613023,10000000 -1563569335.0,12534898,10000000 -1563569935.0,12618669,10000000 -1563570535.0,12680403,10000000 -1563571135.0,12554089,10000000 -1563571735.0,12628853,10000000 -1563572335.0,12669994,10000000 -1563572935.0,12699151,10000000 -1563573535.0,12812055,10000000 -1563574135.0,12789595,10000000 -1563574735.0,12791004,10000000 -1563575335.0,12899252,10000000 -1563575935.0,12984818,10000000 -1563576535.0,12894531,10000000 -1563577135.0,12932208,10000000 -1563577735.0,12875861,10000000 -1563578335.0,12993236,10000000 -1563578935.0,12937349,10000000 -1563579535.0,12872613,10000000 -1563580135.0,12861611,10000000 -1563580735.0,12885306,10000000 -1563581335.0,12744442,10000000 -1563581935.0,12726968,10000000 -1563582535.0,12726927,10000000 -1563583135.0,12664021,10000000 -1563583735.0,12580600,10000000 -1563584335.0,12529082,10000000 -1563584935.0,12508346,10000000 -1563585535.0,12445277,10000000 -1563586135.0,12456409,10000000 -1563586735.0,12526021,10000000 -1563587335.0,12508052,10000000 -1563587935.0,12502108,10000000 -1563588535.0,12530150,10000000 -1563589135.0,12528386,10000000 -1563589735.0,12559679,10000000 -1563590335.0,12494452,10000000 -1563590935.0,12488958,10000000 -1563591535.0,12480983,10000000 -1563592135.0,12555910,10000000 -1563592735.0,12545357,10000000 -1563593335.0,12451592,10000000 -1563593935.0,12495100,10000000 -1563594535.0,12450873,10000000 -1563595135.0,12396883,10000000 -1563595735.0,12404161,10000000 -1563596335.0,12377661,10000000 -1563596935.0,12440248,10000000 -1563597535.0,12403950,10000000 -1563598135.0,12380911,10000000 -1563598735.0,12445009,10000000 -1563599335.0,12484007,10000000 -1563599935.0,12466239,10000000 -1563600535.0,12464287,10000000 -1563601135.0,12319367,10000000 -1563601735.0,12433441,10000000 -1563602335.0,12436153,10000000 -1563602935.0,12388501,10000000 -1563603535.0,12433090,10000000 -1563604135.0,12403655,10000000 -1563604735.0,12357443,10000000 -1563605335.0,12284335,10000000 -1563605935.0,12273896,10000000 -1563606535.0,12305527,10000000 -1563607135.0,12281209,10000000 -1563607735.0,12402771,10000000 -1563608335.0,12371073,10000000 -1563608935.0,12384635,10000000 -1563609535.0,12350372,10000000 -1563610135.0,12310351,10000000 -1563610735.0,12275667,10000000 -1563611335.0,12193021,10000000 -1563611935.0,12259092,10000000 -1563612535.0,12162702,10000000 -1563613135.0,12149156,10000000 -1563613735.0,12242348,10000000 -1563614335.0,12152460,10000000 -1563614935.0,12203045,10000000 -1563615535.0,12282582,10000000 -1563616135.0,12233757,10000000 -1563616735.0,12238955,10000000 -1563617335.0,12259438,10000000 -1563617935.0,12227653,10000000 -1563618535.0,12278640,10000000 -1563619135.0,12247084,10000000 -1563619735.0,12299972,10000000 -1563620335.0,12288489,10000000 -1563620935.0,12311490,10000000 -1563621535.0,12304210,10000000 -1563622135.0,12326737,10000000 -1563622735.0,12355322,10000000 -1563623335.0,12386652,10000000 -1563623935.0,12415350,10000000 -1563624535.0,12341809,10000000 -1563625135.0,12316601,10000000 -1563625735.0,12357375,10000000 -1563626335.0,12346414,10000000 -1563626935.0,12234239,10000000 -1563627535.0,12186630,10000000 -1563628135.0,12143521,10000000 -1563628735.0,12157440,10000000 -1563629335.0,12299198,10000000 -1563629935.0,12281439,10000000 -1563630535.0,12346904,10000000 -1563631135.0,12312422,10000000 -1563631735.0,12334380,10000000 -1563632335.0,12255474,10000000 -1563632935.0,12267881,10000000 -1563633535.0,12303935,10000000 -1563634135.0,12412241,10000000 -1563634735.0,12387185,10000000 -1563635335.0,12433909,10000000 -1563635935.0,12521508,10000000 -1563636535.0,12505444,10000000 -1563637135.0,12466380,10000000 -1563637735.0,12449277,10000000 -1563638335.0,12443780,10000000 -1563638935.0,12439202,10000000 -1563639535.0,12392853,10000000 -1563640135.0,12433271,10000000 -1563640735.0,12467740,10000000 -1563641335.0,12386462,10000000 -1563641935.0,12378067,10000000 -1563642535.0,12369857,10000000 -1563643135.0,12479778,10000000 -1563643735.0,12305231,10000000 -1563644335.0,12326313,10000000 -1563644935.0,12312638,10000000 -1563645535.0,12296608,10000000 -1563646135.0,12312675,10000000 -1563646735.0,12335181,10000000 -1563647335.0,12354584,10000000 -1563647935.0,12399549,10000000 -1563648535.0,12368511,10000000 -1563649135.0,12387643,10000000 -1563649735.0,12326176,10000000 -1563650335.0,12379410,10000000 -1563650935.0,12394840,10000000 -1563651535.0,12403898,10000000 -1563652135.0,12406116,10000000 -1563652735.0,12328581,10000000 -1563653335.0,12361872,10000000 -1563653935.0,12351900,10000000 -1563654535.0,12340620,10000000 -1563655135.0,12360881,10000000 -1563655735.0,12396009,10000000 -1563656335.0,12381196,10000000 -1563656935.0,12398259,10000000 -1563657535.0,12370798,10000000 -1563658135.0,12277675,10000000 -1563658735.0,12283874,10000000 -1563659335.0,12240063,10000000 -1563659935.0,12286481,10000000 -1563660535.0,12231670,10000000 -1563661135.0,12166599,10000000 -1563661735.0,12103368,10000000 -1563662335.0,12083458,10000000 -1563662935.0,12096474,10000000 -1563663535.0,11997120,10000000 -1563664135.0,11967077,10000000 -1563664735.0,12013856,10000000 -1563665335.0,11942154,10000000 -1563665935.0,11919727,10000000 -1563666535.0,11834953,10000000 -1563667135.0,11893584,10000000 -1563667735.0,11758067,10000000 -1563668335.0,11704775,10000000 -1563668935.0,11698768,10000000 -1563669535.0,11659698,10000000 -1563670135.0,11645691,10000000 -1563670735.0,11605823,10000000 -1563671335.0,11544071,10000000 -1563671935.0,11438152,10000000 -1563672535.0,11358983,10000000 -1563673135.0,11405361,10000000 -1563673735.0,11359041,10000000 -1563674335.0,11415377,10000000 -1563674935.0,11407150,10000000 -1563675535.0,11330261,10000000 -1563676135.0,11300711,10000000 -1563676735.0,11318039,10000000 -1563677335.0,11365781,10000000 -1563677935.0,11357762,10000000 -1563678535.0,11349874,10000000 -1563679135.0,11344479,10000000 -1563679735.0,11299492,10000000 -1563680335.0,11390568,10000000 -1563680935.0,11302399,10000000 -1563681535.0,11329592,10000000 -1563682135.0,11325211,10000000 -1563682735.0,11317073,10000000 -1563683335.0,11374671,10000000 -1563683935.0,11424305,10000000 -1563684535.0,11424142,10000000 -1563685135.0,11480168,10000000 -1563685735.0,11489988,10000000 -1563686335.0,11458234,10000000 -1563686935.0,11384812,10000000 -1563687535.0,11469464,10000000 -1563688135.0,11486897,10000000 -1563688735.0,11509529,10000000 -1563689335.0,11564387,10000000 -1563689935.0,11571000,10000000 -1563690535.0,11508776,10000000 -1563691135.0,11479812,10000000 -1563691735.0,11433326,10000000 -1563692335.0,11446266,10000000 -1563692935.0,11463783,10000000 -1563693535.0,11506637,10000000 -1563694135.0,11535212,10000000 -1563694735.0,11536585,10000000 -1563695335.0,11566332,10000000 -1563695935.0,11551069,10000000 -1563696535.0,11560548,10000000 -1563697135.0,11545198,10000000 -1563697735.0,11537103,10000000 -1563698335.0,11511490,10000000 -1563698935.0,11406687,10000000 -1563699535.0,11481499,10000000 -1563700135.0,11473513,10000000 -1563700735.0,11474145,10000000 -1563701335.0,11509988,10000000 -1563701935.0,11584937,10000000 -1563702535.0,11584634,10000000 -1563703135.0,11594072,10000000 -1563703735.0,11591865,10000000 -1563704335.0,11589745,10000000 -1563704935.0,11553279,10000000 -1563705535.0,11549939,10000000 -1563706135.0,11491766,10000000 -1563706735.0,11448992,10000000 -1563707335.0,11399176,10000000 -1563707935.0,11309695,10000000 -1563708535.0,11261494,10000000 -1563709135.0,11248598,10000000 -1563709735.0,11182616,10000000 -1563710335.0,11134958,10000000 -1563710935.0,11156792,10000000 -1563711535.0,11181600,10000000 -1563712135.0,11211997,10000000 -1563712735.0,11216085,10000000 -1563713335.0,11202534,10000000 -1563713935.0,11188627,10000000 -1563714535.0,11183836,10000000 -1563715135.0,11170518,10000000 -1563715735.0,11249263,10000000 -1563716335.0,11257368,10000000 -1563716935.0,11279869,10000000 -1563717535.0,11329465,10000000 -1563718135.0,11343006,10000000 -1563718735.0,11299190,10000000 -1563719335.0,11202289,10000000 -1563719935.0,11214286,10000000 -1563720535.0,11196173,10000000 -1563721135.0,11171301,10000000 -1563721735.0,11186638,10000000 -1563722335.0,11183217,10000000 -1563722935.0,11127459,10000000 -1563723535.0,11100302,10000000 -1563724135.0,11137390,10000000 -1563724735.0,11174316,10000000 -1563725335.0,11240816,10000000 -1563725935.0,11361523,10000000 -1563726535.0,11350612,10000000 -1563727135.0,11391286,10000000 -1563727735.0,11297759,10000000 -1563728335.0,11281445,10000000 -1563728935.0,11350422,10000000 -1563729535.0,11326460,10000000 -1563730135.0,11268524,10000000 -1563730735.0,11240741,10000000 -1563731335.0,11239689,10000000 -1563731935.0,11317795,10000000 -1563732535.0,11281048,10000000 -1563733135.0,11219200,10000000 -1563733735.0,11200148,10000000 -1563734335.0,11232407,10000000 -1563734935.0,11254641,10000000 -1563735535.0,11234060,10000000 -1563736135.0,11229048,10000000 -1563736735.0,11274627,10000000 -1563737335.0,11239865,10000000 -1563737935.0,11192383,10000000 -1563738535.0,11215300,10000000 -1563739135.0,11198021,10000000 -1563739735.0,11180121,10000000 -1563740335.0,11105397,10000000 -1563740935.0,11096235,10000000 -1563741535.0,10993361,10000000 -1563742135.0,11026167,10000000 -1563742735.0,10954187,10000000 -1563743335.0,10925507,10000000 -1563743935.0,10894496,10000000 -1563744535.0,10841824,10000000 -1563745135.0,10899545,10000000 -1563745735.0,10929836,10000000 -1563746335.0,10925324,10000000 -1563746935.0,10889254,10000000 -1563747535.0,10828027,10000000 -1563748135.0,10801615,10000000 -1563748735.0,10877750,10000000 -1563749335.0,10837946,10000000 -1563749935.0,10838646,10000000 -1563750535.0,10876677,10000000 -1563751135.0,10860134,10000000 -1563751735.0,10869328,10000000 -1563752335.0,10842313,10000000 -1563752935.0,10890297,10000000 -1563753535.0,10935128,10000000 -1563754135.0,10986345,10000000 -1563754735.0,10965962,10000000 -1563755335.0,10976883,10000000 -1563755935.0,10986278,10000000 -1563756535.0,11029185,10000000 -1563757135.0,10997643,10000000 -1563757735.0,10960207,10000000 -1563758335.0,10975128,10000000 -1563758935.0,10937236,10000000 -1563759535.0,10965137,10000000 -1563760135.0,10992135,10000000 -1563760735.0,11029625,10000000 -1563761335.0,11003166,10000000 -1563761935.0,11021283,10000000 -1563762535.0,11043172,10000000 -1563763135.0,10997489,10000000 -1563763735.0,11038485,10000000 -1563764335.0,10971301,10000000 -1563764935.0,10965419,10000000 -1563765535.0,10911344,10000000 -1563766135.0,10850748,10000000 -1563766735.0,10840027,10000000 -1563767335.0,10800602,10000000 -1563767935.0,10826215,10000000 -1563768535.0,10837872,10000000 -1563769135.0,10793813,10000000 -1563769735.0,10678385,10000000 -1563770335.0,10602315,10000000 -1563770935.0,10633206,10000000 -1563771535.0,10637317,10000000 -1563772135.0,10680568,10000000 -1563772735.0,10724363,10000000 -1563773335.0,10758400,10000000 -1563773935.0,10744264,10000000 -1563774535.0,10716445,10000000 -1563775135.0,10679927,10000000 -1563775735.0,10735240,10000000 -1563776335.0,10731277,10000000 -1563776935.0,10714766,10000000 -1563777535.0,10764639,10000000 -1563778135.0,10762528,10000000 -1563778735.0,10690752,10000000 -1563779335.0,10744142,10000000 -1563779935.0,10706184,10000000 -1563780535.0,10701088,10000000 -1563781135.0,10661136,10000000 -1563781735.0,10680338,10000000 -1563782335.0,10669421,10000000 -1563782935.0,10726329,10000000 -1563783535.0,10782442,10000000 -1563784135.0,10851825,10000000 -1563784735.0,10911213,10000000 -1563785335.0,10952674,10000000 -1563785935.0,10976650,10000000 -1563786535.0,11041834,10000000 -1563787135.0,11044541,10000000 -1563787735.0,11028907,10000000 -1563788335.0,11113236,10000000 -1563788935.0,11192872,10000000 -1563789535.0,11139276,10000000 -1563790135.0,11143063,10000000 -1563790735.0,11183888,10000000 -1563791335.0,11177254,10000000 -1563791935.0,11170486,10000000 -1563792535.0,11166906,10000000 -1563793135.0,11129852,10000000 -1563793735.0,11121675,10000000 -1563794335.0,11112700,10000000 -1563794935.0,11191571,10000000 -1563795535.0,11194391,10000000 -1563796135.0,11285934,10000000 -1563796735.0,11317107,10000000 -1563797335.0,11268064,10000000 -1563797935.0,11174550,10000000 -1563798535.0,11283858,10000000 -1563799135.0,11232710,10000000 -1563799735.0,11184516,10000000 -1563800335.0,11234931,10000000 -1563800935.0,11242591,10000000 -1563801535.0,11160549,10000000 -1563802135.0,11037687,10000000 -1563802735.0,11004529,10000000 -1563803335.0,11053180,10000000 -1563803935.0,11040847,10000000 -1563804535.0,11046999,10000000 -1563805135.0,11025492,10000000 -1563805735.0,11139284,10000000 -1563806335.0,11151109,10000000 -1563806935.0,11219714,10000000 -1563807535.0,11145036,10000000 -1563808135.0,11091035,10000000 -1563808735.0,11077421,10000000 -1563809335.0,11092483,10000000 -1563809935.0,11181851,10000000 -1563810535.0,11249179,10000000 -1563811135.0,11257296,10000000 -1563811735.0,11398115,10000000 -1563812335.0,11353679,10000000 -1563812935.0,11376099,10000000 -1563813535.0,11394432,10000000 -1563814135.0,11383881,10000000 -1563814735.0,11373521,10000000 -1563815335.0,11325800,10000000 -1563815935.0,11301853,10000000 -1563816535.0,11343060,10000000 -1563817135.0,11388591,10000000 -1563817735.0,11311437,10000000 -1563818335.0,11287432,10000000 -1563818935.0,11241539,10000000 -1563819535.0,11131656,10000000 -1563820135.0,11074368,10000000 -1563820735.0,11059238,10000000 -1563821335.0,11101153,10000000 -1563821935.0,11122260,10000000 -1563822535.0,11173098,10000000 -1563823135.0,11217784,10000000 -1563823735.0,11249501,10000000 -1563824335.0,11199587,10000000 -1563824935.0,11176147,10000000 -1563825535.0,11159413,10000000 -1563826135.0,11209056,10000000 -1563826735.0,11177407,10000000 -1563827335.0,11100382,10000000 -1563827935.0,11087475,10000000 -1563828535.0,11038427,10000000 -1563829135.0,11033486,10000000 -1563829735.0,10965256,10000000 -1563830335.0,11046548,10000000 -1563830935.0,11064726,10000000 -1563831535.0,11033178,10000000 -1563832135.0,11106701,10000000 -1563832735.0,11107640,10000000 -1563833335.0,11040848,10000000 -1563833935.0,11027914,10000000 -1563834535.0,11013892,10000000 -1563835135.0,10964831,10000000 -1563835735.0,11007804,10000000 -1563836335.0,11017049,10000000 -1563836935.0,11017230,10000000 -1563837535.0,11025500,10000000 -1563838135.0,11067214,10000000 -1563838735.0,11068144,10000000 -1563839335.0,11085531,10000000 -1563839935.0,11043365,10000000 -1563840535.0,11050931,10000000 -1563841135.0,11028140,10000000 -1563841735.0,11047876,10000000 -1563842335.0,11046044,10000000 -1563842935.0,11086019,10000000 -1563843535.0,11148701,10000000 -1563844135.0,11081573,10000000 -1563844735.0,11048628,10000000 -1563845335.0,11051824,10000000 -1563845935.0,11013206,10000000 -1563846535.0,10956579,10000000 -1563847135.0,10944581,10000000 -1563847735.0,10879609,10000000 -1563848335.0,10922719,10000000 -1563848935.0,10896149,10000000 -1563849535.0,10887834,10000000 -1563850135.0,10863456,10000000 -1563850735.0,10874522,10000000 -1563851335.0,10867103,10000000 -1563851935.0,10815636,10000000 -1563852535.0,10792887,10000000 -1563853135.0,10869791,10000000 -1563853735.0,10820452,10000000 -1563854335.0,10804433,10000000 -1563854935.0,10792303,10000000 -1563855535.0,10762235,10000000 -1563856135.0,10754613,10000000 -1563856735.0,10769873,10000000 -1563857335.0,10801093,10000000 -1563857935.0,10823924,10000000 -1563858535.0,10825733,10000000 -1563859135.0,10846357,10000000 -1563859735.0,10857845,10000000 -1563860335.0,10859271,10000000 -1563860935.0,10922888,10000000 -1563861535.0,10884314,10000000 -1563862135.0,10854606,10000000 -1563862735.0,10801185,10000000 -1563863335.0,10821043,10000000 -1563863935.0,10950313,10000000 -1563864535.0,10919388,10000000 -1563865135.0,10955846,10000000 -1563865735.0,10984484,10000000 -1563866335.0,10968433,10000000 -1563866935.0,10979079,10000000 -1563867535.0,10982339,10000000 -1563868135.0,11005745,10000000 -1563868735.0,11015408,10000000 -1563869335.0,11076616,10000000 -1563869935.0,11086806,10000000 -1563870535.0,11136764,10000000 -1563871135.0,11077860,10000000 -1563871735.0,11133408,10000000 -1563872335.0,11067005,10000000 -1563872935.0,11022448,10000000 -1563873535.0,11061719,10000000 -1563874135.0,11015580,10000000 -1563874735.0,11018959,10000000 -1563875335.0,11038265,10000000 -1563875935.0,11092094,10000000 -1563876535.0,11121714,10000000 -1563877135.0,11141239,10000000 -1563877735.0,11121518,10000000 -1563878335.0,11127106,10000000 -1563878935.0,11097015,10000000 -1563879535.0,11139226,10000000 -1563880135.0,11082754,10000000 -1563880735.0,11085281,10000000 -1563881335.0,11177613,10000000 -1563881935.0,11160859,10000000 -1563882535.0,11160947,10000000 -1563883135.0,11127018,10000000 -1563883735.0,11167671,10000000 -1563884335.0,11154970,10000000 -1563884935.0,11153854,10000000 -1563885535.0,11023379,10000000 -1563886135.0,11032056,10000000 -1563886735.0,11049107,10000000 -1563887335.0,11090956,10000000 -1563887935.0,11120168,10000000 -1563888535.0,11021018,10000000 -1563889135.0,11023722,10000000 -1563889735.0,10953806,10000000 -1563890335.0,10976224,10000000 -1563890935.0,11010148,10000000 -1563891535.0,10992123,10000000 -1563892135.0,11061676,10000000 -1563892735.0,11078809,10000000 -1563893335.0,10993828,10000000 -1563893935.0,11003690,10000000 -1563894535.0,11015500,10000000 -1563895135.0,11022307,10000000 -1563895735.0,10995280,10000000 -1563896335.0,10949940,10000000 -1563896935.0,11010876,10000000 -1563897535.0,11001329,10000000 -1563898135.0,10923792,10000000 -1563898735.0,10972367,10000000 -1563899335.0,11028614,10000000 -1563899935.0,10983567,10000000 -1563900535.0,11106777,10000000 -1563901135.0,11062665,10000000 -1563901735.0,11056276,10000000 -1563902335.0,11143712,10000000 -1563902935.0,11073833,10000000 -1563903535.0,11058890,10000000 -1563904135.0,11062097,10000000 -1563904735.0,11054111,10000000 -1563905335.0,11033808,10000000 -1563905935.0,11016893,10000000 -1563906535.0,11064487,10000000 -1563907135.0,11081912,10000000 -1563907735.0,11171999,10000000 -1563908335.0,11081380,10000000 -1563908935.0,11088056,10000000 -1563909535.0,11116061,10000000 -1563910135.0,11108746,10000000 -1563910735.0,11103279,10000000 -1563911335.0,11174528,10000000 -1563911935.0,11187151,10000000 -1563912535.0,11269718,10000000 -1563913135.0,11278861,10000000 -1563913735.0,11299538,10000000 -1563914335.0,11249303,10000000 -1563914935.0,11202998,10000000 -1563915535.0,11187312,10000000 -1563916135.0,11170176,10000000 -1563916735.0,11115490,10000000 -1563917335.0,11098247,10000000 -1563917935.0,11117583,10000000 -1563918535.0,11110149,10000000 -1563919135.0,11140962,10000000 -1563919735.0,11147784,10000000 -1563920335.0,11145567,10000000 -1563920935.0,11304752,10000000 -1563921535.0,11294760,10000000 -1563922135.0,11267820,10000000 -1563922735.0,11229726,10000000 -1563923335.0,11256319,10000000 -1563923935.0,11188058,10000000 -1563924535.0,11189567,10000000 -1563925135.0,11184977,10000000 -1563925735.0,11158510,10000000 -1563926335.0,11203834,10000000 -1563926935.0,11308965,10000000 -1563927535.0,11283544,10000000 -1563928135.0,11268218,10000000 -1563928735.0,11281861,10000000 -1563929335.0,11292010,10000000 -1563929935.0,11326146,10000000 -1563930535.0,11344549,10000000 -1563931135.0,11323780,10000000 -1563931735.0,11375561,10000000 -1563932335.0,11423302,10000000 -1563932935.0,11371713,10000000 -1563933535.0,11407330,10000000 -1563934135.0,11415269,10000000 -1563934735.0,11386746,10000000 -1563935335.0,11339525,10000000 -1563935935.0,11308243,10000000 -1563936535.0,11237334,10000000 -1563937135.0,11178925,10000000 -1563937735.0,11163148,10000000 -1563938335.0,11179708,10000000 -1563938935.0,11161182,10000000 -1563939535.0,11200425,10000000 -1563940135.0,11246807,10000000 -1563940735.0,11289279,10000000 -1563941335.0,11380387,10000000 -1563941935.0,11336618,10000000 -1563942535.0,11367638,10000000 -1563943135.0,11453270,10000000 -1563943735.0,11520536,10000000 -1563944335.0,11546502,10000000 -1563944935.0,11538082,10000000 -1563945535.0,11590078,10000000 -1563946135.0,11551036,10000000 -1563946735.0,11590683,10000000 -1563947335.0,11553131,10000000 -1563947935.0,11621247,10000000 -1563948535.0,11609502,10000000 -1563949135.0,11562346,10000000 -1563949735.0,11600471,10000000 -1563950335.0,11563233,10000000 -1563950935.0,11618207,10000000 -1563951535.0,11674201,10000000 -1563952135.0,11693471,10000000 -1563952735.0,11632472,10000000 -1563953335.0,11685845,10000000 -1563953935.0,11700223,10000000 -1563954535.0,11666467,10000000 -1563955135.0,11688022,10000000 -1563955735.0,11750981,10000000 -1563956335.0,11740984,10000000 -1563956935.0,11775156,10000000 -1563957535.0,11769677,10000000 -1563958135.0,11735947,10000000 -1563958735.0,11733430,10000000 -1563959335.0,11687588,10000000 -1563959935.0,11746612,10000000 -1563960535.0,11775746,10000000 -1563961135.0,11758115,10000000 -1563961735.0,11759782,10000000 -1563962335.0,11686045,10000000 -1563962935.0,11832575,10000000 -1563963535.0,11816510,10000000 -1563964135.0,11854522,10000000 -1563964735.0,11901256,10000000 -1563965335.0,11879166,10000000 -1563965935.0,11850186,10000000 -1563966535.0,11889504,10000000 -1563967135.0,11900829,10000000 -1563967735.0,11853832,10000000 -1563968335.0,11776631,10000000 -1563968935.0,11703070,10000000 -1563969535.0,11803304,10000000 -1563970135.0,11749249,10000000 -1563970735.0,11803674,10000000 -1563971335.0,11831787,10000000 -1563971935.0,11782187,10000000 -1563972535.0,11784378,10000000 -1563973135.0,11749486,10000000 -1563973735.0,11719209,10000000 -1563974335.0,11768137,10000000 -1563974935.0,11781728,10000000 -1563975535.0,11731236,10000000 -1563976135.0,11830110,10000000 -1563976735.0,11884304,10000000 -1563977335.0,11938638,10000000 -1563977935.0,11955894,10000000 -1563978535.0,12007962,10000000 -1563979135.0,11949719,10000000 -1563979735.0,11943318,10000000 -1563980335.0,11907335,10000000 -1563980935.0,11852736,10000000 -1563981535.0,11788997,10000000 -1563982135.0,11804735,10000000 -1563982735.0,11702476,10000000 -1563983335.0,11816086,10000000 -1563983935.0,11825093,10000000 -1563984535.0,11788883,10000000 -1563985135.0,11726960,10000000 -1563985735.0,11687026,10000000 -1563986335.0,11606519,10000000 -1563986935.0,11619473,10000000 -1563987535.0,11538119,10000000 -1563988135.0,11561635,10000000 -1563988735.0,11593961,10000000 -1563989335.0,11515748,10000000 -1563989935.0,11520019,10000000 -1563990535.0,11523519,10000000 -1563991135.0,11541369,10000000 -1563991735.0,11656305,10000000 -1563992335.0,11594145,10000000 -1563992935.0,11592943,10000000 -1563993535.0,11663349,10000000 -1563994135.0,11682011,10000000 -1563994735.0,11655548,10000000 -1563995335.0,11663512,10000000 -1563995935.0,11601871,10000000 -1563996535.0,11636017,10000000 -1563997135.0,11616267,10000000 -1563997735.0,11642267,10000000 -1563998335.0,11732835,10000000 -1563998935.0,11626286,10000000 -1563999535.0,11658637,10000000 -1564000135.0,11708584,10000000 -1564000735.0,11727421,10000000 -1564001335.0,11725100,10000000 -1564001935.0,11732515,10000000 -1564002535.0,11659263,10000000 -1564003135.0,11623494,10000000 -1564003735.0,11632333,10000000 -1564004335.0,11570919,10000000 -1564004935.0,11519294,10000000 -1564005535.0,11489541,10000000 -1564006135.0,11522401,10000000 -1564006735.0,11536196,10000000 -1564007335.0,11459639,10000000 -1564007935.0,11468438,10000000 -1564008535.0,11408260,10000000 -1564009135.0,11451690,10000000 -1564009735.0,11458405,10000000 -1564010335.0,11440386,10000000 -1564010935.0,11493156,10000000 -1564011535.0,11558346,10000000 -1564012135.0,11564808,10000000 -1564012735.0,11553606,10000000 -1564013335.0,11520677,10000000 -1564013935.0,11526184,10000000 -1564014535.0,11448500,10000000 -1564015135.0,11473296,10000000 -1564015735.0,11496282,10000000 -1564016335.0,11469201,10000000 -1564016935.0,11446182,10000000 -1564017535.0,11494808,10000000 -1564018135.0,11478127,10000000 -1564018735.0,11406732,10000000 -1564019335.0,11395595,10000000 -1564019935.0,11398391,10000000 -1564020535.0,11369921,10000000 -1564021135.0,11392034,10000000 -1564021735.0,11388398,10000000 -1564022335.0,11441201,10000000 -1564022935.0,11398234,10000000 -1564023535.0,11483755,10000000 -1564024135.0,11486865,10000000 -1564024735.0,11610503,10000000 -1564025335.0,11555348,10000000 -1564025935.0,11573612,10000000 -1564026535.0,11601088,10000000 -1564027135.0,11599702,10000000 -1564027735.0,11613198,10000000 -1564028335.0,11604339,10000000 -1564028935.0,11594202,10000000 -1564029535.0,11464951,10000000 -1564030135.0,11538316,10000000 -1564030735.0,11584358,10000000 -1564031335.0,11650043,10000000 -1564031935.0,11700894,10000000 -1564032535.0,11707983,10000000 -1564033135.0,11691463,10000000 -1564033735.0,11762971,10000000 -1564034335.0,11747004,10000000 -1564034935.0,11747493,10000000 -1564035535.0,11727826,10000000 -1564036135.0,11785394,10000000 -1564036735.0,11778282,10000000 -1564037335.0,11775438,10000000 -1564037935.0,11754664,10000000 -1564038535.0,11727525,10000000 -1564039135.0,11598969,10000000 -1564039735.0,11658902,10000000 -1564040335.0,11694329,10000000 -1564040935.0,11739273,10000000 -1564041535.0,11721383,10000000 -1564042135.0,11717703,10000000 -1564042735.0,11698762,10000000 -1564043335.0,11650087,10000000 -1564043935.0,11627864,10000000 -1564044535.0,11613174,10000000 -1564045135.0,11594713,10000000 -1564045735.0,11692102,10000000 -1564046335.0,11714384,10000000 -1564046935.0,11783482,10000000 -1564047535.0,11751297,10000000 -1564048135.0,11791624,10000000 -1564048735.0,11749599,10000000 -1564049335.0,11758867,10000000 -1564049935.0,11783942,10000000 -1564050535.0,11786616,10000000 -1564051135.0,11681115,10000000 -1564051735.0,11630385,10000000 -1564052335.0,11650097,10000000 -1564052935.0,11664414,10000000 -1564053535.0,11662816,10000000 -1564054135.0,11680905,10000000 -1564054735.0,11673442,10000000 -1564055335.0,11678939,10000000 -1564055935.0,11604508,10000000 -1564056535.0,11690830,10000000 -1564057135.0,11749479,10000000 -1564057735.0,11776849,10000000 -1564058335.0,11741207,10000000 -1564058935.0,11722462,10000000 -1564059535.0,11825701,10000000 -1564060135.0,11842222,10000000 -1564060735.0,11901738,10000000 -1564061335.0,11932494,10000000 -1564061935.0,11885608,10000000 -1564062535.0,11920187,10000000 -1564063135.0,11916405,10000000 -1564063735.0,11985609,10000000 -1564064335.0,12028472,10000000 -1564064935.0,12085414,10000000 -1564065535.0,12126112,10000000 -1564066135.0,12018284,10000000 -1564066735.0,12017723,10000000 -1564067335.0,12004594,10000000 -1564067935.0,12063324,10000000 -1564068535.0,12152958,10000000 -1564069135.0,12160701,10000000 -1564069735.0,12237200,10000000 -1564070335.0,12195454,10000000 -1564070935.0,12178770,10000000 -1564071535.0,12277473,10000000 -1564072135.0,12346921,10000000 -1564072735.0,12275658,10000000 -1564073335.0,12230264,10000000 -1564073935.0,12226889,10000000 -1564074535.0,12266029,10000000 -1564075135.0,12334454,10000000 -1564075735.0,12360020,10000000 -1564076335.0,12411855,10000000 -1564076935.0,12368084,10000000 -1564077535.0,12366922,10000000 -1564078135.0,12367626,10000000 -1564078735.0,12383425,10000000 -1564079335.0,12352946,10000000 -1564079935.0,12304019,10000000 -1564080535.0,12310754,10000000 -1564081135.0,12302531,10000000 -1564081735.0,12295645,10000000 -1564082335.0,12309681,10000000 -1564082935.0,12331057,10000000 -1564083535.0,12297955,10000000 -1564084135.0,12232165,10000000 -1564084735.0,12287368,10000000 -1564085335.0,12315481,10000000 -1564085935.0,12405226,10000000 -1564086535.0,12453357,10000000 -1564087135.0,12465333,10000000 -1564087735.0,12484875,10000000 -1564088335.0,12502536,10000000 -1564088935.0,12515053,10000000 -1564089535.0,12480335,10000000 -1564090135.0,12491480,10000000 -1564090735.0,12550539,10000000 -1564091335.0,12568503,10000000 -1564091935.0,12615205,10000000 -1564092535.0,12665473,10000000 -1564093135.0,12594782,10000000 -1564093735.0,12597339,10000000 -1564094335.0,12552548,10000000 -1564094935.0,12563153,10000000 -1564095535.0,12525078,10000000 -1564096135.0,12517213,10000000 -1564096735.0,12483342,10000000 -1564097335.0,12505550,10000000 -1564097935.0,12491353,10000000 -1564098535.0,12492086,10000000 -1564099135.0,12475684,10000000 -1564099735.0,12514181,10000000 -1564100335.0,12523725,10000000 -1564100935.0,12581699,10000000 -1564101535.0,12541590,10000000 -1564102135.0,12533923,10000000 -1564102735.0,12477449,10000000 -1564103335.0,12467224,10000000 -1564103935.0,12449804,10000000 -1564104535.0,12524035,10000000 -1564105135.0,12561953,10000000 -1564105735.0,12526996,10000000 -1564106335.0,12503798,10000000 -1564106935.0,12527703,10000000 -1564107535.0,12509367,10000000 -1564108135.0,12475398,10000000 -1564108735.0,12549952,10000000 -1564109335.0,12524114,10000000 -1564109935.0,12480870,10000000 -1564110535.0,12518003,10000000 -1564111135.0,12569471,10000000 -1564111735.0,12545291,10000000 -1564112335.0,12583982,10000000 -1564112935.0,12636330,10000000 -1564113535.0,12684129,10000000 -1564114135.0,12691163,10000000 -1564114735.0,12661810,10000000 -1564115335.0,12633353,10000000 -1564115935.0,12596126,10000000 -1564116535.0,12680797,10000000 -1564117135.0,12787026,10000000 -1564117735.0,12772355,10000000 -1564118335.0,12768403,10000000 -1564118935.0,12698846,10000000 -1564119535.0,12772867,10000000 -1564120135.0,12731169,10000000 -1564120735.0,12714305,10000000 -1564121335.0,12809998,10000000 -1564121935.0,12835047,10000000 -1564122535.0,12791919,10000000 -1564123135.0,12780375,10000000 -1564123735.0,12848741,10000000 -1564124335.0,12819469,10000000 -1564124935.0,12796799,10000000 -1564125535.0,12751135,10000000 -1564126135.0,12715293,10000000 -1564126735.0,12707154,10000000 -1564127335.0,12802249,10000000 -1564127935.0,12875838,10000000 -1564128535.0,12820274,10000000 -1564129135.0,12763734,10000000 -1564129735.0,12801452,10000000 -1564130335.0,12792102,10000000 -1564130935.0,12782651,10000000 -1564131535.0,12837731,10000000 -1564132135.0,12867355,10000000 -1564132735.0,12893218,10000000 -1564133335.0,12950337,10000000 -1564133935.0,12968731,10000000 -1564134535.0,13064698,10000000 -1564135135.0,13078364,10000000 -1564135735.0,13122549,10000000 -1564136335.0,13123925,10000000 -1564136935.0,13212391,10000000 -1564137535.0,13212480,10000000 -1564138135.0,13251608,10000000 -1564138735.0,13211048,10000000 -1564139335.0,13073562,10000000 -1564139935.0,13065884,10000000 -1564140535.0,12993101,10000000 -1564141135.0,13004790,10000000 -1564141735.0,12910824,10000000 -1564142335.0,12962552,10000000 -1564142935.0,12917140,10000000 -1564143535.0,12939262,10000000 -1564144135.0,12933274,10000000 -1564144735.0,12972479,10000000 -1564145335.0,12921546,10000000 -1564145935.0,12912603,10000000 -1564146535.0,12891209,10000000 -1564147135.0,12893302,10000000 -1564147735.0,12891971,10000000 -1564148335.0,12941249,10000000 -1564148935.0,12856647,10000000 -1564149535.0,12860560,10000000 -1564150135.0,12789194,10000000 -1564150735.0,12820609,10000000 -1564151335.0,12806866,10000000 -1564151935.0,12823851,10000000 -1564152535.0,12883588,10000000 -1564153135.0,12921743,10000000 -1564153735.0,12922874,10000000 -1564154335.0,12878126,10000000 -1564154935.0,12946319,10000000 -1564155535.0,12958586,10000000 -1564156135.0,13065551,10000000 -1564156735.0,12990356,10000000 -1564157335.0,12959807,10000000 -1564157935.0,12995925,10000000 -1564158535.0,12962308,10000000 -1564159135.0,12893616,10000000 -1564159735.0,12898964,10000000 -1564160335.0,12955432,10000000 -1564160935.0,12952912,10000000 -1564161535.0,12949881,10000000 -1564162135.0,12916092,10000000 -1564162735.0,12938892,10000000 -1564163335.0,12827834,10000000 -1564163935.0,12652826,10000000 -1564164535.0,12645385,10000000 -1564165135.0,12614643,10000000 -1564165735.0,12677132,10000000 -1564166335.0,12679949,10000000 -1564166935.0,12642906,10000000 -1564167535.0,12676472,10000000 -1564168135.0,12726427,10000000 -1564168735.0,12779296,10000000 -1564169335.0,12710607,10000000 -1564169935.0,12803341,10000000 -1564170535.0,12838270,10000000 -1564171135.0,12886238,10000000 -1564171735.0,12877024,10000000 -1564172335.0,12892404,10000000 -1564172935.0,12778035,10000000 -1564173535.0,12844820,10000000 -1564174135.0,12841771,10000000 -1564174735.0,12844366,10000000 -1564175335.0,12872605,10000000 -1564175935.0,12858121,10000000 -1564176535.0,12883335,10000000 -1564177135.0,12796598,10000000 -1564177735.0,12800628,10000000 -1564178335.0,12778831,10000000 -1564178935.0,12951656,10000000 -1564179535.0,12930710,10000000 -1564180135.0,12902819,10000000 -1564180735.0,12781767,10000000 -1564181335.0,12826939,10000000 -1564181935.0,12914211,10000000 -1564182535.0,12898775,10000000 -1564183135.0,12800353,10000000 -1564183735.0,12797527,10000000 -1564184335.0,12729073,10000000 -1564184935.0,12705208,10000000 -1564185535.0,12673487,10000000 -1564186135.0,12636929,10000000 -1564186735.0,12638801,10000000 -1564187335.0,12702209,10000000 -1564187935.0,12710705,10000000 -1564188535.0,12688607,10000000 -1564189135.0,12720791,10000000 -1564189735.0,12783680,10000000 -1564190335.0,12727093,10000000 -1564190935.0,12766940,10000000 -1564191535.0,12802105,10000000 -1564192135.0,12953934,10000000 -1564192735.0,12988225,10000000 -1564193335.0,13073375,10000000 -1564193935.0,13140354,10000000 -1564194535.0,13124235,10000000 -1564195135.0,13191731,10000000 -1564195735.0,13153920,10000000 -1564196335.0,13162542,10000000 -1564196935.0,12995261,10000000 -1564197535.0,12999493,10000000 -1564198135.0,13057259,10000000 -1564198735.0,13114271,10000000 -1564199335.0,13086284,10000000 -1564199935.0,13165713,10000000 -1564200535.0,13161161,10000000 -1564201135.0,13219728,10000000 -1564201735.0,13237361,10000000 -1564202335.0,13375961,10000000 -1564202935.0,13329938,10000000 -1564203535.0,13323532,10000000 -1564204135.0,13401032,10000000 -1564204735.0,13438806,10000000 -1564205335.0,13351369,10000000 -1564205935.0,13329362,10000000 -1564206535.0,13318689,10000000 -1564207135.0,13249217,10000000 -1564207735.0,13205293,10000000 -1564208335.0,13267543,10000000 -1564208935.0,13167224,10000000 -1564209535.0,13056929,10000000 -1564210135.0,13017856,10000000 -1564210735.0,13012622,10000000 -1564211335.0,12957235,10000000 -1564211935.0,12982915,10000000 -1564212535.0,12988696,10000000 -1564213135.0,13102865,10000000 -1564213735.0,13144564,10000000 -1564214335.0,13163416,10000000 -1564214935.0,13087766,10000000 -1564215535.0,13090390,10000000 -1564216135.0,13095290,10000000 -1564216735.0,13135819,10000000 -1564217335.0,13018894,10000000 -1564217935.0,12981126,10000000 -1564218535.0,12964801,10000000 -1564219135.0,13008253,10000000 -1564219735.0,13051469,10000000 -1564220335.0,13016867,10000000 -1564220935.0,12953346,10000000 -1564221535.0,12920507,10000000 -1564222135.0,13014273,10000000 -1564222735.0,13060895,10000000 -1564223335.0,13071073,10000000 -1564223935.0,13051935,10000000 -1564224535.0,13043224,10000000 -1564225135.0,13094055,10000000 -1564225735.0,13070197,10000000 -1564226335.0,13052196,10000000 -1564226935.0,13032300,10000000 -1564227535.0,13067189,10000000 -1564228135.0,13051548,10000000 -1564228735.0,13073946,10000000 -1564229335.0,13171817,10000000 -1564229935.0,13246803,10000000 -1564230535.0,13341562,10000000 -1564231135.0,13327781,10000000 -1564231735.0,13373945,10000000 -1564232335.0,13430878,10000000 -1564232935.0,13469618,10000000 -1564233535.0,13571151,10000000 -1564234135.0,13566247,10000000 -1564234735.0,13532025,10000000 -1564235335.0,13555627,10000000 -1564235935.0,13548301,10000000 -1564236535.0,13633073,10000000 -1564237135.0,13619104,10000000 -1564237735.0,13586876,10000000 -1564238335.0,13605331,10000000 -1564238935.0,13590044,10000000 -1564239535.0,13515991,10000000 -1564240135.0,13523208,10000000 -1564240735.0,13637873,10000000 -1564241335.0,13550134,10000000 -1564241935.0,13529142,10000000 -1564242535.0,13504849,10000000 -1564243135.0,13451906,10000000 -1564243735.0,13508296,10000000 -1564244335.0,13529692,10000000 -1564244935.0,13582924,10000000 -1564245535.0,13652190,10000000 -1564246135.0,13673586,10000000 -1564246735.0,13783015,10000000 -1564247335.0,13865501,10000000 -1564247935.0,13804028,10000000 -1564248535.0,13813295,10000000 -1564249135.0,13827450,10000000 -1564249735.0,13805587,10000000 -1564250335.0,13814293,10000000 -1564250935.0,13784804,10000000 -1564251535.0,13796543,10000000 -1564252135.0,13696645,10000000 -1564252735.0,13640536,10000000 -1564253335.0,13680953,10000000 -1564253935.0,13734344,10000000 -1564254535.0,13822027,10000000 -1564255135.0,13872811,10000000 -1564255735.0,13947626,10000000 -1564256335.0,13913469,10000000 -1564256935.0,13826811,10000000 -1564257535.0,13907352,10000000 -1564258135.0,13971235,10000000 -1564258735.0,13946051,10000000 -1564259335.0,13976649,10000000 -1564259935.0,13971738,10000000 -1564260535.0,13944718,10000000 -1564261135.0,14069987,10000000 -1564261735.0,14144620,10000000 -1564262335.0,14215939,10000000 -1564262935.0,14272366,10000000 -1564263535.0,14356562,10000000 -1564264135.0,14474067,10000000 -1564264735.0,14486773,10000000 -1564265335.0,14475208,10000000 -1564265935.0,14505550,10000000 -1564266535.0,14516184,10000000 -1564267135.0,14448364,10000000 -1564267735.0,14554523,10000000 -1564268335.0,14511276,10000000 -1564268935.0,14515533,10000000 -1564269535.0,14550662,10000000 -1564270135.0,14476042,10000000 -1564270735.0,14488589,10000000 -1564271335.0,14401711,10000000 -1564271935.0,14370361,10000000 -1564272535.0,14302126,10000000 -1564273135.0,14316457,10000000 -1564273735.0,14294893,10000000 -1564274335.0,14275821,10000000 -1564274935.0,14283728,10000000 -1564275535.0,14329345,10000000 -1564276135.0,14461757,10000000 -1564276735.0,14525646,10000000 -1564277335.0,14513860,10000000 -1564277935.0,14582419,10000000 -1564278535.0,14581319,10000000 -1564279135.0,14543086,10000000 -1564279735.0,14549983,10000000 -1564280335.0,14576019,10000000 -1564280935.0,14510335,10000000 -1564281535.0,14481267,10000000 -1564282135.0,14447419,10000000 -1564282735.0,14412997,10000000 -1564283335.0,14427318,10000000 -1564283935.0,14265844,10000000 -1564284535.0,14232045,10000000 -1564285135.0,14289112,10000000 -1564285735.0,14395177,10000000 -1564286335.0,14372662,10000000 -1564286935.0,14320124,10000000 -1564287535.0,14344336,10000000 -1564288135.0,14369070,10000000 -1564288735.0,14308407,10000000 -1564289335.0,14355630,10000000 -1564289935.0,14335798,10000000 -1564290535.0,14350913,10000000 -1564291135.0,14380731,10000000 -1564291735.0,14411982,10000000 -1564292335.0,14402213,10000000 -1564292935.0,14416741,10000000 -1564293535.0,14437957,10000000 -1564294135.0,14547848,10000000 -1564294735.0,14523566,10000000 -1564295335.0,14542915,10000000 -1564295935.0,14561716,10000000 -1564296535.0,14609868,10000000 -1564297135.0,14609956,10000000 -1564297735.0,14694501,10000000 -1564298335.0,14718846,10000000 -1564298935.0,14672463,10000000 -1564299535.0,14829770,10000000 -1564300135.0,14731982,10000000 -1564300735.0,14741766,10000000 -1564301335.0,14841957,10000000 -1564301935.0,14919334,10000000 -1564302535.0,14921497,10000000 -1564303135.0,14904700,10000000 -1564303735.0,14966070,10000000 -1564304335.0,14747756,10000000 -1564304935.0,14708143,10000000 -1564305535.0,14772666,10000000 -1564306135.0,14890329,10000000 -1564306735.0,14884080,10000000 -1564307335.0,14902180,10000000 -1564307935.0,14822807,10000000 -1564308535.0,14736744,10000000 -1564309135.0,14772062,10000000 -1564309735.0,14744493,10000000 -1564310335.0,14682191,10000000 -1564310935.0,14581897,10000000 -1564311535.0,14530811,10000000 -1564312135.0,14450587,10000000 -1564312735.0,14510079,10000000 -1564313335.0,14440869,10000000 -1564313935.0,14417710,10000000 -1564314535.0,14479531,10000000 -1564315135.0,14455039,10000000 -1564315735.0,14576720,10000000 -1564316335.0,14687741,10000000 -1564316935.0,14692228,10000000 -1564317535.0,14625211,10000000 -1564318135.0,14706178,10000000 -1564318735.0,14636907,10000000 -1564319335.0,14597261,10000000 -1564319935.0,14651154,10000000 -1564320535.0,14687011,10000000 -1564321135.0,14737518,10000000 -1564321735.0,14728626,10000000 -1564322335.0,14877803,10000000 -1564322935.0,14968272,10000000 -1564323535.0,14965528,10000000 -1564324135.0,14935962,10000000 -1564324735.0,14982312,10000000 -1564325335.0,14835251,10000000 -1564325935.0,14900379,10000000 -1564326535.0,14904009,10000000 -1564327135.0,14854879,10000000 -1564327735.0,14670710,10000000 -1564328335.0,14595292,10000000 -1564328935.0,14661090,10000000 -1564329535.0,14724902,10000000 -1564330135.0,14706427,10000000 -1564330735.0,14748226,10000000 -1564331335.0,14801983,10000000 -1564331935.0,14835818,10000000 -1564332535.0,14806467,10000000 -1564333135.0,14785992,10000000 -1564333735.0,14769941,10000000 -1564334335.0,14807881,10000000 -1564334935.0,14863690,10000000 -1564335535.0,14880508,10000000 -1564336135.0,14877797,10000000 -1564336735.0,14852100,10000000 -1564337335.0,14846726,10000000 -1564337935.0,14885056,10000000 -1564338535.0,14888774,10000000 -1564339135.0,14962870,10000000 -1564339735.0,14865587,10000000 -1564340335.0,14902758,10000000 -1564340935.0,14891807,10000000 -1564341535.0,14878034,10000000 -1564342135.0,14800079,10000000 -1564342735.0,14749814,10000000 -1564343335.0,14676963,10000000 -1564343935.0,14678768,10000000 -1564344535.0,14689050,10000000 -1564345135.0,14603331,10000000 -1564345735.0,14687985,10000000 -1564346335.0,14656916,10000000 -1564346935.0,14709093,10000000 -1564347535.0,14792211,10000000 -1564348135.0,14778652,10000000 -1564348735.0,14734428,10000000 -1564349335.0,14628864,10000000 -1564349935.0,14604774,10000000 -1564350535.0,14627945,10000000 -1564351135.0,14783488,10000000 -1564351735.0,14792334,10000000 -1564352335.0,14725272,10000000 -1564352935.0,14811826,10000000 -1564353535.0,14863379,10000000 -1564354135.0,14824521,10000000 -1564354735.0,14896176,10000000 -1564355335.0,14809910,10000000 -1564355935.0,14876894,10000000 -1564356535.0,14908363,10000000 -1564357135.0,15154223,10000000 -1564357735.0,15135581,10000000 -1564358335.0,15143928,10000000 -1564358935.0,15227039,10000000 -1564359535.0,15294179,10000000 -1564360135.0,15250358,10000000 -1564360735.0,15244550,10000000 -1564361335.0,15257619,10000000 -1564361935.0,15314477,10000000 -1564362535.0,15250519,10000000 -1564363135.0,15271935,10000000 -1564363735.0,15315393,10000000 -1564364335.0,15445006,10000000 -1564364935.0,15540681,10000000 -1564365535.0,15657652,10000000 -1564366135.0,15607351,10000000 -1564366735.0,15555635,10000000 -1564367335.0,15602481,10000000 -1564367935.0,15472098,10000000 -1564368535.0,15423407,10000000 -1564369135.0,15439292,10000000 -1564369735.0,15399623,10000000 -1564370335.0,15282442,10000000 -1564370935.0,15305595,10000000 -1564371535.0,15237638,10000000 -1564372135.0,15305377,10000000 -1564372735.0,15275960,10000000 -1564373335.0,15215172,10000000 -1564373935.0,15229011,10000000 -1564374535.0,15150550,10000000 -1564375135.0,15143741,10000000 -1564375735.0,15072847,10000000 -1564376335.0,15053058,10000000 -1564376935.0,15039393,10000000 -1564377535.0,15065648,10000000 -1564378135.0,14954966,10000000 -1564378735.0,14980129,10000000 -1564379335.0,14892407,10000000 -1564379935.0,14901042,10000000 -1564380535.0,14917539,10000000 -1564381135.0,14772203,10000000 -1564381735.0,14717198,10000000 -1564382335.0,14708529,10000000 -1564382935.0,14752397,10000000 -1564383535.0,14739108,10000000 -1564384135.0,14809693,10000000 -1564384735.0,14930943,10000000 -1564385335.0,14807057,10000000 -1564385935.0,14763073,10000000 -1564386535.0,14756281,10000000 -1564387135.0,14747965,10000000 -1564387735.0,14732963,10000000 -1564388335.0,14815371,10000000 -1564388935.0,14884742,10000000 -1564389535.0,14895508,10000000 -1564390135.0,14820810,10000000 -1564390735.0,14763841,10000000 -1564391335.0,14734133,10000000 -1564391935.0,14679430,10000000 -1564392535.0,14772494,10000000 -1564393135.0,14826273,10000000 -1564393735.0,14819157,10000000 -1564394335.0,14779959,10000000 -1564394935.0,14834176,10000000 -1564395535.0,14716455,10000000 -1564396135.0,14654139,10000000 -1564396735.0,14750219,10000000 -1564397335.0,14727409,10000000 -1564397935.0,14676381,10000000 -1564398535.0,14653170,10000000 -1564399135.0,14629085,10000000 -1564399735.0,14615227,10000000 -1564400335.0,14614498,10000000 -1564400935.0,14768233,10000000 -1564401535.0,14695202,10000000 -1564402135.0,14684883,10000000 -1564402735.0,14817340,10000000 -1564403335.0,14752160,10000000 -1564403935.0,14759230,10000000 -1564404535.0,14792198,10000000 -1564405135.0,14689408,10000000 -1564405735.0,14748199,10000000 -1564406335.0,14659208,10000000 -1564406935.0,14682657,10000000 -1564407535.0,14578285,10000000 -1564408135.0,14565208,10000000 -1564408735.0,14571473,10000000 -1564409335.0,14521367,10000000 -1564409935.0,14660301,10000000 -1564410535.0,14673824,10000000 -1564411135.0,14753994,10000000 -1564411735.0,14743903,10000000 -1564412335.0,14735903,10000000 -1564412935.0,14652258,10000000 -1564413535.0,14619507,10000000 -1564414135.0,14631697,10000000 -1564414735.0,14660373,10000000 -1564415335.0,14706286,10000000 -1564415935.0,14715151,10000000 -1564416535.0,14653716,10000000 -1564417135.0,14694720,10000000 -1564417735.0,14743329,10000000 -1564418335.0,14708897,10000000 -1564418935.0,14688436,10000000 -1564419535.0,14620300,10000000 -1564420135.0,14629278,10000000 -1564420735.0,14629708,10000000 -1564421335.0,14728147,10000000 -1564421935.0,14713487,10000000 -1564422535.0,14658655,10000000 -1564423135.0,14647129,10000000 -1564423735.0,14628449,10000000 -1564424335.0,14577432,10000000 -1564424935.0,14596648,10000000 -1564425535.0,14664882,10000000 -1564426135.0,14669421,10000000 -1564426735.0,14690242,10000000 -1564427335.0,14740671,10000000 -1564427935.0,14740379,10000000 -1564428535.0,14820753,10000000 -1564429135.0,14782996,10000000 -1564429735.0,14807063,10000000 -1564430335.0,14807949,10000000 -1564430935.0,14752380,10000000 -1564431535.0,14764448,10000000 -1564432135.0,14769162,10000000 -1564432735.0,14761797,10000000 -1564433335.0,14798031,10000000 -1564433935.0,14843148,10000000 -1564434535.0,14870990,10000000 -1564435135.0,14867836,10000000 -1564435735.0,14841562,10000000 -1564436335.0,14822433,10000000 -1564436935.0,14798665,10000000 -1564437535.0,14765980,10000000 -1564438135.0,14659420,10000000 -1564438735.0,14536241,10000000 -1564439335.0,14463531,10000000 -1564439935.0,14401976,10000000 -1564440535.0,14481812,10000000 -1564441135.0,14404524,10000000 -1564441735.0,14304071,10000000 -1564442335.0,14300972,10000000 -1564442935.0,14345492,10000000 -1564443535.0,14402971,10000000 -1564444135.0,14412868,10000000 -1564444735.0,14426384,10000000 -1564445335.0,14510735,10000000 -1564445935.0,14464699,10000000 -1564446535.0,14451922,10000000 -1564447135.0,14405597,10000000 -1564447735.0,14451160,10000000 -1564448335.0,14414278,10000000 -1564448935.0,14398534,10000000 -1564449535.0,14414668,10000000 -1564450135.0,14376373,10000000 -1564450735.0,14241971,10000000 -1564451335.0,14283613,10000000 -1564451935.0,14292545,10000000 -1564452535.0,14326074,10000000 -1564453135.0,14271368,10000000 -1564453735.0,14226233,10000000 -1564454335.0,14228991,10000000 -1564454935.0,14261121,10000000 -1564455535.0,14324016,10000000 -1564456135.0,14283258,10000000 -1564456735.0,14198806,10000000 -1564457335.0,14171502,10000000 -1564457935.0,14219104,10000000 -1564458535.0,14137324,10000000 -1564459135.0,14209358,10000000 -1564459735.0,14185342,10000000 -1564460335.0,14179755,10000000 -1564460935.0,14184518,10000000 -1564461535.0,14220797,10000000 -1564462135.0,14254451,10000000 -1564462735.0,14249790,10000000 -1564463335.0,14230231,10000000 -1564463935.0,14261621,10000000 -1564464535.0,14271654,10000000 -1564465135.0,14165069,10000000 -1564465735.0,14247247,10000000 -1564466335.0,14315495,10000000 -1564466935.0,14300662,10000000 -1564467535.0,14433288,10000000 -1564468135.0,14413448,10000000 -1564468735.0,14408256,10000000 -1564469335.0,14372777,10000000 -1564469935.0,14383083,10000000 -1564470535.0,14324168,10000000 -1564471135.0,14275582,10000000 -1564471735.0,14321151,10000000 -1564472335.0,14208623,10000000 -1564472935.0,14171180,10000000 -1564473535.0,14123033,10000000 -1564474135.0,14115374,10000000 -1564474735.0,14054624,10000000 -1564475335.0,14090969,10000000 -1564475935.0,14068826,10000000 -1564476535.0,14001860,10000000 -1564477135.0,14027247,10000000 -1564477735.0,14190118,10000000 -1564478335.0,14247681,10000000 -1564478935.0,14253216,10000000 -1564479535.0,14327529,10000000 -1564480135.0,14399954,10000000 -1564480735.0,14286208,10000000 -1564481335.0,14343356,10000000 -1564481935.0,14297397,10000000 -1564482535.0,14429945,10000000 -1564483135.0,14387306,10000000 -1564483735.0,14351310,10000000 -1564484335.0,14407520,10000000 -1564484935.0,14395439,10000000 -1564485535.0,14477621,10000000 -1564486135.0,14416213,10000000 -1564486735.0,14446176,10000000 -1564487335.0,14488669,10000000 -1564487935.0,14484333,10000000 -1564488535.0,14504626,10000000 -1564489135.0,14494917,10000000 -1564489735.0,14428763,10000000 -1564490335.0,14434173,10000000 -1564490935.0,14582072,10000000 -1564491535.0,14605738,10000000 -1564492135.0,14637556,10000000 -1564492735.0,14610148,10000000 -1564493335.0,14530144,10000000 -1564493935.0,14565241,10000000 -1564494535.0,14437220,10000000 -1564495135.0,14397959,10000000 -1564495735.0,14371684,10000000 -1564496335.0,14439208,10000000 -1564496935.0,14531208,10000000 -1564497535.0,14587783,10000000 -1564498135.0,14543332,10000000 -1564498735.0,14445233,10000000 -1564499335.0,14474281,10000000 -1564499935.0,14405262,10000000 -1564500535.0,14405129,10000000 -1564501135.0,14360249,10000000 -1564501735.0,14353689,10000000 -1564502335.0,14359847,10000000 -1564502935.0,14237416,10000000 -1564503535.0,14213322,10000000 -1564504135.0,14224075,10000000 -1564504735.0,14257883,10000000 -1564505335.0,14289085,10000000 -1564505935.0,14293036,10000000 -1564506535.0,14280685,10000000 -1564507135.0,14213758,10000000 -1564507735.0,14356776,10000000 -1564508335.0,14382072,10000000 -1564508935.0,14367904,10000000 -1564509535.0,14352270,10000000 -1564510135.0,14331417,10000000 -1564510735.0,14298183,10000000 -1564511335.0,14393132,10000000 -1564511935.0,14344114,10000000 -1564512535.0,14414474,10000000 -1564513135.0,14453250,10000000 -1564513735.0,14457574,10000000 -1564514335.0,14323785,10000000 -1564514935.0,14334515,10000000 -1564515535.0,14384938,10000000 -1564516135.0,14399861,10000000 -1564516735.0,14289743,10000000 -1564517335.0,14354314,10000000 -1564517935.0,14308783,10000000 -1564518535.0,14265619,10000000 -1564519135.0,14309096,10000000 -1564519735.0,14292163,10000000 -1564520335.0,14266788,10000000 -1564520935.0,14330318,10000000 -1564521535.0,14344364,10000000 -1564522135.0,14347215,10000000 -1564522735.0,14336895,10000000 -1564523335.0,14376137,10000000 -1564523935.0,14417382,10000000 -1564524535.0,14549251,10000000 -1564525135.0,14620713,10000000 -1564525735.0,14663492,10000000 -1564526335.0,14555531,10000000 -1564526935.0,14594241,10000000 -1564527535.0,14595680,10000000 -1564528135.0,14498435,10000000 -1564528735.0,14491638,10000000 -1564529335.0,14558042,10000000 -1564529935.0,14500258,10000000 -1564530535.0,14501363,10000000 -1564531135.0,14498387,10000000 -1564531735.0,14537477,10000000 -1564532335.0,14668779,10000000 -1564532935.0,14550096,10000000 -1564533535.0,14590304,10000000 -1564534135.0,14556827,10000000 -1564534735.0,14519768,10000000 -1564535335.0,14588108,10000000 -1564535935.0,14639871,10000000 -1564536535.0,14774117,10000000 -1564537135.0,14594117,10000000 -1564537735.0,14605996,10000000 -1564538335.0,14604670,10000000 -1564538935.0,14540226,10000000 -1564539535.0,14469103,10000000 -1564540135.0,14527330,10000000 -1564540735.0,14447874,10000000 -1564541335.0,14510229,10000000 -1564541935.0,14510507,10000000 -1564542535.0,14523874,10000000 -1564543135.0,14473353,10000000 -1564543735.0,14466997,10000000 -1564544335.0,14423835,10000000 -1564544935.0,14339846,10000000 -1564545535.0,14323433,10000000 -1564546135.0,14339572,10000000 -1564546735.0,14372554,10000000 -1564547335.0,14293914,10000000 -1564547935.0,14229001,10000000 -1564548535.0,14203976,10000000 -1564549135.0,14294468,10000000 -1564549735.0,14298252,10000000 -1564550335.0,14380415,10000000 -1564550935.0,14367170,10000000 -1564551535.0,14375300,10000000 -1564552135.0,14355584,10000000 -1564552735.0,14509847,10000000 -1564553335.0,14423889,10000000 -1564553935.0,14436375,10000000 -1564554535.0,14452180,10000000 -1564555135.0,14549649,10000000 -1564555735.0,14613200,10000000 -1564556335.0,14623380,10000000 -1564556935.0,14693478,10000000 -1564557535.0,14650021,10000000 -1564558135.0,14742082,10000000 -1564558735.0,14745422,10000000 -1564559335.0,14726034,10000000 -1564559935.0,14786610,10000000 -1564560535.0,14818483,10000000 -1564561135.0,14830412,10000000 -1564561735.0,14788822,10000000 -1564562335.0,14855606,10000000 -1564562935.0,14911658,10000000 -1564563535.0,14922702,10000000 -1564564135.0,15047238,10000000 -1564564735.0,15061485,10000000 -1564565335.0,15017571,10000000 -1564565935.0,15040477,10000000 -1564566535.0,15044606,10000000 -1564567135.0,14910593,10000000 -1564567735.0,14921315,10000000 -1564568335.0,14861741,10000000 -1564568935.0,14858919,10000000 -1564569535.0,14855496,10000000 -1564570135.0,14860211,10000000 -1564570735.0,14786007,10000000 -1564571335.0,14855949,10000000 -1564571935.0,14737454,10000000 -1564572535.0,14641248,10000000 -1564573135.0,14515062,10000000 -1564573735.0,14568381,10000000 -1564574335.0,14577412,10000000 -1564574935.0,14587587,10000000 -1564575535.0,14528765,10000000 -1564576135.0,14535429,10000000 -1564576735.0,14512999,10000000 -1564577335.0,14554534,10000000 -1564577935.0,14625693,10000000 -1564578535.0,14587850,10000000 -1564579135.0,14638017,10000000 -1564579735.0,14685095,10000000 -1564580335.0,14683581,10000000 -1564580935.0,14628415,10000000 -1564581535.0,14637760,10000000 -1564582135.0,14633309,10000000 -1564582735.0,14626442,10000000 -1564583335.0,14542149,10000000 -1564583935.0,14487764,10000000 -1564584535.0,14545767,10000000 -1564585135.0,14643110,10000000 -1564585735.0,14619646,10000000 -1564586335.0,14722740,10000000 -1564586935.0,14754224,10000000 -1564587535.0,14720482,10000000 -1564588135.0,14778668,10000000 -1564588735.0,14785129,10000000 -1564589335.0,14729401,10000000 -1564589935.0,14793378,10000000 -1564590535.0,14756572,10000000 -1564591135.0,14785679,10000000 -1564591735.0,14861474,10000000 -1564592335.0,14853839,10000000 -1564592935.0,14764847,10000000 -1564593535.0,14726564,10000000 -1564594135.0,14681452,10000000 -1564594735.0,14613012,10000000 -1564595335.0,14619875,10000000 -1564595935.0,14635948,10000000 -1564596535.0,14654481,10000000 -1564597135.0,14590007,10000000 -1564597735.0,14577332,10000000 -1564598335.0,14674922,10000000 -1564598935.0,14564131,10000000 -1564599535.0,14584736,10000000 -1564600135.0,14659876,10000000 -1564600735.0,14645686,10000000 -1564601335.0,14710718,10000000 -1564601935.0,14688006,10000000 -1564602535.0,14757775,10000000 -1564603135.0,14687944,10000000 -1564603735.0,14697588,10000000 -1564604335.0,14858791,10000000 -1564604935.0,14862463,10000000 -1564605535.0,14934142,10000000 -1564606135.0,14812539,10000000 -1564606735.0,14768252,10000000 -1564607335.0,14824639,10000000 -1564607935.0,14893752,10000000 -1564608535.0,14846151,10000000 -1564609135.0,14917747,10000000 -1564609735.0,14973979,10000000 -1564610335.0,14937181,10000000 -1564610935.0,14922321,10000000 -1564611535.0,14906615,10000000 -1564612135.0,14929768,10000000 -1564612735.0,14911065,10000000 -1564613335.0,14825032,10000000 -1564613935.0,14735500,10000000 -1564614535.0,14746237,10000000 -1564615135.0,14786997,10000000 -1564615735.0,14739674,10000000 -1564616335.0,14658949,10000000 -1564616935.0,14638086,10000000 -1564617535.0,14673147,10000000 -1564618135.0,14615560,10000000 -1564618735.0,14620065,10000000 -1564619335.0,14619351,10000000 -1564619935.0,14615696,10000000 -1564620535.0,14577455,10000000 -1564621135.0,14612279,10000000 -1564621735.0,14632674,10000000 -1564622335.0,14730526,10000000 -1564622935.0,14593463,10000000 -1564623535.0,14605545,10000000 -1564624135.0,14597227,10000000 -1564624735.0,14686656,10000000 -1564625335.0,14670350,10000000 -1564625935.0,14665804,10000000 -1564626535.0,14655934,10000000 -1564627135.0,14629706,10000000 -1564627735.0,14611042,10000000 -1564628335.0,14574343,10000000 -1564628935.0,14556887,10000000 -1564629535.0,14493143,10000000 -1564630135.0,14461676,10000000 -1564630735.0,14564560,10000000 -1564631335.0,14396931,10000000 -1564631935.0,14453479,10000000 -1564632535.0,14402017,10000000 -1564633135.0,14330904,10000000 -1564633735.0,14366106,10000000 -1564634335.0,14433308,10000000 -1564634935.0,14464085,10000000 -1564635535.0,14533634,10000000 -1564636135.0,14485395,10000000 -1564636735.0,14454983,10000000 -1564637335.0,14490459,10000000 -1564637935.0,14548894,10000000 -1564638535.0,14540376,10000000 -1564639135.0,14537583,10000000 -1564639735.0,14536514,10000000 -1564640335.0,14606471,10000000 -1564640935.0,14549138,10000000 -1564641535.0,14561000,10000000 -1564642135.0,14549312,10000000 -1564642735.0,14512334,10000000 -1564643335.0,14456393,10000000 -1564643935.0,14320055,10000000 -1564644535.0,14286729,10000000 -1564645135.0,14212977,10000000 -1564645735.0,14232739,10000000 -1564646335.0,14211162,10000000 -1564646935.0,14174000,10000000 -1564647535.0,14180490,10000000 -1564648135.0,14210690,10000000 -1564648735.0,14272974,10000000 -1564649335.0,14280454,10000000 -1564649935.0,14364752,10000000 -1564650535.0,14239399,10000000 -1564651135.0,14273819,10000000 -1564651735.0,14250533,10000000 -1564652335.0,14236961,10000000 -1564652935.0,14256047,10000000 -1564653535.0,14215339,10000000 -1564654135.0,14234179,10000000 -1564654735.0,14184574,10000000 -1564655335.0,14133808,10000000 -1564655935.0,14077670,10000000 -1564656535.0,14084844,10000000 -1564657135.0,14127077,10000000 -1564657735.0,14045546,10000000 -1564658335.0,14000333,10000000 -1564658935.0,13966163,10000000 -1564659535.0,13930152,10000000 -1564660135.0,13850857,10000000 -1564660735.0,13903549,10000000 -1564661335.0,13906169,10000000 -1564661935.0,13917789,10000000 -1564662535.0,13959961,10000000 -1564663135.0,13979844,10000000 -1564663735.0,13980157,10000000 -1564664335.0,13870409,10000000 -1564664935.0,13819213,10000000 -1564665535.0,13759301,10000000 -1564666135.0,13716438,10000000 -1564666735.0,13653630,10000000 -1564667335.0,13675157,10000000 -1564667935.0,13686756,10000000 -1564668535.0,13737577,10000000 -1564669135.0,13732946,10000000 -1564669735.0,13755924,10000000 -1564670335.0,13792482,10000000 -1564670935.0,13776099,10000000 -1564671535.0,13741772,10000000 -1564672135.0,13824908,10000000 -1564672735.0,13908057,10000000 -1564673335.0,13937567,10000000 -1564673935.0,13923423,10000000 -1564674535.0,13951200,10000000 -1564675135.0,13981442,10000000 -1564675735.0,13932400,10000000 -1564676335.0,13922489,10000000 -1564676935.0,13921855,10000000 -1564677535.0,14049659,10000000 -1564678135.0,14164227,10000000 -1564678735.0,14243394,10000000 -1564679335.0,14263867,10000000 -1564679935.0,14360077,10000000 -1564680535.0,14402348,10000000 -1564681135.0,14364170,10000000 -1564681735.0,14324567,10000000 -1564682335.0,14417322,10000000 -1564682935.0,14237636,10000000 -1564683535.0,14188282,10000000 -1564684135.0,14150045,10000000 -1564684735.0,14132991,10000000 -1564685335.0,14062276,10000000 -1564685935.0,14019751,10000000 -1564686535.0,13971148,10000000 -1564687135.0,13943024,10000000 -1564687735.0,13997058,10000000 -1564688335.0,14058697,10000000 -1564688935.0,14049216,10000000 -1564689535.0,14014882,10000000 -1564690135.0,13950873,10000000 -1564690735.0,13948756,10000000 -1564691335.0,13879501,10000000 -1564691935.0,13831186,10000000 -1564692535.0,13796766,10000000 -1564693135.0,13843334,10000000 -1564693735.0,13779415,10000000 -1564694335.0,13767454,10000000 -1564694935.0,13800074,10000000 -1564695535.0,13726346,10000000 -1564696135.0,13714379,10000000 -1564696735.0,13636546,10000000 -1564697335.0,13599226,10000000 -1564697935.0,13678126,10000000 -1564698535.0,13670376,10000000 -1564699135.0,13723406,10000000 -1564699735.0,13813177,10000000 -1564700335.0,13763994,10000000 -1564700935.0,13808937,10000000 -1564701535.0,13824971,10000000 -1564702135.0,13908164,10000000 -1564702735.0,13881853,10000000 -1564703335.0,13863806,10000000 -1564703935.0,13911900,10000000 -1564704535.0,13959692,10000000 -1564705135.0,13952246,10000000 -1564705735.0,13891855,10000000 -1564706335.0,13840130,10000000 -1564706935.0,13841420,10000000 -1564707535.0,13872212,10000000 -1564708135.0,13834397,10000000 -1564708735.0,13841955,10000000 -1564709335.0,13805086,10000000 -1564709935.0,13809451,10000000 -1564710535.0,13769887,10000000 -1564711135.0,13804505,10000000 -1564711735.0,13844580,10000000 -1564712335.0,13845809,10000000 -1564712935.0,13874708,10000000 -1564713535.0,13977282,10000000 -1564714135.0,13958113,10000000 -1564714735.0,13991831,10000000 -1564715335.0,14002144,10000000 -1564715935.0,13949797,10000000 -1564716535.0,13931494,10000000 -1564717135.0,13873265,10000000 -1564717735.0,14034407,10000000 -1564718335.0,14012063,10000000 -1564718935.0,14037800,10000000 -1564719535.0,14036363,10000000 -1564720135.0,14148070,10000000 -1564720735.0,14242598,10000000 -1564721335.0,14125535,10000000 -1564721935.0,14113643,10000000 -1564722535.0,14085851,10000000 -1564723135.0,14137356,10000000 -1564723735.0,14172737,10000000 -1564724335.0,14138028,10000000 -1564724935.0,14090250,10000000 -1564725535.0,14154491,10000000 -1564726135.0,14151785,10000000 -1564726735.0,14189494,10000000 -1564727335.0,14207355,10000000 -1564727935.0,14176828,10000000 -1564728535.0,14214091,10000000 -1564729135.0,14179858,10000000 -1564729735.0,14175071,10000000 -1564730335.0,14127068,10000000 -1564730935.0,14162576,10000000 -1564731535.0,14228384,10000000 -1564732135.0,14258369,10000000 -1564732735.0,14233735,10000000 -1564733335.0,14193632,10000000 -1564733935.0,14270416,10000000 -1564734535.0,14219519,10000000 -1564735135.0,14178995,10000000 -1564735735.0,14285004,10000000 -1564736335.0,14220956,10000000 -1564736935.0,14171971,10000000 -1564737535.0,14168915,10000000 -1564738135.0,14134200,10000000 -1564738735.0,14152665,10000000 -1564739335.0,14227165,10000000 -1564739935.0,14254266,10000000 -1564740535.0,14443227,10000000 -1564741135.0,14317181,10000000 -1564741735.0,14284052,10000000 -1564742335.0,14288803,10000000 -1564742935.0,14287561,10000000 -1564743535.0,14217259,10000000 -1564744135.0,14228139,10000000 -1564744735.0,14315599,10000000 -1564745335.0,14267637,10000000 -1564745935.0,14201225,10000000 -1564746535.0,14102436,10000000 -1564747135.0,14122860,10000000 -1564747735.0,14182089,10000000 -1564748335.0,14229198,10000000 -1564748935.0,14337522,10000000 -1564749535.0,14357190,10000000 -1564750135.0,14338327,10000000 -1564750735.0,14357931,10000000 -1564751335.0,14229456,10000000 -1564751935.0,14245182,10000000 -1564752535.0,14215637,10000000 -1564753135.0,14175610,10000000 -1564753735.0,14272614,10000000 -1564754335.0,14241263,10000000 -1564754935.0,14295850,10000000 -1564755535.0,14270997,10000000 -1564756135.0,14235506,10000000 -1564756735.0,14214454,10000000 -1564757335.0,14131040,10000000 -1564757935.0,14135721,10000000 -1564758535.0,14090760,10000000 -1564759135.0,14045295,10000000 -1564759735.0,14098346,10000000 -1564760335.0,14084918,10000000 -1564760935.0,14047589,10000000 -1564761535.0,14054136,10000000 -1564762135.0,14025337,10000000 -1564762735.0,13957673,10000000 -1564763335.0,14049572,10000000 -1564763935.0,14046540,10000000 -1564764535.0,14015697,10000000 -1564765135.0,14021722,10000000 -1564765735.0,13966977,10000000 -1564766335.0,13933314,10000000 -1564766935.0,13928612,10000000 -1564767535.0,13901125,10000000 -1564768135.0,13780603,10000000 -1564768735.0,13769800,10000000 -1564769335.0,13824893,10000000 -1564769935.0,13842420,10000000 -1564770535.0,13790741,10000000 -1564771135.0,13606116,10000000 -1564771735.0,13654759,10000000 -1564772335.0,13624278,10000000 -1564772935.0,13638809,10000000 -1564773535.0,13645992,10000000 -1564774135.0,13614154,10000000 -1564774735.0,13710418,10000000 -1564775335.0,13655277,10000000 -1564775935.0,13719798,10000000 -1564776535.0,13751207,10000000 -1564777135.0,13758425,10000000 -1564777735.0,13808063,10000000 -1564778335.0,13792663,10000000 -1564778935.0,13756643,10000000 -1564779535.0,13790671,10000000 -1564780135.0,13870565,10000000 -1564780735.0,13925578,10000000 -1564781335.0,13977541,10000000 -1564781935.0,14034048,10000000 -1564782535.0,14095974,10000000 -1564783135.0,14008794,10000000 -1564783735.0,13997081,10000000 -1564784335.0,13865086,10000000 -1564784935.0,13854775,10000000 -1564785535.0,13901995,10000000 -1564786135.0,13842630,10000000 -1564786735.0,13847242,10000000 -1564787335.0,13770850,10000000 -1564787935.0,13754181,10000000 -1564788535.0,13829679,10000000 -1564789135.0,13839484,10000000 -1564789735.0,13865260,10000000 -1564790335.0,13826052,10000000 -1564790935.0,13759847,10000000 -1564791535.0,13815955,10000000 -1564792135.0,13823989,10000000 -1564792735.0,13842315,10000000 -1564793335.0,13789231,10000000 -1564793935.0,13735267,10000000 -1564794535.0,13753687,10000000 -1564795135.0,13819510,10000000 -1564795735.0,13859294,10000000 -1564796335.0,13926306,10000000 -1564796935.0,13905603,10000000 -1564797535.0,13836743,10000000 -1564798135.0,13825595,10000000 -1564798735.0,13880243,10000000 -1564799335.0,13842996,10000000 -1564799935.0,13920115,10000000 -1564800535.0,13936163,10000000 -1564801135.0,13995605,10000000 -1564801735.0,14109109,10000000 -1564802335.0,14052665,10000000 -1564802935.0,14142884,10000000 -1564803535.0,14205118,10000000 -1564804135.0,14148757,10000000 -1564804735.0,14192235,10000000 -1564805335.0,14185140,10000000 -1564805935.0,14235665,10000000 -1564806535.0,14288795,10000000 -1564807135.0,14356593,10000000 -1564807735.0,14372294,10000000 -1564808335.0,14386502,10000000 -1564808935.0,14306990,10000000 -1564809535.0,14321326,10000000 -1564810135.0,14459898,10000000 -1564810735.0,14297524,10000000 -1564811335.0,14253663,10000000 -1564811935.0,14241102,10000000 -1564812535.0,14189159,10000000 -1564813135.0,14193532,10000000 -1564813735.0,14194276,10000000 -1564814335.0,14161804,10000000 -1564814935.0,14141893,10000000 -1564815535.0,14005023,10000000 -1564816135.0,14050750,10000000 -1564816735.0,14079773,10000000 -1564817335.0,14089122,10000000 -1564817935.0,14116944,10000000 -1564818535.0,14144214,10000000 -1564819135.0,14229468,10000000 -1564819735.0,14220130,10000000 -1564820335.0,14193117,10000000 -1564820935.0,14240167,10000000 -1564821535.0,14156184,10000000 -1564822135.0,14267068,10000000 -1564822735.0,14340070,10000000 -1564823335.0,14312662,10000000 -1564823935.0,14322766,10000000 -1564824535.0,14340357,10000000 -1564825135.0,14462388,10000000 -1564825735.0,14502673,10000000 -1564826335.0,14438867,10000000 -1564826935.0,14411323,10000000 -1564827535.0,14316346,10000000 -1564828135.0,14367343,10000000 -1564828735.0,14431323,10000000 -1564829335.0,14394776,10000000 -1564829935.0,14396570,10000000 -1564830535.0,14439926,10000000 -1564831135.0,14455258,10000000 -1564831735.0,14479728,10000000 -1564832335.0,14460287,10000000 -1564832935.0,14455616,10000000 -1564833535.0,14396862,10000000 -1564834135.0,14413101,10000000 -1564834735.0,14421510,10000000 -1564835335.0,14411685,10000000 -1564835935.0,14392329,10000000 -1564836535.0,14520207,10000000 -1564837135.0,14505524,10000000 -1564837735.0,14486453,10000000 -1564838335.0,14532338,10000000 -1564838935.0,14492709,10000000 -1564839535.0,14519760,10000000 -1564840135.0,14539503,10000000 -1564840735.0,14517712,10000000 -1564841335.0,14499941,10000000 -1564841935.0,14619735,10000000 -1564842535.0,14768912,10000000 -1564843135.0,14829052,10000000 -1564843735.0,14838120,10000000 -1564844335.0,14758516,10000000 -1564844935.0,14787029,10000000 -1564845535.0,14731614,10000000 -1564846135.0,14631526,10000000 -1564846735.0,14635465,10000000 -1564847335.0,14560416,10000000 -1564847935.0,14451593,10000000 -1564848535.0,14462252,10000000 -1564849135.0,14480889,10000000 -1564849735.0,14549640,10000000 -1564850335.0,14425931,10000000 -1564850935.0,14389657,10000000 -1564851535.0,14311793,10000000 -1564852135.0,14246504,10000000 -1564852735.0,14296531,10000000 -1564853335.0,14448917,10000000 -1564853935.0,14491739,10000000 -1564854535.0,14560789,10000000 -1564855135.0,14613804,10000000 -1564855735.0,14721603,10000000 -1564856335.0,14761496,10000000 -1564856935.0,14788581,10000000 -1564857535.0,14769255,10000000 -1564858135.0,14758867,10000000 -1564858735.0,14796054,10000000 -1564859335.0,14781535,10000000 -1564859935.0,14814848,10000000 -1564860535.0,14718769,10000000 -1564861135.0,14768647,10000000 -1564861735.0,14745533,10000000 -1564862335.0,14724746,10000000 -1564862935.0,14745262,10000000 -1564863535.0,14739645,10000000 -1564864135.0,14725856,10000000 -1564864735.0,14786257,10000000 -1564865335.0,14722069,10000000 -1564865935.0,14762742,10000000 -1564866535.0,14661886,10000000 -1564867135.0,14672936,10000000 -1564867735.0,14646232,10000000 -1564868335.0,14653838,10000000 -1564868935.0,14693757,10000000 -1564869535.0,14621854,10000000 -1564870135.0,14529923,10000000 -1564870735.0,14523748,10000000 -1564871335.0,14515672,10000000 -1564871935.0,14403583,10000000 -1564872535.0,14400199,10000000 -1564873135.0,14378830,10000000 -1564873735.0,14450403,10000000 -1564874335.0,14517249,10000000 -1564874935.0,14563054,10000000 -1564875535.0,14495483,10000000 -1564876135.0,14543626,10000000 -1564876735.0,14509190,10000000 -1564877335.0,14453832,10000000 -1564877935.0,14461823,10000000 -1564878535.0,14471695,10000000 -1564879135.0,14411618,10000000 -1564879735.0,14426548,10000000 -1564880335.0,14488928,10000000 -1564880935.0,14563355,10000000 -1564881535.0,14559845,10000000 -1564882135.0,14490401,10000000 -1564882735.0,14476919,10000000 -1564883335.0,14456297,10000000 -1564883935.0,14472343,10000000 -1564884535.0,14377982,10000000 -1564885135.0,14371017,10000000 -1564885735.0,14368279,10000000 -1564886335.0,14319743,10000000 -1564886935.0,14290899,10000000 -1564887535.0,14348655,10000000 -1564888135.0,14383634,10000000 -1564888735.0,14344417,10000000 -1564889335.0,14379438,10000000 -1564889935.0,14403606,10000000 -1564890535.0,14363728,10000000 -1564891135.0,14341224,10000000 -1564891735.0,14364961,10000000 -1564892335.0,14372763,10000000 -1564892935.0,14353257,10000000 -1564893535.0,14246652,10000000 -1564894135.0,14222481,10000000 -1564894735.0,14267837,10000000 -1564895335.0,14263466,10000000 -1564895935.0,14237242,10000000 -1564896535.0,14146540,10000000 -1564897135.0,14215915,10000000 -1564897735.0,14267150,10000000 -1564898335.0,14326402,10000000 -1564898935.0,14349454,10000000 -1564899535.0,14336881,10000000 -1564900135.0,14399722,10000000 -1564900735.0,14395256,10000000 -1564901335.0,14356979,10000000 -1564901935.0,14276854,10000000 -1564902535.0,14216332,10000000 -1564903135.0,14231236,10000000 -1564903735.0,14244371,10000000 -1564904335.0,14174686,10000000 -1564904935.0,14198194,10000000 -1564905535.0,14110814,10000000 -1564906135.0,14132986,10000000 -1564906735.0,14128968,10000000 -1564907335.0,14030698,10000000 -1564907935.0,14074083,10000000 -1564908535.0,14075960,10000000 -1564909135.0,14147157,10000000 -1564909735.0,14192048,10000000 -1564910335.0,14192422,10000000 -1564910935.0,14060119,10000000 -1564911535.0,14107655,10000000 -1564912135.0,14182782,10000000 -1564912735.0,14183767,10000000 -1564913335.0,14051339,10000000 -1564913935.0,14142959,10000000 -1564914535.0,14100643,10000000 -1564915135.0,14110849,10000000 -1564915735.0,14163593,10000000 -1564916335.0,14261364,10000000 -1564916935.0,14231216,10000000 -1564917535.0,14089336,10000000 -1564918135.0,14079495,10000000 -1564918735.0,14056875,10000000 -1564919335.0,14099846,10000000 -1564919935.0,14111362,10000000 -1564920535.0,14082103,10000000 -1564921135.0,14132077,10000000 -1564921735.0,14131226,10000000 -1564922335.0,14023518,10000000 -1564922935.0,14047448,10000000 -1564923535.0,14196235,10000000 -1564924135.0,14089061,10000000 -1564924735.0,14077284,10000000 -1564925335.0,14102110,10000000 -1564925935.0,14228173,10000000 -1564926535.0,14248597,10000000 -1564927135.0,14210750,10000000 -1564927735.0,14118441,10000000 -1564928335.0,14070053,10000000 -1564928935.0,14081110,10000000 -1564929535.0,13990288,10000000 -1564930135.0,13986621,10000000 -1564930735.0,14074934,10000000 -1564931335.0,14162427,10000000 -1564931935.0,14126580,10000000 -1564932535.0,14175395,10000000 -1564933135.0,14254055,10000000 -1564933735.0,14268669,10000000 -1564934335.0,14200606,10000000 -1564934935.0,14263110,10000000 -1564935535.0,14266333,10000000 -1564936135.0,14285754,10000000 -1564936735.0,14297346,10000000 -1564937335.0,14311658,10000000 -1564937935.0,14336203,10000000 -1564938535.0,14386080,10000000 -1564939135.0,14354204,10000000 -1564939735.0,14441277,10000000 -1564940335.0,14509967,10000000 -1564940935.0,14576459,10000000 -1564941535.0,14495979,10000000 -1564942135.0,14570125,10000000 -1564942735.0,14630422,10000000 -1564943335.0,14699633,10000000 -1564943935.0,14778954,10000000 -1564944535.0,14855497,10000000 -1564945135.0,14737815,10000000 -1564945735.0,14785646,10000000 -1564946335.0,14829698,10000000 -1564946935.0,14874470,10000000 -1564947535.0,15003077,10000000 -1564948135.0,14972517,10000000 -1564948735.0,15031572,10000000 -1564949335.0,15031486,10000000 -1564949935.0,14953354,10000000 -1564950535.0,14947533,10000000 -1564951135.0,14904553,10000000 -1564951735.0,14906574,10000000 -1564952335.0,14809188,10000000 -1564952935.0,14796514,10000000 -1564953535.0,14735347,10000000 -1564954135.0,14821774,10000000 -1564954735.0,14777927,10000000 -1564955335.0,14829347,10000000 -1564955935.0,14853068,10000000 -1564956535.0,14886685,10000000 -1564957135.0,15000000,10000000 +1569594978.0,10000000,10000000 +1569595578.0,10000679,10000000 +1569596178.0,9989254,10000000 +1569596778.0,9943538,10000000 +1569597378.0,9943634,10000000 +1569597978.0,9928599,10000000 +1569598578.0,9909343,10000000 +1569599178.0,9847515,10000000 +1569599778.0,9828017,10000000 +1569600378.0,9818788,10000000 +1569600978.0,9792935,10000000 +1569601578.0,9819538,10000000 +1569602178.0,9891620,10000000 +1569602778.0,9904482,10000000 +1569603378.0,9934352,10000000 +1569603978.0,10010725,10000000 +1569604578.0,10029345,10000000 +1569605178.0,10094661,10000000 +1569605778.0,10057483,10000000 +1569606378.0,10052375,10000000 +1569606978.0,10107511,10000000 +1569607578.0,10136632,10000000 +1569608178.0,10138624,10000000 +1569608778.0,10178129,10000000 +1569609378.0,10194925,10000000 +1569609978.0,10217530,10000000 +1569610578.0,10203064,10000000 +1569611178.0,10212590,10000000 +1569611778.0,10227222,10000000 +1569612378.0,10206659,10000000 +1569612978.0,10118728,10000000 +1569613578.0,10115887,10000000 +1569614178.0,10220550,10000000 +1569614778.0,10108028,10000000 +1569615378.0,10070275,10000000 +1569615978.0,10061378,10000000 +1569616578.0,10073313,10000000 +1569617178.0,10121514,10000000 +1569617778.0,10166214,10000000 +1569618378.0,10222240,10000000 +1569618978.0,10282241,10000000 +1569619578.0,10254805,10000000 +1569620178.0,10253051,10000000 +1569620778.0,10232364,10000000 +1569621378.0,10251637,10000000 +1569621978.0,10236245,10000000 +1569622578.0,10197597,10000000 +1569623178.0,10280038,10000000 +1569623778.0,10274253,10000000 +1569624378.0,10247595,10000000 +1569624978.0,10283523,10000000 +1569625578.0,10232419,10000000 +1569626178.0,10211626,10000000 +1569626778.0,10182449,10000000 +1569627378.0,10099670,10000000 +1569627978.0,9989160,10000000 +1569628578.0,9987392,10000000 +1569629178.0,9960753,10000000 +1569629778.0,9933957,10000000 +1569630378.0,9966484,10000000 +1569630978.0,9929850,10000000 +1569631578.0,10000804,10000000 +1569632178.0,9930955,10000000 +1569632778.0,9816660,10000000 +1569633378.0,9808035,10000000 +1569633978.0,9824912,10000000 +1569634578.0,9893718,10000000 +1569635178.0,9874010,10000000 +1569635778.0,9859173,10000000 +1569636378.0,9852826,10000000 +1569636978.0,9953189,10000000 +1569637578.0,9879081,10000000 +1569638178.0,9893702,10000000 +1569638778.0,9893392,10000000 +1569639378.0,9854522,10000000 +1569639978.0,9839426,10000000 +1569640578.0,9844541,10000000 +1569641178.0,9810147,10000000 +1569641778.0,9810777,10000000 +1569642378.0,9838575,10000000 +1569642978.0,9869973,10000000 +1569643578.0,9851458,10000000 +1569644178.0,9840700,10000000 +1569644778.0,9842779,10000000 +1569645378.0,9878253,10000000 +1569645978.0,9885590,10000000 +1569646578.0,9936128,10000000 +1569647178.0,9957585,10000000 +1569647778.0,9892715,10000000 +1569648378.0,9935603,10000000 +1569648978.0,9909234,10000000 +1569649578.0,9932061,10000000 +1569650178.0,9932360,10000000 +1569650778.0,9971338,10000000 +1569651378.0,9973906,10000000 +1569651978.0,9980442,10000000 +1569652578.0,9912538,10000000 +1569653178.0,9969832,10000000 +1569653778.0,9971506,10000000 +1569654378.0,9955719,10000000 +1569654978.0,10009775,10000000 +1569655578.0,10033847,10000000 +1569656178.0,10044510,10000000 +1569656778.0,10065253,10000000 +1569657378.0,10068481,10000000 +1569657978.0,10024305,10000000 +1569658578.0,9971898,10000000 +1569659178.0,10010834,10000000 +1569659778.0,10055571,10000000 +1569660378.0,10078871,10000000 +1569660978.0,10092498,10000000 +1569661578.0,10134049,10000000 +1569662178.0,10183570,10000000 +1569662778.0,10202164,10000000 +1569663378.0,10245377,10000000 +1569663978.0,10283814,10000000 +1569664578.0,10261770,10000000 +1569665178.0,10297292,10000000 +1569665778.0,10254276,10000000 +1569666378.0,10158886,10000000 +1569666978.0,10188353,10000000 +1569667578.0,10171956,10000000 +1569668178.0,10255176,10000000 +1569668778.0,10202786,10000000 +1569669378.0,10243445,10000000 +1569669978.0,10233820,10000000 +1569670578.0,10246023,10000000 +1569671178.0,10200005,10000000 +1569671778.0,10303227,10000000 +1569672378.0,10291869,10000000 +1569672978.0,10379982,10000000 +1569673578.0,10377096,10000000 +1569674178.0,10325193,10000000 +1569674778.0,10291190,10000000 +1569675378.0,10348518,10000000 +1569675978.0,10324252,10000000 +1569676578.0,10328436,10000000 +1569677178.0,10389343,10000000 +1569677778.0,10436943,10000000 +1569678378.0,10393487,10000000 +1569678978.0,10381507,10000000 +1569679578.0,10449840,10000000 +1569680178.0,10426741,10000000 +1569680778.0,10469220,10000000 +1569681378.0,10479101,10000000 +1569681978.0,10425526,10000000 +1569682578.0,10439425,10000000 +1569683178.0,10414088,10000000 +1569683778.0,10420090,10000000 +1569684378.0,10386468,10000000 +1569684978.0,10415031,10000000 +1569685578.0,10413102,10000000 +1569686178.0,10453463,10000000 +1569686778.0,10406729,10000000 +1569687378.0,10399808,10000000 +1569687978.0,10446734,10000000 +1569688578.0,10501392,10000000 +1569689178.0,10546777,10000000 +1569689778.0,10585338,10000000 +1569690378.0,10553751,10000000 +1569690978.0,10573797,10000000 +1569691578.0,10602971,10000000 +1569692178.0,10615220,10000000 +1569692778.0,10647221,10000000 +1569693378.0,10628540,10000000 +1569693978.0,10664429,10000000 +1569694578.0,10653532,10000000 +1569695178.0,10616997,10000000 +1569695778.0,10552408,10000000 +1569696378.0,10601882,10000000 +1569696978.0,10549816,10000000 +1569697578.0,10505423,10000000 +1569698178.0,10437536,10000000 +1569698778.0,10527431,10000000 +1569699378.0,10611333,10000000 +1569699978.0,10576750,10000000 +1569700578.0,10497301,10000000 +1569701178.0,10464075,10000000 +1569701778.0,10436539,10000000 +1569702378.0,10416028,10000000 +1569702978.0,10432988,10000000 +1569703578.0,10388707,10000000 +1569704178.0,10383569,10000000 +1569704778.0,10400893,10000000 +1569705378.0,10416922,10000000 +1569705978.0,10432465,10000000 +1569706578.0,10407193,10000000 +1569707178.0,10399678,10000000 +1569707778.0,10430730,10000000 +1569708378.0,10373932,10000000 +1569708978.0,10415174,10000000 +1569709578.0,10396292,10000000 +1569710178.0,10437366,10000000 +1569710778.0,10359800,10000000 +1569711378.0,10379053,10000000 +1569711978.0,10355204,10000000 +1569712578.0,10402131,10000000 +1569713178.0,10397546,10000000 +1569713778.0,10353553,10000000 +1569714378.0,10390308,10000000 +1569714978.0,10354147,10000000 +1569715578.0,10303804,10000000 +1569716178.0,10260296,10000000 +1569716778.0,10221906,10000000 +1569717378.0,10187507,10000000 +1569717978.0,10156900,10000000 +1569718578.0,10193903,10000000 +1569719178.0,10234862,10000000 +1569719778.0,10286686,10000000 +1569720378.0,10369019,10000000 +1569720978.0,10392375,10000000 +1569721578.0,10386948,10000000 +1569722178.0,10331858,10000000 +1569722778.0,10312104,10000000 +1569723378.0,10312496,10000000 +1569723978.0,10369518,10000000 +1569724578.0,10342059,10000000 +1569725178.0,10412010,10000000 +1569725778.0,10480770,10000000 +1569726378.0,10470170,10000000 +1569726978.0,10455172,10000000 +1569727578.0,10456261,10000000 +1569728178.0,10422562,10000000 +1569728778.0,10375394,10000000 +1569729378.0,10351706,10000000 +1569729978.0,10373145,10000000 +1569730578.0,10275544,10000000 +1569731178.0,10305922,10000000 +1569731778.0,10376575,10000000 +1569732378.0,10430562,10000000 +1569732978.0,10503145,10000000 +1569733578.0,10438978,10000000 +1569734178.0,10392901,10000000 +1569734778.0,10462408,10000000 +1569735378.0,10480003,10000000 +1569735978.0,10536514,10000000 +1569736578.0,10546448,10000000 +1569737178.0,10574391,10000000 +1569737778.0,10530988,10000000 +1569738378.0,10508309,10000000 +1569738978.0,10550041,10000000 +1569739578.0,10558592,10000000 +1569740178.0,10557633,10000000 +1569740778.0,10595438,10000000 +1569741378.0,10560263,10000000 +1569741978.0,10487572,10000000 +1569742578.0,10451132,10000000 +1569743178.0,10439533,10000000 +1569743778.0,10506522,10000000 +1569744378.0,10465278,10000000 +1569744978.0,10497621,10000000 +1569745578.0,10522610,10000000 +1569746178.0,10559722,10000000 +1569746778.0,10625221,10000000 +1569747378.0,10625724,10000000 +1569747978.0,10673323,10000000 +1569748578.0,10630340,10000000 +1569749178.0,10679199,10000000 +1569749778.0,10696168,10000000 +1569750378.0,10648242,10000000 +1569750978.0,10550144,10000000 +1569751578.0,10545385,10000000 +1569752178.0,10538221,10000000 +1569752778.0,10636666,10000000 +1569753378.0,10737667,10000000 +1569753978.0,10693413,10000000 +1569754578.0,10738915,10000000 +1569755178.0,10734039,10000000 +1569755778.0,10727902,10000000 +1569756378.0,10670576,10000000 +1569756978.0,10659064,10000000 +1569757578.0,10676240,10000000 +1569758178.0,10649319,10000000 +1569758778.0,10679716,10000000 +1569759378.0,10685804,10000000 +1569759978.0,10764890,10000000 +1569760578.0,10801349,10000000 +1569761178.0,10823249,10000000 +1569761778.0,10831087,10000000 +1569762378.0,10814852,10000000 +1569762978.0,10859019,10000000 +1569763578.0,10834426,10000000 +1569764178.0,10869237,10000000 +1569764778.0,10868340,10000000 +1569765378.0,10876720,10000000 +1569765978.0,10969213,10000000 +1569766578.0,11003930,10000000 +1569767178.0,11040219,10000000 +1569767778.0,11023020,10000000 +1569768378.0,11025050,10000000 +1569768978.0,11035143,10000000 +1569769578.0,11002358,10000000 +1569770178.0,10959865,10000000 +1569770778.0,10971903,10000000 +1569771378.0,11031924,10000000 +1569771978.0,10978899,10000000 +1569772578.0,10986079,10000000 +1569773178.0,10955314,10000000 +1569773778.0,10978005,10000000 +1569774378.0,10994636,10000000 +1569774978.0,10937471,10000000 +1569775578.0,10883911,10000000 +1569776178.0,10905407,10000000 +1569776778.0,10913532,10000000 +1569777378.0,10929785,10000000 +1569777978.0,10957789,10000000 +1569778578.0,10987912,10000000 +1569779178.0,11092624,10000000 +1569779778.0,11111826,10000000 +1569780378.0,11114945,10000000 +1569780978.0,11101652,10000000 +1569781578.0,11176623,10000000 +1569782178.0,11226172,10000000 +1569782778.0,11197588,10000000 +1569783378.0,11150014,10000000 +1569783978.0,11101653,10000000 +1569784578.0,11144154,10000000 +1569785178.0,11192903,10000000 +1569785778.0,11203021,10000000 +1569786378.0,11115896,10000000 +1569786978.0,11054568,10000000 +1569787578.0,11072107,10000000 +1569788178.0,11071225,10000000 +1569788778.0,11075419,10000000 +1569789378.0,11066641,10000000 +1569789978.0,11044342,10000000 +1569790578.0,11058699,10000000 +1569791178.0,11051223,10000000 +1569791778.0,10973739,10000000 +1569792378.0,10949414,10000000 +1569792978.0,10963664,10000000 +1569793578.0,10946838,10000000 +1569794178.0,10978479,10000000 +1569794778.0,11057391,10000000 +1569795378.0,10995823,10000000 +1569795978.0,11144592,10000000 +1569796578.0,11123302,10000000 +1569797178.0,11116959,10000000 +1569797778.0,11145204,10000000 +1569798378.0,11081498,10000000 +1569798978.0,11086671,10000000 +1569799578.0,11088449,10000000 +1569800178.0,11064978,10000000 +1569800778.0,11079331,10000000 +1569801378.0,11049251,10000000 +1569801978.0,11052147,10000000 +1569802578.0,10980283,10000000 +1569803178.0,11007289,10000000 +1569803778.0,11050809,10000000 +1569804378.0,11134616,10000000 +1569804978.0,11102015,10000000 +1569805578.0,11131157,10000000 +1569806178.0,11119428,10000000 +1569806778.0,11163570,10000000 +1569807378.0,11092945,10000000 +1569807978.0,11064358,10000000 +1569808578.0,11061436,10000000 +1569809178.0,11135954,10000000 +1569809778.0,11058731,10000000 +1569810378.0,11092932,10000000 +1569810978.0,11091594,10000000 +1569811578.0,11109316,10000000 +1569812178.0,11084850,10000000 +1569812778.0,11016468,10000000 +1569813378.0,11075889,10000000 +1569813978.0,11027453,10000000 +1569814578.0,11035171,10000000 +1569815178.0,10988027,10000000 +1569815778.0,11001000,10000000 +1569816378.0,11056043,10000000 +1569816978.0,11071466,10000000 +1569817578.0,11043495,10000000 +1569818178.0,11038265,10000000 +1569818778.0,11055419,10000000 +1569819378.0,10989054,10000000 +1569819978.0,11014488,10000000 +1569820578.0,11021515,10000000 +1569821178.0,11008235,10000000 +1569821778.0,11035571,10000000 +1569822378.0,11060662,10000000 +1569822978.0,11062606,10000000 +1569823578.0,11054099,10000000 +1569824178.0,11028063,10000000 +1569824778.0,11047844,10000000 +1569825378.0,11122783,10000000 +1569825978.0,11150294,10000000 +1569826578.0,11185575,10000000 +1569827178.0,11127420,10000000 +1569827778.0,11057168,10000000 +1569828378.0,11088400,10000000 +1569828978.0,11062112,10000000 +1569829578.0,11116496,10000000 +1569830178.0,11107128,10000000 +1569830778.0,11100892,10000000 +1569831378.0,11121251,10000000 +1569831978.0,11104667,10000000 +1569832578.0,11001156,10000000 +1569833178.0,11063583,10000000 +1569833778.0,11049837,10000000 +1569834378.0,11070722,10000000 +1569834978.0,11043730,10000000 +1569835578.0,11027394,10000000 +1569836178.0,11022457,10000000 +1569836778.0,11055185,10000000 +1569837378.0,11076039,10000000 +1569837978.0,11004715,10000000 +1569838578.0,11034309,10000000 +1569839178.0,11041917,10000000 +1569839778.0,11039511,10000000 +1569840378.0,11082871,10000000 +1569840978.0,10990883,10000000 +1569841578.0,11003190,10000000 +1569842178.0,11001379,10000000 +1569842778.0,11037970,10000000 +1569843378.0,11061351,10000000 +1569843978.0,11105194,10000000 +1569844578.0,11054060,10000000 +1569845178.0,11100111,10000000 +1569845778.0,11039261,10000000 +1569846378.0,11035362,10000000 +1569846978.0,11016637,10000000 +1569847578.0,11045498,10000000 +1569848178.0,11037653,10000000 +1569848778.0,11059457,10000000 +1569849378.0,11085563,10000000 +1569849978.0,11073262,10000000 +1569850578.0,11115413,10000000 +1569851178.0,11127032,10000000 +1569851778.0,11041033,10000000 +1569852378.0,10995273,10000000 +1569852978.0,10958266,10000000 +1569853578.0,10950834,10000000 +1569854178.0,10927271,10000000 +1569854778.0,10949269,10000000 +1569855378.0,10921844,10000000 +1569855978.0,10960382,10000000 +1569856578.0,10979766,10000000 +1569857178.0,10906468,10000000 +1569857778.0,10900918,10000000 +1569858378.0,10869623,10000000 +1569858978.0,10897202,10000000 +1569859578.0,10966415,10000000 +1569860178.0,10901727,10000000 +1569860778.0,10888575,10000000 +1569861378.0,10992355,10000000 +1569861978.0,10937795,10000000 +1569862578.0,10964531,10000000 +1569863178.0,10875185,10000000 +1569863778.0,10866662,10000000 +1569864378.0,10848765,10000000 +1569864978.0,10790261,10000000 +1569865578.0,10736193,10000000 +1569866178.0,10775116,10000000 +1569866778.0,10769331,10000000 +1569867378.0,10832994,10000000 +1569867978.0,10796398,10000000 +1569868578.0,10778180,10000000 +1569869178.0,10842325,10000000 +1569869778.0,10930856,10000000 +1569870378.0,10969458,10000000 +1569870978.0,10990256,10000000 +1569871578.0,11020457,10000000 +1569872178.0,11018591,10000000 +1569872778.0,11122178,10000000 +1569873378.0,11171579,10000000 +1569873978.0,11138880,10000000 +1569874578.0,11203538,10000000 +1569875178.0,11189339,10000000 +1569875778.0,11192740,10000000 +1569876378.0,11214234,10000000 +1569876978.0,11171223,10000000 +1569877578.0,11198818,10000000 +1569878178.0,11301722,10000000 +1569878778.0,11258250,10000000 +1569879378.0,11183765,10000000 +1569879978.0,11170457,10000000 +1569880578.0,11149497,10000000 +1569881178.0,11205457,10000000 +1569881778.0,11155043,10000000 +1569882378.0,11246355,10000000 +1569882978.0,11195410,10000000 +1569883578.0,11215910,10000000 +1569884178.0,11315909,10000000 +1569884778.0,11384050,10000000 +1569885378.0,11432584,10000000 +1569885978.0,11432261,10000000 +1569886578.0,11447372,10000000 +1569887178.0,11411552,10000000 +1569887778.0,11496188,10000000 +1569888378.0,11475335,10000000 +1569888978.0,11458745,10000000 +1569889578.0,11453817,10000000 +1569890178.0,11446189,10000000 +1569890778.0,11417608,10000000 +1569891378.0,11412774,10000000 +1569891978.0,11397843,10000000 +1569892578.0,11428498,10000000 +1569893178.0,11463130,10000000 +1569893778.0,11455887,10000000 +1569894378.0,11445186,10000000 +1569894978.0,11326473,10000000 +1569895578.0,11327774,10000000 +1569896178.0,11292633,10000000 +1569896778.0,11245893,10000000 +1569897378.0,11292397,10000000 +1569897978.0,11259926,10000000 +1569898578.0,11257715,10000000 +1569899178.0,11332385,10000000 +1569899778.0,11370656,10000000 +1569900378.0,11370418,10000000 +1569900978.0,11350623,10000000 +1569901578.0,11349275,10000000 +1569902178.0,11216307,10000000 +1569902778.0,11252623,10000000 +1569903378.0,11252567,10000000 +1569903978.0,11316470,10000000 +1569904578.0,11356287,10000000 +1569905178.0,11385017,10000000 +1569905778.0,11505492,10000000 +1569906378.0,11525556,10000000 +1569906978.0,11544797,10000000 +1569907578.0,11566427,10000000 +1569908178.0,11690560,10000000 +1569908778.0,11709528,10000000 +1569909378.0,11584189,10000000 +1569909978.0,11583621,10000000 +1569910578.0,11581876,10000000 +1569911178.0,11616646,10000000 +1569911778.0,11616874,10000000 +1569912378.0,11578004,10000000 +1569912978.0,11525116,10000000 +1569913578.0,11517767,10000000 +1569914178.0,11540380,10000000 +1569914778.0,11614528,10000000 +1569915378.0,11691361,10000000 +1569915978.0,11671435,10000000 +1569916578.0,11648661,10000000 +1569917178.0,11650364,10000000 +1569917778.0,11525634,10000000 +1569918378.0,11585106,10000000 +1569918978.0,11528152,10000000 +1569919578.0,11530488,10000000 +1569920178.0,11468442,10000000 +1569920778.0,11468508,10000000 +1569921378.0,11478237,10000000 +1569921978.0,11439095,10000000 +1569922578.0,11462991,10000000 +1569923178.0,11455178,10000000 +1569923778.0,11491994,10000000 +1569924378.0,11452216,10000000 +1569924978.0,11444077,10000000 +1569925578.0,11453656,10000000 +1569926178.0,11420904,10000000 +1569926778.0,11322852,10000000 +1569927378.0,11349379,10000000 +1569927978.0,11347219,10000000 +1569928578.0,11371215,10000000 +1569929178.0,11320575,10000000 +1569929778.0,11357487,10000000 +1569930378.0,11392622,10000000 +1569930978.0,11393612,10000000 +1569931578.0,11442020,10000000 +1569932178.0,11332657,10000000 +1569932778.0,11284652,10000000 +1569933378.0,11229510,10000000 +1569933978.0,11162522,10000000 +1569934578.0,11133523,10000000 +1569935178.0,11136449,10000000 +1569935778.0,11209638,10000000 +1569936378.0,11215182,10000000 +1569936978.0,11244796,10000000 +1569937578.0,11231669,10000000 +1569938178.0,11316201,10000000 +1569938778.0,11276737,10000000 +1569939378.0,11225840,10000000 +1569939978.0,11235960,10000000 +1569940578.0,11324805,10000000 +1569941178.0,11308441,10000000 +1569941778.0,11298254,10000000 +1569942378.0,11369598,10000000 +1569942978.0,11315498,10000000 +1569943578.0,11271691,10000000 +1569944178.0,11188934,10000000 +1569944778.0,11072883,10000000 +1569945378.0,11016488,10000000 +1569945978.0,10932781,10000000 +1569946578.0,10878148,10000000 +1569947178.0,10942865,10000000 +1569947778.0,10899459,10000000 +1569948378.0,10864980,10000000 +1569948978.0,10920673,10000000 +1569949578.0,10920959,10000000 +1569950178.0,10991917,10000000 +1569950778.0,11030050,10000000 +1569951378.0,11026428,10000000 +1569951978.0,11118619,10000000 +1569952578.0,11151756,10000000 +1569953178.0,11121267,10000000 +1569953778.0,11066689,10000000 +1569954378.0,11176039,10000000 +1569954978.0,11149938,10000000 +1569955578.0,11183874,10000000 +1569956178.0,11207221,10000000 +1569956778.0,11247616,10000000 +1569957378.0,11320628,10000000 +1569957978.0,11198820,10000000 +1569958578.0,11178236,10000000 +1569959178.0,11174338,10000000 +1569959778.0,11245531,10000000 +1569960378.0,11221013,10000000 +1569960978.0,11188365,10000000 +1569961578.0,11221889,10000000 +1569962178.0,11195777,10000000 +1569962778.0,11230414,10000000 +1569963378.0,11304196,10000000 +1569963978.0,11375767,10000000 +1569964578.0,11335537,10000000 +1569965178.0,11241091,10000000 +1569965778.0,11266327,10000000 +1569966378.0,11258743,10000000 +1569966978.0,11343584,10000000 +1569967578.0,11267510,10000000 +1569968178.0,11298323,10000000 +1569968778.0,11266735,10000000 +1569969378.0,11279061,10000000 +1569969978.0,11323013,10000000 +1569970578.0,11340440,10000000 +1569971178.0,11351526,10000000 +1569971778.0,11393758,10000000 +1569972378.0,11399226,10000000 +1569972978.0,11395040,10000000 +1569973578.0,11468255,10000000 +1569974178.0,11365641,10000000 +1569974778.0,11402063,10000000 +1569975378.0,11486841,10000000 +1569975978.0,11511665,10000000 +1569976578.0,11559492,10000000 +1569977178.0,11626012,10000000 +1569977778.0,11703093,10000000 +1569978378.0,11654273,10000000 +1569978978.0,11690163,10000000 +1569979578.0,11810137,10000000 +1569980178.0,11760385,10000000 +1569980778.0,11762941,10000000 +1569981378.0,11738285,10000000 +1569981978.0,11703849,10000000 +1569982578.0,11711169,10000000 +1569983178.0,11685334,10000000 +1569983778.0,11629636,10000000 +1569984378.0,11558399,10000000 +1569984978.0,11616194,10000000 +1569985578.0,11715931,10000000 +1569986178.0,11811661,10000000 +1569986778.0,11766784,10000000 +1569987378.0,11698525,10000000 +1569987978.0,11685229,10000000 +1569988578.0,11722878,10000000 +1569989178.0,11711505,10000000 +1569989778.0,11787022,10000000 +1569990378.0,11838920,10000000 +1569990978.0,11855598,10000000 +1569991578.0,11811614,10000000 +1569992178.0,11793449,10000000 +1569992778.0,11876047,10000000 +1569993378.0,11853257,10000000 +1569993978.0,11838380,10000000 +1569994578.0,11780252,10000000 +1569995178.0,11833922,10000000 +1569995778.0,11830141,10000000 +1569996378.0,11839131,10000000 +1569996978.0,11754843,10000000 +1569997578.0,11729453,10000000 +1569998178.0,11669751,10000000 +1569998778.0,11678352,10000000 +1569999378.0,11760389,10000000 +1569999978.0,11702149,10000000 +1570000578.0,11619991,10000000 +1570001178.0,11624914,10000000 +1570001778.0,11660281,10000000 +1570002378.0,11633904,10000000 +1570002978.0,11613878,10000000 +1570003578.0,11625608,10000000 +1570004178.0,11619708,10000000 +1570004778.0,11636376,10000000 +1570005378.0,11586418,10000000 +1570005978.0,11539718,10000000 +1570006578.0,11538753,10000000 +1570007178.0,11581704,10000000 +1570007778.0,11608328,10000000 +1570008378.0,11596929,10000000 +1570008978.0,11615099,10000000 +1570009578.0,11578482,10000000 +1570010178.0,11569605,10000000 +1570010778.0,11494298,10000000 +1570011378.0,11426414,10000000 +1570011978.0,11289484,10000000 +1570012578.0,11359835,10000000 +1570013178.0,11388752,10000000 +1570013778.0,11422590,10000000 +1570014378.0,11452060,10000000 +1570014978.0,11466389,10000000 +1570015578.0,11471523,10000000 +1570016178.0,11447824,10000000 +1570016778.0,11472445,10000000 +1570017378.0,11470550,10000000 +1570017978.0,11457048,10000000 +1570018578.0,11438779,10000000 +1570019178.0,11399641,10000000 +1570019778.0,11397942,10000000 +1570020378.0,11335295,10000000 +1570020978.0,11287969,10000000 +1570021578.0,11299295,10000000 +1570022178.0,11371260,10000000 +1570022778.0,11375477,10000000 +1570023378.0,11365850,10000000 +1570023978.0,11393289,10000000 +1570024578.0,11439699,10000000 +1570025178.0,11510157,10000000 +1570025778.0,11514179,10000000 +1570026378.0,11575099,10000000 +1570026978.0,11553731,10000000 +1570027578.0,11467831,10000000 +1570028178.0,11544453,10000000 +1570028778.0,11578795,10000000 +1570029378.0,11570433,10000000 +1570029978.0,11575166,10000000 +1570030578.0,11630481,10000000 +1570031178.0,11645830,10000000 +1570031778.0,11563124,10000000 +1570032378.0,11611352,10000000 +1570032978.0,11685721,10000000 +1570033578.0,11754030,10000000 +1570034178.0,11782310,10000000 +1570034778.0,11821036,10000000 +1570035378.0,11793975,10000000 +1570035978.0,11821999,10000000 +1570036578.0,11809397,10000000 +1570037178.0,11753096,10000000 +1570037778.0,11714849,10000000 +1570038378.0,11697644,10000000 +1570038978.0,11711197,10000000 +1570039578.0,11718841,10000000 +1570040178.0,11798719,10000000 +1570040778.0,11755202,10000000 +1570041378.0,11847617,10000000 +1570041978.0,11886291,10000000 +1570042578.0,11876710,10000000 +1570043178.0,11813015,10000000 +1570043778.0,11855408,10000000 +1570044378.0,11791281,10000000 +1570044978.0,11874352,10000000 +1570045578.0,11823369,10000000 +1570046178.0,11870186,10000000 +1570046778.0,11848005,10000000 +1570047378.0,11942874,10000000 +1570047978.0,11878444,10000000 +1570048578.0,11889394,10000000 +1570049178.0,11835137,10000000 +1570049778.0,11883977,10000000 +1570050378.0,11942617,10000000 +1570050978.0,12004862,10000000 +1570051578.0,11959893,10000000 +1570052178.0,11972798,10000000 +1570052778.0,11975100,10000000 +1570053378.0,12003050,10000000 +1570053978.0,12053372,10000000 +1570054578.0,12135471,10000000 +1570055178.0,12047622,10000000 +1570055778.0,12054760,10000000 +1570056378.0,12134144,10000000 +1570056978.0,12175530,10000000 +1570057578.0,12250173,10000000 +1570058178.0,12205083,10000000 +1570058778.0,12226979,10000000 +1570059378.0,12190680,10000000 +1570059978.0,12222883,10000000 +1570060578.0,12200147,10000000 +1570061178.0,12235876,10000000 +1570061778.0,12253847,10000000 +1570062378.0,12259609,10000000 +1570062978.0,12219517,10000000 +1570063578.0,12191508,10000000 +1570064178.0,12161505,10000000 +1570064778.0,12141569,10000000 +1570065378.0,12129429,10000000 +1570065978.0,12149713,10000000 +1570066578.0,12119832,10000000 +1570067178.0,12172243,10000000 +1570067778.0,12183866,10000000 +1570068378.0,12186547,10000000 +1570068978.0,12165614,10000000 +1570069578.0,12188413,10000000 +1570070178.0,12252540,10000000 +1570070778.0,12294725,10000000 +1570071378.0,12327360,10000000 +1570071978.0,12324101,10000000 +1570072578.0,12288358,10000000 +1570073178.0,12278880,10000000 +1570073778.0,12182976,10000000 +1570074378.0,12202047,10000000 +1570074978.0,12279137,10000000 +1570075578.0,12357004,10000000 +1570076178.0,12313179,10000000 +1570076778.0,12364845,10000000 +1570077378.0,12378540,10000000 +1570077978.0,12369534,10000000 +1570078578.0,12304466,10000000 +1570079178.0,12227246,10000000 +1570079778.0,12286320,10000000 +1570080378.0,12250522,10000000 +1570080978.0,12258340,10000000 +1570081578.0,12256106,10000000 +1570082178.0,12209160,10000000 +1570082778.0,12227326,10000000 +1570083378.0,12229585,10000000 +1570083978.0,12294207,10000000 +1570084578.0,12351542,10000000 +1570085178.0,12369711,10000000 +1570085778.0,12439593,10000000 +1570086378.0,12462691,10000000 +1570086978.0,12535759,10000000 +1570087578.0,12463697,10000000 +1570088178.0,12434228,10000000 +1570088778.0,12389555,10000000 +1570089378.0,12403045,10000000 +1570089978.0,12369457,10000000 +1570090578.0,12435046,10000000 +1570091178.0,12460916,10000000 +1570091778.0,12501011,10000000 +1570092378.0,12559968,10000000 +1570092978.0,12526092,10000000 +1570093578.0,12500438,10000000 +1570094178.0,12618499,10000000 +1570094778.0,12733001,10000000 +1570095378.0,12643790,10000000 +1570095978.0,12567838,10000000 +1570096578.0,12544195,10000000 +1570097178.0,12634502,10000000 +1570097778.0,12561185,10000000 +1570098378.0,12508049,10000000 +1570098978.0,12434641,10000000 +1570099578.0,12445173,10000000 +1570100178.0,12479683,10000000 +1570100778.0,12495507,10000000 +1570101378.0,12470424,10000000 +1570101978.0,12498415,10000000 +1570102578.0,12546126,10000000 +1570103178.0,12516159,10000000 +1570103778.0,12460665,10000000 +1570104378.0,12464403,10000000 +1570104978.0,12417343,10000000 +1570105578.0,12503742,10000000 +1570106178.0,12493285,10000000 +1570106778.0,12594579,10000000 +1570107378.0,12520652,10000000 +1570107978.0,12485494,10000000 +1570108578.0,12452832,10000000 +1570109178.0,12450180,10000000 +1570109778.0,12437044,10000000 +1570110378.0,12431528,10000000 +1570110978.0,12467052,10000000 +1570111578.0,12478656,10000000 +1570112178.0,12516853,10000000 +1570112778.0,12500451,10000000 +1570113378.0,12447450,10000000 +1570113978.0,12410045,10000000 +1570114578.0,12396190,10000000 +1570115178.0,12415636,10000000 +1570115778.0,12373424,10000000 +1570116378.0,12298826,10000000 +1570116978.0,12303706,10000000 +1570117578.0,12303033,10000000 +1570118178.0,12290393,10000000 +1570118778.0,12347821,10000000 +1570119378.0,12354514,10000000 +1570119978.0,12332241,10000000 +1570120578.0,12365094,10000000 +1570121178.0,12369036,10000000 +1570121778.0,12396019,10000000 +1570122378.0,12417194,10000000 +1570122978.0,12423106,10000000 +1570123578.0,12475947,10000000 +1570124178.0,12501339,10000000 +1570124778.0,12472445,10000000 +1570125378.0,12509784,10000000 +1570125978.0,12479438,10000000 +1570126578.0,12430899,10000000 +1570127178.0,12369776,10000000 +1570127778.0,12364084,10000000 +1570128378.0,12340526,10000000 +1570128978.0,12284542,10000000 +1570129578.0,12341931,10000000 +1570130178.0,12415550,10000000 +1570130778.0,12482336,10000000 +1570131378.0,12453250,10000000 +1570131978.0,12376988,10000000 +1570132578.0,12477946,10000000 +1570133178.0,12530607,10000000 +1570133778.0,12585851,10000000 +1570134378.0,12555752,10000000 +1570134978.0,12576529,10000000 +1570135578.0,12427292,10000000 +1570136178.0,12436810,10000000 +1570136778.0,12441676,10000000 +1570137378.0,12371848,10000000 +1570137978.0,12360931,10000000 +1570138578.0,12449003,10000000 +1570139178.0,12403137,10000000 +1570139778.0,12511754,10000000 +1570140378.0,12544352,10000000 +1570140978.0,12500103,10000000 +1570141578.0,12501494,10000000 +1570142178.0,12582945,10000000 +1570142778.0,12623250,10000000 +1570143378.0,12654313,10000000 +1570143978.0,12683745,10000000 +1570144578.0,12704265,10000000 +1570145178.0,12578801,10000000 +1570145778.0,12591419,10000000 +1570146378.0,12581923,10000000 +1570146978.0,12537979,10000000 +1570147578.0,12630871,10000000 +1570148178.0,12639277,10000000 +1570148778.0,12605837,10000000 +1570149378.0,12512639,10000000 +1570149978.0,12504224,10000000 +1570150578.0,12406526,10000000 +1570151178.0,12362856,10000000 +1570151778.0,12309219,10000000 +1570152378.0,12327321,10000000 +1570152978.0,12336266,10000000 +1570153578.0,12349205,10000000 +1570154178.0,12322131,10000000 +1570154778.0,12257252,10000000 +1570155378.0,12266568,10000000 +1570155978.0,12295946,10000000 +1570156578.0,12355547,10000000 +1570157178.0,12500915,10000000 +1570157778.0,12491375,10000000 +1570158378.0,12502730,10000000 +1570158978.0,12491242,10000000 +1570159578.0,12521420,10000000 +1570160178.0,12534778,10000000 +1570160778.0,12584945,10000000 +1570161378.0,12489837,10000000 +1570161978.0,12446636,10000000 +1570162578.0,12396877,10000000 +1570163178.0,12334981,10000000 +1570163778.0,12272592,10000000 +1570164378.0,12245136,10000000 +1570164978.0,12195784,10000000 +1570165578.0,12208077,10000000 +1570166178.0,12243930,10000000 +1570166778.0,12280718,10000000 +1570167378.0,12362354,10000000 +1570167978.0,12381831,10000000 +1570168578.0,12428405,10000000 +1570169178.0,12424612,10000000 +1570169778.0,12405323,10000000 +1570170378.0,12454729,10000000 +1570170978.0,12527674,10000000 +1570171578.0,12480729,10000000 +1570172178.0,12445121,10000000 +1570172778.0,12466773,10000000 +1570173378.0,12455561,10000000 +1570173978.0,12524695,10000000 +1570174578.0,12519689,10000000 +1570175178.0,12513691,10000000 +1570175778.0,12434398,10000000 +1570176378.0,12517798,10000000 +1570176978.0,12446181,10000000 +1570177578.0,12449587,10000000 +1570178178.0,12449615,10000000 +1570178778.0,12313913,10000000 +1570179378.0,12253440,10000000 +1570179978.0,12289269,10000000 +1570180578.0,12269831,10000000 +1570181178.0,12243721,10000000 +1570181778.0,12249704,10000000 +1570182378.0,12203030,10000000 +1570182978.0,12281862,10000000 +1570183578.0,12172027,10000000 +1570184178.0,12101687,10000000 +1570184778.0,12151768,10000000 +1570185378.0,12140163,10000000 +1570185978.0,12145043,10000000 +1570186578.0,12129729,10000000 +1570187178.0,12167239,10000000 +1570187778.0,12091462,10000000 +1570188378.0,12120058,10000000 +1570188978.0,12163720,10000000 +1570189578.0,12233658,10000000 +1570190178.0,12163562,10000000 +1570190778.0,12168808,10000000 +1570191378.0,12233997,10000000 +1570191978.0,12208190,10000000 +1570192578.0,12181162,10000000 +1570193178.0,12174082,10000000 +1570193778.0,12171937,10000000 +1570194378.0,12122127,10000000 +1570194978.0,12151740,10000000 +1570195578.0,12144738,10000000 +1570196178.0,12152502,10000000 +1570196778.0,12162942,10000000 +1570197378.0,12190227,10000000 +1570197978.0,12138810,10000000 +1570198578.0,12128118,10000000 +1570199178.0,12005487,10000000 +1570199778.0,12079045,10000000 +1570200378.0,12071645,10000000 +1570200978.0,12130167,10000000 +1570201578.0,12138203,10000000 +1570202178.0,12124024,10000000 +1570202778.0,12174038,10000000 +1570203378.0,12290614,10000000 +1570203978.0,12290494,10000000 +1570204578.0,12218101,10000000 +1570205178.0,12242158,10000000 +1570205778.0,12302549,10000000 +1570206378.0,12345819,10000000 +1570206978.0,12405730,10000000 +1570207578.0,12457206,10000000 +1570208178.0,12407766,10000000 +1570208778.0,12408652,10000000 +1570209378.0,12427719,10000000 +1570209978.0,12490127,10000000 +1570210578.0,12392791,10000000 +1570211178.0,12452027,10000000 +1570211778.0,12461313,10000000 +1570212378.0,12527994,10000000 +1570212978.0,12463010,10000000 +1570213578.0,12377247,10000000 +1570214178.0,12320865,10000000 +1570214778.0,12280446,10000000 +1570215378.0,12287225,10000000 +1570215978.0,12398536,10000000 +1570216578.0,12492269,10000000 +1570217178.0,12519742,10000000 +1570217778.0,12519422,10000000 +1570218378.0,12485116,10000000 +1570218978.0,12449049,10000000 +1570219578.0,12482803,10000000 +1570220178.0,12463043,10000000 +1570220778.0,12468976,10000000 +1570221378.0,12424987,10000000 +1570221978.0,12441322,10000000 +1570222578.0,12475430,10000000 +1570223178.0,12493050,10000000 +1570223778.0,12521075,10000000 +1570224378.0,12497062,10000000 +1570224978.0,12473244,10000000 +1570225578.0,12505033,10000000 +1570226178.0,12446842,10000000 +1570226778.0,12465784,10000000 +1570227378.0,12458774,10000000 +1570227978.0,12382970,10000000 +1570228578.0,12351814,10000000 +1570229178.0,12336468,10000000 +1570229778.0,12270442,10000000 +1570230378.0,12248251,10000000 +1570230978.0,12236103,10000000 +1570231578.0,12289399,10000000 +1570232178.0,12250561,10000000 +1570232778.0,12247712,10000000 +1570233378.0,12196478,10000000 +1570233978.0,12190825,10000000 +1570234578.0,12201648,10000000 +1570235178.0,12227925,10000000 +1570235778.0,12294001,10000000 +1570236378.0,12268740,10000000 +1570236978.0,12271422,10000000 +1570237578.0,12232133,10000000 +1570238178.0,12195800,10000000 +1570238778.0,12202841,10000000 +1570239378.0,12279650,10000000 +1570239978.0,12270185,10000000 +1570240578.0,12251880,10000000 +1570241178.0,12300697,10000000 +1570241778.0,12350300,10000000 +1570242378.0,12316984,10000000 +1570242978.0,12292061,10000000 +1570243578.0,12218982,10000000 +1570244178.0,12195854,10000000 +1570244778.0,12153242,10000000 +1570245378.0,12155304,10000000 +1570245978.0,12056873,10000000 +1570246578.0,12012541,10000000 +1570247178.0,12011603,10000000 +1570247778.0,12031483,10000000 +1570248378.0,12057118,10000000 +1570248978.0,12055872,10000000 +1570249578.0,12003352,10000000 +1570250178.0,11987620,10000000 +1570250778.0,12012801,10000000 +1570251378.0,11992141,10000000 +1570251978.0,11963509,10000000 +1570252578.0,12008163,10000000 +1570253178.0,12053614,10000000 +1570253778.0,12059037,10000000 +1570254378.0,12065822,10000000 +1570254978.0,12069305,10000000 +1570255578.0,12084030,10000000 +1570256178.0,12044068,10000000 +1570256778.0,12043781,10000000 +1570257378.0,12040145,10000000 +1570257978.0,12036767,10000000 +1570258578.0,12039231,10000000 +1570259178.0,12016921,10000000 +1570259778.0,11982524,10000000 +1570260378.0,11975145,10000000 +1570260978.0,11912669,10000000 +1570261578.0,11925236,10000000 +1570262178.0,11901396,10000000 +1570262778.0,11927579,10000000 +1570263378.0,11988349,10000000 +1570263978.0,12039552,10000000 +1570264578.0,12129539,10000000 +1570265178.0,12095854,10000000 +1570265778.0,12090172,10000000 +1570266378.0,12172987,10000000 +1570266978.0,12216431,10000000 +1570267578.0,12259009,10000000 +1570268178.0,12125889,10000000 +1570268778.0,12088013,10000000 +1570269378.0,12114743,10000000 +1570269978.0,12136981,10000000 +1570270578.0,12240567,10000000 +1570271178.0,12268468,10000000 +1570271778.0,12251790,10000000 +1570272378.0,12263840,10000000 +1570272978.0,12174569,10000000 +1570273578.0,12215836,10000000 +1570274178.0,12254762,10000000 +1570274778.0,12254215,10000000 +1570275378.0,12148894,10000000 +1570275978.0,12069835,10000000 +1570276578.0,12042025,10000000 +1570277178.0,12061299,10000000 +1570277778.0,12128741,10000000 +1570278378.0,12141835,10000000 +1570278978.0,12193429,10000000 +1570279578.0,12172335,10000000 +1570280178.0,12199766,10000000 +1570280778.0,12202416,10000000 +1570281378.0,12279899,10000000 +1570281978.0,12216282,10000000 +1570282578.0,12255452,10000000 +1570283178.0,12234468,10000000 +1570283778.0,12293184,10000000 +1570284378.0,12305467,10000000 +1570284978.0,12353027,10000000 +1570285578.0,12346367,10000000 +1570286178.0,12346685,10000000 +1570286778.0,12314965,10000000 +1570287378.0,12403197,10000000 +1570287978.0,12504534,10000000 +1570288578.0,12440904,10000000 +1570289178.0,12482404,10000000 +1570289778.0,12447025,10000000 +1570290378.0,12499084,10000000 +1570290978.0,12503663,10000000 +1570291578.0,12461005,10000000 +1570292178.0,12487094,10000000 +1570292778.0,12540576,10000000 +1570293378.0,12583839,10000000 +1570293978.0,12599796,10000000 +1570294578.0,12603357,10000000 +1570295178.0,12615546,10000000 +1570295778.0,12523738,10000000 +1570296378.0,12402129,10000000 +1570296978.0,12400501,10000000 +1570297578.0,12430853,10000000 +1570298178.0,12504936,10000000 +1570298778.0,12583887,10000000 +1570299378.0,12555644,10000000 +1570299978.0,12608139,10000000 +1570300578.0,12538270,10000000 +1570301178.0,12537497,10000000 +1570301778.0,12501550,10000000 +1570302378.0,12461616,10000000 +1570302978.0,12381931,10000000 +1570303578.0,12410635,10000000 +1570304178.0,12442377,10000000 +1570304778.0,12357266,10000000 +1570305378.0,12239110,10000000 +1570305978.0,12227900,10000000 +1570306578.0,12302160,10000000 +1570307178.0,12288325,10000000 +1570307778.0,12309782,10000000 +1570308378.0,12270581,10000000 +1570308978.0,12233972,10000000 +1570309578.0,12224095,10000000 +1570310178.0,12244657,10000000 +1570310778.0,12205476,10000000 +1570311378.0,12225728,10000000 +1570311978.0,12152104,10000000 +1570312578.0,12140732,10000000 +1570313178.0,12044380,10000000 +1570313778.0,12003799,10000000 +1570314378.0,11910518,10000000 +1570314978.0,11891592,10000000 +1570315578.0,11952479,10000000 +1570316178.0,11967170,10000000 +1570316778.0,12120952,10000000 +1570317378.0,12108838,10000000 +1570317978.0,12081808,10000000 +1570318578.0,12099386,10000000 +1570319178.0,12184511,10000000 +1570319778.0,12118133,10000000 +1570320378.0,12136500,10000000 +1570320978.0,12133603,10000000 +1570321578.0,12089107,10000000 +1570322178.0,12020849,10000000 +1570322778.0,11931512,10000000 +1570323378.0,12011843,10000000 +1570323978.0,12068946,10000000 +1570324578.0,12138217,10000000 +1570325178.0,12118871,10000000 +1570325778.0,12146401,10000000 +1570326378.0,12136451,10000000 +1570326978.0,12152996,10000000 +1570327578.0,12137707,10000000 +1570328178.0,12159248,10000000 +1570328778.0,12210547,10000000 +1570329378.0,12233664,10000000 +1570329978.0,12258800,10000000 +1570330578.0,12300240,10000000 +1570331178.0,12372854,10000000 +1570331778.0,12423580,10000000 +1570332378.0,12406450,10000000 +1570332978.0,12325036,10000000 +1570333578.0,12358057,10000000 +1570334178.0,12409030,10000000 +1570334778.0,12421473,10000000 +1570335378.0,12364762,10000000 +1570335978.0,12400337,10000000 +1570336578.0,12420103,10000000 +1570337178.0,12453941,10000000 +1570337778.0,12534161,10000000 +1570338378.0,12609470,10000000 +1570338978.0,12716747,10000000 +1570339578.0,12777612,10000000 +1570340178.0,12777311,10000000 +1570340778.0,12799200,10000000 +1570341378.0,12905794,10000000 +1570341978.0,12880788,10000000 +1570342578.0,12868275,10000000 +1570343178.0,12862853,10000000 +1570343778.0,12756776,10000000 +1570344378.0,12832610,10000000 +1570344978.0,12815434,10000000 +1570345578.0,12768821,10000000 +1570346178.0,12727452,10000000 +1570346778.0,12653417,10000000 +1570347378.0,12739541,10000000 +1570347978.0,12693846,10000000 +1570348578.0,12710842,10000000 +1570349178.0,12684912,10000000 +1570349778.0,12645864,10000000 +1570350378.0,12698642,10000000 +1570350978.0,12750113,10000000 +1570351578.0,12702749,10000000 +1570352178.0,12767619,10000000 +1570352778.0,12729205,10000000 +1570353378.0,12745267,10000000 +1570353978.0,12781975,10000000 +1570354578.0,12782199,10000000 +1570355178.0,12679316,10000000 +1570355778.0,12664505,10000000 +1570356378.0,12707432,10000000 +1570356978.0,12687406,10000000 +1570357578.0,12687080,10000000 +1570358178.0,12693839,10000000 +1570358778.0,12685956,10000000 +1570359378.0,12659434,10000000 +1570359978.0,12729725,10000000 +1570360578.0,12726707,10000000 +1570361178.0,12735916,10000000 +1570361778.0,12721543,10000000 +1570362378.0,12686302,10000000 +1570362978.0,12612226,10000000 +1570363578.0,12580067,10000000 +1570364178.0,12506886,10000000 +1570364778.0,12483081,10000000 +1570365378.0,12477422,10000000 +1570365978.0,12543282,10000000 +1570366578.0,12480696,10000000 +1570367178.0,12441035,10000000 +1570367778.0,12449649,10000000 +1570368378.0,12428358,10000000 +1570368978.0,12468644,10000000 +1570369578.0,12495123,10000000 +1570370178.0,12580032,10000000 +1570370778.0,12684252,10000000 +1570371378.0,12688659,10000000 +1570371978.0,12754251,10000000 +1570372578.0,12820337,10000000 +1570373178.0,12766800,10000000 +1570373778.0,12774778,10000000 +1570374378.0,12876055,10000000 +1570374978.0,12746596,10000000 +1570375578.0,12726277,10000000 +1570376178.0,12707547,10000000 +1570376778.0,12725180,10000000 +1570377378.0,12684264,10000000 +1570377978.0,12648249,10000000 +1570378578.0,12673631,10000000 +1570379178.0,12637292,10000000 +1570379778.0,12628321,10000000 +1570380378.0,12672883,10000000 +1570380978.0,12789520,10000000 +1570381578.0,12818068,10000000 +1570382178.0,12825620,10000000 +1570382778.0,12796060,10000000 +1570383378.0,12895704,10000000 +1570383978.0,12893614,10000000 +1570384578.0,12920285,10000000 +1570385178.0,12856500,10000000 +1570385778.0,12901701,10000000 +1570386378.0,13020431,10000000 +1570386978.0,13035929,10000000 +1570387578.0,12956758,10000000 +1570388178.0,12973285,10000000 +1570388778.0,13007319,10000000 +1570389378.0,12929181,10000000 +1570389978.0,13044010,10000000 +1570390578.0,13132751,10000000 +1570391178.0,13117082,10000000 +1570391778.0,13141560,10000000 +1570392378.0,13105698,10000000 +1570392978.0,13045910,10000000 +1570393578.0,12971187,10000000 +1570394178.0,12920646,10000000 +1570394778.0,12916906,10000000 +1570395378.0,12916913,10000000 +1570395978.0,13016090,10000000 +1570396578.0,13018828,10000000 +1570397178.0,13023943,10000000 +1570397778.0,13017638,10000000 +1570398378.0,12944464,10000000 +1570398978.0,12941960,10000000 +1570399578.0,12952756,10000000 +1570400178.0,12828251,10000000 +1570400778.0,12765604,10000000 +1570401378.0,12842238,10000000 +1570401978.0,12901356,10000000 +1570402578.0,12889247,10000000 +1570403178.0,12907347,10000000 +1570403778.0,12856230,10000000 +1570404378.0,12859018,10000000 +1570404978.0,12848726,10000000 +1570405578.0,12774312,10000000 +1570406178.0,12785029,10000000 +1570406778.0,12831647,10000000 +1570407378.0,12748600,10000000 +1570407978.0,12802218,10000000 +1570408578.0,12879892,10000000 +1570409178.0,12852491,10000000 +1570409778.0,12784349,10000000 +1570410378.0,12851873,10000000 +1570410978.0,12781024,10000000 +1570411578.0,12710432,10000000 +1570412178.0,12767147,10000000 +1570412778.0,12787206,10000000 +1570413378.0,12768342,10000000 +1570413978.0,12761179,10000000 +1570414578.0,12795226,10000000 +1570415178.0,12752905,10000000 +1570415778.0,12794760,10000000 +1570416378.0,12783477,10000000 +1570416978.0,12773567,10000000 +1570417578.0,12758359,10000000 +1570418178.0,12720118,10000000 +1570418778.0,12750574,10000000 +1570419378.0,12675278,10000000 +1570419978.0,12740551,10000000 +1570420578.0,12609731,10000000 +1570421178.0,12638553,10000000 +1570421778.0,12665859,10000000 +1570422378.0,12688741,10000000 +1570422978.0,12724626,10000000 +1570423578.0,12841790,10000000 +1570424178.0,12856751,10000000 +1570424778.0,12923997,10000000 +1570425378.0,12953742,10000000 +1570425978.0,13019656,10000000 +1570426578.0,12991315,10000000 +1570427178.0,13016242,10000000 +1570427778.0,12998196,10000000 +1570428378.0,12990251,10000000 +1570428978.0,13004630,10000000 +1570429578.0,13063918,10000000 +1570430178.0,13133280,10000000 +1570430778.0,13128391,10000000 +1570431378.0,13248635,10000000 +1570431978.0,13304295,10000000 +1570432578.0,13309387,10000000 +1570433178.0,13290758,10000000 +1570433778.0,13262901,10000000 +1570434378.0,13331755,10000000 +1570434978.0,13355578,10000000 +1570435578.0,13323564,10000000 +1570436178.0,13386049,10000000 +1570436778.0,13327640,10000000 +1570437378.0,13381360,10000000 +1570437978.0,13422701,10000000 +1570438578.0,13462329,10000000 +1570439178.0,13473149,10000000 +1570439778.0,13410503,10000000 +1570440378.0,13430908,10000000 +1570440978.0,13415182,10000000 +1570441578.0,13370048,10000000 +1570442178.0,13364712,10000000 +1570442778.0,13313351,10000000 +1570443378.0,13295139,10000000 +1570443978.0,13214837,10000000 +1570444578.0,13184432,10000000 +1570445178.0,13190970,10000000 +1570445778.0,13177524,10000000 +1570446378.0,13218183,10000000 +1570446978.0,13115291,10000000 +1570447578.0,13073142,10000000 +1570448178.0,13030065,10000000 +1570448778.0,13047302,10000000 +1570449378.0,12989842,10000000 +1570449978.0,12965941,10000000 +1570450578.0,12931519,10000000 +1570451178.0,13075085,10000000 +1570451778.0,12998304,10000000 +1570452378.0,13033686,10000000 +1570452978.0,12987205,10000000 +1570453578.0,12922730,10000000 +1570454178.0,12890575,10000000 +1570454778.0,12927471,10000000 +1570455378.0,12841161,10000000 +1570455978.0,12723935,10000000 +1570456578.0,12688515,10000000 +1570457178.0,12792892,10000000 +1570457778.0,12864715,10000000 +1570458378.0,12861066,10000000 +1570458978.0,12855909,10000000 +1570459578.0,12816151,10000000 +1570460178.0,12787601,10000000 +1570460778.0,12808690,10000000 +1570461378.0,12839019,10000000 +1570461978.0,12902494,10000000 +1570462578.0,12889252,10000000 +1570463178.0,12936188,10000000 +1570463778.0,12848551,10000000 +1570464378.0,12658399,10000000 +1570464978.0,12597770,10000000 +1570465578.0,12567513,10000000 +1570466178.0,12524321,10000000 +1570466778.0,12474281,10000000 +1570467378.0,12399990,10000000 +1570467978.0,12364855,10000000 +1570468578.0,12375777,10000000 +1570469178.0,12379767,10000000 +1570469778.0,12331550,10000000 +1570470378.0,12302665,10000000 +1570470978.0,12348802,10000000 +1570471578.0,12348703,10000000 +1570472178.0,12527045,10000000 +1570472778.0,12519862,10000000 +1570473378.0,12465033,10000000 +1570473978.0,12526229,10000000 +1570474578.0,12562024,10000000 +1570475178.0,12577861,10000000 +1570475778.0,12604257,10000000 +1570476378.0,12656323,10000000 +1570476978.0,12653793,10000000 +1570477578.0,12643627,10000000 +1570478178.0,12595705,10000000 +1570478778.0,12633346,10000000 +1570479378.0,12639342,10000000 +1570479978.0,12656858,10000000 +1570480578.0,12694696,10000000 +1570481178.0,12782949,10000000 +1570481778.0,12697537,10000000 +1570482378.0,12716500,10000000 +1570482978.0,12653191,10000000 +1570483578.0,12650457,10000000 +1570484178.0,12670396,10000000 +1570484778.0,12615074,10000000 +1570485378.0,12655038,10000000 +1570485978.0,12657161,10000000 +1570486578.0,12653866,10000000 +1570487178.0,12631723,10000000 +1570487778.0,12696020,10000000 +1570488378.0,12663121,10000000 +1570488978.0,12678704,10000000 +1570489578.0,12662112,10000000 +1570490178.0,12599261,10000000 +1570490778.0,12621091,10000000 +1570491378.0,12572985,10000000 +1570491978.0,12649411,10000000 +1570492578.0,12550560,10000000 +1570493178.0,12607530,10000000 +1570493778.0,12568313,10000000 +1570494378.0,12531943,10000000 +1570494978.0,12546380,10000000 +1570495578.0,12548423,10000000 +1570496178.0,12566031,10000000 +1570496778.0,12612612,10000000 +1570497378.0,12499285,10000000 +1570497978.0,12484107,10000000 +1570498578.0,12446094,10000000 +1570499178.0,12510703,10000000 +1570499778.0,12369402,10000000 +1570500378.0,12299974,10000000 +1570500978.0,12365383,10000000 +1570501578.0,12448509,10000000 +1570502178.0,12467459,10000000 +1570502778.0,12490262,10000000 +1570503378.0,12487994,10000000 +1570503978.0,12414647,10000000 +1570504578.0,12359198,10000000 +1570505178.0,12335490,10000000 +1570505778.0,12180692,10000000 +1570506378.0,12191793,10000000 +1570506978.0,12170396,10000000 +1570507578.0,12214960,10000000 +1570508178.0,12199600,10000000 +1570508778.0,12186167,10000000 +1570509378.0,12182459,10000000 +1570509978.0,12056926,10000000 +1570510578.0,12031537,10000000 +1570511178.0,11958453,10000000 +1570511778.0,12065653,10000000 +1570512378.0,12103178,10000000 +1570512978.0,12085461,10000000 +1570513578.0,12099996,10000000 +1570514178.0,12173111,10000000 +1570514778.0,12085721,10000000 +1570515378.0,12033233,10000000 +1570515978.0,12007218,10000000 +1570516578.0,12063141,10000000 +1570517178.0,12019956,10000000 +1570517778.0,12015577,10000000 +1570518378.0,11958717,10000000 +1570518978.0,12004508,10000000 +1570519578.0,12046979,10000000 +1570520178.0,12015722,10000000 +1570520778.0,12091944,10000000 +1570521378.0,12034142,10000000 +1570521978.0,11937493,10000000 +1570522578.0,11861074,10000000 +1570523178.0,11794194,10000000 +1570523778.0,11745416,10000000 +1570524378.0,11790365,10000000 +1570524978.0,11787796,10000000 +1570525578.0,11818577,10000000 +1570526178.0,11774603,10000000 +1570526778.0,11785528,10000000 +1570527378.0,11835150,10000000 +1570527978.0,11777471,10000000 +1570528578.0,11799241,10000000 +1570529178.0,11664461,10000000 +1570529778.0,11758043,10000000 +1570530378.0,11742540,10000000 +1570530978.0,11772697,10000000 +1570531578.0,11755064,10000000 +1570532178.0,11727722,10000000 +1570532778.0,11817852,10000000 +1570533378.0,11815325,10000000 +1570533978.0,11802987,10000000 +1570534578.0,11783274,10000000 +1570535178.0,11788418,10000000 +1570535778.0,11784482,10000000 +1570536378.0,11739820,10000000 +1570536978.0,11860387,10000000 +1570537578.0,11856479,10000000 +1570538178.0,11877749,10000000 +1570538778.0,11925887,10000000 +1570539378.0,11868848,10000000 +1570539978.0,11884095,10000000 +1570540578.0,11897735,10000000 +1570541178.0,11902981,10000000 +1570541778.0,11904871,10000000 +1570542378.0,12030490,10000000 +1570542978.0,12010402,10000000 +1570543578.0,12120048,10000000 +1570544178.0,12228809,10000000 +1570544778.0,12172137,10000000 +1570545378.0,12278395,10000000 +1570545978.0,12269713,10000000 +1570546578.0,12318731,10000000 +1570547178.0,12292709,10000000 +1570547778.0,12309236,10000000 +1570548378.0,12326804,10000000 +1570548978.0,12261685,10000000 +1570549578.0,12288081,10000000 +1570550178.0,12349678,10000000 +1570550778.0,12317860,10000000 +1570551378.0,12330680,10000000 +1570551978.0,12330067,10000000 +1570552578.0,12224150,10000000 +1570553178.0,12274137,10000000 +1570553778.0,12254052,10000000 +1570554378.0,12283790,10000000 +1570554978.0,12205301,10000000 +1570555578.0,12198195,10000000 +1570556178.0,12198899,10000000 +1570556778.0,12127844,10000000 +1570557378.0,12145224,10000000 +1570557978.0,12140690,10000000 +1570558578.0,12133034,10000000 +1570559178.0,12076580,10000000 +1570559778.0,12095978,10000000 +1570560378.0,12164379,10000000 +1570560978.0,12156312,10000000 +1570561578.0,12152955,10000000 +1570562178.0,12130715,10000000 +1570562778.0,12106871,10000000 +1570563378.0,12051536,10000000 +1570563978.0,12086233,10000000 +1570564578.0,12202872,10000000 +1570565178.0,12248530,10000000 +1570565778.0,12272252,10000000 +1570566378.0,12226191,10000000 +1570566978.0,12270065,10000000 +1570567578.0,12256213,10000000 +1570568178.0,12311166,10000000 +1570568778.0,12316951,10000000 +1570569378.0,12323477,10000000 +1570569978.0,12308280,10000000 +1570570578.0,12318737,10000000 +1570571178.0,12278265,10000000 +1570571778.0,12254044,10000000 +1570572378.0,12204629,10000000 +1570572978.0,12192836,10000000 +1570573578.0,12156667,10000000 +1570574178.0,12071580,10000000 +1570574778.0,12043612,10000000 +1570575378.0,12113875,10000000 +1570575978.0,12105642,10000000 +1570576578.0,12082857,10000000 +1570577178.0,12025087,10000000 +1570577778.0,11993317,10000000 +1570578378.0,11955950,10000000 +1570578978.0,12000110,10000000 +1570579578.0,11953674,10000000 +1570580178.0,11917393,10000000 +1570580778.0,11978221,10000000 +1570581378.0,12037473,10000000 +1570581978.0,12027260,10000000 +1570582578.0,11986904,10000000 +1570583178.0,12042391,10000000 +1570583778.0,12039650,10000000 +1570584378.0,11938696,10000000 +1570584978.0,11908259,10000000 +1570585578.0,11926516,10000000 +1570586178.0,11943236,10000000 +1570586778.0,11913787,10000000 +1570587378.0,11841466,10000000 +1570587978.0,11780166,10000000 +1570588578.0,11840838,10000000 +1570589178.0,11811091,10000000 +1570589778.0,11715889,10000000 +1570590378.0,11683772,10000000 +1570590978.0,11762906,10000000 +1570591578.0,11705094,10000000 +1570592178.0,11748771,10000000 +1570592778.0,11759827,10000000 +1570593378.0,11772951,10000000 +1570593978.0,11723390,10000000 +1570594578.0,11750819,10000000 +1570595178.0,11692170,10000000 +1570595778.0,11690046,10000000 +1570596378.0,11701040,10000000 +1570596978.0,11710034,10000000 +1570597578.0,11704700,10000000 +1570598178.0,11753074,10000000 +1570598778.0,11806261,10000000 +1570599378.0,11714929,10000000 +1570599978.0,11705337,10000000 +1570600578.0,11718799,10000000 +1570601178.0,11758099,10000000 +1570601778.0,11781825,10000000 +1570602378.0,11778246,10000000 +1570602978.0,11775114,10000000 +1570603578.0,11745704,10000000 +1570604178.0,11719075,10000000 +1570604778.0,11765964,10000000 +1570605378.0,11766698,10000000 +1570605978.0,11772746,10000000 +1570606578.0,11717877,10000000 +1570607178.0,11737456,10000000 +1570607778.0,11789508,10000000 +1570608378.0,11901026,10000000 +1570608978.0,11959442,10000000 +1570609578.0,12020858,10000000 +1570610178.0,12096645,10000000 +1570610778.0,12052735,10000000 +1570611378.0,12004886,10000000 +1570611978.0,12078162,10000000 +1570612578.0,12110206,10000000 +1570613178.0,12128179,10000000 +1570613778.0,12161710,10000000 +1570614378.0,12155414,10000000 +1570614978.0,12194694,10000000 +1570615578.0,12208478,10000000 +1570616178.0,12197515,10000000 +1570616778.0,12173387,10000000 +1570617378.0,12211502,10000000 +1570617978.0,12177834,10000000 +1570618578.0,12196085,10000000 +1570619178.0,12213039,10000000 +1570619778.0,12279110,10000000 +1570620378.0,12281627,10000000 +1570620978.0,12312933,10000000 +1570621578.0,12338248,10000000 +1570622178.0,12346611,10000000 +1570622778.0,12347298,10000000 +1570623378.0,12302146,10000000 +1570623978.0,12257229,10000000 +1570624578.0,12170007,10000000 +1570625178.0,12184167,10000000 +1570625778.0,12229539,10000000 +1570626378.0,12216430,10000000 +1570626978.0,12190539,10000000 +1570627578.0,12145862,10000000 +1570628178.0,12112599,10000000 +1570628778.0,12146435,10000000 +1570629378.0,12138769,10000000 +1570629978.0,12104145,10000000 +1570630578.0,12017329,10000000 +1570631178.0,12034480,10000000 +1570631778.0,12003705,10000000 +1570632378.0,11971968,10000000 +1570632978.0,11997238,10000000 +1570633578.0,12061709,10000000 +1570634178.0,12127952,10000000 +1570634778.0,12134982,10000000 +1570635378.0,12162786,10000000 +1570635978.0,12121084,10000000 +1570636578.0,12145931,10000000 +1570637178.0,12046357,10000000 +1570637778.0,11909496,10000000 +1570638378.0,11886153,10000000 +1570638978.0,11962906,10000000 +1570639578.0,12011428,10000000 +1570640178.0,11945465,10000000 +1570640778.0,11881467,10000000 +1570641378.0,11879200,10000000 +1570641978.0,11927297,10000000 +1570642578.0,11931759,10000000 +1570643178.0,11990290,10000000 +1570643778.0,11860781,10000000 +1570644378.0,11818662,10000000 +1570644978.0,11821559,10000000 +1570645578.0,11851139,10000000 +1570646178.0,11862651,10000000 +1570646778.0,11903977,10000000 +1570647378.0,11919854,10000000 +1570647978.0,11959494,10000000 +1570648578.0,12033564,10000000 +1570649178.0,12089394,10000000 +1570649778.0,12015041,10000000 +1570650378.0,11970220,10000000 +1570650978.0,12001705,10000000 +1570651578.0,12064586,10000000 +1570652178.0,12058424,10000000 +1570652778.0,12051874,10000000 +1570653378.0,12068363,10000000 +1570653978.0,12112771,10000000 +1570654578.0,12141515,10000000 +1570655178.0,12133590,10000000 +1570655778.0,12126170,10000000 +1570656378.0,12130106,10000000 +1570656978.0,12115234,10000000 +1570657578.0,12124645,10000000 +1570658178.0,12132608,10000000 +1570658778.0,12207063,10000000 +1570659378.0,12226115,10000000 +1570659978.0,12206218,10000000 +1570660578.0,12223498,10000000 +1570661178.0,12264131,10000000 +1570661778.0,12208207,10000000 +1570662378.0,12094652,10000000 +1570662978.0,12050134,10000000 +1570663578.0,12124646,10000000 +1570664178.0,12181326,10000000 +1570664778.0,12183518,10000000 +1570665378.0,12201475,10000000 +1570665978.0,12239376,10000000 +1570666578.0,12095680,10000000 +1570667178.0,12172440,10000000 +1570667778.0,12138091,10000000 +1570668378.0,12136169,10000000 +1570668978.0,12057377,10000000 +1570669578.0,12114981,10000000 +1570670178.0,12105967,10000000 +1570670778.0,12125173,10000000 +1570671378.0,12170505,10000000 +1570671978.0,12237721,10000000 +1570672578.0,12242526,10000000 +1570673178.0,12329591,10000000 +1570673778.0,12238222,10000000 +1570674378.0,12218772,10000000 +1570674978.0,12144917,10000000 +1570675578.0,12103688,10000000 +1570676178.0,12141255,10000000 +1570676778.0,12060170,10000000 +1570677378.0,11979828,10000000 +1570677978.0,11961634,10000000 +1570678578.0,11937906,10000000 +1570679178.0,11981140,10000000 +1570679778.0,12045338,10000000 +1570680378.0,11997520,10000000 +1570680978.0,12025644,10000000 +1570681578.0,11998361,10000000 +1570682178.0,11985003,10000000 +1570682778.0,11980885,10000000 +1570683378.0,12023411,10000000 +1570683978.0,12051655,10000000 +1570684578.0,12025613,10000000 +1570685178.0,12013451,10000000 +1570685778.0,12029132,10000000 +1570686378.0,11935136,10000000 +1570686978.0,11918355,10000000 +1570687578.0,11925035,10000000 +1570688178.0,11945341,10000000 +1570688778.0,11960409,10000000 +1570689378.0,11988080,10000000 +1570689978.0,11892268,10000000 +1570690578.0,11849823,10000000 +1570691178.0,11984104,10000000 +1570691778.0,11996705,10000000 +1570692378.0,11941479,10000000 +1570692978.0,12024287,10000000 +1570693578.0,11982206,10000000 +1570694178.0,12011031,10000000 +1570694778.0,11998800,10000000 +1570695378.0,11962099,10000000 +1570695978.0,11896324,10000000 +1570696578.0,11883040,10000000 +1570697178.0,11867654,10000000 +1570697778.0,11841260,10000000 +1570698378.0,11773425,10000000 +1570698978.0,11734123,10000000 +1570699578.0,11806630,10000000 +1570700178.0,11810490,10000000 +1570700778.0,11824367,10000000 +1570701378.0,11745420,10000000 +1570701978.0,11838379,10000000 +1570702578.0,11857430,10000000 +1570703178.0,11864413,10000000 +1570703778.0,11894564,10000000 +1570704378.0,11901284,10000000 +1570704978.0,11885592,10000000 +1570705578.0,11821155,10000000 +1570706178.0,11791222,10000000 +1570706778.0,11735637,10000000 +1570707378.0,11799859,10000000 +1570707978.0,11769746,10000000 +1570708578.0,11701669,10000000 +1570709178.0,11733527,10000000 +1570709778.0,11774496,10000000 +1570710378.0,11777814,10000000 +1570710978.0,11766963,10000000 +1570711578.0,11778315,10000000 +1570712178.0,11764337,10000000 +1570712778.0,11779185,10000000 +1570713378.0,11696907,10000000 +1570713978.0,11709556,10000000 +1570714578.0,11692196,10000000 +1570715178.0,11671983,10000000 +1570715778.0,11647605,10000000 +1570716378.0,11610374,10000000 +1570716978.0,11579395,10000000 +1570717578.0,11475749,10000000 +1570718178.0,11530616,10000000 +1570718778.0,11565239,10000000 +1570719378.0,11636275,10000000 +1570719978.0,11591104,10000000 +1570720578.0,11459323,10000000 +1570721178.0,11471861,10000000 +1570721778.0,11445277,10000000 +1570722378.0,11493166,10000000 +1570722978.0,11576865,10000000 +1570723578.0,11620328,10000000 +1570724178.0,11600987,10000000 +1570724778.0,11594027,10000000 +1570725378.0,11582091,10000000 +1570725978.0,11582590,10000000 +1570726578.0,11536419,10000000 +1570727178.0,11423798,10000000 +1570727778.0,11378542,10000000 +1570728378.0,11352209,10000000 +1570728978.0,11332793,10000000 +1570729578.0,11318599,10000000 +1570730178.0,11272183,10000000 +1570730778.0,11197853,10000000 +1570731378.0,11185316,10000000 +1570731978.0,11166794,10000000 +1570732578.0,11209613,10000000 +1570733178.0,11200940,10000000 +1570733778.0,11275150,10000000 +1570734378.0,11333726,10000000 +1570734978.0,11290245,10000000 +1570735578.0,11293987,10000000 +1570736178.0,11396893,10000000 +1570736778.0,11369676,10000000 +1570737378.0,11382487,10000000 +1570737978.0,11493030,10000000 +1570738578.0,11497975,10000000 +1570739178.0,11540520,10000000 +1570739778.0,11565765,10000000 +1570740378.0,11721301,10000000 +1570740978.0,11715001,10000000 +1570741578.0,11757241,10000000 +1570742178.0,11713954,10000000 +1570742778.0,11778931,10000000 +1570743378.0,11741133,10000000 +1570743978.0,11733926,10000000 +1570744578.0,11746353,10000000 +1570745178.0,11683024,10000000 +1570745778.0,11709680,10000000 +1570746378.0,11761268,10000000 +1570746978.0,11702456,10000000 +1570747578.0,11675936,10000000 +1570748178.0,11688787,10000000 +1570748778.0,11647169,10000000 +1570749378.0,11682080,10000000 +1570749978.0,11629301,10000000 +1570750578.0,11671673,10000000 +1570751178.0,11669859,10000000 +1570751778.0,11705849,10000000 +1570752378.0,11713059,10000000 +1570752978.0,11704087,10000000 +1570753578.0,11580646,10000000 +1570754178.0,11701181,10000000 +1570754778.0,11728078,10000000 +1570755378.0,11717585,10000000 +1570755978.0,11681174,10000000 +1570756578.0,11684237,10000000 +1570757178.0,11748717,10000000 +1570757778.0,11772687,10000000 +1570758378.0,11776557,10000000 +1570758978.0,11751803,10000000 +1570759578.0,11721976,10000000 +1570760178.0,11716191,10000000 +1570760778.0,11783643,10000000 +1570761378.0,11768899,10000000 +1570761978.0,11882636,10000000 +1570762578.0,11866638,10000000 +1570763178.0,11969355,10000000 +1570763778.0,11903018,10000000 +1570764378.0,11865126,10000000 +1570764978.0,11852643,10000000 +1570765578.0,11752690,10000000 +1570766178.0,11766604,10000000 +1570766778.0,11671489,10000000 +1570767378.0,11541532,10000000 +1570767978.0,11476788,10000000 +1570768578.0,11460673,10000000 +1570769178.0,11352459,10000000 +1570769778.0,11377635,10000000 +1570770378.0,11383382,10000000 +1570770978.0,11333378,10000000 +1570771578.0,11278797,10000000 +1570772178.0,11274084,10000000 +1570772778.0,11331048,10000000 +1570773378.0,11260352,10000000 +1570773978.0,11299252,10000000 +1570774578.0,11355473,10000000 +1570775178.0,11255800,10000000 +1570775778.0,11190628,10000000 +1570776378.0,11220151,10000000 +1570776978.0,11205272,10000000 +1570777578.0,11232247,10000000 +1570778178.0,11168924,10000000 +1570778778.0,11168724,10000000 +1570779378.0,11267271,10000000 +1570779978.0,11300395,10000000 +1570780578.0,11318448,10000000 +1570781178.0,11220095,10000000 +1570781778.0,11222987,10000000 +1570782378.0,11178487,10000000 +1570782978.0,11176591,10000000 +1570783578.0,11178005,10000000 +1570784178.0,11169219,10000000 +1570784778.0,11192813,10000000 +1570785378.0,11076816,10000000 +1570785978.0,11066079,10000000 +1570786578.0,11094186,10000000 +1570787178.0,11024719,10000000 +1570787778.0,10972806,10000000 +1570788378.0,10899997,10000000 +1570788978.0,10904285,10000000 +1570789578.0,10912041,10000000 +1570790178.0,10851378,10000000 +1570790778.0,10869947,10000000 +1570791378.0,10883965,10000000 +1570791978.0,10946539,10000000 +1570792578.0,10965698,10000000 +1570793178.0,10924794,10000000 +1570793778.0,10898496,10000000 +1570794378.0,10914576,10000000 +1570794978.0,10878835,10000000 +1570795578.0,10839995,10000000 +1570796178.0,10835942,10000000 +1570796778.0,10791389,10000000 +1570797378.0,10839196,10000000 +1570797978.0,10836621,10000000 +1570798578.0,10915121,10000000 +1570799178.0,10933984,10000000 +1570799778.0,10940907,10000000 +1570800378.0,10933743,10000000 +1570800978.0,10934460,10000000 +1570801578.0,10972285,10000000 +1570802178.0,10987106,10000000 +1570802778.0,10986421,10000000 +1570803378.0,11057591,10000000 +1570803978.0,11063637,10000000 +1570804578.0,11052685,10000000 +1570805178.0,11021561,10000000 +1570805778.0,11044148,10000000 +1570806378.0,11070314,10000000 +1570806978.0,11060698,10000000 +1570807578.0,11063814,10000000 +1570808178.0,11023261,10000000 +1570808778.0,10985883,10000000 +1570809378.0,10996319,10000000 +1570809978.0,11004334,10000000 +1570810578.0,11049376,10000000 +1570811178.0,10981830,10000000 +1570811778.0,11031559,10000000 +1570812378.0,11029811,10000000 +1570812978.0,11089940,10000000 +1570813578.0,11166236,10000000 +1570814178.0,11156277,10000000 +1570814778.0,11256228,10000000 +1570815378.0,11323497,10000000 +1570815978.0,11343947,10000000 +1570816578.0,11386066,10000000 +1570817178.0,11357191,10000000 +1570817778.0,11323176,10000000 +1570818378.0,11306329,10000000 +1570818978.0,11227055,10000000 +1570819578.0,11213565,10000000 +1570820178.0,11237580,10000000 +1570820778.0,11220987,10000000 +1570821378.0,11277189,10000000 +1570821978.0,11278329,10000000 +1570822578.0,11313806,10000000 +1570823178.0,11360058,10000000 +1570823778.0,11327283,10000000 +1570824378.0,11274284,10000000 +1570824978.0,11233807,10000000 +1570825578.0,11349656,10000000 +1570826178.0,11308398,10000000 +1570826778.0,11291034,10000000 +1570827378.0,11305401,10000000 +1570827978.0,11233442,10000000 +1570828578.0,11225448,10000000 +1570829178.0,11229319,10000000 +1570829778.0,11261952,10000000 +1570830378.0,11213656,10000000 +1570830978.0,11208881,10000000 +1570831578.0,11242191,10000000 +1570832178.0,11333049,10000000 +1570832778.0,11360459,10000000 +1570833378.0,11376837,10000000 +1570833978.0,11425853,10000000 +1570834578.0,11488196,10000000 +1570835178.0,11380716,10000000 +1570835778.0,11416558,10000000 +1570836378.0,11432432,10000000 +1570836978.0,11441744,10000000 +1570837578.0,11427789,10000000 +1570838178.0,11391461,10000000 +1570838778.0,11423791,10000000 +1570839378.0,11443207,10000000 +1570839978.0,11400162,10000000 +1570840578.0,11447488,10000000 +1570841178.0,11450261,10000000 +1570841778.0,11354780,10000000 +1570842378.0,11394047,10000000 +1570842978.0,11472715,10000000 +1570843578.0,11388422,10000000 +1570844178.0,11394068,10000000 +1570844778.0,11371485,10000000 +1570845378.0,11493770,10000000 +1570845978.0,11489854,10000000 +1570846578.0,11423636,10000000 +1570847178.0,11415733,10000000 +1570847778.0,11422650,10000000 +1570848378.0,11345500,10000000 +1570848978.0,11346159,10000000 +1570849578.0,11303960,10000000 +1570850178.0,11307129,10000000 +1570850778.0,11283576,10000000 +1570851378.0,11358953,10000000 +1570851978.0,11371157,10000000 +1570852578.0,11338698,10000000 +1570853178.0,11368812,10000000 +1570853778.0,11365594,10000000 +1570854378.0,11414921,10000000 +1570854978.0,11331068,10000000 +1570855578.0,11417130,10000000 +1570856178.0,11382761,10000000 +1570856778.0,11342398,10000000 +1570857378.0,11325988,10000000 +1570857978.0,11335983,10000000 +1570858578.0,11279553,10000000 +1570859178.0,11244109,10000000 +1570859778.0,11236325,10000000 +1570860378.0,11284220,10000000 +1570860978.0,11263368,10000000 +1570861578.0,11305203,10000000 +1570862178.0,11322724,10000000 +1570862778.0,11317560,10000000 +1570863378.0,11283365,10000000 +1570863978.0,11279247,10000000 +1570864578.0,11282235,10000000 +1570865178.0,11340761,10000000 +1570865778.0,11326512,10000000 +1570866378.0,11310166,10000000 +1570866978.0,11347758,10000000 +1570867578.0,11289839,10000000 +1570868178.0,11320125,10000000 +1570868778.0,11309007,10000000 +1570869378.0,11333495,10000000 +1570869978.0,11359970,10000000 +1570870578.0,11384725,10000000 +1570871178.0,11413103,10000000 +1570871778.0,11388834,10000000 +1570872378.0,11416503,10000000 +1570872978.0,11438360,10000000 +1570873578.0,11471727,10000000 +1570874178.0,11491087,10000000 +1570874778.0,11557459,10000000 +1570875378.0,11534493,10000000 +1570875978.0,11489481,10000000 +1570876578.0,11548144,10000000 +1570877178.0,11617359,10000000 +1570877778.0,11622962,10000000 +1570878378.0,11567767,10000000 +1570878978.0,11555076,10000000 +1570879578.0,11568906,10000000 +1570880178.0,11507170,10000000 +1570880778.0,11449054,10000000 +1570881378.0,11426306,10000000 +1570881978.0,11421725,10000000 +1570882578.0,11436733,10000000 +1570883178.0,11479870,10000000 +1570883778.0,11464756,10000000 +1570884378.0,11459954,10000000 +1570884978.0,11494661,10000000 +1570885578.0,11519213,10000000 +1570886178.0,11527342,10000000 +1570886778.0,11413833,10000000 +1570887378.0,11498312,10000000 +1570887978.0,11427253,10000000 +1570888578.0,11373926,10000000 +1570889178.0,11454707,10000000 +1570889778.0,11403674,10000000 +1570890378.0,11391105,10000000 +1570890978.0,11420245,10000000 +1570891578.0,11438595,10000000 +1570892178.0,11407544,10000000 +1570892778.0,11473093,10000000 +1570893378.0,11445397,10000000 +1570893978.0,11456456,10000000 +1570894578.0,11462745,10000000 +1570895178.0,11413504,10000000 +1570895778.0,11439248,10000000 +1570896378.0,11531378,10000000 +1570896978.0,11598228,10000000 +1570897578.0,11573871,10000000 +1570898178.0,11603202,10000000 +1570898778.0,11582701,10000000 +1570899378.0,11659604,10000000 +1570899978.0,11720383,10000000 +1570900578.0,11639811,10000000 +1570901178.0,11538537,10000000 +1570901778.0,11558467,10000000 +1570902378.0,11536095,10000000 +1570902978.0,11525137,10000000 +1570903578.0,11520241,10000000 +1570904178.0,11515553,10000000 +1570904778.0,11551196,10000000 +1570905378.0,11668491,10000000 +1570905978.0,11632012,10000000 +1570906578.0,11647470,10000000 +1570907178.0,11624094,10000000 +1570907778.0,11591039,10000000 +1570908378.0,11615094,10000000 +1570908978.0,11531045,10000000 +1570909578.0,11600883,10000000 +1570910178.0,11608458,10000000 +1570910778.0,11629284,10000000 +1570911378.0,11599513,10000000 +1570911978.0,11539826,10000000 +1570912578.0,11597017,10000000 +1570913178.0,11606893,10000000 +1570913778.0,11631560,10000000 +1570914378.0,11687059,10000000 +1570914978.0,11690001,10000000 +1570915578.0,11692467,10000000 +1570916178.0,11689178,10000000 +1570916778.0,11606072,10000000 +1570917378.0,11643146,10000000 +1570917978.0,11688824,10000000 +1570918578.0,11658683,10000000 +1570919178.0,11629426,10000000 +1570919778.0,11622866,10000000 +1570920378.0,11625699,10000000 +1570920978.0,11537349,10000000 +1570921578.0,11527675,10000000 +1570922178.0,11544140,10000000 +1570922778.0,11524501,10000000 +1570923378.0,11459774,10000000 +1570923978.0,11442502,10000000 +1570924578.0,11449200,10000000 +1570925178.0,11387682,10000000 +1570925778.0,11264881,10000000 +1570926378.0,11288220,10000000 +1570926978.0,11283128,10000000 +1570927578.0,11282428,10000000 +1570928178.0,11269242,10000000 +1570928778.0,11275854,10000000 +1570929378.0,11263716,10000000 +1570929978.0,11383365,10000000 +1570930578.0,11388596,10000000 +1570931178.0,11416348,10000000 +1570931778.0,11390298,10000000 +1570932378.0,11350945,10000000 +1570932978.0,11291593,10000000 +1570933578.0,11330041,10000000 +1570934178.0,11324916,10000000 +1570934778.0,11262722,10000000 +1570935378.0,11272485,10000000 +1570935978.0,11292902,10000000 +1570936578.0,11280573,10000000 +1570937178.0,11361298,10000000 +1570937778.0,11398761,10000000 +1570938378.0,11419909,10000000 +1570938978.0,11334285,10000000 +1570939578.0,11346424,10000000 +1570940178.0,11352899,10000000 +1570940778.0,11319280,10000000 +1570941378.0,11283279,10000000 +1570941978.0,11277375,10000000 +1570942578.0,11350150,10000000 +1570943178.0,11372472,10000000 +1570943778.0,11303765,10000000 +1570944378.0,11262952,10000000 +1570944978.0,11296883,10000000 +1570945578.0,11268761,10000000 +1570946178.0,11306783,10000000 +1570946778.0,11329379,10000000 +1570947378.0,11281265,10000000 +1570947978.0,11199183,10000000 +1570948578.0,11213195,10000000 +1570949178.0,11160496,10000000 +1570949778.0,11155097,10000000 +1570950378.0,11218729,10000000 +1570950978.0,11217261,10000000 +1570951578.0,11151443,10000000 +1570952178.0,11194560,10000000 +1570952778.0,11134959,10000000 +1570953378.0,11158001,10000000 +1570953978.0,11173973,10000000 +1570954578.0,11167436,10000000 +1570955178.0,11100221,10000000 +1570955778.0,11103677,10000000 +1570956378.0,11105112,10000000 +1570956978.0,11091759,10000000 +1570957578.0,11210334,10000000 +1570958178.0,11199970,10000000 +1570958778.0,11163558,10000000 +1570959378.0,11147431,10000000 +1570959978.0,11120800,10000000 +1570960578.0,11093593,10000000 +1570961178.0,11068692,10000000 +1570961778.0,11015879,10000000 +1570962378.0,10971562,10000000 +1570962978.0,11002170,10000000 +1570963578.0,11029924,10000000 +1570964178.0,11070373,10000000 +1570964778.0,11094854,10000000 +1570965378.0,11096450,10000000 +1570965978.0,11099149,10000000 +1570966578.0,11085761,10000000 +1570967178.0,10987473,10000000 +1570967778.0,10971751,10000000 +1570968378.0,10931978,10000000 +1570968978.0,10964897,10000000 +1570969578.0,10991162,10000000 +1570970178.0,10970107,10000000 +1570970778.0,10987481,10000000 +1570971378.0,10991206,10000000 +1570971978.0,11057304,10000000 +1570972578.0,10992866,10000000 +1570973178.0,10935617,10000000 +1570973778.0,10901465,10000000 +1570974378.0,10920916,10000000 +1570974978.0,10966833,10000000 +1570975578.0,10927551,10000000 +1570976178.0,10883561,10000000 +1570976778.0,10885331,10000000 +1570977378.0,10887678,10000000 +1570977978.0,10866251,10000000 +1570978578.0,10875250,10000000 +1570979178.0,10849637,10000000 +1570979778.0,10813173,10000000 +1570980378.0,10869206,10000000 +1570980978.0,10847427,10000000 +1570981578.0,10868910,10000000 +1570982178.0,10881442,10000000 +1570982778.0,10833791,10000000 +1570983378.0,10853405,10000000 +1570983978.0,10873896,10000000 +1570984578.0,10887116,10000000 +1570985178.0,10856635,10000000 +1570985778.0,10920277,10000000 +1570986378.0,10928572,10000000 +1570986978.0,10998934,10000000 +1570987578.0,10976149,10000000 +1570988178.0,10900978,10000000 +1570988778.0,10884651,10000000 +1570989378.0,10929180,10000000 +1570989978.0,10944067,10000000 +1570990578.0,10999330,10000000 +1570991178.0,11031845,10000000 +1570991778.0,11001682,10000000 +1570992378.0,11038555,10000000 +1570992978.0,11025395,10000000 +1570993578.0,11035372,10000000 +1570994178.0,11118035,10000000 +1570994778.0,11163487,10000000 +1570995378.0,11195514,10000000 +1570995978.0,11145610,10000000 +1570996578.0,11144405,10000000 +1570997178.0,11121864,10000000 +1570997778.0,11022113,10000000 +1570998378.0,11074677,10000000 +1570998978.0,11030751,10000000 +1570999578.0,11144718,10000000 +1571000178.0,11039504,10000000 +1571000778.0,11058782,10000000 +1571001378.0,11047693,10000000 +1571001978.0,11042826,10000000 +1571002578.0,11064678,10000000 +1571003178.0,11043375,10000000 +1571003778.0,11061849,10000000 +1571004378.0,11052924,10000000 +1571004978.0,11048889,10000000 +1571005578.0,11073134,10000000 +1571006178.0,11142918,10000000 +1571006778.0,11216410,10000000 +1571007378.0,11191302,10000000 +1571007978.0,11202715,10000000 +1571008578.0,11234734,10000000 +1571009178.0,11261751,10000000 +1571009778.0,11285058,10000000 +1571010378.0,11239713,10000000 +1571010978.0,11225613,10000000 +1571011578.0,11206887,10000000 +1571012178.0,11214056,10000000 +1571012778.0,11238708,10000000 +1571013378.0,11184436,10000000 +1571013978.0,11241722,10000000 +1571014578.0,11258100,10000000 +1571015178.0,11209957,10000000 +1571015778.0,11171449,10000000 +1571016378.0,11145263,10000000 +1571016978.0,11182694,10000000 +1571017578.0,11158814,10000000 +1571018178.0,11132898,10000000 +1571018778.0,11120312,10000000 +1571019378.0,11104884,10000000 +1571019978.0,11140710,10000000 +1571020578.0,11157168,10000000 +1571021178.0,11126615,10000000 +1571021778.0,11137683,10000000 +1571022378.0,11015019,10000000 +1571022978.0,11006231,10000000 +1571023578.0,10990149,10000000 +1571024178.0,10915773,10000000 +1571024778.0,10827710,10000000 +1571025378.0,10840670,10000000 +1571025978.0,10814473,10000000 +1571026578.0,10837857,10000000 +1571027178.0,10840712,10000000 +1571027778.0,10870483,10000000 +1571028378.0,10880724,10000000 +1571028978.0,10838675,10000000 +1571029578.0,10820625,10000000 +1571030178.0,10952554,10000000 +1571030778.0,10916742,10000000 +1571031378.0,10942049,10000000 +1571031978.0,10919406,10000000 +1571032578.0,10947079,10000000 +1571033178.0,10956973,10000000 +1571033778.0,10939845,10000000 +1571034378.0,11005161,10000000 +1571034978.0,11007956,10000000 +1571035578.0,10917761,10000000 +1571036178.0,10960770,10000000 +1571036778.0,10980669,10000000 +1571037378.0,11030695,10000000 +1571037978.0,10998488,10000000 +1571038578.0,10958404,10000000 +1571039178.0,10880134,10000000 +1571039778.0,10928141,10000000 +1571040378.0,10991433,10000000 +1571040978.0,11010547,10000000 +1571041578.0,11107649,10000000 +1571042178.0,11106425,10000000 +1571042778.0,11100642,10000000 +1571043378.0,11066295,10000000 +1571043978.0,11153620,10000000 +1571044578.0,11187184,10000000 +1571045178.0,11161603,10000000 +1571045778.0,11198991,10000000 +1571046378.0,11130124,10000000 +1571046978.0,11166675,10000000 +1571047578.0,11108264,10000000 +1571048178.0,11119944,10000000 +1571048778.0,11126205,10000000 +1571049378.0,11043215,10000000 +1571049978.0,11010043,10000000 +1571050578.0,11031286,10000000 +1571051178.0,10918653,10000000 +1571051778.0,10892214,10000000 +1571052378.0,10912520,10000000 +1571052978.0,10997423,10000000 +1571053578.0,11006934,10000000 +1571054178.0,11040940,10000000 +1571054778.0,11150626,10000000 +1571055378.0,11171678,10000000 +1571055978.0,11168650,10000000 +1571056578.0,11147959,10000000 +1571057178.0,11140191,10000000 +1571057778.0,11152823,10000000 +1571058378.0,11201445,10000000 +1571058978.0,11219405,10000000 +1571059578.0,11238060,10000000 +1571060178.0,11196966,10000000 +1571060778.0,11201984,10000000 +1571061378.0,11231569,10000000 +1571061978.0,11215774,10000000 +1571062578.0,11205272,10000000 +1571063178.0,11216003,10000000 +1571063778.0,11159065,10000000 +1571064378.0,11153151,10000000 +1571064978.0,11221632,10000000 +1571065578.0,11211332,10000000 +1571066178.0,11188099,10000000 +1571066778.0,11171930,10000000 +1571067378.0,11192855,10000000 +1571067978.0,11227573,10000000 +1571068578.0,11281245,10000000 +1571069178.0,11280093,10000000 +1571069778.0,11330242,10000000 +1571070378.0,11299633,10000000 +1571070978.0,11344428,10000000 +1571071578.0,11399995,10000000 +1571072178.0,11379451,10000000 +1571072778.0,11418765,10000000 +1571073378.0,11477121,10000000 +1571073978.0,11513565,10000000 +1571074578.0,11535434,10000000 +1571075178.0,11572620,10000000 +1571075778.0,11533470,10000000 +1571076378.0,11537508,10000000 +1571076978.0,11497707,10000000 +1571077578.0,11493959,10000000 +1571078178.0,11472355,10000000 +1571078778.0,11511084,10000000 +1571079378.0,11571879,10000000 +1571079978.0,11639983,10000000 +1571080578.0,11676814,10000000 +1571081178.0,11689146,10000000 +1571081778.0,11757437,10000000 +1571082378.0,11760289,10000000 +1571082978.0,11746406,10000000 +1571083578.0,11737468,10000000 +1571084178.0,11732298,10000000 +1571084778.0,11733608,10000000 +1571085378.0,11844730,10000000 +1571085978.0,11846898,10000000 +1571086578.0,11797386,10000000 +1571087178.0,11861844,10000000 +1571087778.0,11868129,10000000 +1571088378.0,11821178,10000000 +1571088978.0,11802559,10000000 +1571089578.0,11831341,10000000 +1571090178.0,11825383,10000000 +1571090778.0,11755484,10000000 +1571091378.0,11750379,10000000 +1571091978.0,11760309,10000000 +1571092578.0,11723715,10000000 +1571093178.0,11791901,10000000 +1571093778.0,11804098,10000000 +1571094378.0,11823599,10000000 +1571094978.0,11914325,10000000 +1571095578.0,11929719,10000000 +1571096178.0,11965387,10000000 +1571096778.0,11959362,10000000 +1571097378.0,11947722,10000000 +1571097978.0,11996747,10000000 +1571098578.0,11997368,10000000 +1571099178.0,11945818,10000000 +1571099778.0,11958984,10000000 +1571100378.0,11886559,10000000 +1571100978.0,11867726,10000000 +1571101578.0,11874966,10000000 +1571102178.0,11836484,10000000 +1571102778.0,11766362,10000000 +1571103378.0,11770435,10000000 +1571103978.0,11690511,10000000 +1571104578.0,11660922,10000000 +1571105178.0,11665150,10000000 +1571105778.0,11645281,10000000 +1571106378.0,11677573,10000000 +1571106978.0,11693668,10000000 +1571107578.0,11754038,10000000 +1571108178.0,11730486,10000000 +1571108778.0,11718982,10000000 +1571109378.0,11787124,10000000 +1571109978.0,11820912,10000000 +1571110578.0,11759380,10000000 +1571111178.0,11740784,10000000 +1571111778.0,11712683,10000000 +1571112378.0,11735096,10000000 +1571112978.0,11717731,10000000 +1571113578.0,11692779,10000000 +1571114178.0,11718253,10000000 +1571114778.0,11761695,10000000 +1571115378.0,11678780,10000000 +1571115978.0,11675185,10000000 +1571116578.0,11746160,10000000 +1571117178.0,11759553,10000000 +1571117778.0,11735753,10000000 +1571118378.0,11779251,10000000 +1571118978.0,11723853,10000000 +1571119578.0,11715673,10000000 +1571120178.0,11751237,10000000 +1571120778.0,11864084,10000000 +1571121378.0,11950416,10000000 +1571121978.0,12050878,10000000 +1571122578.0,12013195,10000000 +1571123178.0,11953166,10000000 +1571123778.0,11989852,10000000 +1571124378.0,11929398,10000000 +1571124978.0,11894157,10000000 +1571125578.0,11900062,10000000 +1571126178.0,11905573,10000000 +1571126778.0,11959659,10000000 +1571127378.0,11864662,10000000 +1571127978.0,11844872,10000000 +1571128578.0,11908007,10000000 +1571129178.0,11866493,10000000 +1571129778.0,11897406,10000000 +1571130378.0,11850514,10000000 +1571130978.0,11898778,10000000 +1571131578.0,11933218,10000000 +1571132178.0,11983222,10000000 +1571132778.0,11976311,10000000 +1571133378.0,11993899,10000000 +1571133978.0,11934662,10000000 +1571134578.0,11922378,10000000 +1571135178.0,11998525,10000000 +1571135778.0,12062652,10000000 +1571136378.0,12153213,10000000 +1571136978.0,12265735,10000000 +1571137578.0,12264519,10000000 +1571138178.0,12265442,10000000 +1571138778.0,12200467,10000000 +1571139378.0,12168611,10000000 +1571139978.0,12213002,10000000 +1571140578.0,12152094,10000000 +1571141178.0,12168331,10000000 +1571141778.0,12097740,10000000 +1571142378.0,12152139,10000000 +1571142978.0,12117627,10000000 +1571143578.0,12075218,10000000 +1571144178.0,12101761,10000000 +1571144778.0,12129894,10000000 +1571145378.0,12138648,10000000 +1571145978.0,12194353,10000000 +1571146578.0,12189380,10000000 +1571147178.0,12249967,10000000 +1571147778.0,12315512,10000000 +1571148378.0,12263573,10000000 +1571148978.0,12309447,10000000 +1571149578.0,12339157,10000000 +1571150178.0,12379992,10000000 +1571150778.0,12395705,10000000 +1571151378.0,12391189,10000000 +1571151978.0,12325957,10000000 +1571152578.0,12334444,10000000 +1571153178.0,12296760,10000000 +1571153778.0,12245306,10000000 +1571154378.0,12274207,10000000 +1571154978.0,12261406,10000000 +1571155578.0,12275729,10000000 +1571156178.0,12274973,10000000 +1571156778.0,12302681,10000000 +1571157378.0,12321154,10000000 +1571157978.0,12307188,10000000 +1571158578.0,12261459,10000000 +1571159178.0,12334734,10000000 +1571159778.0,12253862,10000000 +1571160378.0,12222119,10000000 +1571160978.0,12307978,10000000 +1571161578.0,12315227,10000000 +1571162178.0,12218479,10000000 +1571162778.0,12151630,10000000 +1571163378.0,12233055,10000000 +1571163978.0,12277047,10000000 +1571164578.0,12236672,10000000 +1571165178.0,12230546,10000000 +1571165778.0,12246596,10000000 +1571166378.0,12213717,10000000 +1571166978.0,12228562,10000000 +1571167578.0,12261874,10000000 +1571168178.0,12236110,10000000 +1571168778.0,12211815,10000000 +1571169378.0,12184941,10000000 +1571169978.0,12198011,10000000 +1571170578.0,12131894,10000000 +1571171178.0,12176392,10000000 +1571171778.0,12207115,10000000 +1571172378.0,12243765,10000000 +1571172978.0,12236198,10000000 +1571173578.0,12181298,10000000 +1571174178.0,12243871,10000000 +1571174778.0,12182188,10000000 +1571175378.0,12184090,10000000 +1571175978.0,12203194,10000000 +1571176578.0,12175179,10000000 +1571177178.0,12067203,10000000 +1571177778.0,12036078,10000000 +1571178378.0,12083504,10000000 +1571178978.0,12108204,10000000 +1571179578.0,12016399,10000000 +1571180178.0,12030815,10000000 +1571180778.0,12041599,10000000 +1571181378.0,12040830,10000000 +1571181978.0,12070032,10000000 +1571182578.0,12040880,10000000 +1571183178.0,12002737,10000000 +1571183778.0,12062163,10000000 +1571184378.0,12068932,10000000 +1571184978.0,12055602,10000000 +1571185578.0,12002632,10000000 +1571186178.0,11934414,10000000 +1571186778.0,11921814,10000000 +1571187378.0,11851281,10000000 +1571187978.0,11893191,10000000 +1571188578.0,11950695,10000000 +1571189178.0,11984885,10000000 +1571189778.0,11990946,10000000 +1571190378.0,11999944,10000000 +1571190978.0,12035866,10000000 +1571191578.0,11961688,10000000 +1571192178.0,12001536,10000000 +1571192778.0,12090444,10000000 +1571193378.0,12003081,10000000 +1571193978.0,12083242,10000000 +1571194578.0,12081225,10000000 +1571195178.0,12068637,10000000 +1571195778.0,12069511,10000000 +1571196378.0,12031918,10000000 +1571196978.0,11964907,10000000 +1571197578.0,11960773,10000000 +1571198178.0,12059827,10000000 +1571198778.0,12037729,10000000 +1571199378.0,11975393,10000000 +1571199978.0,12053354,10000000 +1571200578.0,12135188,10000000 +1571201178.0,12110400,10000000 +1571201778.0,12071157,10000000 +1571202378.0,12160372,10000000 +1571202978.0,12139613,10000000 +1571203578.0,12172707,10000000 +1571204178.0,12184490,10000000 +1571204778.0,12112182,10000000 +1571205378.0,12095615,10000000 +1571205978.0,11972906,10000000 +1571206578.0,11894381,10000000 +1571207178.0,12006844,10000000 +1571207778.0,11960639,10000000 +1571208378.0,11901464,10000000 +1571208978.0,11901976,10000000 +1571209578.0,11942305,10000000 +1571210178.0,12013531,10000000 +1571210778.0,12018381,10000000 +1571211378.0,12069432,10000000 +1571211978.0,12156997,10000000 +1571212578.0,12164176,10000000 +1571213178.0,12176376,10000000 +1571213778.0,12190311,10000000 +1571214378.0,12238371,10000000 +1571214978.0,12191649,10000000 +1571215578.0,12163565,10000000 +1571216178.0,12047138,10000000 +1571216778.0,12094843,10000000 +1571217378.0,12127047,10000000 +1571217978.0,12191191,10000000 +1571218578.0,12299987,10000000 +1571219178.0,12306266,10000000 +1571219778.0,12217134,10000000 +1571220378.0,12291497,10000000 +1571220978.0,12386386,10000000 +1571221578.0,12375202,10000000 +1571222178.0,12455518,10000000 +1571222778.0,12356757,10000000 +1571223378.0,12406441,10000000 +1571223978.0,12448609,10000000 +1571224578.0,12402296,10000000 +1571225178.0,12481413,10000000 +1571225778.0,12440136,10000000 +1571226378.0,12412432,10000000 +1571226978.0,12394313,10000000 +1571227578.0,12381162,10000000 +1571228178.0,12382580,10000000 +1571228778.0,12445747,10000000 +1571229378.0,12444295,10000000 +1571229978.0,12413369,10000000 +1571230578.0,12391631,10000000 +1571231178.0,12356219,10000000 +1571231778.0,12410908,10000000 +1571232378.0,12415866,10000000 +1571232978.0,12397526,10000000 +1571233578.0,12444920,10000000 +1571234178.0,12540318,10000000 +1571234778.0,12530403,10000000 +1571235378.0,12605363,10000000 +1571235978.0,12582596,10000000 +1571236578.0,12621013,10000000 +1571237178.0,12635359,10000000 +1571237778.0,12678792,10000000 +1571238378.0,12622522,10000000 +1571238978.0,12541016,10000000 +1571239578.0,12509615,10000000 +1571240178.0,12474072,10000000 +1571240778.0,12514997,10000000 +1571241378.0,12584614,10000000 +1571241978.0,12500110,10000000 +1571242578.0,12406964,10000000 +1571243178.0,12386916,10000000 +1571243778.0,12387945,10000000 +1571244378.0,12393373,10000000 +1571244978.0,12445122,10000000 +1571245578.0,12422529,10000000 +1571246178.0,12462914,10000000 +1571246778.0,12474550,10000000 +1571247378.0,12530852,10000000 +1571247978.0,12519529,10000000 +1571248578.0,12440827,10000000 +1571249178.0,12425498,10000000 +1571249778.0,12391397,10000000 +1571250378.0,12447280,10000000 +1571250978.0,12443687,10000000 +1571251578.0,12479236,10000000 +1571252178.0,12425173,10000000 +1571252778.0,12368821,10000000 +1571253378.0,12293949,10000000 +1571253978.0,12273816,10000000 +1571254578.0,12236150,10000000 +1571255178.0,12108232,10000000 +1571255778.0,12059238,10000000 +1571256378.0,12060603,10000000 +1571256978.0,11992488,10000000 +1571257578.0,11993119,10000000 +1571258178.0,11863958,10000000 +1571258778.0,11833738,10000000 +1571259378.0,11884410,10000000 +1571259978.0,11863476,10000000 +1571260578.0,11853400,10000000 +1571261178.0,11946502,10000000 +1571261778.0,11910428,10000000 +1571262378.0,11864576,10000000 +1571262978.0,11874435,10000000 +1571263578.0,11777511,10000000 +1571264178.0,11793973,10000000 +1571264778.0,11778641,10000000 +1571265378.0,11831122,10000000 +1571265978.0,11853522,10000000 +1571266578.0,11849630,10000000 +1571267178.0,11848982,10000000 +1571267778.0,11868156,10000000 +1571268378.0,11752759,10000000 +1571268978.0,11728568,10000000 +1571269578.0,11737682,10000000 +1571270178.0,11787748,10000000 +1571270778.0,11755961,10000000 +1571271378.0,11834165,10000000 +1571271978.0,11898102,10000000 +1571272578.0,11889548,10000000 +1571273178.0,11839295,10000000 +1571273778.0,11843589,10000000 +1571274378.0,11861539,10000000 +1571274978.0,11786279,10000000 +1571275578.0,11792929,10000000 +1571276178.0,11806229,10000000 +1571276778.0,11795853,10000000 +1571277378.0,11902248,10000000 +1571277978.0,11888673,10000000 +1571278578.0,11887329,10000000 +1571279178.0,11922115,10000000 +1571279778.0,11868084,10000000 +1571280378.0,11934967,10000000 +1571280978.0,11924346,10000000 +1571281578.0,11900757,10000000 +1571282178.0,11805182,10000000 +1571282778.0,11821970,10000000 +1571283378.0,11794498,10000000 +1571283978.0,11769215,10000000 +1571284578.0,11846016,10000000 +1571285178.0,11760950,10000000 +1571285778.0,11784365,10000000 +1571286378.0,11770349,10000000 +1571286978.0,11689969,10000000 +1571287578.0,11672214,10000000 +1571288178.0,11658610,10000000 +1571288778.0,11745035,10000000 +1571289378.0,11712431,10000000 +1571289978.0,11719887,10000000 +1571290578.0,11687910,10000000 +1571291178.0,11719495,10000000 +1571291778.0,11756668,10000000 +1571292378.0,11757759,10000000 +1571292978.0,11719040,10000000 +1571293578.0,11667633,10000000 +1571294178.0,11658129,10000000 +1571294778.0,11510802,10000000 +1571295378.0,11514007,10000000 +1571295978.0,11562748,10000000 +1571296578.0,11517555,10000000 +1571297178.0,11558905,10000000 +1571297778.0,11599677,10000000 +1571298378.0,11568983,10000000 +1571298978.0,11519996,10000000 +1571299578.0,11570959,10000000 +1571300178.0,11584187,10000000 +1571300778.0,11568905,10000000 +1571301378.0,11571545,10000000 +1571301978.0,11514912,10000000 +1571302578.0,11536842,10000000 +1571303178.0,11497900,10000000 +1571303778.0,11536670,10000000 +1571304378.0,11466743,10000000 +1571304978.0,11434112,10000000 +1571305578.0,11452970,10000000 +1571306178.0,11454809,10000000 +1571306778.0,11545441,10000000 +1571307378.0,11579442,10000000 +1571307978.0,11612589,10000000 +1571308578.0,11620881,10000000 +1571309178.0,11620269,10000000 +1571309778.0,11592299,10000000 +1571310378.0,11573161,10000000 +1571310978.0,11550077,10000000 +1571311578.0,11543621,10000000 +1571312178.0,11436059,10000000 +1571312778.0,11393581,10000000 +1571313378.0,11420098,10000000 +1571313978.0,11451680,10000000 +1571314578.0,11446357,10000000 +1571315178.0,11431750,10000000 +1571315778.0,11421159,10000000 +1571316378.0,11422120,10000000 +1571316978.0,11471402,10000000 +1571317578.0,11460646,10000000 +1571318178.0,11558315,10000000 +1571318778.0,11503997,10000000 +1571319378.0,11570225,10000000 +1571319978.0,11567376,10000000 +1571320578.0,11580232,10000000 +1571321178.0,11558255,10000000 +1571321778.0,11573999,10000000 +1571322378.0,11571984,10000000 +1571322978.0,11590246,10000000 +1571323578.0,11620615,10000000 +1571324178.0,11590831,10000000 +1571324778.0,11555335,10000000 +1571325378.0,11519661,10000000 +1571325978.0,11485099,10000000 +1571326578.0,11388246,10000000 +1571327178.0,11474388,10000000 +1571327778.0,11505820,10000000 +1571328378.0,11546298,10000000 +1571328978.0,11534507,10000000 +1571329578.0,11598586,10000000 +1571330178.0,11613973,10000000 +1571330778.0,11630641,10000000 +1571331378.0,11604135,10000000 +1571331978.0,11542812,10000000 +1571332578.0,11548929,10000000 +1571333178.0,11535217,10000000 +1571333778.0,11590964,10000000 +1571334378.0,11547542,10000000 +1571334978.0,11554501,10000000 +1571335578.0,11553710,10000000 +1571336178.0,11541161,10000000 +1571336778.0,11632748,10000000 +1571337378.0,11587950,10000000 +1571337978.0,11613510,10000000 +1571338578.0,11645253,10000000 +1571339178.0,11625115,10000000 +1571339778.0,11617918,10000000 +1571340378.0,11659711,10000000 +1571340978.0,11669838,10000000 +1571341578.0,11694596,10000000 +1571342178.0,11727371,10000000 +1571342778.0,11751935,10000000 +1571343378.0,11749112,10000000 +1571343978.0,11743721,10000000 +1571344578.0,11749202,10000000 +1571345178.0,11768903,10000000 +1571345778.0,11761962,10000000 +1571346378.0,11837251,10000000 +1571346978.0,11881746,10000000 +1571347578.0,11868294,10000000 +1571348178.0,11810116,10000000 +1571348778.0,11836743,10000000 +1571349378.0,11811401,10000000 +1571349978.0,11736549,10000000 +1571350578.0,11728430,10000000 +1571351178.0,11749565,10000000 +1571351778.0,11762016,10000000 +1571352378.0,11655229,10000000 +1571352978.0,11697494,10000000 +1571353578.0,11674874,10000000 +1571354178.0,11654501,10000000 +1571354778.0,11685400,10000000 +1571355378.0,11659448,10000000 +1571355978.0,11681327,10000000 +1571356578.0,11667419,10000000 +1571357178.0,11684878,10000000 +1571357778.0,11643014,10000000 +1571358378.0,11570716,10000000 +1571358978.0,11498908,10000000 +1571359578.0,11594050,10000000 +1571360178.0,11588687,10000000 +1571360778.0,11567621,10000000 +1571361378.0,11520983,10000000 +1571361978.0,11547294,10000000 +1571362578.0,11495114,10000000 +1571363178.0,11479287,10000000 +1571363778.0,11453513,10000000 +1571364378.0,11445927,10000000 +1571364978.0,11341200,10000000 +1571365578.0,11350852,10000000 +1571366178.0,11351690,10000000 +1571366778.0,11298773,10000000 +1571367378.0,11295126,10000000 +1571367978.0,11347620,10000000 +1571368578.0,11341465,10000000 +1571369178.0,11309083,10000000 +1571369778.0,11319441,10000000 +1571370378.0,11333283,10000000 +1571370978.0,11287006,10000000 +1571371578.0,11275591,10000000 +1571372178.0,11223915,10000000 +1571372778.0,11214959,10000000 +1571373378.0,11212538,10000000 +1571373978.0,11178236,10000000 +1571374578.0,11184764,10000000 +1571375178.0,11194672,10000000 +1571375778.0,11116604,10000000 +1571376378.0,11157630,10000000 +1571376978.0,11227958,10000000 +1571377578.0,11129659,10000000 +1571378178.0,11174666,10000000 +1571378778.0,11178604,10000000 +1571379378.0,11123300,10000000 +1571379978.0,11089912,10000000 +1571380578.0,11061578,10000000 +1571381178.0,11034397,10000000 +1571381778.0,11108118,10000000 +1571382378.0,11159711,10000000 +1571382978.0,11270695,10000000 +1571383578.0,11257021,10000000 +1571384178.0,11263082,10000000 +1571384778.0,11229428,10000000 +1571385378.0,11193921,10000000 +1571385978.0,11172265,10000000 +1571386578.0,11199172,10000000 +1571387178.0,11303698,10000000 +1571387778.0,11303178,10000000 +1571388378.0,11364554,10000000 +1571388978.0,11360932,10000000 +1571389578.0,11300368,10000000 +1571390178.0,11280043,10000000 +1571390778.0,11239301,10000000 +1571391378.0,11246643,10000000 +1571391978.0,11265040,10000000 +1571392578.0,11220783,10000000 +1571393178.0,11253707,10000000 +1571393778.0,11293800,10000000 +1571394378.0,11323274,10000000 +1571394978.0,11356789,10000000 +1571395578.0,11300804,10000000 +1571396178.0,11304196,10000000 +1571396778.0,11327345,10000000 +1571397378.0,11379389,10000000 +1571397978.0,11407910,10000000 +1571398578.0,11496677,10000000 +1571399178.0,11507885,10000000 +1571399778.0,11504348,10000000 +1571400378.0,11489815,10000000 +1571400978.0,11436760,10000000 +1571401578.0,11428635,10000000 +1571402178.0,11569809,10000000 +1571402778.0,11644769,10000000 +1571403378.0,11689848,10000000 +1571403978.0,11703512,10000000 +1571404578.0,11719035,10000000 +1571405178.0,11785851,10000000 +1571405778.0,11785418,10000000 +1571406378.0,11787605,10000000 +1571406978.0,11830699,10000000 +1571407578.0,11816887,10000000 +1571408178.0,11893553,10000000 +1571408778.0,11858299,10000000 +1571409378.0,11908663,10000000 +1571409978.0,11908122,10000000 +1571410578.0,11931658,10000000 +1571411178.0,11941835,10000000 +1571411778.0,11944300,10000000 +1571412378.0,11998831,10000000 +1571412978.0,11956106,10000000 +1571413578.0,11925553,10000000 +1571414178.0,11775878,10000000 +1571414778.0,11655698,10000000 +1571415378.0,11653923,10000000 +1571415978.0,11639138,10000000 +1571416578.0,11642641,10000000 +1571417178.0,11663493,10000000 +1571417778.0,11640652,10000000 +1571418378.0,11630030,10000000 +1571418978.0,11699502,10000000 +1571419578.0,11711755,10000000 +1571420178.0,11662674,10000000 +1571420778.0,11653152,10000000 +1571421378.0,11625020,10000000 +1571421978.0,11625319,10000000 +1571422578.0,11573585,10000000 +1571423178.0,11549390,10000000 +1571423778.0,11516548,10000000 +1571424378.0,11494947,10000000 +1571424978.0,11541292,10000000 +1571425578.0,11541656,10000000 +1571426178.0,11607535,10000000 +1571426778.0,11614973,10000000 +1571427378.0,11524930,10000000 +1571427978.0,11516758,10000000 +1571428578.0,11511139,10000000 +1571429178.0,11474572,10000000 +1571429778.0,11420304,10000000 +1571430378.0,11494368,10000000 +1571430978.0,11482880,10000000 +1571431578.0,11482624,10000000 +1571432178.0,11532076,10000000 +1571432778.0,11571440,10000000 +1571433378.0,11588575,10000000 +1571433978.0,11605299,10000000 +1571434578.0,11650266,10000000 +1571435178.0,11621493,10000000 +1571435778.0,11609938,10000000 +1571436378.0,11604533,10000000 +1571436978.0,11554387,10000000 +1571437578.0,11490950,10000000 +1571438178.0,11534179,10000000 +1571438778.0,11485982,10000000 +1571439378.0,11446456,10000000 +1571439978.0,11464746,10000000 +1571440578.0,11417606,10000000 +1571441178.0,11426994,10000000 +1571441778.0,11424767,10000000 +1571442378.0,11370268,10000000 +1571442978.0,11376338,10000000 +1571443578.0,11365326,10000000 +1571444178.0,11396566,10000000 +1571444778.0,11390959,10000000 +1571445378.0,11409333,10000000 +1571445978.0,11439154,10000000 +1571446578.0,11377366,10000000 +1571447178.0,11321042,10000000 +1571447778.0,11307998,10000000 +1571448378.0,11310108,10000000 +1571448978.0,11395421,10000000 +1571449578.0,11356226,10000000 +1571450178.0,11402423,10000000 +1571450778.0,11432589,10000000 +1571451378.0,11400678,10000000 +1571451978.0,11402849,10000000 +1571452578.0,11417661,10000000 +1571453178.0,11444621,10000000 +1571453778.0,11410714,10000000 +1571454378.0,11388541,10000000 +1571454978.0,11400025,10000000 +1571455578.0,11315665,10000000 +1571456178.0,11315516,10000000 +1571456778.0,11305331,10000000 +1571457378.0,11287473,10000000 +1571457978.0,11274769,10000000 +1571458578.0,11288402,10000000 +1571459178.0,11283569,10000000 +1571459778.0,11339711,10000000 +1571460378.0,11352358,10000000 +1571460978.0,11285800,10000000 +1571461578.0,11280492,10000000 +1571462178.0,11265565,10000000 +1571462778.0,11234434,10000000 +1571463378.0,11330575,10000000 +1571463978.0,11261185,10000000 +1571464578.0,11231543,10000000 +1571465178.0,11209702,10000000 +1571465778.0,11281703,10000000 +1571466378.0,11219413,10000000 +1571466978.0,11296541,10000000 +1571467578.0,11233144,10000000 +1571468178.0,11187536,10000000 +1571468778.0,11185451,10000000 +1571469378.0,11220351,10000000 +1571469978.0,11248909,10000000 +1571470578.0,11240611,10000000 +1571471178.0,11299435,10000000 +1571471778.0,11308535,10000000 +1571472378.0,11300372,10000000 +1571472978.0,11256911,10000000 +1571473578.0,11285281,10000000 +1571474178.0,11252272,10000000 +1571474778.0,11266610,10000000 +1571475378.0,11267592,10000000 +1571475978.0,11319161,10000000 +1571476578.0,11375672,10000000 +1571477178.0,11339770,10000000 +1571477778.0,11441903,10000000 +1571478378.0,11531710,10000000 +1571478978.0,11499679,10000000 +1571479578.0,11458152,10000000 +1571480178.0,11428687,10000000 +1571480778.0,11383554,10000000 +1571481378.0,11458863,10000000 +1571481978.0,11394057,10000000 +1571482578.0,11417379,10000000 +1571483178.0,11416647,10000000 +1571483778.0,11414413,10000000 +1571484378.0,11407442,10000000 +1571484978.0,11476512,10000000 +1571485578.0,11556588,10000000 +1571486178.0,11565045,10000000 +1571486778.0,11573656,10000000 +1571487378.0,11619441,10000000 +1571487978.0,11614296,10000000 +1571488578.0,11546838,10000000 +1571489178.0,11577536,10000000 +1571489778.0,11569022,10000000 +1571490378.0,11519624,10000000 +1571490978.0,11612438,10000000 +1571491578.0,11654319,10000000 +1571492178.0,11709372,10000000 +1571492778.0,11710461,10000000 +1571493378.0,11714806,10000000 +1571493978.0,11726767,10000000 +1571494578.0,11657839,10000000 +1571495178.0,11689213,10000000 +1571495778.0,11740922,10000000 +1571496378.0,11685649,10000000 +1571496978.0,11674709,10000000 +1571497578.0,11729010,10000000 +1571498178.0,11806493,10000000 +1571498778.0,11731481,10000000 +1571499378.0,11726450,10000000 +1571499978.0,11741320,10000000 +1571500578.0,11747256,10000000 +1571501178.0,11769355,10000000 +1571501778.0,11798245,10000000 +1571502378.0,11816745,10000000 +1571502978.0,11827388,10000000 +1571503578.0,11803655,10000000 +1571504178.0,11854118,10000000 +1571504778.0,11819130,10000000 +1571505378.0,11768278,10000000 +1571505978.0,11758781,10000000 +1571506578.0,11841261,10000000 +1571507178.0,11735124,10000000 +1571507778.0,11798121,10000000 +1571508378.0,11811591,10000000 +1571508978.0,11799091,10000000 +1571509578.0,11761935,10000000 +1571510178.0,11738815,10000000 +1571510778.0,11838568,10000000 +1571511378.0,11861126,10000000 +1571511978.0,11920584,10000000 +1571512578.0,11929388,10000000 +1571513178.0,11898173,10000000 +1571513778.0,11905300,10000000 +1571514378.0,11929217,10000000 +1571514978.0,11927604,10000000 +1571515578.0,11885944,10000000 +1571516178.0,11815164,10000000 +1571516778.0,11803667,10000000 +1571517378.0,11868706,10000000 +1571517978.0,11922043,10000000 +1571518578.0,12002825,10000000 +1571519178.0,12062779,10000000 +1571519778.0,12075678,10000000 +1571520378.0,12078707,10000000 +1571520978.0,12095657,10000000 +1571521578.0,11959716,10000000 +1571522178.0,11942152,10000000 +1571522778.0,11962465,10000000 +1571523378.0,11974386,10000000 +1571523978.0,11993990,10000000 +1571524578.0,12031154,10000000 +1571525178.0,11999627,10000000 +1571525778.0,11938658,10000000 +1571526378.0,11947626,10000000 +1571526978.0,11914472,10000000 +1571527578.0,11893124,10000000 +1571528178.0,11874791,10000000 +1571528778.0,11929984,10000000 +1571529378.0,11948636,10000000 +1571529978.0,11928299,10000000 +1571530578.0,11932554,10000000 +1571531178.0,11887775,10000000 +1571531778.0,11872945,10000000 +1571532378.0,11839754,10000000 +1571532978.0,11871534,10000000 +1571533578.0,11892149,10000000 +1571534178.0,12017186,10000000 +1571534778.0,12102893,10000000 +1571535378.0,12051977,10000000 +1571535978.0,12047080,10000000 +1571536578.0,11974403,10000000 +1571537178.0,12090221,10000000 +1571537778.0,12130009,10000000 +1571538378.0,12263231,10000000 +1571538978.0,12232923,10000000 +1571539578.0,12180709,10000000 +1571540178.0,12210700,10000000 +1571540778.0,12282779,10000000 +1571541378.0,12269945,10000000 +1571541978.0,12226307,10000000 +1571542578.0,12224498,10000000 +1571543178.0,12156061,10000000 +1571543778.0,12203960,10000000 +1571544378.0,12126028,10000000 +1571544978.0,12135162,10000000 +1571545578.0,12208124,10000000 +1571546178.0,12177665,10000000 +1571546778.0,12227934,10000000 +1571547378.0,12305444,10000000 +1571547978.0,12339580,10000000 +1571548578.0,12311679,10000000 +1571549178.0,12237605,10000000 +1571549778.0,12165668,10000000 +1571550378.0,12176519,10000000 +1571550978.0,12169516,10000000 +1571551578.0,12137428,10000000 +1571552178.0,12172129,10000000 +1571552778.0,12157210,10000000 +1571553378.0,12170635,10000000 +1571553978.0,12173377,10000000 +1571554578.0,12178622,10000000 +1571555178.0,12246599,10000000 +1571555778.0,12278689,10000000 +1571556378.0,12269412,10000000 +1571556978.0,12214529,10000000 +1571557578.0,12179830,10000000 +1571558178.0,12127427,10000000 +1571558778.0,12078902,10000000 +1571559378.0,12003730,10000000 +1571559978.0,11969134,10000000 +1571560578.0,11959740,10000000 +1571561178.0,11876451,10000000 +1571561778.0,11791217,10000000 +1571562378.0,11832073,10000000 +1571562978.0,11853821,10000000 +1571563578.0,11879262,10000000 +1571564178.0,11871755,10000000 +1571564778.0,11899261,10000000 +1571565378.0,11908395,10000000 +1571565978.0,11986576,10000000 +1571566578.0,12004176,10000000 +1571567178.0,11986674,10000000 +1571567778.0,11948496,10000000 +1571568378.0,11901730,10000000 +1571568978.0,11934934,10000000 +1571569578.0,11947760,10000000 +1571570178.0,11983432,10000000 +1571570778.0,11995461,10000000 +1571571378.0,12022338,10000000 +1571571978.0,12029794,10000000 +1571572578.0,12023522,10000000 +1571573178.0,12043553,10000000 +1571573778.0,12130237,10000000 +1571574378.0,12182067,10000000 +1571574978.0,12180451,10000000 +1571575578.0,12176044,10000000 +1571576178.0,12168017,10000000 +1571576778.0,12102103,10000000 +1571577378.0,12220005,10000000 +1571577978.0,12180915,10000000 +1571578578.0,12267656,10000000 +1571579178.0,12283345,10000000 +1571579778.0,12295458,10000000 +1571580378.0,12277423,10000000 +1571580978.0,12318925,10000000 +1571581578.0,12277597,10000000 +1571582178.0,12316204,10000000 +1571582778.0,12233667,10000000 +1571583378.0,12218524,10000000 +1571583978.0,12277656,10000000 +1571584578.0,12315108,10000000 +1571585178.0,12363045,10000000 +1571585778.0,12363767,10000000 +1571586378.0,12329292,10000000 +1571586978.0,12391081,10000000 +1571587578.0,12429342,10000000 +1571588178.0,12513511,10000000 +1571588778.0,12583505,10000000 +1571589378.0,12570763,10000000 +1571589978.0,12528384,10000000 +1571590578.0,12532935,10000000 +1571591178.0,12605762,10000000 +1571591778.0,12703492,10000000 +1571592378.0,12764620,10000000 +1571592978.0,12747005,10000000 +1571593578.0,12698112,10000000 +1571594178.0,12761379,10000000 +1571594778.0,12776558,10000000 +1571595378.0,12810767,10000000 +1571595978.0,12804186,10000000 +1571596578.0,12752478,10000000 +1571597178.0,12778531,10000000 +1571597778.0,12840065,10000000 +1571598378.0,12859322,10000000 +1571598978.0,12851733,10000000 +1571599578.0,12845912,10000000 +1571600178.0,12884128,10000000 +1571600778.0,12828105,10000000 +1571601378.0,12788591,10000000 +1571601978.0,12831089,10000000 +1571602578.0,12854941,10000000 +1571603178.0,12827038,10000000 +1571603778.0,12849581,10000000 +1571604378.0,12967218,10000000 +1571604978.0,12962812,10000000 +1571605578.0,13014825,10000000 +1571606178.0,13012395,10000000 +1571606778.0,12999362,10000000 +1571607378.0,12930817,10000000 +1571607978.0,12916723,10000000 +1571608578.0,12958294,10000000 +1571609178.0,12870969,10000000 +1571609778.0,12824920,10000000 +1571610378.0,12780865,10000000 +1571610978.0,12716260,10000000 +1571611578.0,12663543,10000000 +1571612178.0,12741502,10000000 +1571612778.0,12829945,10000000 +1571613378.0,12876449,10000000 +1571613978.0,12855652,10000000 +1571614578.0,12872591,10000000 +1571615178.0,12957371,10000000 +1571615778.0,12857656,10000000 +1571616378.0,12859085,10000000 +1571616978.0,12862245,10000000 +1571617578.0,12892286,10000000 +1571618178.0,12906881,10000000 +1571618778.0,12874808,10000000 +1571619378.0,12973963,10000000 +1571619978.0,13049217,10000000 +1571620578.0,13022004,10000000 +1571621178.0,12965754,10000000 +1571621778.0,13023994,10000000 +1571622378.0,13041241,10000000 +1571622978.0,13033393,10000000 +1571623578.0,13058055,10000000 +1571624178.0,12995361,10000000 +1571624778.0,12888918,10000000 +1571625378.0,12963844,10000000 +1571625978.0,13020865,10000000 +1571626578.0,13093475,10000000 +1571627178.0,12987269,10000000 +1571627778.0,13015491,10000000 +1571628378.0,13003483,10000000 +1571628978.0,12982753,10000000 +1571629578.0,13005709,10000000 +1571630178.0,13021029,10000000 +1571630778.0,13040188,10000000 +1571631378.0,13149443,10000000 +1571631978.0,13159278,10000000 +1571632578.0,13211613,10000000 +1571633178.0,13085947,10000000 +1571633778.0,13082419,10000000 +1571634378.0,13093298,10000000 +1571634978.0,13024459,10000000 +1571635578.0,13073122,10000000 +1571636178.0,13002205,10000000 +1571636778.0,13040635,10000000 +1571637378.0,12991573,10000000 +1571637978.0,13044155,10000000 +1571638578.0,12978014,10000000 +1571639178.0,13013449,10000000 +1571639778.0,12992852,10000000 +1571640378.0,12946794,10000000 +1571640978.0,12923289,10000000 +1571641578.0,12893107,10000000 +1571642178.0,12854935,10000000 +1571642778.0,12914944,10000000 +1571643378.0,12895588,10000000 +1571643978.0,12921937,10000000 +1571644578.0,12892957,10000000 +1571645178.0,12879880,10000000 +1571645778.0,12846384,10000000 +1571646378.0,12814634,10000000 +1571646978.0,12915272,10000000 +1571647578.0,12885577,10000000 +1571648178.0,12747176,10000000 +1571648778.0,12721992,10000000 +1571649378.0,12696538,10000000 +1571649978.0,12738978,10000000 +1571650578.0,12659588,10000000 +1571651178.0,12645739,10000000 +1571651778.0,12674072,10000000 +1571652378.0,12689680,10000000 +1571652978.0,12700050,10000000 +1571653578.0,12756141,10000000 +1571654178.0,12733658,10000000 +1571654778.0,12655880,10000000 +1571655378.0,12722772,10000000 +1571655978.0,12812874,10000000 +1571656578.0,12778016,10000000 +1571657178.0,12706626,10000000 +1571657778.0,12673280,10000000 +1571658378.0,12548597,10000000 +1571658978.0,12485515,10000000 +1571659578.0,12529531,10000000 +1571660178.0,12572325,10000000 +1571660778.0,12627412,10000000 +1571661378.0,12602851,10000000 +1571661978.0,12547525,10000000 +1571662578.0,12613023,10000000 +1571663178.0,12534898,10000000 +1571663778.0,12618669,10000000 +1571664378.0,12680403,10000000 +1571664978.0,12554089,10000000 +1571665578.0,12628853,10000000 +1571666178.0,12669994,10000000 +1571666778.0,12699151,10000000 +1571667378.0,12812055,10000000 +1571667978.0,12789595,10000000 +1571668578.0,12791004,10000000 +1571669178.0,12899252,10000000 +1571669778.0,12984818,10000000 +1571670378.0,12894531,10000000 +1571670978.0,12932208,10000000 +1571671578.0,12875861,10000000 +1571672178.0,12993236,10000000 +1571672778.0,12937349,10000000 +1571673378.0,12872613,10000000 +1571673978.0,12861611,10000000 +1571674578.0,12885306,10000000 +1571675178.0,12744442,10000000 +1571675778.0,12726968,10000000 +1571676378.0,12726927,10000000 +1571676978.0,12664021,10000000 +1571677578.0,12580600,10000000 +1571678178.0,12529082,10000000 +1571678778.0,12508346,10000000 +1571679378.0,12445277,10000000 +1571679978.0,12456409,10000000 +1571680578.0,12526021,10000000 +1571681178.0,12508052,10000000 +1571681778.0,12502108,10000000 +1571682378.0,12530150,10000000 +1571682978.0,12528386,10000000 +1571683578.0,12559679,10000000 +1571684178.0,12494452,10000000 +1571684778.0,12488958,10000000 +1571685378.0,12480983,10000000 +1571685978.0,12555910,10000000 +1571686578.0,12545357,10000000 +1571687178.0,12451592,10000000 +1571687778.0,12495100,10000000 +1571688378.0,12450873,10000000 +1571688978.0,12396883,10000000 +1571689578.0,12404161,10000000 +1571690178.0,12377661,10000000 +1571690778.0,12440248,10000000 +1571691378.0,12403950,10000000 +1571691978.0,12380911,10000000 +1571692578.0,12445009,10000000 +1571693178.0,12484007,10000000 +1571693778.0,12466239,10000000 +1571694378.0,12464287,10000000 +1571694978.0,12319367,10000000 +1571695578.0,12433441,10000000 +1571696178.0,12436153,10000000 +1571696778.0,12388501,10000000 +1571697378.0,12433090,10000000 +1571697978.0,12403655,10000000 +1571698578.0,12357443,10000000 +1571699178.0,12284335,10000000 +1571699778.0,12273896,10000000 +1571700378.0,12305527,10000000 +1571700978.0,12281209,10000000 +1571701578.0,12402771,10000000 +1571702178.0,12371073,10000000 +1571702778.0,12384635,10000000 +1571703378.0,12350372,10000000 +1571703978.0,12310351,10000000 +1571704578.0,12275667,10000000 +1571705178.0,12193021,10000000 +1571705778.0,12259092,10000000 +1571706378.0,12162702,10000000 +1571706978.0,12149156,10000000 +1571707578.0,12242348,10000000 +1571708178.0,12152460,10000000 +1571708778.0,12203045,10000000 +1571709378.0,12282582,10000000 +1571709978.0,12233757,10000000 +1571710578.0,12238955,10000000 +1571711178.0,12259438,10000000 +1571711778.0,12227653,10000000 +1571712378.0,12278640,10000000 +1571712978.0,12247084,10000000 +1571713578.0,12299972,10000000 +1571714178.0,12288489,10000000 +1571714778.0,12311490,10000000 +1571715378.0,12304210,10000000 +1571715978.0,12326737,10000000 +1571716578.0,12355322,10000000 +1571717178.0,12386652,10000000 +1571717778.0,12415350,10000000 +1571718378.0,12341809,10000000 +1571718978.0,12316601,10000000 +1571719578.0,12357375,10000000 +1571720178.0,12346414,10000000 +1571720778.0,12234239,10000000 +1571721378.0,12186630,10000000 +1571721978.0,12143521,10000000 +1571722578.0,12157440,10000000 +1571723178.0,12299198,10000000 +1571723778.0,12281439,10000000 +1571724378.0,12346904,10000000 +1571724978.0,12312422,10000000 +1571725578.0,12334380,10000000 +1571726178.0,12255474,10000000 +1571726778.0,12267881,10000000 +1571727378.0,12303935,10000000 +1571727978.0,12412241,10000000 +1571728578.0,12387185,10000000 +1571729178.0,12433909,10000000 +1571729778.0,12521508,10000000 +1571730378.0,12505444,10000000 +1571730978.0,12466380,10000000 +1571731578.0,12449277,10000000 +1571732178.0,12443780,10000000 +1571732778.0,12439202,10000000 +1571733378.0,12392853,10000000 +1571733978.0,12433271,10000000 +1571734578.0,12467740,10000000 +1571735178.0,12386462,10000000 +1571735778.0,12378067,10000000 +1571736378.0,12369857,10000000 +1571736978.0,12479778,10000000 +1571737578.0,12305231,10000000 +1571738178.0,12326313,10000000 +1571738778.0,12312638,10000000 +1571739378.0,12296608,10000000 +1571739978.0,12312675,10000000 +1571740578.0,12335181,10000000 +1571741178.0,12354584,10000000 +1571741778.0,12399549,10000000 +1571742378.0,12368511,10000000 +1571742978.0,12387643,10000000 +1571743578.0,12326176,10000000 +1571744178.0,12379410,10000000 +1571744778.0,12394840,10000000 +1571745378.0,12403898,10000000 +1571745978.0,12406116,10000000 +1571746578.0,12328581,10000000 +1571747178.0,12361872,10000000 +1571747778.0,12351900,10000000 +1571748378.0,12340620,10000000 +1571748978.0,12360881,10000000 +1571749578.0,12396009,10000000 +1571750178.0,12381196,10000000 +1571750778.0,12398259,10000000 +1571751378.0,12370798,10000000 +1571751978.0,12277675,10000000 +1571752578.0,12283874,10000000 +1571753178.0,12240063,10000000 +1571753778.0,12286481,10000000 +1571754378.0,12231670,10000000 +1571754978.0,12166599,10000000 +1571755578.0,12103368,10000000 +1571756178.0,12083458,10000000 +1571756778.0,12096474,10000000 +1571757378.0,11997120,10000000 +1571757978.0,11967077,10000000 +1571758578.0,12013856,10000000 +1571759178.0,11942154,10000000 +1571759778.0,11919727,10000000 +1571760378.0,11834953,10000000 +1571760978.0,11893584,10000000 +1571761578.0,11758067,10000000 +1571762178.0,11704775,10000000 +1571762778.0,11698768,10000000 +1571763378.0,11659698,10000000 +1571763978.0,11645691,10000000 +1571764578.0,11605823,10000000 +1571765178.0,11544071,10000000 +1571765778.0,11438152,10000000 +1571766378.0,11358983,10000000 +1571766978.0,11405361,10000000 +1571767578.0,11359041,10000000 +1571768178.0,11415377,10000000 +1571768778.0,11407150,10000000 +1571769378.0,11330261,10000000 +1571769978.0,11300711,10000000 +1571770578.0,11318039,10000000 +1571771178.0,11365781,10000000 +1571771778.0,11357762,10000000 +1571772378.0,11349874,10000000 +1571772978.0,11344479,10000000 +1571773578.0,11299492,10000000 +1571774178.0,11390568,10000000 +1571774778.0,11302399,10000000 +1571775378.0,11329592,10000000 +1571775978.0,11325211,10000000 +1571776578.0,11317073,10000000 +1571777178.0,11374671,10000000 +1571777778.0,11424305,10000000 +1571778378.0,11424142,10000000 +1571778978.0,11480168,10000000 +1571779578.0,11489988,10000000 +1571780178.0,11458234,10000000 +1571780778.0,11384812,10000000 +1571781378.0,11469464,10000000 +1571781978.0,11486897,10000000 +1571782578.0,11509529,10000000 +1571783178.0,11564387,10000000 +1571783778.0,11571000,10000000 +1571784378.0,11508776,10000000 +1571784978.0,11479812,10000000 +1571785578.0,11433326,10000000 +1571786178.0,11446266,10000000 +1571786778.0,11463783,10000000 +1571787378.0,11506637,10000000 +1571787978.0,11535212,10000000 +1571788578.0,11536585,10000000 +1571789178.0,11566332,10000000 +1571789778.0,11551069,10000000 +1571790378.0,11560548,10000000 +1571790978.0,11545198,10000000 +1571791578.0,11537103,10000000 +1571792178.0,11511490,10000000 +1571792778.0,11406687,10000000 +1571793378.0,11481499,10000000 +1571793978.0,11473513,10000000 +1571794578.0,11474145,10000000 +1571795178.0,11509988,10000000 +1571795778.0,11584937,10000000 +1571796378.0,11584634,10000000 +1571796978.0,11594072,10000000 +1571797578.0,11591865,10000000 +1571798178.0,11589745,10000000 +1571798778.0,11553279,10000000 +1571799378.0,11549939,10000000 +1571799978.0,11491766,10000000 +1571800578.0,11448992,10000000 +1571801178.0,11399176,10000000 +1571801778.0,11309695,10000000 +1571802378.0,11261494,10000000 +1571802978.0,11248598,10000000 +1571803578.0,11182616,10000000 +1571804178.0,11134958,10000000 +1571804778.0,11156792,10000000 +1571805378.0,11181600,10000000 +1571805978.0,11211997,10000000 +1571806578.0,11216085,10000000 +1571807178.0,11202534,10000000 +1571807778.0,11188627,10000000 +1571808378.0,11183836,10000000 +1571808978.0,11170518,10000000 +1571809578.0,11249263,10000000 +1571810178.0,11257368,10000000 +1571810778.0,11279869,10000000 +1571811378.0,11329465,10000000 +1571811978.0,11343006,10000000 +1571812578.0,11299190,10000000 +1571813178.0,11202289,10000000 +1571813778.0,11214286,10000000 +1571814378.0,11196173,10000000 +1571814978.0,11171301,10000000 +1571815578.0,11186638,10000000 +1571816178.0,11183217,10000000 +1571816778.0,11127459,10000000 +1571817378.0,11100302,10000000 +1571817978.0,11137390,10000000 +1571818578.0,11174316,10000000 +1571819178.0,11240816,10000000 +1571819778.0,11361523,10000000 +1571820378.0,11350612,10000000 +1571820978.0,11391286,10000000 +1571821578.0,11297759,10000000 +1571822178.0,11281445,10000000 +1571822778.0,11350422,10000000 +1571823378.0,11326460,10000000 +1571823978.0,11268524,10000000 +1571824578.0,11240741,10000000 +1571825178.0,11239689,10000000 +1571825778.0,11317795,10000000 +1571826378.0,11281048,10000000 +1571826978.0,11219200,10000000 +1571827578.0,11200148,10000000 +1571828178.0,11232407,10000000 +1571828778.0,11254641,10000000 +1571829378.0,11234060,10000000 +1571829978.0,11229048,10000000 +1571830578.0,11274627,10000000 +1571831178.0,11239865,10000000 +1571831778.0,11192383,10000000 +1571832378.0,11215300,10000000 +1571832978.0,11198021,10000000 +1571833578.0,11180121,10000000 +1571834178.0,11105397,10000000 +1571834778.0,11096235,10000000 +1571835378.0,10993361,10000000 +1571835978.0,11026167,10000000 +1571836578.0,10954187,10000000 +1571837178.0,10925507,10000000 +1571837778.0,10894496,10000000 +1571838378.0,10841824,10000000 +1571838978.0,10899545,10000000 +1571839578.0,10929836,10000000 +1571840178.0,10925324,10000000 +1571840778.0,10889254,10000000 +1571841378.0,10828027,10000000 +1571841978.0,10801615,10000000 +1571842578.0,10877750,10000000 +1571843178.0,10837946,10000000 +1571843778.0,10838646,10000000 +1571844378.0,10876677,10000000 +1571844978.0,10860134,10000000 +1571845578.0,10869328,10000000 +1571846178.0,10842313,10000000 +1571846778.0,10890297,10000000 +1571847378.0,10935128,10000000 +1571847978.0,10986345,10000000 +1571848578.0,10965962,10000000 +1571849178.0,10976883,10000000 +1571849778.0,10986278,10000000 +1571850378.0,11029185,10000000 +1571850978.0,10997643,10000000 +1571851578.0,10960207,10000000 +1571852178.0,10975128,10000000 +1571852778.0,10937236,10000000 +1571853378.0,10965137,10000000 +1571853978.0,10992135,10000000 +1571854578.0,11029625,10000000 +1571855178.0,11003166,10000000 +1571855778.0,11021283,10000000 +1571856378.0,11043172,10000000 +1571856978.0,10997489,10000000 +1571857578.0,11038485,10000000 +1571858178.0,10971301,10000000 +1571858778.0,10965419,10000000 +1571859378.0,10911344,10000000 +1571859978.0,10850748,10000000 +1571860578.0,10840027,10000000 +1571861178.0,10800602,10000000 +1571861778.0,10826215,10000000 +1571862378.0,10837872,10000000 +1571862978.0,10793813,10000000 +1571863578.0,10678385,10000000 +1571864178.0,10602315,10000000 +1571864778.0,10633206,10000000 +1571865378.0,10637317,10000000 +1571865978.0,10680568,10000000 +1571866578.0,10724363,10000000 +1571867178.0,10758400,10000000 +1571867778.0,10744264,10000000 +1571868378.0,10716445,10000000 +1571868978.0,10679927,10000000 +1571869578.0,10735240,10000000 +1571870178.0,10731277,10000000 +1571870778.0,10714766,10000000 +1571871378.0,10764639,10000000 +1571871978.0,10762528,10000000 +1571872578.0,10690752,10000000 +1571873178.0,10744142,10000000 +1571873778.0,10706184,10000000 +1571874378.0,10701088,10000000 +1571874978.0,10661136,10000000 +1571875578.0,10680338,10000000 +1571876178.0,10669421,10000000 +1571876778.0,10726329,10000000 +1571877378.0,10782442,10000000 +1571877978.0,10851825,10000000 +1571878578.0,10911213,10000000 +1571879178.0,10952674,10000000 +1571879778.0,10976650,10000000 +1571880378.0,11041834,10000000 +1571880978.0,11044541,10000000 +1571881578.0,11028907,10000000 +1571882178.0,11113236,10000000 +1571882778.0,11192872,10000000 +1571883378.0,11139276,10000000 +1571883978.0,11143063,10000000 +1571884578.0,11183888,10000000 +1571885178.0,11177254,10000000 +1571885778.0,11170486,10000000 +1571886378.0,11166906,10000000 +1571886978.0,11129852,10000000 +1571887578.0,11121675,10000000 +1571888178.0,11112700,10000000 +1571888778.0,11191571,10000000 +1571889378.0,11194391,10000000 +1571889978.0,11285934,10000000 +1571890578.0,11317107,10000000 +1571891178.0,11268064,10000000 +1571891778.0,11174550,10000000 +1571892378.0,11283858,10000000 +1571892978.0,11232710,10000000 +1571893578.0,11184516,10000000 +1571894178.0,11234931,10000000 +1571894778.0,11242591,10000000 +1571895378.0,11160549,10000000 +1571895978.0,11037687,10000000 +1571896578.0,11004529,10000000 +1571897178.0,11053180,10000000 +1571897778.0,11040847,10000000 +1571898378.0,11046999,10000000 +1571898978.0,11025492,10000000 +1571899578.0,11139284,10000000 +1571900178.0,11151109,10000000 +1571900778.0,11219714,10000000 +1571901378.0,11145036,10000000 +1571901978.0,11091035,10000000 +1571902578.0,11077421,10000000 +1571903178.0,11092483,10000000 +1571903778.0,11181851,10000000 +1571904378.0,11249179,10000000 +1571904978.0,11257296,10000000 +1571905578.0,11398115,10000000 +1571906178.0,11353679,10000000 +1571906778.0,11376099,10000000 +1571907378.0,11394432,10000000 +1571907978.0,11383881,10000000 +1571908578.0,11373521,10000000 +1571909178.0,11325800,10000000 +1571909778.0,11301853,10000000 +1571910378.0,11343060,10000000 +1571910978.0,11388591,10000000 +1571911578.0,11311437,10000000 +1571912178.0,11287432,10000000 +1571912778.0,11241539,10000000 +1571913378.0,11131656,10000000 +1571913978.0,11074368,10000000 +1571914578.0,11059238,10000000 +1571915178.0,11101153,10000000 +1571915778.0,11122260,10000000 +1571916378.0,11173098,10000000 +1571916978.0,11217784,10000000 +1571917578.0,11249501,10000000 +1571918178.0,11199587,10000000 +1571918778.0,11176147,10000000 +1571919378.0,11159413,10000000 +1571919978.0,11209056,10000000 +1571920578.0,11177407,10000000 +1571921178.0,11100382,10000000 +1571921778.0,11087475,10000000 +1571922378.0,11038427,10000000 +1571922978.0,11033486,10000000 +1571923578.0,10965256,10000000 +1571924178.0,11046548,10000000 +1571924778.0,11064726,10000000 +1571925378.0,11033178,10000000 +1571925978.0,11106701,10000000 +1571926578.0,11107640,10000000 +1571927178.0,11040848,10000000 +1571927778.0,11027914,10000000 +1571928378.0,11013892,10000000 +1571928978.0,10964831,10000000 +1571929578.0,11007804,10000000 +1571930178.0,11017049,10000000 +1571930778.0,11017230,10000000 +1571931378.0,11025500,10000000 +1571931978.0,11067214,10000000 +1571932578.0,11068144,10000000 +1571933178.0,11085531,10000000 +1571933778.0,11043365,10000000 +1571934378.0,11050931,10000000 +1571934978.0,11028140,10000000 +1571935578.0,11047876,10000000 +1571936178.0,11046044,10000000 +1571936778.0,11086019,10000000 +1571937378.0,11148701,10000000 +1571937978.0,11081573,10000000 +1571938578.0,11048628,10000000 +1571939178.0,11051824,10000000 +1571939778.0,11013206,10000000 +1571940378.0,10956579,10000000 +1571940978.0,10944581,10000000 +1571941578.0,10879609,10000000 +1571942178.0,10922719,10000000 +1571942778.0,10896149,10000000 +1571943378.0,10887834,10000000 +1571943978.0,10863456,10000000 +1571944578.0,10874522,10000000 +1571945178.0,10867103,10000000 +1571945778.0,10815636,10000000 +1571946378.0,10792887,10000000 +1571946978.0,10869791,10000000 +1571947578.0,10820452,10000000 +1571948178.0,10804433,10000000 +1571948778.0,10792303,10000000 +1571949378.0,10762235,10000000 +1571949978.0,10754613,10000000 +1571950578.0,10769873,10000000 +1571951178.0,10801093,10000000 +1571951778.0,10823924,10000000 +1571952378.0,10825733,10000000 +1571952978.0,10846357,10000000 +1571953578.0,10857845,10000000 +1571954178.0,10859271,10000000 +1571954778.0,10922888,10000000 +1571955378.0,10884314,10000000 +1571955978.0,10854606,10000000 +1571956578.0,10801185,10000000 +1571957178.0,10821043,10000000 +1571957778.0,10950313,10000000 +1571958378.0,10919388,10000000 +1571958978.0,10955846,10000000 +1571959578.0,10984484,10000000 +1571960178.0,10968433,10000000 +1571960778.0,10979079,10000000 +1571961378.0,10982339,10000000 +1571961978.0,11005745,10000000 +1571962578.0,11015408,10000000 +1571963178.0,11076616,10000000 +1571963778.0,11086806,10000000 +1571964378.0,11136764,10000000 +1571964978.0,11077860,10000000 +1571965578.0,11133408,10000000 +1571966178.0,11067005,10000000 +1571966778.0,11022448,10000000 +1571967378.0,11061719,10000000 +1571967978.0,11015580,10000000 +1571968578.0,11018959,10000000 +1571969178.0,11038265,10000000 +1571969778.0,11092094,10000000 +1571970378.0,11121714,10000000 +1571970978.0,11141239,10000000 +1571971578.0,11121518,10000000 +1571972178.0,11127106,10000000 +1571972778.0,11097015,10000000 +1571973378.0,11139226,10000000 +1571973978.0,11082754,10000000 +1571974578.0,11085281,10000000 +1571975178.0,11177613,10000000 +1571975778.0,11160859,10000000 +1571976378.0,11160947,10000000 +1571976978.0,11127018,10000000 +1571977578.0,11167671,10000000 +1571978178.0,11154970,10000000 +1571978778.0,11153854,10000000 +1571979378.0,11023379,10000000 +1571979978.0,11032056,10000000 +1571980578.0,11049107,10000000 +1571981178.0,11090956,10000000 +1571981778.0,11120168,10000000 +1571982378.0,11021018,10000000 +1571982978.0,11023722,10000000 +1571983578.0,10953806,10000000 +1571984178.0,10976224,10000000 +1571984778.0,11010148,10000000 +1571985378.0,10992123,10000000 +1571985978.0,11061676,10000000 +1571986578.0,11078809,10000000 +1571987178.0,10993828,10000000 +1571987778.0,11003690,10000000 +1571988378.0,11015500,10000000 +1571988978.0,11022307,10000000 +1571989578.0,10995280,10000000 +1571990178.0,10949940,10000000 +1571990778.0,11010876,10000000 +1571991378.0,11001329,10000000 +1571991978.0,10923792,10000000 +1571992578.0,10972367,10000000 +1571993178.0,11028614,10000000 +1571993778.0,10983567,10000000 +1571994378.0,11106777,10000000 +1571994978.0,11062665,10000000 +1571995578.0,11056276,10000000 +1571996178.0,11143712,10000000 +1571996778.0,11073833,10000000 +1571997378.0,11058890,10000000 +1571997978.0,11062097,10000000 +1571998578.0,11054111,10000000 +1571999178.0,11033808,10000000 +1571999778.0,11016893,10000000 +1572000378.0,11064487,10000000 +1572000978.0,11081912,10000000 +1572001578.0,11171999,10000000 +1572002178.0,11081380,10000000 +1572002778.0,11088056,10000000 +1572003378.0,11116061,10000000 +1572003978.0,11108746,10000000 +1572004578.0,11103279,10000000 +1572005178.0,11174528,10000000 +1572005778.0,11187151,10000000 +1572006378.0,11269718,10000000 +1572006978.0,11278861,10000000 +1572007578.0,11299538,10000000 +1572008178.0,11249303,10000000 +1572008778.0,11202998,10000000 +1572009378.0,11187312,10000000 +1572009978.0,11170176,10000000 +1572010578.0,11115490,10000000 +1572011178.0,11098247,10000000 +1572011778.0,11117583,10000000 +1572012378.0,11110149,10000000 +1572012978.0,11140962,10000000 +1572013578.0,11147784,10000000 +1572014178.0,11145567,10000000 +1572014778.0,11304752,10000000 +1572015378.0,11294760,10000000 +1572015978.0,11267820,10000000 +1572016578.0,11229726,10000000 +1572017178.0,11256319,10000000 +1572017778.0,11188058,10000000 +1572018378.0,11189567,10000000 +1572018978.0,11184977,10000000 +1572019578.0,11158510,10000000 +1572020178.0,11203834,10000000 +1572020778.0,11308965,10000000 +1572021378.0,11283544,10000000 +1572021978.0,11268218,10000000 +1572022578.0,11281861,10000000 +1572023178.0,11292010,10000000 +1572023778.0,11326146,10000000 +1572024378.0,11344549,10000000 +1572024978.0,11323780,10000000 +1572025578.0,11375561,10000000 +1572026178.0,11423302,10000000 +1572026778.0,11371713,10000000 +1572027378.0,11407330,10000000 +1572027978.0,11415269,10000000 +1572028578.0,11386746,10000000 +1572029178.0,11339525,10000000 +1572029778.0,11308243,10000000 +1572030378.0,11237334,10000000 +1572030978.0,11178925,10000000 +1572031578.0,11163148,10000000 +1572032178.0,11179708,10000000 +1572032778.0,11161182,10000000 +1572033378.0,11200425,10000000 +1572033978.0,11246807,10000000 +1572034578.0,11289279,10000000 +1572035178.0,11380387,10000000 +1572035778.0,11336618,10000000 +1572036378.0,11367638,10000000 +1572036978.0,11453270,10000000 +1572037578.0,11520536,10000000 +1572038178.0,11546502,10000000 +1572038778.0,11538082,10000000 +1572039378.0,11590078,10000000 +1572039978.0,11551036,10000000 +1572040578.0,11590683,10000000 +1572041178.0,11553131,10000000 +1572041778.0,11621247,10000000 +1572042378.0,11609502,10000000 +1572042978.0,11562346,10000000 +1572043578.0,11600471,10000000 +1572044178.0,11563233,10000000 +1572044778.0,11618207,10000000 +1572045378.0,11674201,10000000 +1572045978.0,11693471,10000000 +1572046578.0,11632472,10000000 +1572047178.0,11685845,10000000 +1572047778.0,11700223,10000000 +1572048378.0,11666467,10000000 +1572048978.0,11688022,10000000 +1572049578.0,11750981,10000000 +1572050178.0,11740984,10000000 +1572050778.0,11775156,10000000 +1572051378.0,11769677,10000000 +1572051978.0,11735947,10000000 +1572052578.0,11733430,10000000 +1572053178.0,11687588,10000000 +1572053778.0,11746612,10000000 +1572054378.0,11775746,10000000 +1572054978.0,11758115,10000000 +1572055578.0,11759782,10000000 +1572056178.0,11686045,10000000 +1572056778.0,11832575,10000000 +1572057378.0,11816510,10000000 +1572057978.0,11854522,10000000 +1572058578.0,11901256,10000000 +1572059178.0,11879166,10000000 +1572059778.0,11850186,10000000 +1572060378.0,11889504,10000000 +1572060978.0,11900829,10000000 +1572061578.0,11853832,10000000 +1572062178.0,11776631,10000000 +1572062778.0,11703070,10000000 +1572063378.0,11803304,10000000 +1572063978.0,11749249,10000000 +1572064578.0,11803674,10000000 +1572065178.0,11831787,10000000 +1572065778.0,11782187,10000000 +1572066378.0,11784378,10000000 +1572066978.0,11749486,10000000 +1572067578.0,11719209,10000000 +1572068178.0,11768137,10000000 +1572068778.0,11781728,10000000 +1572069378.0,11731236,10000000 +1572069978.0,11830110,10000000 +1572070578.0,11884304,10000000 +1572071178.0,11938638,10000000 +1572071778.0,11955894,10000000 +1572072378.0,12007962,10000000 +1572072978.0,11949719,10000000 +1572073578.0,11943318,10000000 +1572074178.0,11907335,10000000 +1572074778.0,11852736,10000000 +1572075378.0,11788997,10000000 +1572075978.0,11804735,10000000 +1572076578.0,11702476,10000000 +1572077178.0,11816086,10000000 +1572077778.0,11825093,10000000 +1572078378.0,11788883,10000000 +1572078978.0,11726960,10000000 +1572079578.0,11687026,10000000 +1572080178.0,11606519,10000000 +1572080778.0,11619473,10000000 +1572081378.0,11538119,10000000 +1572081978.0,11561635,10000000 +1572082578.0,11593961,10000000 +1572083178.0,11515748,10000000 +1572083778.0,11520019,10000000 +1572084378.0,11523519,10000000 +1572084978.0,11541369,10000000 +1572085578.0,11656305,10000000 +1572086178.0,11594145,10000000 +1572086778.0,11592943,10000000 +1572087378.0,11663349,10000000 +1572087978.0,11682011,10000000 +1572088578.0,11655548,10000000 +1572089178.0,11663512,10000000 +1572089778.0,11601871,10000000 +1572090378.0,11636017,10000000 +1572090978.0,11616267,10000000 +1572091578.0,11642267,10000000 +1572092178.0,11732835,10000000 +1572092778.0,11626286,10000000 +1572093378.0,11658637,10000000 +1572093978.0,11708584,10000000 +1572094578.0,11727421,10000000 +1572095178.0,11725100,10000000 +1572095778.0,11732515,10000000 +1572096378.0,11659263,10000000 +1572096978.0,11623494,10000000 +1572097578.0,11632333,10000000 +1572098178.0,11570919,10000000 +1572098778.0,11519294,10000000 +1572099378.0,11489541,10000000 +1572099978.0,11522401,10000000 +1572100578.0,11536196,10000000 +1572101178.0,11459639,10000000 +1572101778.0,11468438,10000000 +1572102378.0,11408260,10000000 +1572102978.0,11451690,10000000 +1572103578.0,11458405,10000000 +1572104178.0,11440386,10000000 +1572104778.0,11493156,10000000 +1572105378.0,11558346,10000000 +1572105978.0,11564808,10000000 +1572106578.0,11553606,10000000 +1572107178.0,11520677,10000000 +1572107778.0,11526184,10000000 +1572108378.0,11448500,10000000 +1572108978.0,11473296,10000000 +1572109578.0,11496282,10000000 +1572110178.0,11469201,10000000 +1572110778.0,11446182,10000000 +1572111378.0,11494808,10000000 +1572111978.0,11478127,10000000 +1572112578.0,11406732,10000000 +1572113178.0,11395595,10000000 +1572113778.0,11398391,10000000 +1572114378.0,11369921,10000000 +1572114978.0,11392034,10000000 +1572115578.0,11388398,10000000 +1572116178.0,11441201,10000000 +1572116778.0,11398234,10000000 +1572117378.0,11483755,10000000 +1572117978.0,11486865,10000000 +1572118578.0,11610503,10000000 +1572119178.0,11555348,10000000 +1572119778.0,11573612,10000000 +1572120378.0,11601088,10000000 +1572120978.0,11599702,10000000 +1572121578.0,11613198,10000000 +1572122178.0,11604339,10000000 +1572122778.0,11594202,10000000 +1572123378.0,11464951,10000000 +1572123978.0,11538316,10000000 +1572124578.0,11584358,10000000 +1572125178.0,11650043,10000000 +1572125778.0,11700894,10000000 +1572126378.0,11707983,10000000 +1572126978.0,11691463,10000000 +1572127578.0,11762971,10000000 +1572128178.0,11747004,10000000 +1572128778.0,11747493,10000000 +1572129378.0,11727826,10000000 +1572129978.0,11785394,10000000 +1572130578.0,11778282,10000000 +1572131178.0,11775438,10000000 +1572131778.0,11754664,10000000 +1572132378.0,11727525,10000000 +1572132978.0,11598969,10000000 +1572133578.0,11658902,10000000 +1572134178.0,11694329,10000000 +1572134778.0,11739273,10000000 +1572135378.0,11721383,10000000 +1572135978.0,11717703,10000000 +1572136578.0,11698762,10000000 +1572137178.0,11650087,10000000 +1572137778.0,11627864,10000000 +1572138378.0,11613174,10000000 +1572138978.0,11594713,10000000 +1572139578.0,11692102,10000000 +1572140178.0,11714384,10000000 +1572140778.0,11783482,10000000 +1572141378.0,11751297,10000000 +1572141978.0,11791624,10000000 +1572142578.0,11749599,10000000 +1572143178.0,11758867,10000000 +1572143778.0,11783942,10000000 +1572144378.0,11786616,10000000 +1572144978.0,11681115,10000000 +1572145578.0,11630385,10000000 +1572146178.0,11650097,10000000 +1572146778.0,11664414,10000000 +1572147378.0,11662816,10000000 +1572147978.0,11680905,10000000 +1572148578.0,11673442,10000000 +1572149178.0,11678939,10000000 +1572149778.0,11604508,10000000 +1572150378.0,11690830,10000000 +1572150978.0,11749479,10000000 +1572151578.0,11776849,10000000 +1572152178.0,11741207,10000000 +1572152778.0,11722462,10000000 +1572153378.0,11825701,10000000 +1572153978.0,11842222,10000000 +1572154578.0,11901738,10000000 +1572155178.0,11932494,10000000 +1572155778.0,11885608,10000000 +1572156378.0,11920187,10000000 +1572156978.0,11916405,10000000 +1572157578.0,11985609,10000000 +1572158178.0,12028472,10000000 +1572158778.0,12085414,10000000 +1572159378.0,12126112,10000000 +1572159978.0,12018284,10000000 +1572160578.0,12017723,10000000 +1572161178.0,12004594,10000000 +1572161778.0,12063324,10000000 +1572162378.0,12152958,10000000 +1572162978.0,12160701,10000000 +1572163578.0,12237200,10000000 +1572164178.0,12195454,10000000 +1572164778.0,12178770,10000000 +1572165378.0,12277473,10000000 +1572165978.0,12346921,10000000 +1572166578.0,12275658,10000000 +1572167178.0,12230264,10000000 +1572167778.0,12226889,10000000 +1572168378.0,12266029,10000000 +1572168978.0,12334454,10000000 +1572169578.0,12360020,10000000 +1572170178.0,12411855,10000000 +1572170778.0,12368084,10000000 +1572171378.0,12366922,10000000 +1572171978.0,12367626,10000000 +1572172578.0,12383425,10000000 +1572173178.0,12352946,10000000 +1572173778.0,12304019,10000000 +1572174378.0,12310754,10000000 +1572174978.0,12302531,10000000 +1572175578.0,12295645,10000000 +1572176178.0,12309681,10000000 +1572176778.0,12331057,10000000 +1572177378.0,12297955,10000000 +1572177978.0,12232165,10000000 +1572178578.0,12287368,10000000 +1572179178.0,12315481,10000000 +1572179778.0,12405226,10000000 +1572180378.0,12453357,10000000 +1572180978.0,12465333,10000000 +1572181578.0,12484875,10000000 +1572182178.0,12502536,10000000 +1572182778.0,12515053,10000000 +1572183378.0,12480335,10000000 +1572183978.0,12491480,10000000 +1572184578.0,12550539,10000000 +1572185178.0,12568503,10000000 +1572185778.0,12615205,10000000 +1572186378.0,12665473,10000000 +1572186978.0,12594782,10000000 +1572187578.0,12597339,10000000 +1572188178.0,12552548,10000000 +1572188778.0,12563153,10000000 +1572189378.0,12525078,10000000 +1572189978.0,12517213,10000000 +1572190578.0,12483342,10000000 +1572191178.0,12505550,10000000 +1572191778.0,12491353,10000000 +1572192378.0,12492086,10000000 +1572192978.0,12475684,10000000 +1572193578.0,12514181,10000000 +1572194178.0,12523725,10000000 +1572194778.0,12581699,10000000 +1572195378.0,12541590,10000000 +1572195978.0,12533923,10000000 +1572196578.0,12477449,10000000 +1572197178.0,12467224,10000000 +1572197778.0,12449804,10000000 +1572198378.0,12524035,10000000 +1572198978.0,12561953,10000000 +1572199578.0,12526996,10000000 +1572200178.0,12503798,10000000 +1572200778.0,12527703,10000000 +1572201378.0,12509367,10000000 +1572201978.0,12475398,10000000 +1572202578.0,12549952,10000000 +1572203178.0,12524114,10000000 +1572203778.0,12480870,10000000 +1572204378.0,12518003,10000000 +1572204978.0,12569471,10000000 +1572205578.0,12545291,10000000 +1572206178.0,12583982,10000000 +1572206778.0,12636330,10000000 +1572207378.0,12684129,10000000 +1572207978.0,12691163,10000000 +1572208578.0,12661810,10000000 +1572209178.0,12633353,10000000 +1572209778.0,12596126,10000000 +1572210378.0,12680797,10000000 +1572210978.0,12787026,10000000 +1572211578.0,12772355,10000000 +1572212178.0,12768403,10000000 +1572212778.0,12698846,10000000 +1572213378.0,12772867,10000000 +1572213978.0,12731169,10000000 +1572214578.0,12714305,10000000 +1572215178.0,12809998,10000000 +1572215778.0,12835047,10000000 +1572216378.0,12791919,10000000 +1572216978.0,12780375,10000000 +1572217578.0,12848741,10000000 +1572218178.0,12819469,10000000 +1572218778.0,12796799,10000000 +1572219378.0,12751135,10000000 +1572219978.0,12715293,10000000 +1572220578.0,12707154,10000000 +1572221178.0,12802249,10000000 +1572221778.0,12875838,10000000 +1572222378.0,12820274,10000000 +1572222978.0,12763734,10000000 +1572223578.0,12801452,10000000 +1572224178.0,12792102,10000000 +1572224778.0,12782651,10000000 +1572225378.0,12837731,10000000 +1572225978.0,12867355,10000000 +1572226578.0,12893218,10000000 +1572227178.0,12950337,10000000 +1572227778.0,12968731,10000000 +1572228378.0,13064698,10000000 +1572228978.0,13078364,10000000 +1572229578.0,13122549,10000000 +1572230178.0,13123925,10000000 +1572230778.0,13212391,10000000 +1572231378.0,13212480,10000000 +1572231978.0,13251608,10000000 +1572232578.0,13211048,10000000 +1572233178.0,13073562,10000000 +1572233778.0,13065884,10000000 +1572234378.0,12993101,10000000 +1572234978.0,13004790,10000000 +1572235578.0,12910824,10000000 +1572236178.0,12962552,10000000 +1572236778.0,12917140,10000000 +1572237378.0,12939262,10000000 +1572237978.0,12933274,10000000 +1572238578.0,12972479,10000000 +1572239178.0,12921546,10000000 +1572239778.0,12912603,10000000 +1572240378.0,12891209,10000000 +1572240978.0,12893302,10000000 +1572241578.0,12891971,10000000 +1572242178.0,12941249,10000000 +1572242778.0,12856647,10000000 +1572243378.0,12860560,10000000 +1572243978.0,12789194,10000000 +1572244578.0,12820609,10000000 +1572245178.0,12806866,10000000 +1572245778.0,12823851,10000000 +1572246378.0,12883588,10000000 +1572246978.0,12921743,10000000 +1572247578.0,12922874,10000000 +1572248178.0,12878126,10000000 +1572248778.0,12946319,10000000 +1572249378.0,12958586,10000000 +1572249978.0,13065551,10000000 +1572250578.0,12990356,10000000 +1572251178.0,12959807,10000000 +1572251778.0,12995925,10000000 +1572252378.0,12962308,10000000 +1572252978.0,12893616,10000000 +1572253578.0,12898964,10000000 +1572254178.0,12955432,10000000 +1572254778.0,12952912,10000000 +1572255378.0,12949881,10000000 +1572255978.0,12916092,10000000 +1572256578.0,12938892,10000000 +1572257178.0,12827834,10000000 +1572257778.0,12652826,10000000 +1572258378.0,12645385,10000000 +1572258978.0,12614643,10000000 +1572259578.0,12677132,10000000 +1572260178.0,12679949,10000000 +1572260778.0,12642906,10000000 +1572261378.0,12676472,10000000 +1572261978.0,12726427,10000000 +1572262578.0,12779296,10000000 +1572263178.0,12710607,10000000 +1572263778.0,12803341,10000000 +1572264378.0,12838270,10000000 +1572264978.0,12886238,10000000 +1572265578.0,12877024,10000000 +1572266178.0,12892404,10000000 +1572266778.0,12778035,10000000 +1572267378.0,12844820,10000000 +1572267978.0,12841771,10000000 +1572268578.0,12844366,10000000 +1572269178.0,12872605,10000000 +1572269778.0,12858121,10000000 +1572270378.0,12883335,10000000 +1572270978.0,12796598,10000000 +1572271578.0,12800628,10000000 +1572272178.0,12778831,10000000 +1572272778.0,12951656,10000000 +1572273378.0,12930710,10000000 +1572273978.0,12902819,10000000 +1572274578.0,12781767,10000000 +1572275178.0,12826939,10000000 +1572275778.0,12914211,10000000 +1572276378.0,12898775,10000000 +1572276978.0,12800353,10000000 +1572277578.0,12797527,10000000 +1572278178.0,12729073,10000000 +1572278778.0,12705208,10000000 +1572279378.0,12673487,10000000 +1572279978.0,12636929,10000000 +1572280578.0,12638801,10000000 +1572281178.0,12702209,10000000 +1572281778.0,12710705,10000000 +1572282378.0,12688607,10000000 +1572282978.0,12720791,10000000 +1572283578.0,12783680,10000000 +1572284178.0,12727093,10000000 +1572284778.0,12766940,10000000 +1572285378.0,12802105,10000000 +1572285978.0,12953934,10000000 +1572286578.0,12988225,10000000 +1572287178.0,13073375,10000000 +1572287778.0,13140354,10000000 +1572288378.0,13124235,10000000 +1572288978.0,13191731,10000000 +1572289578.0,13153920,10000000 +1572290178.0,13162542,10000000 +1572290778.0,12995261,10000000 +1572291378.0,12999493,10000000 +1572291978.0,13057259,10000000 +1572292578.0,13114271,10000000 +1572293178.0,13086284,10000000 +1572293778.0,13165713,10000000 +1572294378.0,13161161,10000000 +1572294978.0,13219728,10000000 +1572295578.0,13237361,10000000 +1572296178.0,13375961,10000000 +1572296778.0,13329938,10000000 +1572297378.0,13323532,10000000 +1572297978.0,13401032,10000000 +1572298578.0,13438806,10000000 +1572299178.0,13351369,10000000 +1572299778.0,13329362,10000000 +1572300378.0,13318689,10000000 +1572300978.0,13249217,10000000 +1572301578.0,13205293,10000000 +1572302178.0,13267543,10000000 +1572302778.0,13167224,10000000 +1572303378.0,13056929,10000000 +1572303978.0,13017856,10000000 +1572304578.0,13012622,10000000 +1572305178.0,12957235,10000000 +1572305778.0,12982915,10000000 +1572306378.0,12988696,10000000 +1572306978.0,13102865,10000000 +1572307578.0,13144564,10000000 +1572308178.0,13163416,10000000 +1572308778.0,13087766,10000000 +1572309378.0,13090390,10000000 +1572309978.0,13095290,10000000 +1572310578.0,13135819,10000000 +1572311178.0,13018894,10000000 +1572311778.0,12981126,10000000 +1572312378.0,12964801,10000000 +1572312978.0,13008253,10000000 +1572313578.0,13051469,10000000 +1572314178.0,13016867,10000000 +1572314778.0,12953346,10000000 +1572315378.0,12920507,10000000 +1572315978.0,13014273,10000000 +1572316578.0,13060895,10000000 +1572317178.0,13071073,10000000 +1572317778.0,13051935,10000000 +1572318378.0,13043224,10000000 +1572318978.0,13094055,10000000 +1572319578.0,13070197,10000000 +1572320178.0,13052196,10000000 +1572320778.0,13032300,10000000 +1572321378.0,13067189,10000000 +1572321978.0,13051548,10000000 +1572322578.0,13073946,10000000 +1572323178.0,13171817,10000000 +1572323778.0,13246803,10000000 +1572324378.0,13341562,10000000 +1572324978.0,13327781,10000000 +1572325578.0,13373945,10000000 +1572326178.0,13430878,10000000 +1572326778.0,13469618,10000000 +1572327378.0,13571151,10000000 +1572327978.0,13566247,10000000 +1572328578.0,13532025,10000000 +1572329178.0,13555627,10000000 +1572329778.0,13548301,10000000 +1572330378.0,13633073,10000000 +1572330978.0,13619104,10000000 +1572331578.0,13586876,10000000 +1572332178.0,13605331,10000000 +1572332778.0,13590044,10000000 +1572333378.0,13515991,10000000 +1572333978.0,13523208,10000000 +1572334578.0,13637873,10000000 +1572335178.0,13550134,10000000 +1572335778.0,13529142,10000000 +1572336378.0,13504849,10000000 +1572336978.0,13451906,10000000 +1572337578.0,13508296,10000000 +1572338178.0,13529692,10000000 +1572338778.0,13582924,10000000 +1572339378.0,13652190,10000000 +1572339978.0,13673586,10000000 +1572340578.0,13783015,10000000 +1572341178.0,13865501,10000000 +1572341778.0,13804028,10000000 +1572342378.0,13813295,10000000 +1572342978.0,13827450,10000000 +1572343578.0,13805587,10000000 +1572344178.0,13814293,10000000 +1572344778.0,13784804,10000000 +1572345378.0,13796543,10000000 +1572345978.0,13696645,10000000 +1572346578.0,13640536,10000000 +1572347178.0,13680953,10000000 +1572347778.0,13734344,10000000 +1572348378.0,13822027,10000000 +1572348978.0,13872811,10000000 +1572349578.0,13947626,10000000 +1572350178.0,13913469,10000000 +1572350778.0,13826811,10000000 +1572351378.0,13907352,10000000 +1572351978.0,13971235,10000000 +1572352578.0,13946051,10000000 +1572353178.0,13976649,10000000 +1572353778.0,13971738,10000000 +1572354378.0,13944718,10000000 +1572354978.0,14069987,10000000 +1572355578.0,14144620,10000000 +1572356178.0,14215939,10000000 +1572356778.0,14272366,10000000 +1572357378.0,14356562,10000000 +1572357978.0,14474067,10000000 +1572358578.0,14486773,10000000 +1572359178.0,14475208,10000000 +1572359778.0,14505550,10000000 +1572360378.0,14516184,10000000 +1572360978.0,14448364,10000000 +1572361578.0,14554523,10000000 +1572362178.0,14511276,10000000 +1572362778.0,14515533,10000000 +1572363378.0,14550662,10000000 +1572363978.0,14476042,10000000 +1572364578.0,14488589,10000000 +1572365178.0,14401711,10000000 +1572365778.0,14370361,10000000 +1572366378.0,14302126,10000000 +1572366978.0,14316457,10000000 +1572367578.0,14294893,10000000 +1572368178.0,14275821,10000000 +1572368778.0,14283728,10000000 +1572369378.0,14329345,10000000 +1572369978.0,14461757,10000000 +1572370578.0,14525646,10000000 +1572371178.0,14513860,10000000 +1572371778.0,14582419,10000000 +1572372378.0,14581319,10000000 +1572372978.0,14543086,10000000 +1572373578.0,14549983,10000000 +1572374178.0,14576019,10000000 +1572374778.0,14510335,10000000 +1572375378.0,14481267,10000000 +1572375978.0,14447419,10000000 +1572376578.0,14412997,10000000 +1572377178.0,14427318,10000000 +1572377778.0,14265844,10000000 +1572378378.0,14232045,10000000 +1572378978.0,14289112,10000000 +1572379578.0,14395177,10000000 +1572380178.0,14372662,10000000 +1572380778.0,14320124,10000000 +1572381378.0,14344336,10000000 +1572381978.0,14369070,10000000 +1572382578.0,14308407,10000000 +1572383178.0,14355630,10000000 +1572383778.0,14335798,10000000 +1572384378.0,14350913,10000000 +1572384978.0,14380731,10000000 +1572385578.0,14411982,10000000 +1572386178.0,14402213,10000000 +1572386778.0,14416741,10000000 +1572387378.0,14437957,10000000 +1572387978.0,14547848,10000000 +1572388578.0,14523566,10000000 +1572389178.0,14542915,10000000 +1572389778.0,14561716,10000000 +1572390378.0,14609868,10000000 +1572390978.0,14609956,10000000 +1572391578.0,14694501,10000000 +1572392178.0,14718846,10000000 +1572392778.0,14672463,10000000 +1572393378.0,14829770,10000000 +1572393978.0,14731982,10000000 +1572394578.0,14741766,10000000 +1572395178.0,14841957,10000000 +1572395778.0,14919334,10000000 +1572396378.0,14921497,10000000 +1572396978.0,14904700,10000000 +1572397578.0,14966070,10000000 +1572398178.0,14747756,10000000 +1572398778.0,14708143,10000000 +1572399378.0,14772666,10000000 +1572399978.0,14890329,10000000 +1572400578.0,14884080,10000000 +1572401178.0,14902180,10000000 +1572401778.0,14822807,10000000 +1572402378.0,14736744,10000000 +1572402978.0,14772062,10000000 +1572403578.0,14744493,10000000 +1572404178.0,14682191,10000000 +1572404778.0,14581897,10000000 +1572405378.0,14530811,10000000 +1572405978.0,14450587,10000000 +1572406578.0,14510079,10000000 +1572407178.0,14440869,10000000 +1572407778.0,14417710,10000000 +1572408378.0,14479531,10000000 +1572408978.0,14455039,10000000 +1572409578.0,14576720,10000000 +1572410178.0,14687741,10000000 +1572410778.0,14692228,10000000 +1572411378.0,14625211,10000000 +1572411978.0,14706178,10000000 +1572412578.0,14636907,10000000 +1572413178.0,14597261,10000000 +1572413778.0,14651154,10000000 +1572414378.0,14687011,10000000 +1572414978.0,14737518,10000000 +1572415578.0,14728626,10000000 +1572416178.0,14877803,10000000 +1572416778.0,14968272,10000000 +1572417378.0,14965528,10000000 +1572417978.0,14935962,10000000 +1572418578.0,14982312,10000000 +1572419178.0,14835251,10000000 +1572419778.0,14900379,10000000 +1572420378.0,14904009,10000000 +1572420978.0,14854879,10000000 +1572421578.0,14670710,10000000 +1572422178.0,14595292,10000000 +1572422778.0,14661090,10000000 +1572423378.0,14724902,10000000 +1572423978.0,14706427,10000000 +1572424578.0,14748226,10000000 +1572425178.0,14801983,10000000 +1572425778.0,14835818,10000000 +1572426378.0,14806467,10000000 +1572426978.0,14785992,10000000 +1572427578.0,14769941,10000000 +1572428178.0,14807881,10000000 +1572428778.0,14863690,10000000 +1572429378.0,14880508,10000000 +1572429978.0,14877797,10000000 +1572430578.0,14852100,10000000 +1572431178.0,14846726,10000000 +1572431778.0,14885056,10000000 +1572432378.0,14888774,10000000 +1572432978.0,14962870,10000000 +1572433578.0,14865587,10000000 +1572434178.0,14902758,10000000 +1572434778.0,14891807,10000000 +1572435378.0,14878034,10000000 +1572435978.0,14800079,10000000 +1572436578.0,14749814,10000000 +1572437178.0,14676963,10000000 +1572437778.0,14678768,10000000 +1572438378.0,14689050,10000000 +1572438978.0,14603331,10000000 +1572439578.0,14687985,10000000 +1572440178.0,14656916,10000000 +1572440778.0,14709093,10000000 +1572441378.0,14792211,10000000 +1572441978.0,14778652,10000000 +1572442578.0,14734428,10000000 +1572443178.0,14628864,10000000 +1572443778.0,14604774,10000000 +1572444378.0,14627945,10000000 +1572444978.0,14783488,10000000 +1572445578.0,14792334,10000000 +1572446178.0,14725272,10000000 +1572446778.0,14811826,10000000 +1572447378.0,14863379,10000000 +1572447978.0,14824521,10000000 +1572448578.0,14896176,10000000 +1572449178.0,14809910,10000000 +1572449778.0,14876894,10000000 +1572450378.0,14908363,10000000 +1572450978.0,15154223,10000000 +1572451578.0,15135581,10000000 +1572452178.0,15143928,10000000 +1572452778.0,15227039,10000000 +1572453378.0,15294179,10000000 +1572453978.0,15250358,10000000 +1572454578.0,15244550,10000000 +1572455178.0,15257619,10000000 +1572455778.0,15314477,10000000 +1572456378.0,15250519,10000000 +1572456978.0,15271935,10000000 +1572457578.0,15315393,10000000 +1572458178.0,15445006,10000000 +1572458778.0,15540681,10000000 +1572459378.0,15657652,10000000 +1572459978.0,15607351,10000000 +1572460578.0,15555635,10000000 +1572461178.0,15602481,10000000 +1572461778.0,15472098,10000000 +1572462378.0,15423407,10000000 +1572462978.0,15439292,10000000 +1572463578.0,15399623,10000000 +1572464178.0,15282442,10000000 +1572464778.0,15305595,10000000 +1572465378.0,15237638,10000000 +1572465978.0,15305377,10000000 +1572466578.0,15275960,10000000 +1572467178.0,15215172,10000000 +1572467778.0,15229011,10000000 +1572468378.0,15150550,10000000 +1572468978.0,15143741,10000000 +1572469578.0,15072847,10000000 +1572470178.0,15053058,10000000 +1572470778.0,15039393,10000000 +1572471378.0,15065648,10000000 +1572471978.0,14954966,10000000 +1572472578.0,14980129,10000000 +1572473178.0,14892407,10000000 +1572473778.0,14901042,10000000 +1572474378.0,14917539,10000000 +1572474978.0,14772203,10000000 +1572475578.0,14717198,10000000 +1572476178.0,14708529,10000000 +1572476778.0,14752397,10000000 +1572477378.0,14739108,10000000 +1572477978.0,14809693,10000000 +1572478578.0,14930943,10000000 +1572479178.0,14807057,10000000 +1572479778.0,14763073,10000000 +1572480378.0,14756281,10000000 +1572480978.0,14747965,10000000 +1572481578.0,14732963,10000000 +1572482178.0,14815371,10000000 +1572482778.0,14884742,10000000 +1572483378.0,14895508,10000000 +1572483978.0,14820810,10000000 +1572484578.0,14763841,10000000 +1572485178.0,14734133,10000000 +1572485778.0,14679430,10000000 +1572486378.0,14772494,10000000 +1572486978.0,14826273,10000000 +1572487578.0,14819157,10000000 +1572488178.0,14779959,10000000 +1572488778.0,14834176,10000000 +1572489378.0,14716455,10000000 +1572489978.0,14654139,10000000 +1572490578.0,14750219,10000000 +1572491178.0,14727409,10000000 +1572491778.0,14676381,10000000 +1572492378.0,14653170,10000000 +1572492978.0,14629085,10000000 +1572493578.0,14615227,10000000 +1572494178.0,14614498,10000000 +1572494778.0,14768233,10000000 +1572495378.0,14695202,10000000 +1572495978.0,14684883,10000000 +1572496578.0,14817340,10000000 +1572497178.0,14752160,10000000 +1572497778.0,14759230,10000000 +1572498378.0,14792198,10000000 +1572498978.0,14689408,10000000 +1572499578.0,14748199,10000000 +1572500178.0,14659208,10000000 +1572500778.0,14682657,10000000 +1572501378.0,14578285,10000000 +1572501978.0,14565208,10000000 +1572502578.0,14571473,10000000 +1572503178.0,14521367,10000000 +1572503778.0,14660301,10000000 +1572504378.0,14673824,10000000 +1572504978.0,14753994,10000000 +1572505578.0,14743903,10000000 +1572506178.0,14735903,10000000 +1572506778.0,14652258,10000000 +1572507378.0,14619507,10000000 +1572507978.0,14631697,10000000 +1572508578.0,14660373,10000000 +1572509178.0,14706286,10000000 +1572509778.0,14715151,10000000 +1572510378.0,14653716,10000000 +1572510978.0,14694720,10000000 +1572511578.0,14743329,10000000 +1572512178.0,14708897,10000000 +1572512778.0,14688436,10000000 +1572513378.0,14620300,10000000 +1572513978.0,14629278,10000000 +1572514578.0,14629708,10000000 +1572515178.0,14728147,10000000 +1572515778.0,14713487,10000000 +1572516378.0,14658655,10000000 +1572516978.0,14647129,10000000 +1572517578.0,14628449,10000000 +1572518178.0,14577432,10000000 +1572518778.0,14596648,10000000 +1572519378.0,14664882,10000000 +1572519978.0,14669421,10000000 +1572520578.0,14690242,10000000 +1572521178.0,14740671,10000000 +1572521778.0,14740379,10000000 +1572522378.0,14820753,10000000 +1572522978.0,14782996,10000000 +1572523578.0,14807063,10000000 +1572524178.0,14807949,10000000 +1572524778.0,14752380,10000000 +1572525378.0,14764448,10000000 +1572525978.0,14769162,10000000 +1572526578.0,14761797,10000000 +1572527178.0,14798031,10000000 +1572527778.0,14843148,10000000 +1572528378.0,14870990,10000000 +1572528978.0,14867836,10000000 +1572529578.0,14841562,10000000 +1572530178.0,14822433,10000000 +1572530778.0,14798665,10000000 +1572531378.0,14765980,10000000 +1572531978.0,14659420,10000000 +1572532578.0,14536241,10000000 +1572533178.0,14463531,10000000 +1572533778.0,14401976,10000000 +1572534378.0,14481812,10000000 +1572534978.0,14404524,10000000 +1572535578.0,14304071,10000000 +1572536178.0,14300972,10000000 +1572536778.0,14345492,10000000 +1572537378.0,14402971,10000000 +1572537978.0,14412868,10000000 +1572538578.0,14426384,10000000 +1572539178.0,14510735,10000000 +1572539778.0,14464699,10000000 +1572540378.0,14451922,10000000 +1572540978.0,14405597,10000000 +1572541578.0,14451160,10000000 +1572542178.0,14414278,10000000 +1572542778.0,14398534,10000000 +1572543378.0,14414668,10000000 +1572543978.0,14376373,10000000 +1572544578.0,14241971,10000000 +1572545178.0,14283613,10000000 +1572545778.0,14292545,10000000 +1572546378.0,14326074,10000000 +1572546978.0,14271368,10000000 +1572547578.0,14226233,10000000 +1572548178.0,14228991,10000000 +1572548778.0,14261121,10000000 +1572549378.0,14324016,10000000 +1572549978.0,14283258,10000000 +1572550578.0,14198806,10000000 +1572551178.0,14171502,10000000 +1572551778.0,14219104,10000000 +1572552378.0,14137324,10000000 +1572552978.0,14209358,10000000 +1572553578.0,14185342,10000000 +1572554178.0,14179755,10000000 +1572554778.0,14184518,10000000 +1572555378.0,14220797,10000000 +1572555978.0,14254451,10000000 +1572556578.0,14249790,10000000 +1572557178.0,14230231,10000000 +1572557778.0,14261621,10000000 +1572558378.0,14271654,10000000 +1572558978.0,14165069,10000000 +1572559578.0,14247247,10000000 +1572560178.0,14315495,10000000 +1572560778.0,14300662,10000000 +1572561378.0,14433288,10000000 +1572561978.0,14413448,10000000 +1572562578.0,14408256,10000000 +1572563178.0,14372777,10000000 +1572563778.0,14383083,10000000 +1572564378.0,14324168,10000000 +1572564978.0,14275582,10000000 +1572565578.0,14321151,10000000 +1572566178.0,14208623,10000000 +1572566778.0,14171180,10000000 +1572567378.0,14123033,10000000 +1572567978.0,14115374,10000000 +1572568578.0,14054624,10000000 +1572569178.0,14090969,10000000 +1572569778.0,14068826,10000000 +1572570378.0,14001860,10000000 +1572570978.0,14027247,10000000 +1572571578.0,14190118,10000000 +1572572178.0,14247681,10000000 +1572572778.0,14253216,10000000 +1572573378.0,14327529,10000000 +1572573978.0,14399954,10000000 +1572574578.0,14286208,10000000 +1572575178.0,14343356,10000000 +1572575778.0,14297397,10000000 +1572576378.0,14429945,10000000 +1572576978.0,14387306,10000000 +1572577578.0,14351310,10000000 +1572578178.0,14407520,10000000 +1572578778.0,14395439,10000000 +1572579378.0,14477621,10000000 +1572579978.0,14416213,10000000 +1572580578.0,14446176,10000000 +1572581178.0,14488669,10000000 +1572581778.0,14484333,10000000 +1572582378.0,14504626,10000000 +1572582978.0,14494917,10000000 +1572583578.0,14428763,10000000 +1572584178.0,14434173,10000000 +1572584778.0,14582072,10000000 +1572585378.0,14605738,10000000 +1572585978.0,14637556,10000000 +1572586578.0,14610148,10000000 +1572587178.0,14530144,10000000 +1572587778.0,14565241,10000000 +1572588378.0,14437220,10000000 +1572588978.0,14397959,10000000 +1572589578.0,14371684,10000000 +1572590178.0,14439208,10000000 +1572590778.0,14531208,10000000 +1572591378.0,14587783,10000000 +1572591978.0,14543332,10000000 +1572592578.0,14445233,10000000 +1572593178.0,14474281,10000000 +1572593778.0,14405262,10000000 +1572594378.0,14405129,10000000 +1572594978.0,14360249,10000000 +1572595578.0,14353689,10000000 +1572596178.0,14359847,10000000 +1572596778.0,14237416,10000000 +1572597378.0,14213322,10000000 +1572597978.0,14224075,10000000 +1572598578.0,14257883,10000000 +1572599178.0,14289085,10000000 +1572599778.0,14293036,10000000 +1572600378.0,14280685,10000000 +1572600978.0,14213758,10000000 +1572601578.0,14356776,10000000 +1572602178.0,14382072,10000000 +1572602778.0,14367904,10000000 +1572603378.0,14352270,10000000 +1572603978.0,14331417,10000000 +1572604578.0,14298183,10000000 +1572605178.0,14393132,10000000 +1572605778.0,14344114,10000000 +1572606378.0,14414474,10000000 +1572606978.0,14453250,10000000 +1572607578.0,14457574,10000000 +1572608178.0,14323785,10000000 +1572608778.0,14334515,10000000 +1572609378.0,14384938,10000000 +1572609978.0,14399861,10000000 +1572610578.0,14289743,10000000 +1572611178.0,14354314,10000000 +1572611778.0,14308783,10000000 +1572612378.0,14265619,10000000 +1572612978.0,14309096,10000000 +1572613578.0,14292163,10000000 +1572614178.0,14266788,10000000 +1572614778.0,14330318,10000000 +1572615378.0,14344364,10000000 +1572615978.0,14347215,10000000 +1572616578.0,14336895,10000000 +1572617178.0,14376137,10000000 +1572617778.0,14417382,10000000 +1572618378.0,14549251,10000000 +1572618978.0,14620713,10000000 +1572619578.0,14663492,10000000 +1572620178.0,14555531,10000000 +1572620778.0,14594241,10000000 +1572621378.0,14595680,10000000 +1572621978.0,14498435,10000000 +1572622578.0,14491638,10000000 +1572623178.0,14558042,10000000 +1572623778.0,14500258,10000000 +1572624378.0,14501363,10000000 +1572624978.0,14498387,10000000 +1572625578.0,14537477,10000000 +1572626178.0,14668779,10000000 +1572626778.0,14550096,10000000 +1572627378.0,14590304,10000000 +1572627978.0,14556827,10000000 +1572628578.0,14519768,10000000 +1572629178.0,14588108,10000000 +1572629778.0,14639871,10000000 +1572630378.0,14774117,10000000 +1572630978.0,14594117,10000000 +1572631578.0,14605996,10000000 +1572632178.0,14604670,10000000 +1572632778.0,14540226,10000000 +1572633378.0,14469103,10000000 +1572633978.0,14527330,10000000 +1572634578.0,14447874,10000000 +1572635178.0,14510229,10000000 +1572635778.0,14510507,10000000 +1572636378.0,14523874,10000000 +1572636978.0,14473353,10000000 +1572637578.0,14466997,10000000 +1572638178.0,14423835,10000000 +1572638778.0,14339846,10000000 +1572639378.0,14323433,10000000 +1572639978.0,14339572,10000000 +1572640578.0,14372554,10000000 +1572641178.0,14293914,10000000 +1572641778.0,14229001,10000000 +1572642378.0,14203976,10000000 +1572642978.0,14294468,10000000 +1572643578.0,14298252,10000000 +1572644178.0,14380415,10000000 +1572644778.0,14367170,10000000 +1572645378.0,14375300,10000000 +1572645978.0,14355584,10000000 +1572646578.0,14509847,10000000 +1572647178.0,14423889,10000000 +1572647778.0,14436375,10000000 +1572648378.0,14452180,10000000 +1572648978.0,14549649,10000000 +1572649578.0,14613200,10000000 +1572650178.0,14623380,10000000 +1572650778.0,14693478,10000000 +1572651378.0,14650021,10000000 +1572651978.0,14742082,10000000 +1572652578.0,14745422,10000000 +1572653178.0,14726034,10000000 +1572653778.0,14786610,10000000 +1572654378.0,14818483,10000000 +1572654978.0,14830412,10000000 +1572655578.0,14788822,10000000 +1572656178.0,14855606,10000000 +1572656778.0,14911658,10000000 +1572657378.0,14922702,10000000 +1572657978.0,15047238,10000000 +1572658578.0,15061485,10000000 +1572659178.0,15017571,10000000 +1572659778.0,15040477,10000000 +1572660378.0,15044606,10000000 +1572660978.0,14910593,10000000 +1572661578.0,14921315,10000000 +1572662178.0,14861741,10000000 +1572662778.0,14858919,10000000 +1572663378.0,14855496,10000000 +1572663978.0,14860211,10000000 +1572664578.0,14786007,10000000 +1572665178.0,14855949,10000000 +1572665778.0,14737454,10000000 +1572666378.0,14641248,10000000 +1572666978.0,14515062,10000000 +1572667578.0,14568381,10000000 +1572668178.0,14577412,10000000 +1572668778.0,14587587,10000000 +1572669378.0,14528765,10000000 +1572669978.0,14535429,10000000 +1572670578.0,14512999,10000000 +1572671178.0,14554534,10000000 +1572671778.0,14625693,10000000 +1572672378.0,14587850,10000000 +1572672978.0,14638017,10000000 +1572673578.0,14685095,10000000 +1572674178.0,14683581,10000000 +1572674778.0,14628415,10000000 +1572675378.0,14637760,10000000 +1572675978.0,14633309,10000000 +1572676578.0,14626442,10000000 +1572677178.0,14542149,10000000 +1572677778.0,14487764,10000000 +1572678378.0,14545767,10000000 +1572678978.0,14643110,10000000 +1572679578.0,14619646,10000000 +1572680178.0,14722740,10000000 +1572680778.0,14754224,10000000 +1572681378.0,14720482,10000000 +1572681978.0,14778668,10000000 +1572682578.0,14785129,10000000 +1572683178.0,14729401,10000000 +1572683778.0,14793378,10000000 +1572684378.0,14756572,10000000 +1572684978.0,14785679,10000000 +1572685578.0,14861474,10000000 +1572686178.0,14853839,10000000 +1572686778.0,14764847,10000000 +1572687378.0,14726564,10000000 +1572687978.0,14681452,10000000 +1572688578.0,14613012,10000000 +1572689178.0,14619875,10000000 +1572689778.0,14635948,10000000 +1572690378.0,14654481,10000000 +1572690978.0,14590007,10000000 +1572691578.0,14577332,10000000 +1572692178.0,14674922,10000000 +1572692778.0,14564131,10000000 +1572693378.0,14584736,10000000 +1572693978.0,14659876,10000000 +1572694578.0,14645686,10000000 +1572695178.0,14710718,10000000 +1572695778.0,14688006,10000000 +1572696378.0,14757775,10000000 +1572696978.0,14687944,10000000 +1572697578.0,14697588,10000000 +1572698178.0,14858791,10000000 +1572698778.0,14862463,10000000 +1572699378.0,14934142,10000000 +1572699978.0,14812539,10000000 +1572700578.0,14768252,10000000 +1572701178.0,14824639,10000000 +1572701778.0,14893752,10000000 +1572702378.0,14846151,10000000 +1572702978.0,14917747,10000000 +1572703578.0,14973979,10000000 +1572704178.0,14937181,10000000 +1572704778.0,14922321,10000000 +1572705378.0,14906615,10000000 +1572705978.0,14929768,10000000 +1572706578.0,14911065,10000000 +1572707178.0,14825032,10000000 +1572707778.0,14735500,10000000 +1572708378.0,14746237,10000000 +1572708978.0,14786997,10000000 +1572709578.0,14739674,10000000 +1572710178.0,14658949,10000000 +1572710778.0,14638086,10000000 +1572711378.0,14673147,10000000 +1572711978.0,14615560,10000000 +1572712578.0,14620065,10000000 +1572713178.0,14619351,10000000 +1572713778.0,14615696,10000000 +1572714378.0,14577455,10000000 +1572714978.0,14612279,10000000 +1572715578.0,14632674,10000000 +1572716178.0,14730526,10000000 +1572716778.0,14593463,10000000 +1572717378.0,14605545,10000000 +1572717978.0,14597227,10000000 +1572718578.0,14686656,10000000 +1572719178.0,14670350,10000000 +1572719778.0,14665804,10000000 +1572720378.0,14655934,10000000 +1572720978.0,14629706,10000000 +1572721578.0,14611042,10000000 +1572722178.0,14574343,10000000 +1572722778.0,14556887,10000000 +1572723378.0,14493143,10000000 +1572723978.0,14461676,10000000 +1572724578.0,14564560,10000000 +1572725178.0,14396931,10000000 +1572725778.0,14453479,10000000 +1572726378.0,14402017,10000000 +1572726978.0,14330904,10000000 +1572727578.0,14366106,10000000 +1572728178.0,14433308,10000000 +1572728778.0,14464085,10000000 +1572729378.0,14533634,10000000 +1572729978.0,14485395,10000000 +1572730578.0,14454983,10000000 +1572731178.0,14490459,10000000 +1572731778.0,14548894,10000000 +1572732378.0,14540376,10000000 +1572732978.0,14537583,10000000 +1572733578.0,14536514,10000000 +1572734178.0,14606471,10000000 +1572734778.0,14549138,10000000 +1572735378.0,14561000,10000000 +1572735978.0,14549312,10000000 +1572736578.0,14512334,10000000 +1572737178.0,14456393,10000000 +1572737778.0,14320055,10000000 +1572738378.0,14286729,10000000 +1572738978.0,14212977,10000000 +1572739578.0,14232739,10000000 +1572740178.0,14211162,10000000 +1572740778.0,14174000,10000000 +1572741378.0,14180490,10000000 +1572741978.0,14210690,10000000 +1572742578.0,14272974,10000000 +1572743178.0,14280454,10000000 +1572743778.0,14364752,10000000 +1572744378.0,14239399,10000000 +1572744978.0,14273819,10000000 +1572745578.0,14250533,10000000 +1572746178.0,14236961,10000000 +1572746778.0,14256047,10000000 +1572747378.0,14215339,10000000 +1572747978.0,14234179,10000000 +1572748578.0,14184574,10000000 +1572749178.0,14133808,10000000 +1572749778.0,14077670,10000000 +1572750378.0,14084844,10000000 +1572750978.0,14127077,10000000 +1572751578.0,14045546,10000000 +1572752178.0,14000333,10000000 +1572752778.0,13966163,10000000 +1572753378.0,13930152,10000000 +1572753978.0,13850857,10000000 +1572754578.0,13903549,10000000 +1572755178.0,13906169,10000000 +1572755778.0,13917789,10000000 +1572756378.0,13959961,10000000 +1572756978.0,13979844,10000000 +1572757578.0,13980157,10000000 +1572758178.0,13870409,10000000 +1572758778.0,13819213,10000000 +1572759378.0,13759301,10000000 +1572759978.0,13716438,10000000 +1572760578.0,13653630,10000000 +1572761178.0,13675157,10000000 +1572761778.0,13686756,10000000 +1572762378.0,13737577,10000000 +1572762978.0,13732946,10000000 +1572763578.0,13755924,10000000 +1572764178.0,13792482,10000000 +1572764778.0,13776099,10000000 +1572765378.0,13741772,10000000 +1572765978.0,13824908,10000000 +1572766578.0,13908057,10000000 +1572767178.0,13937567,10000000 +1572767778.0,13923423,10000000 +1572768378.0,13951200,10000000 +1572768978.0,13981442,10000000 +1572769578.0,13932400,10000000 +1572770178.0,13922489,10000000 +1572770778.0,13921855,10000000 +1572771378.0,14049659,10000000 +1572771978.0,14164227,10000000 +1572772578.0,14243394,10000000 +1572773178.0,14263867,10000000 +1572773778.0,14360077,10000000 +1572774378.0,14402348,10000000 +1572774978.0,14364170,10000000 +1572775578.0,14324567,10000000 +1572776178.0,14417322,10000000 +1572776778.0,14237636,10000000 +1572777378.0,14188282,10000000 +1572777978.0,14150045,10000000 +1572778578.0,14132991,10000000 +1572779178.0,14062276,10000000 +1572779778.0,14019751,10000000 +1572780378.0,13971148,10000000 +1572780978.0,13943024,10000000 +1572781578.0,13997058,10000000 +1572782178.0,14058697,10000000 +1572782778.0,14049216,10000000 +1572783378.0,14014882,10000000 +1572783978.0,13950873,10000000 +1572784578.0,13948756,10000000 +1572785178.0,13879501,10000000 +1572785778.0,13831186,10000000 +1572786378.0,13796766,10000000 +1572786978.0,13843334,10000000 +1572787578.0,13779415,10000000 +1572788178.0,13767454,10000000 +1572788778.0,13800074,10000000 +1572789378.0,13726346,10000000 +1572789978.0,13714379,10000000 +1572790578.0,13636546,10000000 +1572791178.0,13599226,10000000 +1572791778.0,13678126,10000000 +1572792378.0,13670376,10000000 +1572792978.0,13723406,10000000 +1572793578.0,13813177,10000000 +1572794178.0,13763994,10000000 +1572794778.0,13808937,10000000 +1572795378.0,13824971,10000000 +1572795978.0,13908164,10000000 +1572796578.0,13881853,10000000 +1572797178.0,13863806,10000000 +1572797778.0,13911900,10000000 +1572798378.0,13959692,10000000 +1572798978.0,13952246,10000000 +1572799578.0,13891855,10000000 +1572800178.0,13840130,10000000 +1572800778.0,13841420,10000000 +1572801378.0,13872212,10000000 +1572801978.0,13834397,10000000 +1572802578.0,13841955,10000000 +1572803178.0,13805086,10000000 +1572803778.0,13809451,10000000 +1572804378.0,13769887,10000000 +1572804978.0,13804505,10000000 +1572805578.0,13844580,10000000 +1572806178.0,13845809,10000000 +1572806778.0,13874708,10000000 +1572807378.0,13977282,10000000 +1572807978.0,13958113,10000000 +1572808578.0,13991831,10000000 +1572809178.0,14002144,10000000 +1572809778.0,13949797,10000000 +1572810378.0,13931494,10000000 +1572810978.0,13873265,10000000 +1572811578.0,14034407,10000000 +1572812178.0,14012063,10000000 +1572812778.0,14037800,10000000 +1572813378.0,14036363,10000000 +1572813978.0,14148070,10000000 +1572814578.0,14242598,10000000 +1572815178.0,14125535,10000000 +1572815778.0,14113643,10000000 +1572816378.0,14085851,10000000 +1572816978.0,14137356,10000000 +1572817578.0,14172737,10000000 +1572818178.0,14138028,10000000 +1572818778.0,14090250,10000000 +1572819378.0,14154491,10000000 +1572819978.0,14151785,10000000 +1572820578.0,14189494,10000000 +1572821178.0,14207355,10000000 +1572821778.0,14176828,10000000 +1572822378.0,14214091,10000000 +1572822978.0,14179858,10000000 +1572823578.0,14175071,10000000 +1572824178.0,14127068,10000000 +1572824778.0,14162576,10000000 +1572825378.0,14228384,10000000 +1572825978.0,14258369,10000000 +1572826578.0,14233735,10000000 +1572827178.0,14193632,10000000 +1572827778.0,14270416,10000000 +1572828378.0,14219519,10000000 +1572828978.0,14178995,10000000 +1572829578.0,14285004,10000000 +1572830178.0,14220956,10000000 +1572830778.0,14171971,10000000 +1572831378.0,14168915,10000000 +1572831978.0,14134200,10000000 +1572832578.0,14152665,10000000 +1572833178.0,14227165,10000000 +1572833778.0,14254266,10000000 +1572834378.0,14443227,10000000 +1572834978.0,14317181,10000000 +1572835578.0,14284052,10000000 +1572836178.0,14288803,10000000 +1572836778.0,14287561,10000000 +1572837378.0,14217259,10000000 +1572837978.0,14228139,10000000 +1572838578.0,14315599,10000000 +1572839178.0,14267637,10000000 +1572839778.0,14201225,10000000 +1572840378.0,14102436,10000000 +1572840978.0,14122860,10000000 +1572841578.0,14182089,10000000 +1572842178.0,14229198,10000000 +1572842778.0,14337522,10000000 +1572843378.0,14357190,10000000 +1572843978.0,14338327,10000000 +1572844578.0,14357931,10000000 +1572845178.0,14229456,10000000 +1572845778.0,14245182,10000000 +1572846378.0,14215637,10000000 +1572846978.0,14175610,10000000 +1572847578.0,14272614,10000000 +1572848178.0,14241263,10000000 +1572848778.0,14295850,10000000 +1572849378.0,14270997,10000000 +1572849978.0,14235506,10000000 +1572850578.0,14214454,10000000 +1572851178.0,14131040,10000000 +1572851778.0,14135721,10000000 +1572852378.0,14090760,10000000 +1572852978.0,14045295,10000000 +1572853578.0,14098346,10000000 +1572854178.0,14084918,10000000 +1572854778.0,14047589,10000000 +1572855378.0,14054136,10000000 +1572855978.0,14025337,10000000 +1572856578.0,13957673,10000000 +1572857178.0,14049572,10000000 +1572857778.0,14046540,10000000 +1572858378.0,14015697,10000000 +1572858978.0,14021722,10000000 +1572859578.0,13966977,10000000 +1572860178.0,13933314,10000000 +1572860778.0,13928612,10000000 +1572861378.0,13901125,10000000 +1572861978.0,13780603,10000000 +1572862578.0,13769800,10000000 +1572863178.0,13824893,10000000 +1572863778.0,13842420,10000000 +1572864378.0,13790741,10000000 +1572864978.0,13606116,10000000 +1572865578.0,13654759,10000000 +1572866178.0,13624278,10000000 +1572866778.0,13638809,10000000 +1572867378.0,13645992,10000000 +1572867978.0,13614154,10000000 +1572868578.0,13710418,10000000 +1572869178.0,13655277,10000000 +1572869778.0,13719798,10000000 +1572870378.0,13751207,10000000 +1572870978.0,13758425,10000000 +1572871578.0,13808063,10000000 +1572872178.0,13792663,10000000 +1572872778.0,13756643,10000000 +1572873378.0,13790671,10000000 +1572873978.0,13870565,10000000 +1572874578.0,13925578,10000000 +1572875178.0,13977541,10000000 +1572875778.0,14034048,10000000 +1572876378.0,14095974,10000000 +1572876978.0,14008794,10000000 +1572877578.0,13997081,10000000 +1572878178.0,13865086,10000000 +1572878778.0,13854775,10000000 +1572879378.0,13901995,10000000 +1572879978.0,13842630,10000000 +1572880578.0,13847242,10000000 +1572881178.0,13770850,10000000 +1572881778.0,13754181,10000000 +1572882378.0,13829679,10000000 +1572882978.0,13839484,10000000 +1572883578.0,13865260,10000000 +1572884178.0,13826052,10000000 +1572884778.0,13759847,10000000 +1572885378.0,13815955,10000000 +1572885978.0,13823989,10000000 +1572886578.0,13842315,10000000 +1572887178.0,13789231,10000000 +1572887778.0,13735267,10000000 +1572888378.0,13753687,10000000 +1572888978.0,13819510,10000000 +1572889578.0,13859294,10000000 +1572890178.0,13926306,10000000 +1572890778.0,13905603,10000000 +1572891378.0,13836743,10000000 +1572891978.0,13825595,10000000 +1572892578.0,13880243,10000000 +1572893178.0,13842996,10000000 +1572893778.0,13920115,10000000 +1572894378.0,13936163,10000000 +1572894978.0,13995605,10000000 +1572895578.0,14109109,10000000 +1572896178.0,14052665,10000000 +1572896778.0,14142884,10000000 +1572897378.0,14205118,10000000 +1572897978.0,14148757,10000000 +1572898578.0,14192235,10000000 +1572899178.0,14185140,10000000 +1572899778.0,14235665,10000000 +1572900378.0,14288795,10000000 +1572900978.0,14356593,10000000 +1572901578.0,14372294,10000000 +1572902178.0,14386502,10000000 +1572902778.0,14306990,10000000 +1572903378.0,14321326,10000000 +1572903978.0,14459898,10000000 +1572904578.0,14297524,10000000 +1572905178.0,14253663,10000000 +1572905778.0,14241102,10000000 +1572906378.0,14189159,10000000 +1572906978.0,14193532,10000000 +1572907578.0,14194276,10000000 +1572908178.0,14161804,10000000 +1572908778.0,14141893,10000000 +1572909378.0,14005023,10000000 +1572909978.0,14050750,10000000 +1572910578.0,14079773,10000000 +1572911178.0,14089122,10000000 +1572911778.0,14116944,10000000 +1572912378.0,14144214,10000000 +1572912978.0,14229468,10000000 +1572913578.0,14220130,10000000 +1572914178.0,14193117,10000000 +1572914778.0,14240167,10000000 +1572915378.0,14156184,10000000 +1572915978.0,14267068,10000000 +1572916578.0,14340070,10000000 +1572917178.0,14312662,10000000 +1572917778.0,14322766,10000000 +1572918378.0,14340357,10000000 +1572918978.0,14462388,10000000 +1572919578.0,14502673,10000000 +1572920178.0,14438867,10000000 +1572920778.0,14411323,10000000 +1572921378.0,14316346,10000000 +1572921978.0,14367343,10000000 +1572922578.0,14431323,10000000 +1572923178.0,14394776,10000000 +1572923778.0,14396570,10000000 +1572924378.0,14439926,10000000 +1572924978.0,14455258,10000000 +1572925578.0,14479728,10000000 +1572926178.0,14460287,10000000 +1572926778.0,14455616,10000000 +1572927378.0,14396862,10000000 +1572927978.0,14413101,10000000 +1572928578.0,14421510,10000000 +1572929178.0,14411685,10000000 +1572929778.0,14392329,10000000 +1572930378.0,14520207,10000000 +1572930978.0,14505524,10000000 +1572931578.0,14486453,10000000 +1572932178.0,14532338,10000000 +1572932778.0,14492709,10000000 +1572933378.0,14519760,10000000 +1572933978.0,14539503,10000000 +1572934578.0,14517712,10000000 +1572935178.0,14499941,10000000 +1572935778.0,14619735,10000000 +1572936378.0,14768912,10000000 +1572936978.0,14829052,10000000 +1572937578.0,14838120,10000000 +1572938178.0,14758516,10000000 +1572938778.0,14787029,10000000 +1572939378.0,14731614,10000000 +1572939978.0,14631526,10000000 +1572940578.0,14635465,10000000 +1572941178.0,14560416,10000000 +1572941778.0,14451593,10000000 +1572942378.0,14462252,10000000 +1572942978.0,14480889,10000000 +1572943578.0,14549640,10000000 +1572944178.0,14425931,10000000 +1572944778.0,14389657,10000000 +1572945378.0,14311793,10000000 +1572945978.0,14246504,10000000 +1572946578.0,14296531,10000000 +1572947178.0,14448917,10000000 +1572947778.0,14491739,10000000 +1572948378.0,14560789,10000000 +1572948978.0,14613804,10000000 +1572949578.0,14721603,10000000 +1572950178.0,14761496,10000000 +1572950778.0,14788581,10000000 +1572951378.0,14769255,10000000 +1572951978.0,14758867,10000000 +1572952578.0,14796054,10000000 +1572953178.0,14781535,10000000 +1572953778.0,14814848,10000000 +1572954378.0,14718769,10000000 +1572954978.0,14768647,10000000 +1572955578.0,14745533,10000000 +1572956178.0,14724746,10000000 +1572956778.0,14745262,10000000 +1572957378.0,14739645,10000000 +1572957978.0,14725856,10000000 +1572958578.0,14786257,10000000 +1572959178.0,14722069,10000000 +1572959778.0,14762742,10000000 +1572960378.0,14661886,10000000 +1572960978.0,14672936,10000000 +1572961578.0,14646232,10000000 +1572962178.0,14653838,10000000 +1572962778.0,14693757,10000000 +1572963378.0,14621854,10000000 +1572963978.0,14529923,10000000 +1572964578.0,14523748,10000000 +1572965178.0,14515672,10000000 +1572965778.0,14403583,10000000 +1572966378.0,14400199,10000000 +1572966978.0,14378830,10000000 +1572967578.0,14450403,10000000 +1572968178.0,14517249,10000000 +1572968778.0,14563054,10000000 +1572969378.0,14495483,10000000 +1572969978.0,14543626,10000000 +1572970578.0,14509190,10000000 +1572971178.0,14453832,10000000 +1572971778.0,14461823,10000000 +1572972378.0,14471695,10000000 +1572972978.0,14411618,10000000 +1572973578.0,14426548,10000000 +1572974178.0,14488928,10000000 +1572974778.0,14563355,10000000 +1572975378.0,14559845,10000000 +1572975978.0,14490401,10000000 +1572976578.0,14476919,10000000 +1572977178.0,14456297,10000000 +1572977778.0,14472343,10000000 +1572978378.0,14377982,10000000 +1572978978.0,14371017,10000000 +1572979578.0,14368279,10000000 +1572980178.0,14319743,10000000 +1572980778.0,14290899,10000000 +1572981378.0,14348655,10000000 +1572981978.0,14383634,10000000 +1572982578.0,14344417,10000000 +1572983178.0,14379438,10000000 +1572983778.0,14403606,10000000 +1572984378.0,14363728,10000000 +1572984978.0,14341224,10000000 +1572985578.0,14364961,10000000 +1572986178.0,14372763,10000000 +1572986778.0,14353257,10000000 +1572987378.0,14246652,10000000 +1572987978.0,14222481,10000000 +1572988578.0,14267837,10000000 +1572989178.0,14263466,10000000 +1572989778.0,14237242,10000000 +1572990378.0,14146540,10000000 +1572990978.0,14215915,10000000 +1572991578.0,14267150,10000000 +1572992178.0,14326402,10000000 +1572992778.0,14349454,10000000 +1572993378.0,14336881,10000000 +1572993978.0,14399722,10000000 +1572994578.0,14395256,10000000 +1572995178.0,14356979,10000000 +1572995778.0,14276854,10000000 +1572996378.0,14216332,10000000 +1572996978.0,14231236,10000000 +1572997578.0,14244371,10000000 +1572998178.0,14174686,10000000 +1572998778.0,14198194,10000000 +1572999378.0,14110814,10000000 +1572999978.0,14132986,10000000 +1573000578.0,14128968,10000000 +1573001178.0,14030698,10000000 +1573001778.0,14074083,10000000 +1573002378.0,14075960,10000000 +1573002978.0,14147157,10000000 +1573003578.0,14192048,10000000 +1573004178.0,14192422,10000000 +1573004778.0,14060119,10000000 +1573005378.0,14107655,10000000 +1573005978.0,14182782,10000000 +1573006578.0,14183767,10000000 +1573007178.0,14051339,10000000 +1573007778.0,14142959,10000000 +1573008378.0,14100643,10000000 +1573008978.0,14110849,10000000 +1573009578.0,14163593,10000000 +1573010178.0,14261364,10000000 +1573010778.0,14231216,10000000 +1573011378.0,14089336,10000000 +1573011978.0,14079495,10000000 +1573012578.0,14056875,10000000 +1573013178.0,14099846,10000000 +1573013778.0,14111362,10000000 +1573014378.0,14082103,10000000 +1573014978.0,14132077,10000000 +1573015578.0,14131226,10000000 +1573016178.0,14023518,10000000 +1573016778.0,14047448,10000000 +1573017378.0,14196235,10000000 +1573017978.0,14089061,10000000 +1573018578.0,14077284,10000000 +1573019178.0,14102110,10000000 +1573019778.0,14228173,10000000 +1573020378.0,14248597,10000000 +1573020978.0,14210750,10000000 +1573021578.0,14118441,10000000 +1573022178.0,14070053,10000000 +1573022778.0,14081110,10000000 +1573023378.0,13990288,10000000 +1573023978.0,13986621,10000000 +1573024578.0,14074934,10000000 +1573025178.0,14162427,10000000 +1573025778.0,14126580,10000000 +1573026378.0,14175395,10000000 +1573026978.0,14254055,10000000 +1573027578.0,14268669,10000000 +1573028178.0,14200606,10000000 +1573028778.0,14263110,10000000 +1573029378.0,14266333,10000000 +1573029978.0,14285754,10000000 +1573030578.0,14297346,10000000 +1573031178.0,14311658,10000000 +1573031778.0,14336203,10000000 +1573032378.0,14386080,10000000 +1573032978.0,14354204,10000000 +1573033578.0,14441277,10000000 +1573034178.0,14509967,10000000 +1573034778.0,14576459,10000000 +1573035378.0,14495979,10000000 +1573035978.0,14570125,10000000 +1573036578.0,14630422,10000000 +1573037178.0,14699633,10000000 +1573037778.0,14778954,10000000 +1573038378.0,14855497,10000000 +1573038978.0,14737815,10000000 +1573039578.0,14785646,10000000 +1573040178.0,14829698,10000000 +1573040778.0,14874470,10000000 +1573041378.0,15003077,10000000 +1573041978.0,14972517,10000000 +1573042578.0,15031572,10000000 +1573043178.0,15031486,10000000 +1573043778.0,14953354,10000000 +1573044378.0,14947533,10000000 +1573044978.0,14904553,10000000 +1573045578.0,14906574,10000000 +1573046178.0,14809188,10000000 +1573046778.0,14796514,10000000 +1573047378.0,14735347,10000000 +1573047978.0,14821774,10000000 +1573048578.0,14777927,10000000 +1573049178.0,14829347,10000000 +1573049778.0,14853068,10000000 +1573050378.0,14886685,10000000 +1573050978.0,15000000,10000000 diff --git a/packages/protocol/scripts/python/exchange_rate_sim.py b/packages/protocol/scripts/python/exchange_rate_sim.py index 7eb7b3edf81..912d5861884 100644 --- a/packages/protocol/scripts/python/exchange_rate_sim.py +++ b/packages/protocol/scripts/python/exchange_rate_sim.py @@ -33,9 +33,9 @@ plt.plot(t, ex_rates) plt.show() with open('./exchange_rates/oracle_exchange_rates.csv', 'w') as csvfile: - writer = csv.writer(csvfile, delimiter=',', - quotechar='|', quoting=csv.QUOTE_MINIMAL) - timestamp = int(time.time()) - writer.writerow(['timestamp', 'stableValue', 'goldValue']) - for i, rate in enumerate(ex_rates): - writer.writerow([timestamp + i * dt * 24 * 60 * 60, int(rate * 1000), int(ex_rate_start * 1000)]) + writer = csv.writer(csvfile, delimiter=',', + quotechar='|', quoting=csv.QUOTE_MINIMAL) + timestamp = int(time.time()) + writer.writerow(['timestamp', 'stableValue', 'goldValue']) + for i, rate in enumerate(ex_rates): + writer.writerow([timestamp + i * dt * 24 * 60 * 60, int(rate * 1000), int(ex_rate_start * 1000)]) From e896e0d8a968f3bbc46158ed5d65761606869299 Mon Sep 17 00:00:00 2001 From: Audrey Penven Date: Mon, 7 Oct 2019 18:15:10 +0200 Subject: [PATCH 06/40] adding to oracle wrapper --- .../src/cmds/deploy/initial/contracts.ts | 4 +-- packages/celotool/src/lib/generate_utils.ts | 4 ++- packages/contractkit/src/driver.ts | 35 +++++++++++++++++++ .../contractkit/src/wrappers/SortedOracles.ts | 14 +++++++- .../protocol/migrations/08_stabletoken.ts | 10 +++++- 5 files changed, 61 insertions(+), 6 deletions(-) create mode 100644 packages/contractkit/src/driver.ts diff --git a/packages/celotool/src/cmds/deploy/initial/contracts.ts b/packages/celotool/src/cmds/deploy/initial/contracts.ts index af8a8fbe6f3..42f8473d8a9 100644 --- a/packages/celotool/src/cmds/deploy/initial/contracts.ts +++ b/packages/celotool/src/cmds/deploy/initial/contracts.ts @@ -115,9 +115,7 @@ export const handler = async (argv: InitialArgv) => { }, stableToken: { initialAccounts: getAddressesFor(AccountType.FAUCET, mnemonic, 2), - priceOracleAccount: privateKeyToAddress( - generatePrivateKey(mnemonic, AccountType.PRICE_ORACLE, 0) - ), + priceOracleAccounts: getAddressesFor(AccountType.PRICE_ORACLE, mnemonic, 1), }, }) diff --git a/packages/celotool/src/lib/generate_utils.ts b/packages/celotool/src/lib/generate_utils.ts index 4597788d2d0..d9ba34ad510 100644 --- a/packages/celotool/src/lib/generate_utils.ts +++ b/packages/celotool/src/lib/generate_utils.ts @@ -142,7 +142,9 @@ export const generateGenesisFromEnv = (enablePetersburg: boolean = true) => { validators, consensusType, blockTime, - initialAccounts: faucetAddresses.concat(priceOracleAddress), + initialAccounts: faucetAddresses + .concat(priceOracleAddress) + .concat('5409ED021D9299bf6814279A6A1411A7e866A631'), epoch, chainId, requestTimeout, diff --git a/packages/contractkit/src/driver.ts b/packages/contractkit/src/driver.ts new file mode 100644 index 00000000000..2188d2a80ef --- /dev/null +++ b/packages/contractkit/src/driver.ts @@ -0,0 +1,35 @@ +import { newKit } from '.' +import { CeloContract, NULL_ADDRESS } from './base' + +async function main() { + const kit = newKit('http://localhost:8545') + + console.log(await kit.web3.eth.getAccounts()) + // const validators = await kit.contracts.getValidators() + + // console.log(await validators.getValidatorGroupsVotes()) + + // const tx = await validators.vote('0x....') + // const receipt = tx.sendAndWaitForReceipt({ + // from: '0x', + // }) + // console.log(receipt) + + const sortedOracles = await kit.contracts.getSortedOracles() + const stableTokenAddress = await kit.registry.addressFor(CeloContract.StableToken) + console.log(await sortedOracles.getRates(stableTokenAddress)) + await sortedOracles.report(stableTokenAddress, 25, 1, NULL_ADDRESS, NULL_ADDRESS) + + kit.defaultAccount = '0xE834EC434DABA538cd1b9Fe1582052B880BD7e63' + await sortedOracles.report(stableTokenAddress, 12, 1, NULL_ADDRESS, NULL_ADDRESS) + + console.log(await sortedOracles.getRates(stableTokenAddress)) + console.log(`number of rates?? ${await sortedOracles.numRates(stableTokenAddress)}`) + console.log('what the fuck is the goddamn median') + console.log(await sortedOracles.medianRate(stableTokenAddress)) +} + +main().catch((err) => { + console.log(err) + process.exit(1) +}) diff --git a/packages/contractkit/src/wrappers/SortedOracles.ts b/packages/contractkit/src/wrappers/SortedOracles.ts index 7da98f72697..fe6f247ae96 100644 --- a/packages/contractkit/src/wrappers/SortedOracles.ts +++ b/packages/contractkit/src/wrappers/SortedOracles.ts @@ -1,6 +1,6 @@ import BigNumber from 'bignumber.js' import { SortedOracles } from '../generated/types/SortedOracles' -import { BaseWrapper, proxyCall, toBigNumber } from './BaseWrapper' +import { BaseWrapper, proxyCall, proxySend, toBigNumber } from './BaseWrapper' export interface SortedOraclesConfig { reportExpirySeconds: BigNumber @@ -10,12 +10,24 @@ export interface SortedOraclesConfig { * Currency price oracle contract. */ export class SortedOraclesWrapper extends BaseWrapper { + getRates = proxyCall(this.contract.methods.getRates) + numRates = proxyCall(this.contract.methods.numRates) + medianRate = proxyCall(this.contract.methods.medianRate) /** * Returns the report expiry parameter. * @returns Current report expiry. */ reportExpirySeconds = proxyCall(this.contract.methods.reportExpirySeconds, undefined, toBigNumber) + report = proxySend(this.kit, this.contract.methods.report) + // async report( + // token: Address, + // numerator: string | number, + // denominator: string | number + // ): Promise> { + // this.contract.methods.report() + // } + /** * Returns current configuration parameters. */ diff --git a/packages/protocol/migrations/08_stabletoken.ts b/packages/protocol/migrations/08_stabletoken.ts index 6178d55c37d..f666063bc15 100644 --- a/packages/protocol/migrations/08_stabletoken.ts +++ b/packages/protocol/migrations/08_stabletoken.ts @@ -59,8 +59,15 @@ module.exports = deploymentForCoreContract( SortedOraclesInstance >('SortedOracles', artifacts) - await sortedOracles.addOracle(stableToken.address, config.stableToken.priceOracleAccount) + console.log(config.stableToken) + // console.log(`adding first one ${config.stableToken.priceOracleAccounts}`) + // await sortedOracles.addOracle(stableToken.address, config.stableToken.priceOracleAccounts[0]) + // console.log('adding second one') + // await sortedOracles.addOracle(stableToken.address, '5409ED021D9299bf6814279A6A1411A7e866A631') + console.log(`adding third one: ${minerAddress}`) await sortedOracles.addOracle(stableToken.address, minerAddress) + await sortedOracles.addOracle(stableToken.address, '0xE834EC434DABA538cd1b9Fe1582052B880BD7e63') + console.log(`reporting initial: ${config.stableToken.goldPrice}`) await sortedOracles.report( stableToken.address, config.stableToken.goldPrice, @@ -68,6 +75,7 @@ module.exports = deploymentForCoreContract( NULL_ADDRESS, NULL_ADDRESS ) + console.log(await sortedOracles.getRates(stableToken.address)) const reserve: ReserveInstance = await getDeployedProxiedContract( 'Reserve', From 37bb7121e7581c7c5bdc3237fd85e331a8e07982 Mon Sep 17 00:00:00 2001 From: Audrey Penven Date: Mon, 7 Oct 2019 18:55:13 +0200 Subject: [PATCH 07/40] remove some console.log --- packages/contractkit/src/driver.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/contractkit/src/driver.ts b/packages/contractkit/src/driver.ts index 2188d2a80ef..a3f604263d6 100644 --- a/packages/contractkit/src/driver.ts +++ b/packages/contractkit/src/driver.ts @@ -25,8 +25,6 @@ async function main() { console.log(await sortedOracles.getRates(stableTokenAddress)) console.log(`number of rates?? ${await sortedOracles.numRates(stableTokenAddress)}`) - console.log('what the fuck is the goddamn median') - console.log(await sortedOracles.medianRate(stableTokenAddress)) } main().catch((err) => { From 1dfba9fa7d9fb9ac4fd628d8ac542b9d47d6033f Mon Sep 17 00:00:00 2001 From: Mariano Cortesi Date: Mon, 7 Oct 2019 14:26:48 -0300 Subject: [PATCH 08/40] wip --- .../src/wrappers/SortedOracles.test.ts | 33 +++++++++++++++++ .../contractkit/src/wrappers/SortedOracles.ts | 36 ++++++++++++++++++- 2 files changed, 68 insertions(+), 1 deletion(-) create mode 100644 packages/contractkit/src/wrappers/SortedOracles.test.ts diff --git a/packages/contractkit/src/wrappers/SortedOracles.test.ts b/packages/contractkit/src/wrappers/SortedOracles.test.ts new file mode 100644 index 00000000000..0c80c0a7083 --- /dev/null +++ b/packages/contractkit/src/wrappers/SortedOracles.test.ts @@ -0,0 +1,33 @@ +import { CeloContract } from '../base' +import { newKitFromWeb3 } from '../kit' +import { testWithGanache } from '../test-utils/ganache-test' +import { SortedOraclesWrapper } from './SortedOracles' + +/* +TEST NOTES: +- In migrations: The only account that has cUSD is accounts[0] +*/ + +testWithGanache('SortedOracles Wrapper', (web3) => { + // const ONE_USD = web3.utils.toWei('1', 'ether') + + const kit = newKitFromWeb3(web3) + let accounts: string[] = [] + let sortedOracles: SortedOraclesWrapper + let stableTokenAddress: string + + beforeAll(async () => { + accounts = await web3.eth.getAccounts() + console.log(accounts) + kit.defaultAccount = accounts[0] + sortedOracles = await kit.contracts.getSortedOracles() + stableTokenAddress = await kit.registry.addressFor(CeloContract.StableToken) + }) + + it('SBAT getRates', async () => { + const rates = await sortedOracles.getRates(stableTokenAddress) + console.log(rates) + }) + + it('SBAT reportRate', async () => {}) +}) diff --git a/packages/contractkit/src/wrappers/SortedOracles.ts b/packages/contractkit/src/wrappers/SortedOracles.ts index fe6f247ae96..0e9051df7db 100644 --- a/packages/contractkit/src/wrappers/SortedOracles.ts +++ b/packages/contractkit/src/wrappers/SortedOracles.ts @@ -1,4 +1,5 @@ import BigNumber from 'bignumber.js' +import { Address, CeloContract } from '../base' import { SortedOracles } from '../generated/types/SortedOracles' import { BaseWrapper, proxyCall, proxySend, toBigNumber } from './BaseWrapper' @@ -6,13 +7,22 @@ export interface SortedOraclesConfig { reportExpirySeconds: BigNumber } +export interface OracleRate { + address: Address + rate: BigNumber + medianRelation: string +} /** * Currency price oracle contract. */ export class SortedOraclesWrapper extends BaseWrapper { - getRates = proxyCall(this.contract.methods.getRates) numRates = proxyCall(this.contract.methods.numRates) medianRate = proxyCall(this.contract.methods.medianRate) + + isOracle: (token: Address, oracle: Address) => Promise = proxyCall( + this.contract.methods.isOracle + ) + /** * Returns the report expiry parameter. * @returns Current report expiry. @@ -36,4 +46,28 @@ export class SortedOraclesWrapper extends BaseWrapper { reportExpirySeconds: await this.reportExpirySeconds(), } } + + getUsdRates = async (): Promise => + this.getRates(await this.kit.registry.addressFor(CeloContract.StableToken)) + + /** + * Gets all elements from the doubly linked list. + * @param token The address of the token for which the Celo Gold exchange rate is being reported. + * @return An unpacked list of elements from largest to smallest. + */ + getRates: (token: Address) => Promise = proxyCall( + this.contract.methods.getRates, + undefined, + (out) => { + const rates: OracleRate[] = [] + for (let i = 0; i < out[0].length; i++) { + rates.push({ + address: out[0][i], + rate: new BigNumber(out[1][i]), + medianRelation: out[2][i], + }) + } + return rates + } + ) } From 711daca74324e2926af8ccff2ef80d0e236fb959 Mon Sep 17 00:00:00 2001 From: Audrey Penven Date: Tue, 8 Oct 2019 17:09:59 +0200 Subject: [PATCH 09/40] more experimentation to get things to work --- packages/contractkit/src/driver.ts | 22 ++++++------------- .../src/wrappers/SortedOracles.test.ts | 17 ++++++++++---- .../contractkit/src/wrappers/SortedOracles.ts | 14 +++++++++--- 3 files changed, 31 insertions(+), 22 deletions(-) diff --git a/packages/contractkit/src/driver.ts b/packages/contractkit/src/driver.ts index a3f604263d6..3c0bac77158 100644 --- a/packages/contractkit/src/driver.ts +++ b/packages/contractkit/src/driver.ts @@ -4,24 +4,16 @@ import { CeloContract, NULL_ADDRESS } from './base' async function main() { const kit = newKit('http://localhost:8545') - console.log(await kit.web3.eth.getAccounts()) - // const validators = await kit.contracts.getValidators() - - // console.log(await validators.getValidatorGroupsVotes()) - - // const tx = await validators.vote('0x....') - // const receipt = tx.sendAndWaitForReceipt({ - // from: '0x', - // }) - // console.log(receipt) + // const accounts = await kit.web3.eth.getAccounts() + const firstOracle = '0x5409ED021D9299bf6814279A6A1411A7e866A631' + kit.defaultAccount = '0xE834EC434DABA538cd1b9Fe1582052B880BD7e63' const sortedOracles = await kit.contracts.getSortedOracles() const stableTokenAddress = await kit.registry.addressFor(CeloContract.StableToken) - console.log(await sortedOracles.getRates(stableTokenAddress)) - await sortedOracles.report(stableTokenAddress, 25, 1, NULL_ADDRESS, NULL_ADDRESS) - - kit.defaultAccount = '0xE834EC434DABA538cd1b9Fe1582052B880BD7e63' - await sortedOracles.report(stableTokenAddress, 12, 1, NULL_ADDRESS, NULL_ADDRESS) + const rates = await sortedOracles.getRates(stableTokenAddress) + console.log(rates) + const tx = await sortedOracles.report(stableTokenAddress, 25, 1, firstOracle, NULL_ADDRESS).send() + await tx.waitReceipt() console.log(await sortedOracles.getRates(stableTokenAddress)) console.log(`number of rates?? ${await sortedOracles.numRates(stableTokenAddress)}`) diff --git a/packages/contractkit/src/wrappers/SortedOracles.test.ts b/packages/contractkit/src/wrappers/SortedOracles.test.ts index 0c80c0a7083..d8855bb04bb 100644 --- a/packages/contractkit/src/wrappers/SortedOracles.test.ts +++ b/packages/contractkit/src/wrappers/SortedOracles.test.ts @@ -1,4 +1,4 @@ -import { CeloContract } from '../base' +import { CeloContract, NULL_ADDRESS } from '../base' import { newKitFromWeb3 } from '../kit' import { testWithGanache } from '../test-utils/ganache-test' import { SortedOraclesWrapper } from './SortedOracles' @@ -10,7 +10,8 @@ TEST NOTES: testWithGanache('SortedOracles Wrapper', (web3) => { // const ONE_USD = web3.utils.toWei('1', 'ether') - + // const oracleAddress = '0xE834EC434DABA538cd1b9Fe1582052B880BD7e63' + const oracleAddress = '0x5409ED021D9299bf6814279A6A1411A7e866A631' const kit = newKitFromWeb3(web3) let accounts: string[] = [] let sortedOracles: SortedOraclesWrapper @@ -19,7 +20,7 @@ testWithGanache('SortedOracles Wrapper', (web3) => { beforeAll(async () => { accounts = await web3.eth.getAccounts() console.log(accounts) - kit.defaultAccount = accounts[0] + kit.defaultAccount = oracleAddress sortedOracles = await kit.contracts.getSortedOracles() stableTokenAddress = await kit.registry.addressFor(CeloContract.StableToken) }) @@ -29,5 +30,13 @@ testWithGanache('SortedOracles Wrapper', (web3) => { console.log(rates) }) - it('SBAT reportRate', async () => {}) + it('SBAT reportRate', async () => { + const rates = await sortedOracles.getRates(stableTokenAddress) + console.log(rates) + await sortedOracles + .report(stableTokenAddress, 16, 1, oracleAddress, NULL_ADDRESS) + .sendAndWaitForReceipt() + const rates2 = await sortedOracles.getRates(stableTokenAddress) + console.log(rates2) + }) }) diff --git a/packages/contractkit/src/wrappers/SortedOracles.ts b/packages/contractkit/src/wrappers/SortedOracles.ts index 0e9051df7db..9c93fa8b2a7 100644 --- a/packages/contractkit/src/wrappers/SortedOracles.ts +++ b/packages/contractkit/src/wrappers/SortedOracles.ts @@ -3,6 +3,13 @@ import { Address, CeloContract } from '../base' import { SortedOracles } from '../generated/types/SortedOracles' import { BaseWrapper, proxyCall, proxySend, toBigNumber } from './BaseWrapper' +export enum MedianRelation { + Undefined, + Lesser, + Greater, + Equal, +} + export interface SortedOraclesConfig { reportExpirySeconds: BigNumber } @@ -10,7 +17,7 @@ export interface SortedOraclesConfig { export interface OracleRate { address: Address rate: BigNumber - medianRelation: string + medianRelation: MedianRelation } /** * Currency price oracle contract. @@ -55,16 +62,17 @@ export class SortedOraclesWrapper extends BaseWrapper { * @param token The address of the token for which the Celo Gold exchange rate is being reported. * @return An unpacked list of elements from largest to smallest. */ - getRates: (token: Address) => Promise = proxyCall( + getRates: (token: Address) => Promise = proxyCall( this.contract.methods.getRates, undefined, (out) => { const rates: OracleRate[] = [] for (let i = 0; i < out[0].length; i++) { + const medRelIndex = parseInt(out[2][i], 10) rates.push({ address: out[0][i], rate: new BigNumber(out[1][i]), - medianRelation: out[2][i], + medianRelation: medRelIndex, }) } return rates From badcb62661252bf45fedb64c3e43c777a161ca18 Mon Sep 17 00:00:00 2001 From: Audrey Penven Date: Fri, 11 Oct 2019 18:30:11 +0200 Subject: [PATCH 10/40] add report function to sorted oracles wrapper --- packages/contractkit/src/driver.ts | 40 ++++++------ .../src/wrappers/SortedOracles.test.ts | 23 +++---- .../contractkit/src/wrappers/SortedOracles.ts | 64 ++++++++++++++++--- .../common/linkedlists/SortedLinkedList.sol | 2 +- .../protocol/migrations/08_stabletoken.ts | 10 +-- 5 files changed, 89 insertions(+), 50 deletions(-) diff --git a/packages/contractkit/src/driver.ts b/packages/contractkit/src/driver.ts index 3c0bac77158..5c21103def1 100644 --- a/packages/contractkit/src/driver.ts +++ b/packages/contractkit/src/driver.ts @@ -1,25 +1,25 @@ -import { newKit } from '.' -import { CeloContract, NULL_ADDRESS } from './base' +// import { newKit } from '.' +// import { CeloContract, NULL_ADDRESS } from './base' -async function main() { - const kit = newKit('http://localhost:8545') +// async function main() { +// const kit = newKit('http://localhost:8545') - // const accounts = await kit.web3.eth.getAccounts() - const firstOracle = '0x5409ED021D9299bf6814279A6A1411A7e866A631' - kit.defaultAccount = '0xE834EC434DABA538cd1b9Fe1582052B880BD7e63' +// // const accounts = await kit.web3.eth.getAccounts() +// const firstOracle = '0x5409ED021D9299bf6814279A6A1411A7e866A631' +// kit.defaultAccount = '0xE834EC434DABA538cd1b9Fe1582052B880BD7e63' - const sortedOracles = await kit.contracts.getSortedOracles() - const stableTokenAddress = await kit.registry.addressFor(CeloContract.StableToken) - const rates = await sortedOracles.getRates(stableTokenAddress) - console.log(rates) - const tx = await sortedOracles.report(stableTokenAddress, 25, 1, firstOracle, NULL_ADDRESS).send() - await tx.waitReceipt() +// const sortedOracles = await kit.contracts.getSortedOracles() +// const stableTokenAddress = await kit.registry.addressFor(CeloContract.StableToken) +// const rates = await sortedOracles.getRates(stableTokenAddress) +// console.log(rates) +// const tx = await sortedOracles.report(stableTokenAddress, 25, 1, firstOracle, NULL_ADDRESS).send() +// await tx.waitReceipt() - console.log(await sortedOracles.getRates(stableTokenAddress)) - console.log(`number of rates?? ${await sortedOracles.numRates(stableTokenAddress)}`) -} +// console.log(await sortedOracles.getRates(stableTokenAddress)) +// console.log(`number of rates?? ${await sortedOracles.numRates(stableTokenAddress)}`) +// } -main().catch((err) => { - console.log(err) - process.exit(1) -}) +// main().catch((err) => { +// console.log(err) +// process.exit(1) +// }) diff --git a/packages/contractkit/src/wrappers/SortedOracles.test.ts b/packages/contractkit/src/wrappers/SortedOracles.test.ts index d8855bb04bb..47243e0488e 100644 --- a/packages/contractkit/src/wrappers/SortedOracles.test.ts +++ b/packages/contractkit/src/wrappers/SortedOracles.test.ts @@ -1,7 +1,7 @@ -import { CeloContract, NULL_ADDRESS } from '../base' +import { CeloContract } from '../base' import { newKitFromWeb3 } from '../kit' import { testWithGanache } from '../test-utils/ganache-test' -import { SortedOraclesWrapper } from './SortedOracles' +import { OracleRate, SortedOraclesWrapper } from './SortedOracles' /* TEST NOTES: @@ -10,8 +10,8 @@ TEST NOTES: testWithGanache('SortedOracles Wrapper', (web3) => { // const ONE_USD = web3.utils.toWei('1', 'ether') - // const oracleAddress = '0xE834EC434DABA538cd1b9Fe1582052B880BD7e63' - const oracleAddress = '0x5409ED021D9299bf6814279A6A1411A7e866A631' + const oracleAddress = '0xE834EC434DABA538cd1b9Fe1582052B880BD7e63' + // const oracleAddress = '0x5409ED021D9299bf6814279A6A1411A7e866A631' const kit = newKitFromWeb3(web3) let accounts: string[] = [] let sortedOracles: SortedOraclesWrapper @@ -31,12 +31,13 @@ testWithGanache('SortedOracles Wrapper', (web3) => { }) it('SBAT reportRate', async () => { - const rates = await sortedOracles.getRates(stableTokenAddress) - console.log(rates) - await sortedOracles - .report(stableTokenAddress, 16, 1, oracleAddress, NULL_ADDRESS) - .sendAndWaitForReceipt() - const rates2 = await sortedOracles.getRates(stableTokenAddress) - console.log(rates2) + const tx = await sortedOracles.report(stableTokenAddress, 16, 1) + await tx.sendAndWaitForReceipt() + + const tx2 = await sortedOracles.report(stableTokenAddress, 2, 1) + await tx2.sendAndWaitForReceipt() + + const rates2: OracleRate[] = await sortedOracles.getRates(stableTokenAddress) + console.log(rates2.map((r) => r.rate.toNumber())) }) }) diff --git a/packages/contractkit/src/wrappers/SortedOracles.ts b/packages/contractkit/src/wrappers/SortedOracles.ts index 9c93fa8b2a7..09277e57c10 100644 --- a/packages/contractkit/src/wrappers/SortedOracles.ts +++ b/packages/contractkit/src/wrappers/SortedOracles.ts @@ -1,7 +1,8 @@ +import { eqAddress } from '@celo/utils/lib/address' import BigNumber from 'bignumber.js' -import { Address, CeloContract } from '../base' +import { Address, CeloContract, NULL_ADDRESS } from '../base' import { SortedOracles } from '../generated/types/SortedOracles' -import { BaseWrapper, proxyCall, proxySend, toBigNumber } from './BaseWrapper' +import { BaseWrapper, CeloTransactionObject, proxyCall, toBigNumber, wrapSend } from './BaseWrapper' export enum MedianRelation { Undefined, @@ -36,14 +37,28 @@ export class SortedOraclesWrapper extends BaseWrapper { */ reportExpirySeconds = proxyCall(this.contract.methods.reportExpirySeconds, undefined, toBigNumber) - report = proxySend(this.kit, this.contract.methods.report) - // async report( - // token: Address, - // numerator: string | number, - // denominator: string | number - // ): Promise> { - // this.contract.methods.report() - // } + /** + * Updates an oracle value and the median. + * @param token The address of the token for which the Celo Gold exchange rate is being reported. + * @param numerator The amount of tokens equal to `denominator` Celo Gold. + * @param denominator The amount of Celo Gold that the `numerator` tokens are equal to. + */ + async report( + token: Address, + numerator: number, + denominator: number + ): Promise> { + const { lesserKey, greaterKey } = await this.findLesserAndGreaterAfterReport( + token, + numerator, + denominator + ) + + return wrapSend( + this.kit, + this.contract.methods.report(token, numerator, denominator, lesserKey, greaterKey) + ) + } /** * Returns current configuration parameters. @@ -78,4 +93,33 @@ export class SortedOraclesWrapper extends BaseWrapper { return rates } ) + + private async findLesserAndGreaterAfterReport( + token: Address, + numerator: number, + denominator: number + ): Promise<{ lesserKey: Address; greaterKey: Address }> { + const currentRates: OracleRate[] = await this.getRates(token) + const internalDenominator = new BigNumber(await this.contract.methods.DENOMINATOR().call()) + + // This is how the contract calculates the rate from the numerator and denominator. + // To figure out where this new report goes in the list, we need to compare this + // value with the other rates + const value = internalDenominator.times(numerator).div(denominator) + let greaterKey = NULL_ADDRESS + + // This leverages the fact that the currentRates are already sorted from + // greatest to lowest value + for (const rate of currentRates) { + if (!eqAddress(rate.address, this.kit.defaultAccount)) { + if (rate.rate.isGreaterThanOrEqualTo(value)) { + greaterKey = rate.address + } else if (rate.rate.isLessThanOrEqualTo(value)) { + return { lesserKey: rate.address, greaterKey } + } + } + } + + return { lesserKey: NULL_ADDRESS, greaterKey } + } } diff --git a/packages/protocol/contracts/common/linkedlists/SortedLinkedList.sol b/packages/protocol/contracts/common/linkedlists/SortedLinkedList.sol index a4a57a5399d..8961944ea14 100644 --- a/packages/protocol/contracts/common/linkedlists/SortedLinkedList.sol +++ b/packages/protocol/contracts/common/linkedlists/SortedLinkedList.sol @@ -166,7 +166,7 @@ library SortedLinkedList { // 1. The value is less than the current lowest value // 2. The value is greater than the current greatest value // 3. The value is just greater than the value for `lesserKey` - // 4. The value is just less than the value for `greaerKey` + // 4. The value is just less than the value for `greaterKey` if (lesserKey == bytes32(0) && isValueBetween(list, value, lesserKey, list.list.tail)) { return (lesserKey, list.list.tail); } else if ( diff --git a/packages/protocol/migrations/08_stabletoken.ts b/packages/protocol/migrations/08_stabletoken.ts index f666063bc15..e5c98f8ab4e 100644 --- a/packages/protocol/migrations/08_stabletoken.ts +++ b/packages/protocol/migrations/08_stabletoken.ts @@ -59,15 +59,10 @@ module.exports = deploymentForCoreContract( SortedOraclesInstance >('SortedOracles', artifacts) - console.log(config.stableToken) - // console.log(`adding first one ${config.stableToken.priceOracleAccounts}`) - // await sortedOracles.addOracle(stableToken.address, config.stableToken.priceOracleAccounts[0]) - // console.log('adding second one') - // await sortedOracles.addOracle(stableToken.address, '5409ED021D9299bf6814279A6A1411A7e866A631') - console.log(`adding third one: ${minerAddress}`) + // TODO (yerdua): Get rid of this hardcoded nonsense I'm using to figure out how to write tests await sortedOracles.addOracle(stableToken.address, minerAddress) await sortedOracles.addOracle(stableToken.address, '0xE834EC434DABA538cd1b9Fe1582052B880BD7e63') - console.log(`reporting initial: ${config.stableToken.goldPrice}`) + // await sortedOracles.addOracle(stableToken.address, config.stableToken.priceOracleAccounts[0]) await sortedOracles.report( stableToken.address, config.stableToken.goldPrice, @@ -75,7 +70,6 @@ module.exports = deploymentForCoreContract( NULL_ADDRESS, NULL_ADDRESS ) - console.log(await sortedOracles.getRates(stableToken.address)) const reserve: ReserveInstance = await getDeployedProxiedContract( 'Reserve', From 7f775ed8781ffa49555ee1a792d9e7934760ae76 Mon Sep 17 00:00:00 2001 From: Audrey Penven Date: Mon, 14 Oct 2019 15:54:53 +0200 Subject: [PATCH 11/40] try to figure out what this 'fix' is actually doing --- .../contracts/common/linkedlists/SortedLinkedList.sol | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/packages/protocol/contracts/common/linkedlists/SortedLinkedList.sol b/packages/protocol/contracts/common/linkedlists/SortedLinkedList.sol index 8961944ea14..80a057324dc 100644 --- a/packages/protocol/contracts/common/linkedlists/SortedLinkedList.sol +++ b/packages/protocol/contracts/common/linkedlists/SortedLinkedList.sol @@ -166,20 +166,16 @@ library SortedLinkedList { // 1. The value is less than the current lowest value // 2. The value is greater than the current greatest value // 3. The value is just greater than the value for `lesserKey` - // 4. The value is just less than the value for `greaterKey` + // 4. The value is just less than the value for `greaerKey` if (lesserKey == bytes32(0) && isValueBetween(list, value, lesserKey, list.list.tail)) { return (lesserKey, list.list.tail); } else if ( greaterKey == bytes32(0) && isValueBetween(list, value, list.list.head, greaterKey) ) { return (list.list.head, greaterKey); - } else if ( - lesserKey != bytes32(0) && - isValueBetween(list, value, lesserKey, list.list.elements[lesserKey].nextKey)) - { + } else if (isValueBetween(list, value, lesserKey, list.list.elements[lesserKey].nextKey)) { return (lesserKey, list.list.elements[lesserKey].nextKey); } else if ( - greaterKey != bytes32(0) && isValueBetween(list, value, list.list.elements[greaterKey].previousKey, greaterKey) ) { return (list.list.elements[greaterKey].previousKey, greaterKey); From 7d2ea2e60d82d4d84ed5ad18c9fcb65970104cb3 Mon Sep 17 00:00:00 2001 From: Audrey Penven Date: Thu, 17 Oct 2019 15:07:21 +0200 Subject: [PATCH 12/40] flesh out the sorted oracles wrapper and tests --- packages/contractkit/package.json | 2 +- .../src/wrappers/SortedOracles.test.ts | 182 ++++++++++++++++-- .../contractkit/src/wrappers/SortedOracles.ts | 109 ++++++++--- .../protocol/migrations/08_stabletoken.ts | 4 +- packages/protocol/scripts/devchain.ts | 47 ++++- 5 files changed, 286 insertions(+), 58 deletions(-) diff --git a/packages/contractkit/package.json b/packages/contractkit/package.json index d461819180e..9e2df8eeac1 100644 --- a/packages/contractkit/package.json +++ b/packages/contractkit/package.json @@ -20,7 +20,7 @@ "clean:all": "yarn clean && rm -rf src/generated", "build:gen": "yarn --cwd ../protocol build", "prepublishOnly": "yarn build:gen && yarn build", - "test:prepare": "yarn --cwd ../protocol devchain generate .devchain", + "test:prepare": "yarn --cwd ../protocol devchain generate .devchain --migration_override src/test-utils/network-config.json", "test": "jest --runInBand", "lint": "tslint -c tslint.json --project ." }, diff --git a/packages/contractkit/src/wrappers/SortedOracles.test.ts b/packages/contractkit/src/wrappers/SortedOracles.test.ts index 47243e0488e..eac4011f72f 100644 --- a/packages/contractkit/src/wrappers/SortedOracles.test.ts +++ b/packages/contractkit/src/wrappers/SortedOracles.test.ts @@ -9,35 +9,183 @@ TEST NOTES: */ testWithGanache('SortedOracles Wrapper', (web3) => { - // const ONE_USD = web3.utils.toWei('1', 'ether') - const oracleAddress = '0xE834EC434DABA538cd1b9Fe1582052B880BD7e63' - // const oracleAddress = '0x5409ED021D9299bf6814279A6A1411A7e866A631' + // TODO: get these from the config rather than hardcoding + const stableTokenOracles = [ + '0x5409ED021D9299bf6814279A6A1411A7e866A631', + '0xE36Ea790bc9d7AB70C55260C66D52b1eca985f84', + '0x06cEf8E666768cC40Cc78CF93d9611019dDcB628', + '0x7457d5E02197480Db681D3fdF256c7acA21bDc12', + ] + + const oracleAddress = stableTokenOracles[stableTokenOracles.length - 1] + const nonOracleAddress = '0x91c987bf62D25945dB517BDAa840A6c661374402' + const kit = newKitFromWeb3(web3) - let accounts: string[] = [] let sortedOracles: SortedOraclesWrapper let stableTokenAddress: string beforeAll(async () => { - accounts = await web3.eth.getAccounts() - console.log(accounts) - kit.defaultAccount = oracleAddress sortedOracles = await kit.contracts.getSortedOracles() stableTokenAddress = await kit.registry.addressFor(CeloContract.StableToken) }) - it('SBAT getRates', async () => { - const rates = await sortedOracles.getRates(stableTokenAddress) - console.log(rates) + describe('#report', () => { + const numerator = 16 + const denominator = 1 + + describe('when reporting from a whitelisted Oracle', () => { + beforeAll(() => (kit.defaultAccount = oracleAddress)) + + it('should be able to report a rate', async () => { + const initialRates: OracleRate[] = await sortedOracles.getRates(CeloContract.StableToken) + + const tx = await sortedOracles.report(CeloContract.StableToken, numerator, denominator) + await tx.sendAndWaitForReceipt() + + const resultingRates: OracleRate[] = await sortedOracles.getRates(CeloContract.StableToken) + expect(resultingRates).not.toMatchObject(initialRates) + }) + + describe('when inserting into the middle of the existing rates', () => { + beforeEach(async () => { + const rates = [15, 20, 17] + for (let i = 0; i < stableTokenOracles.length - 1; i++) { + kit.defaultAccount = stableTokenOracles[i] + const tx = await sortedOracles.report(CeloContract.StableToken, rates[i], denominator) + await tx.sendAndWaitForReceipt() + } + + kit.defaultAccount = oracleAddress + }) + + const expectedLesserKey = stableTokenOracles[0] + const expectedGreaterKey = stableTokenOracles[2] + + const expectedOracleOrder = [ + stableTokenOracles[1], + stableTokenOracles[2], + oracleAddress, + stableTokenOracles[0], + ] + + it('passes the correct lesserKey and greaterKey as args', async () => { + const tx = await sortedOracles.report(CeloContract.StableToken, numerator, denominator) + const actualArgs = tx.txo.arguments + expect(actualArgs[3]).toEqual(expectedLesserKey) + expect(actualArgs[4]).toEqual(expectedGreaterKey) + + await tx.sendAndWaitForReceipt() + }) + + it('inserts the new record in the right place', async () => { + const tx = await sortedOracles.report(CeloContract.StableToken, numerator, denominator) + await tx.sendAndWaitForReceipt() + + const resultingRates: OracleRate[] = await sortedOracles.getRates( + CeloContract.StableToken + ) + + expect(resultingRates.map((r) => r.address)).toEqual(expectedOracleOrder) + }) + }) + }) + + describe('when reporting from a non-oracle address', () => { + beforeAll(() => (kit.defaultAccount = nonOracleAddress)) + + it('should raise an error', async () => { + const tx = await sortedOracles.report(CeloContract.StableToken, numerator, denominator) + await expect(tx.sendAndWaitForReceipt()).rejects.toThrow('sender was not an oracle') + }) + + it('should not change the list of rates', async () => { + const initialRates = await sortedOracles.getRates(CeloContract.StableToken) + try { + const tx = await sortedOracles.report(CeloContract.StableToken, numerator, denominator) + await tx.sendAndWaitForReceipt() + // @ts-ignore - Ignore empty block: we don't need to do anything with this error + } catch (err) { + // @ts-ignore + } finally { + const resultingRates = await sortedOracles.getRates(CeloContract.StableToken) + expect(resultingRates).toMatchObject(initialRates) + } + }) + }) + }) + + /** + * Proxy Calls to view methods + * + * The purpose of these tests is to verify that these wrapper functions exist, + * are calling the contract methods correctly, and get some value back. The + * values checked here are often dependent on setup occuring in the protocol + * migrations run in `yarn test:prepare`. If these tests are failing, the first + * thing to check is if there have been changes to the migrations + */ + describe('#getRates', () => { + it('SBAT getRates', async () => { + const rates = await sortedOracles.getRates(CeloContract.StableToken) + console.log('rates!', rates.map((r) => r.rate.toNumber())) + }) + }) + + describe('#isOracle', () => { + it('returns true when this address is a whitelisted oracle for this token', async () => { + expect(await sortedOracles.isOracle(CeloContract.StableToken, oracleAddress)).toEqual(true) + }) + it('returns false when this address is not an oracle', async () => { + expect(await sortedOracles.isOracle(CeloContract.StableToken, nonOracleAddress)).toEqual( + false + ) + }) + }) + + describe('#numRates', () => { + it('returns a count of rates reported for the specified token', async () => { + // Why 1? In packages/protocol/08_stabletoken, a single rate is reported + expect(await sortedOracles.numRates(CeloContract.StableToken)).toEqBigNumber(1) + }) }) - it('SBAT reportRate', async () => { - const tx = await sortedOracles.report(stableTokenAddress, 16, 1) - await tx.sendAndWaitForReceipt() + describe('#medianRate', () => { + it('returns the key for the median', async () => { + const returnedMedian = await sortedOracles.medianRate(CeloContract.StableToken) + // The value `10` comes from: packages/protocol/migrationsConfig.js: + // stableToken.goldPrice + expect(returnedMedian.numerator.div(returnedMedian.denominator)).toEqBigNumber(10) + }) + }) - const tx2 = await sortedOracles.report(stableTokenAddress, 2, 1) - await tx2.sendAndWaitForReceipt() + describe('#reportExpirySeconds', () => { + it('returns the number of seconds after which a report expires', async () => { + const result = await sortedOracles.reportExpirySeconds() + console.log(result) + expect(result).toEqBigNumber(3600) + }) + }) + + /** + * Helper Functions + * + * These are functions in the wrapper that call other functions, passing in + * some regularly used arguments. The purpose of these tests is to verify that + * those arguments are being set correctly. + */ + describe('getStableTokenRates', () => { + it('gets rates for Stable Token', async () => { + const usdRatesResult = await sortedOracles.getStableTokenRates() + const getRatesResult = await sortedOracles.getRates(CeloContract.StableToken) + expect(usdRatesResult).toEqual(getRatesResult) + }) + }) - const rates2: OracleRate[] = await sortedOracles.getRates(stableTokenAddress) - console.log(rates2.map((r) => r.rate.toNumber())) + describe('reportStableToken', () => { + beforeEach(() => (kit.defaultAccount = oracleAddress)) + it('calls report with the address for StableToken', async () => { + const tx = await sortedOracles.reportStableToken(14, 1) + await tx.sendAndWaitForReceipt() + expect(tx.txo.arguments[0]).toEqual(stableTokenAddress) + }) }) }) diff --git a/packages/contractkit/src/wrappers/SortedOracles.ts b/packages/contractkit/src/wrappers/SortedOracles.ts index 09277e57c10..ad1d79967b9 100644 --- a/packages/contractkit/src/wrappers/SortedOracles.ts +++ b/packages/contractkit/src/wrappers/SortedOracles.ts @@ -1,6 +1,6 @@ import { eqAddress } from '@celo/utils/lib/address' import BigNumber from 'bignumber.js' -import { Address, CeloContract, NULL_ADDRESS } from '../base' +import { Address, CeloContract, CeloToken, NULL_ADDRESS } from '../base' import { SortedOracles } from '../generated/types/SortedOracles' import { BaseWrapper, CeloTransactionObject, proxyCall, toBigNumber, wrapSend } from './BaseWrapper' @@ -20,16 +20,49 @@ export interface OracleRate { rate: BigNumber medianRelation: MedianRelation } + +export interface MedianRate { + numerator: BigNumber + denominator: BigNumber +} + /** * Currency price oracle contract. */ export class SortedOraclesWrapper extends BaseWrapper { - numRates = proxyCall(this.contract.methods.numRates) - medianRate = proxyCall(this.contract.methods.medianRate) + /** + * Gets the number of rates that have been reported for the given token + * @param token The CeloToken token for which the Celo Gold exchange rate is being reported. + * @return The number of reported oracle rates for `token`. + */ + async numRates(token: CeloToken): Promise { + const tokenAddress = await this.kit.registry.addressFor(token) + const response = await this.contract.methods.numRates(tokenAddress).call() + return new BigNumber(response) + } - isOracle: (token: Address, oracle: Address) => Promise = proxyCall( - this.contract.methods.isOracle - ) + /** + * Returns the median rate for the given token + * @param token The CeloToken token for which the Celo Gold exchange rate is being reported. + * @return The median exchange rate for `token`, expressed as: + * amount of that token / equivalent amount in Celo Gold + */ + async medianRate(token: CeloToken): Promise { + const tokenAddress = await this.kit.registry.addressFor(token) + const response = await this.contract.methods.medianRate(tokenAddress).call() + return { numerator: toBigNumber(response[0]), denominator: toBigNumber(response[1]) } + } + + /** + * Checks if the given address is whitelisted as an oracle for the token + * @param token The CeloToken token + * @param oracle The address that we're checking the oracle status of + * @returns boolean describing whether this account is an oracle + */ + async isOracle(token: CeloToken, oracle: Address): Promise { + const tokenAddress = await this.kit.registry.addressFor(token) + return this.contract.methods.isOracle(tokenAddress, oracle).call() + } /** * Returns the report expiry parameter. @@ -44,11 +77,13 @@ export class SortedOraclesWrapper extends BaseWrapper { * @param denominator The amount of Celo Gold that the `numerator` tokens are equal to. */ async report( - token: Address, + token: CeloToken, numerator: number, denominator: number ): Promise> { - const { lesserKey, greaterKey } = await this.findLesserAndGreaterAfterReport( + const tokenAddress = await this.kit.registry.addressFor(token) + + const { lesserKey, greaterKey } = await this.findLesserAndGreaterKeys( token, numerator, denominator @@ -56,10 +91,23 @@ export class SortedOraclesWrapper extends BaseWrapper { return wrapSend( this.kit, - this.contract.methods.report(token, numerator, denominator, lesserKey, greaterKey) + this.contract.methods.report(tokenAddress, numerator, denominator, lesserKey, greaterKey) ) } + /** + * Updates an oracle value and the median. + * @param token The address of the token for which the Celo Gold exchange rate is being reported. + * @param numerator The amount of tokens equal to `denominator` Celo Gold. + * @param denominator The amount of Celo Gold that the `numerator` tokens are equal to. + */ + async reportStableToken( + numerator: number, + denominator: number + ): Promise> { + return this.report(CeloContract.StableToken, numerator, denominator) + } + /** * Returns current configuration parameters. */ @@ -69,33 +117,35 @@ export class SortedOraclesWrapper extends BaseWrapper { } } - getUsdRates = async (): Promise => - this.getRates(await this.kit.registry.addressFor(CeloContract.StableToken)) + /** + * Helper function to get the rates for StableToken, by passing the address + * of StableToken to `getRates`. + */ + getStableTokenRates = async (): Promise => this.getRates(CeloContract.StableToken) /** * Gets all elements from the doubly linked list. - * @param token The address of the token for which the Celo Gold exchange rate is being reported. + * @param token The CeloToken representing the token for which the Celo + * Gold exchange rate is being reported. Example: CeloContract.StableToken * @return An unpacked list of elements from largest to smallest. */ - getRates: (token: Address) => Promise = proxyCall( - this.contract.methods.getRates, - undefined, - (out) => { - const rates: OracleRate[] = [] - for (let i = 0; i < out[0].length; i++) { - const medRelIndex = parseInt(out[2][i], 10) - rates.push({ - address: out[0][i], - rate: new BigNumber(out[1][i]), - medianRelation: medRelIndex, - }) - } - return rates + async getRates(token: CeloToken): Promise { + const tokenAddress = await this.kit.registry.addressFor(token) + const response = await this.contract.methods.getRates(tokenAddress).call() + const rates: OracleRate[] = [] + for (let i = 0; i < response[0].length; i++) { + const medRelIndex = parseInt(response[2][i], 10) + rates.push({ + address: response[0][i], + rate: new BigNumber(response[1][i]), + medianRelation: medRelIndex, + }) } - ) + return rates + } - private async findLesserAndGreaterAfterReport( - token: Address, + private async findLesserAndGreaterKeys( + token: CeloToken, numerator: number, denominator: number ): Promise<{ lesserKey: Address; greaterKey: Address }> { @@ -120,6 +170,7 @@ export class SortedOraclesWrapper extends BaseWrapper { } } + // If a lesserKey hasn't been found, this item belongs at the tail return { lesserKey: NULL_ADDRESS, greaterKey } } } diff --git a/packages/protocol/migrations/08_stabletoken.ts b/packages/protocol/migrations/08_stabletoken.ts index e5c98f8ab4e..d411420213a 100644 --- a/packages/protocol/migrations/08_stabletoken.ts +++ b/packages/protocol/migrations/08_stabletoken.ts @@ -60,9 +60,11 @@ module.exports = deploymentForCoreContract( >('SortedOracles', artifacts) // TODO (yerdua): Get rid of this hardcoded nonsense I'm using to figure out how to write tests + console.log('stable token config:', config.stableToken) + await sortedOracles.addOracle(stableToken.address, minerAddress) await sortedOracles.addOracle(stableToken.address, '0xE834EC434DABA538cd1b9Fe1582052B880BD7e63') - // await sortedOracles.addOracle(stableToken.address, config.stableToken.priceOracleAccounts[0]) + await sortedOracles.addOracle(stableToken.address, config.stableToken.priceOracleAccounts[0]) await sortedOracles.report( stableToken.address, config.stableToken.goldPrice, diff --git a/packages/protocol/scripts/devchain.ts b/packages/protocol/scripts/devchain.ts index 309dd4ad6ab..220c75430b7 100644 --- a/packages/protocol/scripts/devchain.ts +++ b/packages/protocol/scripts/devchain.ts @@ -42,11 +42,23 @@ yargs 'generate ', 'Create a new devchain directory from scratch', (args) => - args.positional('datadir', { type: 'string', description: 'Data Dir' }).option('upto', { - type: 'number', - description: 'When reset, run upto given migration', - }), - (args) => exitOnError(generateDevChain(args.datadir, { upto: args.upto })) + args + .positional('datadir', { type: 'string', description: 'Data Dir' }) + .option('upto', { + type: 'number', + description: 'When reset, run upto given migration', + }) + .option('migration_override', { + type: 'string', + description: 'Path to JSON containing config values to use in migrations', + }), + (args) => + exitOnError( + generateDevChain(args.datadir, { + upto: args.upto, + migrationOverride: args.migration_override, + }) + ) ).argv async function startGanache(datadir: string, opts: { verbose?: boolean }) { @@ -137,29 +149,44 @@ function createDirIfMissing(dir: string) { } } -function runMigrations(opts: { upto?: number } = {}) { +function runMigrations(opts: { upto?: number; migrationOverride?: string } = {}) { const cmdArgs = ['truffle', 'migrate'] if (opts.upto) { cmdArgs.push('--to') cmdArgs.push(opts.upto.toString()) } + + if (opts.migrationOverride) { + cmdArgs.push('--migration_override') + cmdArgs.push(fs.readFileSync(opts.migrationOverride).toString()) + } return execCmd(`yarn`, cmdArgs, { cwd: ProtocolRoot }) } -async function runDevChain(datadir: string, opts: { reset?: boolean; upto?: number } = {}) { +async function runDevChain( + datadir: string, + opts: { reset?: boolean; upto?: number; migrationOverride?: string } = {} +) { if (opts.reset) { await resetDir(datadir) } createDirIfMissing(datadir) const stopGanache = await startGanache(datadir, { verbose: true }) if (opts.reset) { - await runMigrations({ upto: opts.upto }) + await runMigrations({ upto: opts.upto, migrationOverride: opts.migrationOverride }) } return stopGanache } -async function generateDevChain(datadir: string, opts: { upto?: number } = {}) { - const stopGanache = await runDevChain(datadir, { reset: true, upto: opts.upto }) +async function generateDevChain( + datadir: string, + opts: { upto?: number; migrationOverride?: string } = {} +) { + const stopGanache = await runDevChain(datadir, { + reset: true, + upto: opts.upto, + migrationOverride: opts.migrationOverride, + }) await stopGanache() } From 2c4a2ea880cf11a65ea996432a144d0f3545e77a Mon Sep 17 00:00:00 2001 From: Audrey Penven Date: Thu, 17 Oct 2019 15:58:11 +0200 Subject: [PATCH 13/40] stop hardcoding oracles in stabletoken migration. make network config values accessible to tests --- .../src/test-utils/ganache.setup.ts | 4 +++ .../src/test-utils/network-config.json | 11 ++++++++ .../src/wrappers/SortedOracles.test.ts | 25 ++++++++++--------- .../protocol/migrations/08_stabletoken.ts | 17 ++++++++----- 4 files changed, 39 insertions(+), 18 deletions(-) create mode 100644 packages/contractkit/src/test-utils/network-config.json diff --git a/packages/contractkit/src/test-utils/ganache.setup.ts b/packages/contractkit/src/test-utils/ganache.setup.ts index de02dd978c3..b59964fcb6f 100644 --- a/packages/contractkit/src/test-utils/ganache.setup.ts +++ b/packages/contractkit/src/test-utils/ganache.setup.ts @@ -1,8 +1,12 @@ // @ts-ignore import * as ganache from '@celo/ganache-cli' +import * as fs from 'fs' import * as path from 'path' const MNEMONIC = 'concert load couple harbor equip island argue ramp clarify fence smart topic' +export const NetworkConfig = JSON.parse( + fs.readFileSync('src/test-utils/network-config.json').toString() +) export async function startGanache(datadir: string, opts: { verbose?: boolean } = {}) { const logFn = opts.verbose diff --git a/packages/contractkit/src/test-utils/network-config.json b/packages/contractkit/src/test-utils/network-config.json new file mode 100644 index 00000000000..d0649b667c5 --- /dev/null +++ b/packages/contractkit/src/test-utils/network-config.json @@ -0,0 +1,11 @@ +{ + "stableToken": { + "initialAccounts": [], + "priceOracleAccounts": [ + "0x5409ED021D9299bf6814279A6A1411A7e866A631", + "0xE36Ea790bc9d7AB70C55260C66D52b1eca985f84", + "0x06cEf8E666768cC40Cc78CF93d9611019dDcB628", + "0x7457d5E02197480Db681D3fdF256c7acA21bDc12" + ] + } +} diff --git a/packages/contractkit/src/wrappers/SortedOracles.test.ts b/packages/contractkit/src/wrappers/SortedOracles.test.ts index eac4011f72f..87c4ef3886a 100644 --- a/packages/contractkit/src/wrappers/SortedOracles.test.ts +++ b/packages/contractkit/src/wrappers/SortedOracles.test.ts @@ -1,6 +1,7 @@ -import { CeloContract } from '../base' +import { Address, CeloContract } from '../base' import { newKitFromWeb3 } from '../kit' import { testWithGanache } from '../test-utils/ganache-test' +import { NetworkConfig } from '../test-utils/ganache.setup' import { OracleRate, SortedOraclesWrapper } from './SortedOracles' /* @@ -9,24 +10,24 @@ TEST NOTES: */ testWithGanache('SortedOracles Wrapper', (web3) => { - // TODO: get these from the config rather than hardcoding - const stableTokenOracles = [ - '0x5409ED021D9299bf6814279A6A1411A7e866A631', - '0xE36Ea790bc9d7AB70C55260C66D52b1eca985f84', - '0x06cEf8E666768cC40Cc78CF93d9611019dDcB628', - '0x7457d5E02197480Db681D3fdF256c7acA21bDc12', - ] - + // NOTE: These values are set in test-utils/network-config.json, and are derived + // from the MNEMONIC. If the MNEMONIC has changed, these will need to be reset. + // To do that, look at the output of web3.eth.getAccounts(), and pick a few + // addresses from that set to be oracles + const stableTokenOracles: Address[] = NetworkConfig.stableToken.priceOracleAccounts const oracleAddress = stableTokenOracles[stableTokenOracles.length - 1] - const nonOracleAddress = '0x91c987bf62D25945dB517BDAa840A6c661374402' const kit = newKitFromWeb3(web3) let sortedOracles: SortedOraclesWrapper let stableTokenAddress: string + let nonOracleAddresses: Address[] beforeAll(async () => { sortedOracles = await kit.contracts.getSortedOracles() stableTokenAddress = await kit.registry.addressFor(CeloContract.StableToken) + nonOracleAddresses = (await web3.eth.getAccounts()).filter((addr) => { + return !stableTokenOracles.includes(addr) + }) }) describe('#report', () => { @@ -91,7 +92,7 @@ testWithGanache('SortedOracles Wrapper', (web3) => { }) describe('when reporting from a non-oracle address', () => { - beforeAll(() => (kit.defaultAccount = nonOracleAddress)) + beforeAll(() => (kit.defaultAccount = nonOracleAddresses[0])) it('should raise an error', async () => { const tx = await sortedOracles.report(CeloContract.StableToken, numerator, denominator) @@ -135,7 +136,7 @@ testWithGanache('SortedOracles Wrapper', (web3) => { expect(await sortedOracles.isOracle(CeloContract.StableToken, oracleAddress)).toEqual(true) }) it('returns false when this address is not an oracle', async () => { - expect(await sortedOracles.isOracle(CeloContract.StableToken, nonOracleAddress)).toEqual( + expect(await sortedOracles.isOracle(CeloContract.StableToken, nonOracleAddresses[0])).toEqual( false ) }) diff --git a/packages/protocol/migrations/08_stabletoken.ts b/packages/protocol/migrations/08_stabletoken.ts index d411420213a..63473e8b37d 100644 --- a/packages/protocol/migrations/08_stabletoken.ts +++ b/packages/protocol/migrations/08_stabletoken.ts @@ -54,17 +54,22 @@ module.exports = deploymentForCoreContract( await stableToken.mint(address, initialBalance) } - console.log('Setting GoldToken/USD exchange rate') const sortedOracles: SortedOraclesInstance = await getDeployedProxiedContract< SortedOraclesInstance >('SortedOracles', artifacts) - // TODO (yerdua): Get rid of this hardcoded nonsense I'm using to figure out how to write tests - console.log('stable token config:', config.stableToken) + for (const oracle of config.stableToken.priceOracleAccounts) { + console.log(`Adding ${oracle} as an Oracle for StableToken`) + await sortedOracles.addOracle(stableToken.address, oracle) + } - await sortedOracles.addOracle(stableToken.address, minerAddress) - await sortedOracles.addOracle(stableToken.address, '0xE834EC434DABA538cd1b9Fe1582052B880BD7e63') - await sortedOracles.addOracle(stableToken.address, config.stableToken.priceOracleAccounts[0]) + console.log('Setting GoldToken/USD exchange rate') + // We need to seed the exchange rate, and that must be done with an account + // that's accessible to the migrations. It's in an if statement in case this + // account happened to be included in config.stableToken.priceOracleAccounts + if (!(await sortedOracles.isOracle(stableToken.address, minerAddress))) { + await sortedOracles.addOracle(stableToken.address, minerAddress) + } await sortedOracles.report( stableToken.address, config.stableToken.goldPrice, From 55b9999a23e821e3f378330850e6a147a13d71a3 Mon Sep 17 00:00:00 2001 From: Audrey Penven Date: Fri, 18 Oct 2019 11:08:36 +0200 Subject: [PATCH 14/40] use new contract kit version in cli --- packages/cli/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cli/package.json b/packages/cli/package.json index 21b253a6243..442ad29c0d9 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -30,7 +30,7 @@ }, "dependencies": { "@celo/utils": "^0.1.0", - "@celo/contractkit": "^0.1.1", + "@celo/contractkit": "^0.1.6", "@oclif/command": "^1", "@oclif/config": "^1", "@oclif/plugin-help": "^2", From 44cf9a73fc88ca1b7b2ca4b2fd24262cb61f3bde Mon Sep 17 00:00:00 2001 From: Audrey Penven Date: Fri, 18 Oct 2019 16:34:43 +0200 Subject: [PATCH 15/40] pull all the contractkit work out of #1394 --- packages/contractkit/package.json | 4 +- .../src/test-utils/ganache.setup.ts | 7 + .../src/test-utils/migration-override.json | 11 + .../src/wrappers/SortedOracles.test.ts | 196 ++++++++++++++++++ .../contractkit/src/wrappers/SortedOracles.ts | 157 +++++++++++++- .../protocol/migrations/08_stabletoken.ts | 14 +- packages/protocol/scripts/devchain.ts | 47 ++++- yarn.lock | 19 ++ 8 files changed, 440 insertions(+), 15 deletions(-) create mode 100644 packages/contractkit/src/test-utils/migration-override.json create mode 100644 packages/contractkit/src/wrappers/SortedOracles.test.ts diff --git a/packages/contractkit/package.json b/packages/contractkit/package.json index d461819180e..3e137437f4f 100644 --- a/packages/contractkit/package.json +++ b/packages/contractkit/package.json @@ -1,6 +1,6 @@ { "name": "@celo/contractkit", - "version": "0.1.6", + "version": "0.1.7", "description": "Celo's ContractKit to interact with Celo network", "main": "./lib/index.js", "types": "./lib/index.d.ts", @@ -20,7 +20,7 @@ "clean:all": "yarn clean && rm -rf src/generated", "build:gen": "yarn --cwd ../protocol build", "prepublishOnly": "yarn build:gen && yarn build", - "test:prepare": "yarn --cwd ../protocol devchain generate .devchain", + "test:prepare": "yarn --cwd ../protocol devchain generate .devchain --migration_override src/test-utils/migration-override.json", "test": "jest --runInBand", "lint": "tslint -c tslint.json --project ." }, diff --git a/packages/contractkit/src/test-utils/ganache.setup.ts b/packages/contractkit/src/test-utils/ganache.setup.ts index de02dd978c3..ccb8acd6d73 100644 --- a/packages/contractkit/src/test-utils/ganache.setup.ts +++ b/packages/contractkit/src/test-utils/ganache.setup.ts @@ -1,9 +1,16 @@ // @ts-ignore import * as ganache from '@celo/ganache-cli' +import * as fs from 'fs' import * as path from 'path' const MNEMONIC = 'concert load couple harbor equip island argue ramp clarify fence smart topic' +// This file specifies accounts available when ganache is running. These are derived +// from the MNEMONIC +export const NetworkConfig = JSON.parse( + fs.readFileSync('src/test-utils/migration-override.json').toString() +) + export async function startGanache(datadir: string, opts: { verbose?: boolean } = {}) { const logFn = opts.verbose ? // tslint:disable-next-line: no-console diff --git a/packages/contractkit/src/test-utils/migration-override.json b/packages/contractkit/src/test-utils/migration-override.json new file mode 100644 index 00000000000..d0649b667c5 --- /dev/null +++ b/packages/contractkit/src/test-utils/migration-override.json @@ -0,0 +1,11 @@ +{ + "stableToken": { + "initialAccounts": [], + "priceOracleAccounts": [ + "0x5409ED021D9299bf6814279A6A1411A7e866A631", + "0xE36Ea790bc9d7AB70C55260C66D52b1eca985f84", + "0x06cEf8E666768cC40Cc78CF93d9611019dDcB628", + "0x7457d5E02197480Db681D3fdF256c7acA21bDc12" + ] + } +} diff --git a/packages/contractkit/src/wrappers/SortedOracles.test.ts b/packages/contractkit/src/wrappers/SortedOracles.test.ts new file mode 100644 index 00000000000..aaa653d4668 --- /dev/null +++ b/packages/contractkit/src/wrappers/SortedOracles.test.ts @@ -0,0 +1,196 @@ +import { Address, CeloContract } from '../base' +import { newKitFromWeb3 } from '../kit' +import { testWithGanache } from '../test-utils/ganache-test' +import { NetworkConfig } from '../test-utils/ganache.setup' +import { OracleRate, SortedOraclesWrapper } from './SortedOracles' + +/* +TEST NOTES: +- In migrations: The only account that has cUSD is accounts[0] +*/ + +testWithGanache('SortedOracles Wrapper', (web3) => { + // NOTE: These values are set in test-utils/network-config.json, and are derived + // from the MNEMONIC. If the MNEMONIC has changed, these will need to be reset. + // To do that, look at the output of web3.eth.getAccounts(), and pick a few + // addresses from that set to be oracles + const stableTokenOracles: Address[] = NetworkConfig.stableToken.priceOracleAccounts + const oracleAddress = stableTokenOracles[stableTokenOracles.length - 1] + + const kit = newKitFromWeb3(web3) + let sortedOracles: SortedOraclesWrapper + let stableTokenAddress: string + let nonOracleAddresses: Address[] + + beforeAll(async () => { + sortedOracles = await kit.contracts.getSortedOracles() + stableTokenAddress = await kit.registry.addressFor(CeloContract.StableToken) + nonOracleAddresses = (await web3.eth.getAccounts()).filter((addr) => { + return !stableTokenOracles.includes(addr) + }) + }) + + describe('#report', () => { + const numerator = 16 + const denominator = 1 + + describe('when reporting from a whitelisted Oracle', () => { + beforeAll(() => (kit.defaultAccount = oracleAddress)) + + it('should be able to report a rate', async () => { + const initialRates: OracleRate[] = await sortedOracles.getRates(CeloContract.StableToken) + + const tx = await sortedOracles.report(CeloContract.StableToken, numerator, denominator) + await tx.sendAndWaitForReceipt() + + const resultingRates: OracleRate[] = await sortedOracles.getRates(CeloContract.StableToken) + expect(resultingRates).not.toMatchObject(initialRates) + }) + + describe('when inserting into the middle of the existing rates', () => { + beforeEach(async () => { + const rates = [15, 20, 17] + for (let i = 0; i < stableTokenOracles.length - 1; i++) { + kit.defaultAccount = stableTokenOracles[i] + const tx = await sortedOracles.report(CeloContract.StableToken, rates[i], denominator) + await tx.sendAndWaitForReceipt() + } + + kit.defaultAccount = oracleAddress + }) + + const expectedLesserKey = stableTokenOracles[0] + const expectedGreaterKey = stableTokenOracles[2] + + const expectedOracleOrder = [ + stableTokenOracles[1], + stableTokenOracles[2], + oracleAddress, + stableTokenOracles[0], + ] + + it('passes the correct lesserKey and greaterKey as args', async () => { + const tx = await sortedOracles.report(CeloContract.StableToken, numerator, denominator) + const actualArgs = tx.txo.arguments + expect(actualArgs[3]).toEqual(expectedLesserKey) + expect(actualArgs[4]).toEqual(expectedGreaterKey) + + await tx.sendAndWaitForReceipt() + }) + + it('inserts the new record in the right place', async () => { + const tx = await sortedOracles.report(CeloContract.StableToken, numerator, denominator) + await tx.sendAndWaitForReceipt() + + const resultingRates: OracleRate[] = await sortedOracles.getRates( + CeloContract.StableToken + ) + + expect(resultingRates.map((r) => r.address)).toEqual(expectedOracleOrder) + }) + }) + }) + + describe('when reporting from a non-oracle address', () => { + beforeAll(() => (kit.defaultAccount = nonOracleAddresses[0])) + + it('should raise an error', async () => { + const tx = await sortedOracles.report(CeloContract.StableToken, numerator, denominator) + await expect(tx.sendAndWaitForReceipt()).rejects.toThrow('sender was not an oracle') + }) + + it('should not change the list of rates', async () => { + const initialRates = await sortedOracles.getRates(CeloContract.StableToken) + try { + const tx = await sortedOracles.report(CeloContract.StableToken, numerator, denominator) + await tx.sendAndWaitForReceipt() + // @ts-ignore - Ignore empty block: we don't need to do anything with this error + } catch (err) { + // @ts-ignore + } finally { + const resultingRates = await sortedOracles.getRates(CeloContract.StableToken) + expect(resultingRates).toMatchObject(initialRates) + } + }) + }) + }) + + /** + * Proxy Calls to view methods + * + * The purpose of these tests is to verify that these wrapper functions exist, + * are calling the contract methods correctly, and get some value back. The + * values checked here are often dependent on setup occuring in the protocol + * migrations run in `yarn test:prepare`. If these tests are failing, the first + * thing to check is if there have been changes to the migrations + */ + describe('#getRates', () => { + it('SBAT getRates', async () => { + const rates = await sortedOracles.getRates(CeloContract.StableToken) + expect(rates.length).toBeGreaterThan(0) + for (const rate of rates) { + expect(rate).toHaveProperty('address') + expect(rate).toHaveProperty('rate') + expect(rate).toHaveProperty('medianRelation') + } + }) + }) + + describe('#isOracle', () => { + it('returns true when this address is a whitelisted oracle for this token', async () => { + expect(await sortedOracles.isOracle(CeloContract.StableToken, oracleAddress)).toEqual(true) + }) + it('returns false when this address is not an oracle', async () => { + expect(await sortedOracles.isOracle(CeloContract.StableToken, nonOracleAddresses[0])).toEqual( + false + ) + }) + }) + + describe('#numRates', () => { + it('returns a count of rates reported for the specified token', async () => { + // Why 1? In packages/protocol/08_stabletoken, a single rate is reported + expect(await sortedOracles.numRates(CeloContract.StableToken)).toEqBigNumber(1) + }) + }) + + describe('#medianRate', () => { + it('returns the key for the median', async () => { + const returnedMedian = await sortedOracles.medianRate(CeloContract.StableToken) + // The value `10` comes from: packages/protocol/migrationsConfig.js: + // stableToken.goldPrice + expect(returnedMedian.numerator.div(returnedMedian.denominator)).toEqBigNumber(10) + }) + }) + + describe('#reportExpirySeconds', () => { + it('returns the number of seconds after which a report expires', async () => { + const result = await sortedOracles.reportExpirySeconds() + expect(result).toEqBigNumber(3600) + }) + }) + + /** + * Helper Functions + * + * These are functions in the wrapper that call other functions, passing in + * some regularly used arguments. The purpose of these tests is to verify that + * those arguments are being set correctly. + */ + describe('getStableTokenRates', () => { + it('gets rates for Stable Token', async () => { + const usdRatesResult = await sortedOracles.getStableTokenRates() + const getRatesResult = await sortedOracles.getRates(CeloContract.StableToken) + expect(usdRatesResult).toEqual(getRatesResult) + }) + }) + + describe('reportStableToken', () => { + beforeEach(() => (kit.defaultAccount = oracleAddress)) + it('calls report with the address for StableToken', async () => { + const tx = await sortedOracles.reportStableToken(14, 1) + await tx.sendAndWaitForReceipt() + expect(tx.txo.arguments[0]).toEqual(stableTokenAddress) + }) + }) +}) diff --git a/packages/contractkit/src/wrappers/SortedOracles.ts b/packages/contractkit/src/wrappers/SortedOracles.ts index 7da98f72697..85302eb342b 100644 --- a/packages/contractkit/src/wrappers/SortedOracles.ts +++ b/packages/contractkit/src/wrappers/SortedOracles.ts @@ -1,21 +1,119 @@ +import { eqAddress } from '@celo/utils/lib/address' import BigNumber from 'bignumber.js' +import { Address, CeloContract, CeloToken, NULL_ADDRESS } from '../base' import { SortedOracles } from '../generated/types/SortedOracles' -import { BaseWrapper, proxyCall, toBigNumber } from './BaseWrapper' +import { + BaseWrapper, + CeloTransactionObject, + proxyCall, + toBigNumber, + toTransactionObject, +} from './BaseWrapper' + +export enum MedianRelation { + Undefined, + Lesser, + Greater, + Equal, +} export interface SortedOraclesConfig { reportExpirySeconds: BigNumber } +export interface OracleRate { + address: Address + rate: BigNumber + medianRelation: MedianRelation +} + +export interface MedianRate { + numerator: BigNumber + denominator: BigNumber +} + /** * Currency price oracle contract. */ export class SortedOraclesWrapper extends BaseWrapper { + /** + * Gets the number of rates that have been reported for the given token + * @param token The CeloToken token for which the Celo Gold exchange rate is being reported. + * @return The number of reported oracle rates for `token`. + */ + async numRates(token: CeloToken): Promise { + const tokenAddress = await this.kit.registry.addressFor(token) + const response = await this.contract.methods.numRates(tokenAddress).call() + return new BigNumber(response) + } + + /** + * Returns the median rate for the given token + * @param token The CeloToken token for which the Celo Gold exchange rate is being reported. + * @return The median exchange rate for `token`, expressed as: + * amount of that token / equivalent amount in Celo Gold + */ + async medianRate(token: CeloToken): Promise { + const tokenAddress = await this.kit.registry.addressFor(token) + const response = await this.contract.methods.medianRate(tokenAddress).call() + return { numerator: toBigNumber(response[0]), denominator: toBigNumber(response[1]) } + } + + /** + * Checks if the given address is whitelisted as an oracle for the token + * @param token The CeloToken token + * @param oracle The address that we're checking the oracle status of + * @returns boolean describing whether this account is an oracle + */ + async isOracle(token: CeloToken, oracle: Address): Promise { + const tokenAddress = await this.kit.registry.addressFor(token) + return this.contract.methods.isOracle(tokenAddress, oracle).call() + } + /** * Returns the report expiry parameter. * @returns Current report expiry. */ reportExpirySeconds = proxyCall(this.contract.methods.reportExpirySeconds, undefined, toBigNumber) + /** + * Updates an oracle value and the median. + * @param token The address of the token for which the Celo Gold exchange rate is being reported. + * @param numerator The amount of tokens equal to `denominator` Celo Gold. + * @param denominator The amount of Celo Gold that the `numerator` tokens are equal to. + */ + async report( + token: CeloToken, + numerator: number, + denominator: number + ): Promise> { + const tokenAddress = await this.kit.registry.addressFor(token) + + const { lesserKey, greaterKey } = await this.findLesserAndGreaterKeys( + token, + numerator, + denominator + ) + + return toTransactionObject( + this.kit, + this.contract.methods.report(tokenAddress, numerator, denominator, lesserKey, greaterKey) + ) + } + + /** + * Updates an oracle value and the median. + * @param token The address of the token for which the Celo Gold exchange rate is being reported. + * @param numerator The amount of tokens equal to `denominator` Celo Gold. + * @param denominator The amount of Celo Gold that the `numerator` tokens are equal to. + */ + async reportStableToken( + numerator: number, + denominator: number + ): Promise> { + return this.report(CeloContract.StableToken, numerator, denominator) + } + /** * Returns current configuration parameters. */ @@ -24,4 +122,61 @@ export class SortedOraclesWrapper extends BaseWrapper { reportExpirySeconds: await this.reportExpirySeconds(), } } + + /** + * Helper function to get the rates for StableToken, by passing the address + * of StableToken to `getRates`. + */ + getStableTokenRates = async (): Promise => this.getRates(CeloContract.StableToken) + + /** + * Gets all elements from the doubly linked list. + * @param token The CeloToken representing the token for which the Celo + * Gold exchange rate is being reported. Example: CeloContract.StableToken + * @return An unpacked list of elements from largest to smallest. + */ + async getRates(token: CeloToken): Promise { + const tokenAddress = await this.kit.registry.addressFor(token) + const response = await this.contract.methods.getRates(tokenAddress).call() + const rates: OracleRate[] = [] + for (let i = 0; i < response[0].length; i++) { + const medRelIndex = parseInt(response[2][i], 10) + rates.push({ + address: response[0][i], + rate: new BigNumber(response[1][i]), + medianRelation: medRelIndex, + }) + } + return rates + } + + private async findLesserAndGreaterKeys( + token: CeloToken, + numerator: number, + denominator: number + ): Promise<{ lesserKey: Address; greaterKey: Address }> { + const currentRates: OracleRate[] = await this.getRates(token) + const internalDenominator = new BigNumber(await this.contract.methods.DENOMINATOR().call()) + + // This is how the contract calculates the rate from the numerator and denominator. + // To figure out where this new report goes in the list, we need to compare this + // value with the other rates + const value = internalDenominator.times(numerator).div(denominator) + let greaterKey = NULL_ADDRESS + + // This leverages the fact that the currentRates are already sorted from + // greatest to lowest value + for (const rate of currentRates) { + if (!eqAddress(rate.address, this.kit.defaultAccount)) { + if (rate.rate.isGreaterThanOrEqualTo(value)) { + greaterKey = rate.address + } else if (rate.rate.isLessThanOrEqualTo(value)) { + return { lesserKey: rate.address, greaterKey } + } + } + } + + // If a lesserKey hasn't been found, this item belongs at the tail + return { lesserKey: NULL_ADDRESS, greaterKey } + } } diff --git a/packages/protocol/migrations/08_stabletoken.ts b/packages/protocol/migrations/08_stabletoken.ts index 5bc02ece37d..63473e8b37d 100644 --- a/packages/protocol/migrations/08_stabletoken.ts +++ b/packages/protocol/migrations/08_stabletoken.ts @@ -54,12 +54,22 @@ module.exports = deploymentForCoreContract( await stableToken.mint(address, initialBalance) } - console.log('Setting GoldToken/USD exchange rate') const sortedOracles: SortedOraclesInstance = await getDeployedProxiedContract< SortedOraclesInstance >('SortedOracles', artifacts) - await sortedOracles.addOracle(stableToken.address, minerAddress) + for (const oracle of config.stableToken.priceOracleAccounts) { + console.log(`Adding ${oracle} as an Oracle for StableToken`) + await sortedOracles.addOracle(stableToken.address, oracle) + } + + console.log('Setting GoldToken/USD exchange rate') + // We need to seed the exchange rate, and that must be done with an account + // that's accessible to the migrations. It's in an if statement in case this + // account happened to be included in config.stableToken.priceOracleAccounts + if (!(await sortedOracles.isOracle(stableToken.address, minerAddress))) { + await sortedOracles.addOracle(stableToken.address, minerAddress) + } await sortedOracles.report( stableToken.address, config.stableToken.goldPrice, diff --git a/packages/protocol/scripts/devchain.ts b/packages/protocol/scripts/devchain.ts index 309dd4ad6ab..220c75430b7 100644 --- a/packages/protocol/scripts/devchain.ts +++ b/packages/protocol/scripts/devchain.ts @@ -42,11 +42,23 @@ yargs 'generate ', 'Create a new devchain directory from scratch', (args) => - args.positional('datadir', { type: 'string', description: 'Data Dir' }).option('upto', { - type: 'number', - description: 'When reset, run upto given migration', - }), - (args) => exitOnError(generateDevChain(args.datadir, { upto: args.upto })) + args + .positional('datadir', { type: 'string', description: 'Data Dir' }) + .option('upto', { + type: 'number', + description: 'When reset, run upto given migration', + }) + .option('migration_override', { + type: 'string', + description: 'Path to JSON containing config values to use in migrations', + }), + (args) => + exitOnError( + generateDevChain(args.datadir, { + upto: args.upto, + migrationOverride: args.migration_override, + }) + ) ).argv async function startGanache(datadir: string, opts: { verbose?: boolean }) { @@ -137,29 +149,44 @@ function createDirIfMissing(dir: string) { } } -function runMigrations(opts: { upto?: number } = {}) { +function runMigrations(opts: { upto?: number; migrationOverride?: string } = {}) { const cmdArgs = ['truffle', 'migrate'] if (opts.upto) { cmdArgs.push('--to') cmdArgs.push(opts.upto.toString()) } + + if (opts.migrationOverride) { + cmdArgs.push('--migration_override') + cmdArgs.push(fs.readFileSync(opts.migrationOverride).toString()) + } return execCmd(`yarn`, cmdArgs, { cwd: ProtocolRoot }) } -async function runDevChain(datadir: string, opts: { reset?: boolean; upto?: number } = {}) { +async function runDevChain( + datadir: string, + opts: { reset?: boolean; upto?: number; migrationOverride?: string } = {} +) { if (opts.reset) { await resetDir(datadir) } createDirIfMissing(datadir) const stopGanache = await startGanache(datadir, { verbose: true }) if (opts.reset) { - await runMigrations({ upto: opts.upto }) + await runMigrations({ upto: opts.upto, migrationOverride: opts.migrationOverride }) } return stopGanache } -async function generateDevChain(datadir: string, opts: { upto?: number } = {}) { - const stopGanache = await runDevChain(datadir, { reset: true, upto: opts.upto }) +async function generateDevChain( + datadir: string, + opts: { upto?: number; migrationOverride?: string } = {} +) { + const stopGanache = await runDevChain(datadir, { + reset: true, + upto: opts.upto, + migrationOverride: opts.migrationOverride, + }) await stopGanache() } diff --git a/yarn.lock b/yarn.lock index bfdc6be3d83..b4d1318315a 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2276,6 +2276,25 @@ web3-eth-abi "1.0.0-beta.37" web3-utils "1.0.0-beta.37" +"@celo/contractkit@0.1.6": + version "0.1.6" + resolved "https://registry.yarnpkg.com/@celo/contractkit/-/contractkit-0.1.6.tgz#c4f6d5003694cc28853f7331b5c0597a208a389d" + integrity sha512-3mEmfOVaqOjyAT5mHWAESYdcKTvZPDDCkkh7GVDDpq7sPhnZ5dGX5oT26XzMLhe8TfdTQMzp6B22EDaPjOLx8A== + dependencies: + "@0x/subproviders" "^5.0.0" + "@celo/utils" "^0.1.0" + "@types/debug" "^4.1.5" + bignumber.js "^7.2.0" + cross-fetch "3.0.4" + debug "^4.1.1" + eth-lib "^0.2.8" + fp-ts "2.0.5" + io-ts "2.0.1" + web3 "1.0.0-beta.37" + web3-core-helpers "1.0.0-beta.37" + web3-eth-abi "1.0.0-beta.37" + web3-utils "1.0.0-beta.37" + "@celo/dev-cli@^2.0.3": version "2.0.3" resolved "https://registry.yarnpkg.com/@celo/dev-cli/-/dev-cli-2.0.3.tgz#67f61dfee373ad8b412925e386cf122aabada5f5" From e5fee8725f9739144709d25a5facb0285de6abd2 Mon Sep 17 00:00:00 2001 From: Audrey Penven Date: Fri, 18 Oct 2019 16:36:50 +0200 Subject: [PATCH 16/40] don't need to use ts-ignore if you fill an empty block with a comment --- packages/contractkit/src/wrappers/SortedOracles.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/contractkit/src/wrappers/SortedOracles.test.ts b/packages/contractkit/src/wrappers/SortedOracles.test.ts index aaa653d4668..6b26fb0c367 100644 --- a/packages/contractkit/src/wrappers/SortedOracles.test.ts +++ b/packages/contractkit/src/wrappers/SortedOracles.test.ts @@ -104,9 +104,9 @@ testWithGanache('SortedOracles Wrapper', (web3) => { try { const tx = await sortedOracles.report(CeloContract.StableToken, numerator, denominator) await tx.sendAndWaitForReceipt() - // @ts-ignore - Ignore empty block: we don't need to do anything with this error } catch (err) { - // @ts-ignore + // We don't need to do anything with this error other than catch it so + // it doesn't fail this test. } finally { const resultingRates = await sortedOracles.getRates(CeloContract.StableToken) expect(resultingRates).toMatchObject(initialRates) From 86c1a57c3f3ebe6aa9042b33d00be4398d84e852 Mon Sep 17 00:00:00 2001 From: Audrey Penven Date: Fri, 18 Oct 2019 16:49:13 +0200 Subject: [PATCH 17/40] start with an empty array for priceOracleAccounts just to have this config value defined --- packages/protocol/migrationsConfig.js | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/protocol/migrationsConfig.js b/packages/protocol/migrationsConfig.js index d8499adc68c..e6270f37d90 100644 --- a/packages/protocol/migrationsConfig.js +++ b/packages/protocol/migrationsConfig.js @@ -65,6 +65,7 @@ const DefaultConfig = { inflationRate: 1.00009591886, inflationPeriod: 7 * 24 * 60 * 60, // 1 week initialAccounts: [], + priceOracleAccounts: [], }, validators: { registrationRequirements: { From 14590597bce9518e460345931b371f6c31877af3 Mon Sep 17 00:00:00 2001 From: Audrey Penven Date: Mon, 21 Oct 2019 12:58:02 +0200 Subject: [PATCH 18/40] I don't know how versioning works --- packages/contractkit/package.json | 2 +- yarn.lock | 19 ------------------- 2 files changed, 1 insertion(+), 20 deletions(-) diff --git a/packages/contractkit/package.json b/packages/contractkit/package.json index 3e137437f4f..8ebd233ea1c 100644 --- a/packages/contractkit/package.json +++ b/packages/contractkit/package.json @@ -1,6 +1,6 @@ { "name": "@celo/contractkit", - "version": "0.1.7", + "version": "0.1.6", "description": "Celo's ContractKit to interact with Celo network", "main": "./lib/index.js", "types": "./lib/index.d.ts", diff --git a/yarn.lock b/yarn.lock index b4d1318315a..bfdc6be3d83 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2276,25 +2276,6 @@ web3-eth-abi "1.0.0-beta.37" web3-utils "1.0.0-beta.37" -"@celo/contractkit@0.1.6": - version "0.1.6" - resolved "https://registry.yarnpkg.com/@celo/contractkit/-/contractkit-0.1.6.tgz#c4f6d5003694cc28853f7331b5c0597a208a389d" - integrity sha512-3mEmfOVaqOjyAT5mHWAESYdcKTvZPDDCkkh7GVDDpq7sPhnZ5dGX5oT26XzMLhe8TfdTQMzp6B22EDaPjOLx8A== - dependencies: - "@0x/subproviders" "^5.0.0" - "@celo/utils" "^0.1.0" - "@types/debug" "^4.1.5" - bignumber.js "^7.2.0" - cross-fetch "3.0.4" - debug "^4.1.1" - eth-lib "^0.2.8" - fp-ts "2.0.5" - io-ts "2.0.1" - web3 "1.0.0-beta.37" - web3-core-helpers "1.0.0-beta.37" - web3-eth-abi "1.0.0-beta.37" - web3-utils "1.0.0-beta.37" - "@celo/dev-cli@^2.0.3": version "2.0.3" resolved "https://registry.yarnpkg.com/@celo/dev-cli/-/dev-cli-2.0.3.tgz#67f61dfee373ad8b412925e386cf122aabada5f5" From c9054dc8afc52bd14f94a5515307615f1b005d6a Mon Sep 17 00:00:00 2001 From: Audrey Penven Date: Mon, 21 Oct 2019 13:29:32 +0200 Subject: [PATCH 19/40] bump version of contractkit --- packages/blockchain-api/package.json | 2 +- packages/celotool/package.json | 2 +- packages/contractkit/package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/blockchain-api/package.json b/packages/blockchain-api/package.json index 192eab852bf..20f94e156bc 100644 --- a/packages/blockchain-api/package.json +++ b/packages/blockchain-api/package.json @@ -17,7 +17,7 @@ "deploy": "./deploy.sh" }, "dependencies": { - "@celo/contractkit": "0.1.6", + "@celo/contractkit": "0.1.7", "apollo-datasource-rest": "^0.3.1", "apollo-server-express": "^2.4.2", "bignumber.js": "^7.2.0", diff --git a/packages/celotool/package.json b/packages/celotool/package.json index fd4d2039aba..f7c6b1fea6e 100644 --- a/packages/celotool/package.json +++ b/packages/celotool/package.json @@ -9,7 +9,7 @@ "@celo/verification-pool-api": "^1.0.0", "@celo/utils": "^0.1.0", "@celo/walletkit": "^0.0.14", - "@celo/contractkit": "0.1.6", + "@celo/contractkit": "0.1.7", "@google-cloud/monitoring": "0.7.1", "@google-cloud/pubsub": "^0.28.1", "@google-cloud/storage": "^2.4.3", diff --git a/packages/contractkit/package.json b/packages/contractkit/package.json index 8ebd233ea1c..3e137437f4f 100644 --- a/packages/contractkit/package.json +++ b/packages/contractkit/package.json @@ -1,6 +1,6 @@ { "name": "@celo/contractkit", - "version": "0.1.6", + "version": "0.1.7", "description": "Celo's ContractKit to interact with Celo network", "main": "./lib/index.js", "types": "./lib/index.d.ts", From 234ce6f16d36715def883f9d035544a9a49f5d3c Mon Sep 17 00:00:00 2001 From: Audrey Penven Date: Mon, 21 Oct 2019 15:10:47 +0200 Subject: [PATCH 20/40] bumping the version isn't necessary --- packages/blockchain-api/package.json | 2 +- packages/celotool/package.json | 2 +- packages/contractkit/package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/blockchain-api/package.json b/packages/blockchain-api/package.json index 20f94e156bc..192eab852bf 100644 --- a/packages/blockchain-api/package.json +++ b/packages/blockchain-api/package.json @@ -17,7 +17,7 @@ "deploy": "./deploy.sh" }, "dependencies": { - "@celo/contractkit": "0.1.7", + "@celo/contractkit": "0.1.6", "apollo-datasource-rest": "^0.3.1", "apollo-server-express": "^2.4.2", "bignumber.js": "^7.2.0", diff --git a/packages/celotool/package.json b/packages/celotool/package.json index f7c6b1fea6e..fd4d2039aba 100644 --- a/packages/celotool/package.json +++ b/packages/celotool/package.json @@ -9,7 +9,7 @@ "@celo/verification-pool-api": "^1.0.0", "@celo/utils": "^0.1.0", "@celo/walletkit": "^0.0.14", - "@celo/contractkit": "0.1.7", + "@celo/contractkit": "0.1.6", "@google-cloud/monitoring": "0.7.1", "@google-cloud/pubsub": "^0.28.1", "@google-cloud/storage": "^2.4.3", diff --git a/packages/contractkit/package.json b/packages/contractkit/package.json index 3e137437f4f..8ebd233ea1c 100644 --- a/packages/contractkit/package.json +++ b/packages/contractkit/package.json @@ -1,6 +1,6 @@ { "name": "@celo/contractkit", - "version": "0.1.7", + "version": "0.1.6", "description": "Celo's ContractKit to interact with Celo network", "main": "./lib/index.js", "types": "./lib/index.d.ts", From e63721d0170181edfbb31dadb41f5808930c8e5d Mon Sep 17 00:00:00 2001 From: Audrey Penven Date: Mon, 21 Oct 2019 15:25:40 +0200 Subject: [PATCH 21/40] cleanup messy merge --- packages/contractkit/src/test-utils/ganache.setup.ts | 3 --- .../contractkit/src/test-utils/network-config.json | 11 ----------- .../contractkit/src/wrappers/SortedOracles.test.ts | 8 ++++---- 3 files changed, 4 insertions(+), 18 deletions(-) delete mode 100644 packages/contractkit/src/test-utils/network-config.json diff --git a/packages/contractkit/src/test-utils/ganache.setup.ts b/packages/contractkit/src/test-utils/ganache.setup.ts index cbb61839a76..ccb8acd6d73 100644 --- a/packages/contractkit/src/test-utils/ganache.setup.ts +++ b/packages/contractkit/src/test-utils/ganache.setup.ts @@ -4,9 +4,6 @@ import * as fs from 'fs' import * as path from 'path' const MNEMONIC = 'concert load couple harbor equip island argue ramp clarify fence smart topic' -export const NetworkConfig = JSON.parse( - fs.readFileSync('src/test-utils/network-config.json').toString() -) // This file specifies accounts available when ganache is running. These are derived // from the MNEMONIC diff --git a/packages/contractkit/src/test-utils/network-config.json b/packages/contractkit/src/test-utils/network-config.json deleted file mode 100644 index d0649b667c5..00000000000 --- a/packages/contractkit/src/test-utils/network-config.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "stableToken": { - "initialAccounts": [], - "priceOracleAccounts": [ - "0x5409ED021D9299bf6814279A6A1411A7e866A631", - "0xE36Ea790bc9d7AB70C55260C66D52b1eca985f84", - "0x06cEf8E666768cC40Cc78CF93d9611019dDcB628", - "0x7457d5E02197480Db681D3fdF256c7acA21bDc12" - ] - } -} diff --git a/packages/contractkit/src/wrappers/SortedOracles.test.ts b/packages/contractkit/src/wrappers/SortedOracles.test.ts index 6b26fb0c367..e5ccf8388b4 100644 --- a/packages/contractkit/src/wrappers/SortedOracles.test.ts +++ b/packages/contractkit/src/wrappers/SortedOracles.test.ts @@ -10,10 +10,10 @@ TEST NOTES: */ testWithGanache('SortedOracles Wrapper', (web3) => { - // NOTE: These values are set in test-utils/network-config.json, and are derived - // from the MNEMONIC. If the MNEMONIC has changed, these will need to be reset. - // To do that, look at the output of web3.eth.getAccounts(), and pick a few - // addresses from that set to be oracles + // NOTE: These values are set in test-utils/migration-override.json, and are + // derived from the MNEMONIC. If the MNEMONIC has changed, these will need to + // be reset. To do that, look at the output of web3.eth.getAccounts(), and + // pick a few addresses from that set to be oracles. const stableTokenOracles: Address[] = NetworkConfig.stableToken.priceOracleAccounts const oracleAddress = stableTokenOracles[stableTokenOracles.length - 1] From a7d27b030daf1864e61a63bc080e6f51b53a039e Mon Sep 17 00:00:00 2001 From: Audrey Penven Date: Mon, 21 Oct 2019 16:26:24 +0200 Subject: [PATCH 22/40] pass in the oracle address to report from, rather than relying on kit.defaultAddress --- .../src/test-utils/ganache-test.ts | 7 ++ .../src/test-utils/ganache.setup.ts | 7 -- .../src/wrappers/SortedOracles.test.ts | 67 +++++++++++++------ .../contractkit/src/wrappers/SortedOracles.ts | 32 +++++---- 4 files changed, 71 insertions(+), 42 deletions(-) diff --git a/packages/contractkit/src/test-utils/ganache-test.ts b/packages/contractkit/src/test-utils/ganache-test.ts index 977f980db3f..d1805081f8c 100644 --- a/packages/contractkit/src/test-utils/ganache-test.ts +++ b/packages/contractkit/src/test-utils/ganache-test.ts @@ -1,7 +1,14 @@ +import * as fs from 'fs' import Web3 from 'web3' import { JsonRPCResponse } from 'web3/providers' import { injectDebugProvider } from '../providers/debug-provider' +// This file specifies accounts available when ganache is running. These are derived +// from the MNEMONIC +export const NetworkConfig = JSON.parse( + fs.readFileSync('src/test-utils/migration-override.json').toString() +) + export function jsonRpcCall(web3: Web3, method: string, params: any[]): Promise { return new Promise((resolve, reject) => { web3.currentProvider.send( diff --git a/packages/contractkit/src/test-utils/ganache.setup.ts b/packages/contractkit/src/test-utils/ganache.setup.ts index ccb8acd6d73..de02dd978c3 100644 --- a/packages/contractkit/src/test-utils/ganache.setup.ts +++ b/packages/contractkit/src/test-utils/ganache.setup.ts @@ -1,16 +1,9 @@ // @ts-ignore import * as ganache from '@celo/ganache-cli' -import * as fs from 'fs' import * as path from 'path' const MNEMONIC = 'concert load couple harbor equip island argue ramp clarify fence smart topic' -// This file specifies accounts available when ganache is running. These are derived -// from the MNEMONIC -export const NetworkConfig = JSON.parse( - fs.readFileSync('src/test-utils/migration-override.json').toString() -) - export async function startGanache(datadir: string, opts: { verbose?: boolean } = {}) { const logFn = opts.verbose ? // tslint:disable-next-line: no-console diff --git a/packages/contractkit/src/wrappers/SortedOracles.test.ts b/packages/contractkit/src/wrappers/SortedOracles.test.ts index 6b26fb0c367..b179bbb4903 100644 --- a/packages/contractkit/src/wrappers/SortedOracles.test.ts +++ b/packages/contractkit/src/wrappers/SortedOracles.test.ts @@ -1,7 +1,6 @@ import { Address, CeloContract } from '../base' import { newKitFromWeb3 } from '../kit' -import { testWithGanache } from '../test-utils/ganache-test' -import { NetworkConfig } from '../test-utils/ganache.setup' +import { NetworkConfig, testWithGanache } from '../test-utils/ganache-test' import { OracleRate, SortedOraclesWrapper } from './SortedOracles' /* @@ -18,16 +17,18 @@ testWithGanache('SortedOracles Wrapper', (web3) => { const oracleAddress = stableTokenOracles[stableTokenOracles.length - 1] const kit = newKitFromWeb3(web3) + let allAccounts: Address[] let sortedOracles: SortedOraclesWrapper - let stableTokenAddress: string - let nonOracleAddresses: Address[] + let stableTokenAddress: Address + let nonOracleAddress: Address beforeAll(async () => { sortedOracles = await kit.contracts.getSortedOracles() stableTokenAddress = await kit.registry.addressFor(CeloContract.StableToken) - nonOracleAddresses = (await web3.eth.getAccounts()).filter((addr) => { + allAccounts = await web3.eth.getAccounts() + nonOracleAddress = allAccounts.find((addr) => { return !stableTokenOracles.includes(addr) - }) + })! }) describe('#report', () => { @@ -35,12 +36,15 @@ testWithGanache('SortedOracles Wrapper', (web3) => { const denominator = 1 describe('when reporting from a whitelisted Oracle', () => { - beforeAll(() => (kit.defaultAccount = oracleAddress)) - it('should be able to report a rate', async () => { const initialRates: OracleRate[] = await sortedOracles.getRates(CeloContract.StableToken) - const tx = await sortedOracles.report(CeloContract.StableToken, numerator, denominator) + const tx = await sortedOracles.report( + CeloContract.StableToken, + numerator, + denominator, + oracleAddress + ) await tx.sendAndWaitForReceipt() const resultingRates: OracleRate[] = await sortedOracles.getRates(CeloContract.StableToken) @@ -51,12 +55,14 @@ testWithGanache('SortedOracles Wrapper', (web3) => { beforeEach(async () => { const rates = [15, 20, 17] for (let i = 0; i < stableTokenOracles.length - 1; i++) { - kit.defaultAccount = stableTokenOracles[i] - const tx = await sortedOracles.report(CeloContract.StableToken, rates[i], denominator) + const tx = await sortedOracles.report( + CeloContract.StableToken, + rates[i], + denominator, + stableTokenOracles[i] + ) await tx.sendAndWaitForReceipt() } - - kit.defaultAccount = oracleAddress }) const expectedLesserKey = stableTokenOracles[0] @@ -70,7 +76,12 @@ testWithGanache('SortedOracles Wrapper', (web3) => { ] it('passes the correct lesserKey and greaterKey as args', async () => { - const tx = await sortedOracles.report(CeloContract.StableToken, numerator, denominator) + const tx = await sortedOracles.report( + CeloContract.StableToken, + numerator, + denominator, + oracleAddress + ) const actualArgs = tx.txo.arguments expect(actualArgs[3]).toEqual(expectedLesserKey) expect(actualArgs[4]).toEqual(expectedGreaterKey) @@ -79,7 +90,12 @@ testWithGanache('SortedOracles Wrapper', (web3) => { }) it('inserts the new record in the right place', async () => { - const tx = await sortedOracles.report(CeloContract.StableToken, numerator, denominator) + const tx = await sortedOracles.report( + CeloContract.StableToken, + numerator, + denominator, + oracleAddress + ) await tx.sendAndWaitForReceipt() const resultingRates: OracleRate[] = await sortedOracles.getRates( @@ -92,17 +108,25 @@ testWithGanache('SortedOracles Wrapper', (web3) => { }) describe('when reporting from a non-oracle address', () => { - beforeAll(() => (kit.defaultAccount = nonOracleAddresses[0])) - it('should raise an error', async () => { - const tx = await sortedOracles.report(CeloContract.StableToken, numerator, denominator) + const tx = await sortedOracles.report( + CeloContract.StableToken, + numerator, + denominator, + nonOracleAddress + ) await expect(tx.sendAndWaitForReceipt()).rejects.toThrow('sender was not an oracle') }) it('should not change the list of rates', async () => { const initialRates = await sortedOracles.getRates(CeloContract.StableToken) try { - const tx = await sortedOracles.report(CeloContract.StableToken, numerator, denominator) + const tx = await sortedOracles.report( + CeloContract.StableToken, + numerator, + denominator, + nonOracleAddress + ) await tx.sendAndWaitForReceipt() } catch (err) { // We don't need to do anything with this error other than catch it so @@ -141,7 +165,7 @@ testWithGanache('SortedOracles Wrapper', (web3) => { expect(await sortedOracles.isOracle(CeloContract.StableToken, oracleAddress)).toEqual(true) }) it('returns false when this address is not an oracle', async () => { - expect(await sortedOracles.isOracle(CeloContract.StableToken, nonOracleAddresses[0])).toEqual( + expect(await sortedOracles.isOracle(CeloContract.StableToken, nonOracleAddress)).toEqual( false ) }) @@ -186,9 +210,8 @@ testWithGanache('SortedOracles Wrapper', (web3) => { }) describe('reportStableToken', () => { - beforeEach(() => (kit.defaultAccount = oracleAddress)) it('calls report with the address for StableToken', async () => { - const tx = await sortedOracles.reportStableToken(14, 1) + const tx = await sortedOracles.reportStableToken(14, 1, oracleAddress) await tx.sendAndWaitForReceipt() expect(tx.txo.arguments[0]).toEqual(stableTokenAddress) }) diff --git a/packages/contractkit/src/wrappers/SortedOracles.ts b/packages/contractkit/src/wrappers/SortedOracles.ts index 85302eb342b..eab43e02939 100644 --- a/packages/contractkit/src/wrappers/SortedOracles.ts +++ b/packages/contractkit/src/wrappers/SortedOracles.ts @@ -85,19 +85,22 @@ export class SortedOraclesWrapper extends BaseWrapper { async report( token: CeloToken, numerator: number, - denominator: number + denominator: number, + oracleAddress: Address ): Promise> { const tokenAddress = await this.kit.registry.addressFor(token) const { lesserKey, greaterKey } = await this.findLesserAndGreaterKeys( token, numerator, - denominator + denominator, + oracleAddress ) return toTransactionObject( this.kit, - this.contract.methods.report(tokenAddress, numerator, denominator, lesserKey, greaterKey) + this.contract.methods.report(tokenAddress, numerator, denominator, lesserKey, greaterKey), + { from: oracleAddress } ) } @@ -109,9 +112,10 @@ export class SortedOraclesWrapper extends BaseWrapper { */ async reportStableToken( numerator: number, - denominator: number + denominator: number, + oracleAddress: Address ): Promise> { - return this.report(CeloContract.StableToken, numerator, denominator) + return this.report(CeloContract.StableToken, numerator, denominator, oracleAddress) } /** @@ -153,7 +157,8 @@ export class SortedOraclesWrapper extends BaseWrapper { private async findLesserAndGreaterKeys( token: CeloToken, numerator: number, - denominator: number + denominator: number, + oracleAddress: Address ): Promise<{ lesserKey: Address; greaterKey: Address }> { const currentRates: OracleRate[] = await this.getRates(token) const internalDenominator = new BigNumber(await this.contract.methods.DENOMINATOR().call()) @@ -162,21 +167,22 @@ export class SortedOraclesWrapper extends BaseWrapper { // To figure out where this new report goes in the list, we need to compare this // value with the other rates const value = internalDenominator.times(numerator).div(denominator) + let greaterKey = NULL_ADDRESS + let lesserKey = NULL_ADDRESS // This leverages the fact that the currentRates are already sorted from // greatest to lowest value for (const rate of currentRates) { - if (!eqAddress(rate.address, this.kit.defaultAccount)) { - if (rate.rate.isGreaterThanOrEqualTo(value)) { - greaterKey = rate.address - } else if (rate.rate.isLessThanOrEqualTo(value)) { - return { lesserKey: rate.address, greaterKey } + if (!eqAddress(rate.address, oracleAddress)) { + if (rate.rate.isLessThanOrEqualTo(value)) { + lesserKey = rate.address + break } + greaterKey = rate.address } } - // If a lesserKey hasn't been found, this item belongs at the tail - return { lesserKey: NULL_ADDRESS, greaterKey } + return { lesserKey, greaterKey } } } From 0aa7fd32439cf4067d31633900b5b7e7ac3735bf Mon Sep 17 00:00:00 2001 From: Audrey Penven Date: Mon, 21 Oct 2019 17:21:53 +0200 Subject: [PATCH 23/40] tests that the numerator/denominator division happens --- .../src/wrappers/SortedOracles.test.ts | 24 ++++++++++++++++++- .../contractkit/src/wrappers/SortedOracles.ts | 20 ++++++++++------ 2 files changed, 36 insertions(+), 8 deletions(-) diff --git a/packages/contractkit/src/wrappers/SortedOracles.test.ts b/packages/contractkit/src/wrappers/SortedOracles.test.ts index b179bbb4903..e76c8849c47 100644 --- a/packages/contractkit/src/wrappers/SortedOracles.test.ts +++ b/packages/contractkit/src/wrappers/SortedOracles.test.ts @@ -1,3 +1,4 @@ +import BigNumber from 'bignumber.js' import { Address, CeloContract } from '../base' import { newKitFromWeb3 } from '../kit' import { NetworkConfig, testWithGanache } from '../test-utils/ganache-test' @@ -149,6 +150,20 @@ testWithGanache('SortedOracles Wrapper', (web3) => { * thing to check is if there have been changes to the migrations */ describe('#getRates', () => { + beforeEach(async () => { + for (let i = 0; i < stableTokenOracles.length; i++) { + // reports these values: + // 1/2, 2/2, 3/2, 4/2 + // resulting in: 0.5, 1, 1.5, 2 + const tx = await sortedOracles.report( + CeloContract.StableToken, + i + 1, + 2, + stableTokenOracles[i] + ) + await tx.sendAndWaitForReceipt() + } + }) it('SBAT getRates', async () => { const rates = await sortedOracles.getRates(CeloContract.StableToken) expect(rates.length).toBeGreaterThan(0) @@ -158,6 +173,13 @@ testWithGanache('SortedOracles Wrapper', (web3) => { expect(rate).toHaveProperty('medianRelation') } }) + + it('returns the rate as the result of the calculation numerator/denominator', async () => { + const expectedRates = [4, 3, 2, 1].map((n) => new BigNumber(n).div(2).toString()) + const response = await sortedOracles.getRates(CeloContract.StableToken) + const actualRates = response.map((r) => r.rate.toString()) + expect(actualRates).toEqual(expectedRates) + }) }) describe('#isOracle', () => { @@ -183,7 +205,7 @@ testWithGanache('SortedOracles Wrapper', (web3) => { const returnedMedian = await sortedOracles.medianRate(CeloContract.StableToken) // The value `10` comes from: packages/protocol/migrationsConfig.js: // stableToken.goldPrice - expect(returnedMedian.numerator.div(returnedMedian.denominator)).toEqBigNumber(10) + expect(returnedMedian.rate).toEqBigNumber(10) }) }) diff --git a/packages/contractkit/src/wrappers/SortedOracles.ts b/packages/contractkit/src/wrappers/SortedOracles.ts index eab43e02939..216dcc9c414 100644 --- a/packages/contractkit/src/wrappers/SortedOracles.ts +++ b/packages/contractkit/src/wrappers/SortedOracles.ts @@ -28,8 +28,7 @@ export interface OracleRate { } export interface MedianRate { - numerator: BigNumber - denominator: BigNumber + rate: BigNumber } /** @@ -44,7 +43,7 @@ export class SortedOraclesWrapper extends BaseWrapper { async numRates(token: CeloToken): Promise { const tokenAddress = await this.kit.registry.addressFor(token) const response = await this.contract.methods.numRates(tokenAddress).call() - return new BigNumber(response) + return toBigNumber(response) } /** @@ -56,7 +55,9 @@ export class SortedOraclesWrapper extends BaseWrapper { async medianRate(token: CeloToken): Promise { const tokenAddress = await this.kit.registry.addressFor(token) const response = await this.contract.methods.medianRate(tokenAddress).call() - return { numerator: toBigNumber(response[0]), denominator: toBigNumber(response[1]) } + return { + rate: toBigNumber(response[0]).div(toBigNumber(response[1])), + } } /** @@ -143,17 +144,23 @@ export class SortedOraclesWrapper extends BaseWrapper { const tokenAddress = await this.kit.registry.addressFor(token) const response = await this.contract.methods.getRates(tokenAddress).call() const rates: OracleRate[] = [] + const denominator = await this.getInternalDenominator() + for (let i = 0; i < response[0].length; i++) { const medRelIndex = parseInt(response[2][i], 10) rates.push({ address: response[0][i], - rate: new BigNumber(response[1][i]), + rate: toBigNumber(response[1][i]).div(denominator), medianRelation: medRelIndex, }) } return rates } + private async getInternalDenominator(): Promise { + return toBigNumber(await this.contract.methods.DENOMINATOR().call()) + } + private async findLesserAndGreaterKeys( token: CeloToken, numerator: number, @@ -161,12 +168,11 @@ export class SortedOraclesWrapper extends BaseWrapper { oracleAddress: Address ): Promise<{ lesserKey: Address; greaterKey: Address }> { const currentRates: OracleRate[] = await this.getRates(token) - const internalDenominator = new BigNumber(await this.contract.methods.DENOMINATOR().call()) // This is how the contract calculates the rate from the numerator and denominator. // To figure out where this new report goes in the list, we need to compare this // value with the other rates - const value = internalDenominator.times(numerator).div(denominator) + const value = toBigNumber(numerator.toString()).div(toBigNumber(denominator.toString())) let greaterKey = NULL_ADDRESS let lesserKey = NULL_ADDRESS From 60992abc043571fefbc7d6f006016f809a99b136 Mon Sep 17 00:00:00 2001 From: Audrey Penven Date: Mon, 21 Oct 2019 17:25:51 +0200 Subject: [PATCH 24/40] simplify test expectations - use expected string values --- packages/contractkit/src/wrappers/SortedOracles.test.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/contractkit/src/wrappers/SortedOracles.test.ts b/packages/contractkit/src/wrappers/SortedOracles.test.ts index e76c8849c47..349dde6d439 100644 --- a/packages/contractkit/src/wrappers/SortedOracles.test.ts +++ b/packages/contractkit/src/wrappers/SortedOracles.test.ts @@ -1,4 +1,3 @@ -import BigNumber from 'bignumber.js' import { Address, CeloContract } from '../base' import { newKitFromWeb3 } from '../kit' import { NetworkConfig, testWithGanache } from '../test-utils/ganache-test' @@ -175,7 +174,7 @@ testWithGanache('SortedOracles Wrapper', (web3) => { }) it('returns the rate as the result of the calculation numerator/denominator', async () => { - const expectedRates = [4, 3, 2, 1].map((n) => new BigNumber(n).div(2).toString()) + const expectedRates = ['2', '1.5', '1', '0.5'] const response = await sortedOracles.getRates(CeloContract.StableToken) const actualRates = response.map((r) => r.rate.toString()) expect(actualRates).toEqual(expectedRates) From 810439594b656ec5af72901d647a4aef164fb59b Mon Sep 17 00:00:00 2001 From: Audrey Penven Date: Mon, 21 Oct 2019 17:46:45 +0200 Subject: [PATCH 25/40] cleanup some accidental changes --- packages/contractkit/src/driver.ts | 25 ------------------- .../scripts/python/exchange_rate_sim.py | 12 ++++----- 2 files changed, 6 insertions(+), 31 deletions(-) delete mode 100644 packages/contractkit/src/driver.ts diff --git a/packages/contractkit/src/driver.ts b/packages/contractkit/src/driver.ts deleted file mode 100644 index 5c21103def1..00000000000 --- a/packages/contractkit/src/driver.ts +++ /dev/null @@ -1,25 +0,0 @@ -// import { newKit } from '.' -// import { CeloContract, NULL_ADDRESS } from './base' - -// async function main() { -// const kit = newKit('http://localhost:8545') - -// // const accounts = await kit.web3.eth.getAccounts() -// const firstOracle = '0x5409ED021D9299bf6814279A6A1411A7e866A631' -// kit.defaultAccount = '0xE834EC434DABA538cd1b9Fe1582052B880BD7e63' - -// const sortedOracles = await kit.contracts.getSortedOracles() -// const stableTokenAddress = await kit.registry.addressFor(CeloContract.StableToken) -// const rates = await sortedOracles.getRates(stableTokenAddress) -// console.log(rates) -// const tx = await sortedOracles.report(stableTokenAddress, 25, 1, firstOracle, NULL_ADDRESS).send() -// await tx.waitReceipt() - -// console.log(await sortedOracles.getRates(stableTokenAddress)) -// console.log(`number of rates?? ${await sortedOracles.numRates(stableTokenAddress)}`) -// } - -// main().catch((err) => { -// console.log(err) -// process.exit(1) -// }) diff --git a/packages/protocol/scripts/python/exchange_rate_sim.py b/packages/protocol/scripts/python/exchange_rate_sim.py index 912d5861884..7eb7b3edf81 100644 --- a/packages/protocol/scripts/python/exchange_rate_sim.py +++ b/packages/protocol/scripts/python/exchange_rate_sim.py @@ -33,9 +33,9 @@ plt.plot(t, ex_rates) plt.show() with open('./exchange_rates/oracle_exchange_rates.csv', 'w') as csvfile: - writer = csv.writer(csvfile, delimiter=',', - quotechar='|', quoting=csv.QUOTE_MINIMAL) - timestamp = int(time.time()) - writer.writerow(['timestamp', 'stableValue', 'goldValue']) - for i, rate in enumerate(ex_rates): - writer.writerow([timestamp + i * dt * 24 * 60 * 60, int(rate * 1000), int(ex_rate_start * 1000)]) + writer = csv.writer(csvfile, delimiter=',', + quotechar='|', quoting=csv.QUOTE_MINIMAL) + timestamp = int(time.time()) + writer.writerow(['timestamp', 'stableValue', 'goldValue']) + for i, rate in enumerate(ex_rates): + writer.writerow([timestamp + i * dt * 24 * 60 * 60, int(rate * 1000), int(ex_rate_start * 1000)]) From f905bed1dede81be7eea4dd3f29e1ce0a1b0a4e5 Mon Sep 17 00:00:00 2001 From: Audrey Penven Date: Tue, 22 Oct 2019 11:27:07 +0200 Subject: [PATCH 26/40] remove hardcoded test address --- packages/celotool/src/lib/generate_utils.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/packages/celotool/src/lib/generate_utils.ts b/packages/celotool/src/lib/generate_utils.ts index 15b0428d1b2..8f4be8b33d6 100644 --- a/packages/celotool/src/lib/generate_utils.ts +++ b/packages/celotool/src/lib/generate_utils.ts @@ -142,15 +142,14 @@ export const generateGenesisFromEnv = (enablePetersburg: boolean = true) => { // Assing DEFAULT ammount of gold to 2 faucet accounts const faucetAddresses = getStrippedAddressesFor(AccountType.FAUCET, mnemonic, 2) + const priceOracleAddress = getStrippedAddressesFor(AccountType.PRICE_ORACLE, mnemonic, 1) return generateGenesis({ validators, consensusType, blockTime, - initialAccounts: faucetAddresses - .concat(priceOracleAddress) - .concat('5409ED021D9299bf6814279A6A1411A7e866A631'), + initialAccounts: faucetAddresses.concat(priceOracleAddress), epoch, chainId, requestTimeout, From be794b1f0b3bfcf159703e8f38ef6b02ef50a245 Mon Sep 17 00:00:00 2001 From: Audrey Penven Date: Tue, 22 Oct 2019 17:26:01 +0200 Subject: [PATCH 27/40] numRates can just be a number, rather than a BigNumber --- packages/contractkit/src/wrappers/SortedOracles.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/contractkit/src/wrappers/SortedOracles.ts b/packages/contractkit/src/wrappers/SortedOracles.ts index 216dcc9c414..56657d08248 100644 --- a/packages/contractkit/src/wrappers/SortedOracles.ts +++ b/packages/contractkit/src/wrappers/SortedOracles.ts @@ -40,10 +40,10 @@ export class SortedOraclesWrapper extends BaseWrapper { * @param token The CeloToken token for which the Celo Gold exchange rate is being reported. * @return The number of reported oracle rates for `token`. */ - async numRates(token: CeloToken): Promise { + async numRates(token: CeloToken): Promise { const tokenAddress = await this.kit.registry.addressFor(token) const response = await this.contract.methods.numRates(tokenAddress).call() - return toBigNumber(response) + return toBigNumber(response).toNumber() } /** From e033ad8c22e64ecd1b497118032e1049cadddc76 Mon Sep 17 00:00:00 2001 From: Audrey Penven Date: Wed, 23 Oct 2019 16:10:16 +0200 Subject: [PATCH 28/40] use more recent celo-blockchain/geth commit --- .env | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.env b/.env index d7e98f29754..86c09681b76 100644 --- a/.env +++ b/.env @@ -20,12 +20,12 @@ BLOCKSCOUT_DB_SUFFIX= GETH_NODE_DOCKER_IMAGE_REPOSITORY="us.gcr.io/celo-testnet/geth" # When upgrading change this to latest commit hash from the master of the geth repo # `geth $ git show | head -n 1` -GETH_NODE_DOCKER_IMAGE_TAG="7fbd6f3574f1c1c1e657c152fc63fb771adab3af" +GETH_NODE_DOCKER_IMAGE_TAG="ad0a4e6c231aaf0f407672fb39643d2b28617fe5" GETH_BOOTNODE_DOCKER_IMAGE_REPOSITORY="gcr.io/celo-testnet/geth-all" # When upgrading change this to latest commit hash from the master of the geth repo # `geth $ git show | head -n 1` -GETH_BOOTNODE_DOCKER_IMAGE_TAG="7fbd6f3574f1c1c1e657c152fc63fb771adab3af" +GETH_BOOTNODE_DOCKER_IMAGE_TAG="ad0a4e6c231aaf0f407672fb39643d2b28617fe5" CELOTOOL_DOCKER_IMAGE_REPOSITORY="gcr.io/celo-testnet/celo-monorepo" CELOTOOL_DOCKER_IMAGE_TAG="celotool-dfdc3e8b26e98aa294b27e2b5621c184488a10db" From 41bb9534b72b177ea44643233e682dea6bd2fee1 Mon Sep 17 00:00:00 2001 From: Audrey Penven Date: Wed, 23 Oct 2019 16:11:02 +0200 Subject: [PATCH 29/40] add cli command to report oracle values --- packages/cli/src/commands/oracle/report.ts | 49 +++++++++++++++++++ .../docs/command-line-interface/oracle.md | 24 +++++++++ 2 files changed, 73 insertions(+) create mode 100644 packages/cli/src/commands/oracle/report.ts create mode 100644 packages/docs/command-line-interface/oracle.md diff --git a/packages/cli/src/commands/oracle/report.ts b/packages/cli/src/commands/oracle/report.ts new file mode 100644 index 00000000000..6fec547e391 --- /dev/null +++ b/packages/cli/src/commands/oracle/report.ts @@ -0,0 +1,49 @@ +import { CeloContract, CeloToken } from '@celo/contractkit' +import { flags } from '@oclif/command' +import BigNumber from 'bignumber.js' +import { BaseCommand } from '../../base' +import { displaySendTx, failWith } from '../../utils/cli' +import { Flags } from '../../utils/command' + +export default class ReportPrice extends BaseCommand { + static description = + 'Report the price of Celo Gold in a specified token (currently just Celo Dollar, aka: "StableToken")' + + static flags = { + ...BaseCommand.flags, + from: Flags.address({ required: true, description: 'Address of the oracle account' }), + token: flags.string({ + required: true, + description: 'The token to report on', + }), + price: flags.string({ + required: true, + description: 'The amount of the specified token equal to 1 cGLD', + }), + } + + static example = [ + 'report --token StableToken --price 1.02 --from 0x8c349AAc7065a35B7166f2659d6C35D75A3893C1', + ] + + async run() { + const res = this.parse(ReportPrice) + let token: CeloToken + if (res.flags.token === CeloContract.StableToken) { + token = CeloContract.StableToken + } else { + return failWith(`${res.flags.token} is not a valid token to report on`) + } + + const sortedOracles = await this.kit.contracts.getSortedOracles() + const price = new BigNumber(res.flags.price) + const denominator = new BigNumber(10).pow(price.decimalPlaces()).toNumber() + const numerator = price.multipliedBy(denominator).toNumber() + + await displaySendTx( + 'sortedOracles.report', + await sortedOracles.report(token, numerator, denominator, res.flags.from) + ) + this.log(`Reported oracle value of ${price} ${token} for 1 CeloGold`) + } +} diff --git a/packages/docs/command-line-interface/oracle.md b/packages/docs/command-line-interface/oracle.md new file mode 100644 index 00000000000..b5bdc70b5b7 --- /dev/null +++ b/packages/docs/command-line-interface/oracle.md @@ -0,0 +1,24 @@ +--- +description: Report the price of Celo Gold in a specified token (currently just Celo Dollar, aka: "StableToken") +--- + +## Commands + +### Report + +Report the price of Celo Gold in a specified token (currently just Celo Dollar, aka: "StableToken") + +``` +USAGE + $ celocli oracle:report + +OPTIONS + --from=0xc1912fEE45d61C87Cc5EA59DaE31190FFFFf232d (required) Address of the oracle account + --price=price (required) The amount of the specified token equal to 1 cGLD + --token=token (required) The token to report on + +EXAMPLE + report --token StableToken --price 1.02 --from 0x8c349AAc7065a35B7166f2659d6C35D75A3893C1 +``` + +_See code: [packages/cli/src/commands/oracle/report.ts](https://github.com/celo-org/celo-monorepo/tree/master/packages/cli/src/commands/oracle/report.ts)_ From 32b2076a1ea40497ad27a0fdf6f6c8b4a9818dbf Mon Sep 17 00:00:00 2001 From: Audrey Penven Date: Wed, 23 Oct 2019 19:27:24 +0200 Subject: [PATCH 30/40] undo modification of old exchange rates file --- .../exchange_rates/oracle_exchange_rates.csv | 11522 ++++++++-------- 1 file changed, 5761 insertions(+), 5761 deletions(-) diff --git a/packages/protocol/exchange_rates/oracle_exchange_rates.csv b/packages/protocol/exchange_rates/oracle_exchange_rates.csv index fc7673726fd..73940318bcb 100644 --- a/packages/protocol/exchange_rates/oracle_exchange_rates.csv +++ b/packages/protocol/exchange_rates/oracle_exchange_rates.csv @@ -1,5762 +1,5762 @@ timestamp,stableValue,goldValue -1569594978.0,10000000,10000000 -1569595578.0,10000679,10000000 -1569596178.0,9989254,10000000 -1569596778.0,9943538,10000000 -1569597378.0,9943634,10000000 -1569597978.0,9928599,10000000 -1569598578.0,9909343,10000000 -1569599178.0,9847515,10000000 -1569599778.0,9828017,10000000 -1569600378.0,9818788,10000000 -1569600978.0,9792935,10000000 -1569601578.0,9819538,10000000 -1569602178.0,9891620,10000000 -1569602778.0,9904482,10000000 -1569603378.0,9934352,10000000 -1569603978.0,10010725,10000000 -1569604578.0,10029345,10000000 -1569605178.0,10094661,10000000 -1569605778.0,10057483,10000000 -1569606378.0,10052375,10000000 -1569606978.0,10107511,10000000 -1569607578.0,10136632,10000000 -1569608178.0,10138624,10000000 -1569608778.0,10178129,10000000 -1569609378.0,10194925,10000000 -1569609978.0,10217530,10000000 -1569610578.0,10203064,10000000 -1569611178.0,10212590,10000000 -1569611778.0,10227222,10000000 -1569612378.0,10206659,10000000 -1569612978.0,10118728,10000000 -1569613578.0,10115887,10000000 -1569614178.0,10220550,10000000 -1569614778.0,10108028,10000000 -1569615378.0,10070275,10000000 -1569615978.0,10061378,10000000 -1569616578.0,10073313,10000000 -1569617178.0,10121514,10000000 -1569617778.0,10166214,10000000 -1569618378.0,10222240,10000000 -1569618978.0,10282241,10000000 -1569619578.0,10254805,10000000 -1569620178.0,10253051,10000000 -1569620778.0,10232364,10000000 -1569621378.0,10251637,10000000 -1569621978.0,10236245,10000000 -1569622578.0,10197597,10000000 -1569623178.0,10280038,10000000 -1569623778.0,10274253,10000000 -1569624378.0,10247595,10000000 -1569624978.0,10283523,10000000 -1569625578.0,10232419,10000000 -1569626178.0,10211626,10000000 -1569626778.0,10182449,10000000 -1569627378.0,10099670,10000000 -1569627978.0,9989160,10000000 -1569628578.0,9987392,10000000 -1569629178.0,9960753,10000000 -1569629778.0,9933957,10000000 -1569630378.0,9966484,10000000 -1569630978.0,9929850,10000000 -1569631578.0,10000804,10000000 -1569632178.0,9930955,10000000 -1569632778.0,9816660,10000000 -1569633378.0,9808035,10000000 -1569633978.0,9824912,10000000 -1569634578.0,9893718,10000000 -1569635178.0,9874010,10000000 -1569635778.0,9859173,10000000 -1569636378.0,9852826,10000000 -1569636978.0,9953189,10000000 -1569637578.0,9879081,10000000 -1569638178.0,9893702,10000000 -1569638778.0,9893392,10000000 -1569639378.0,9854522,10000000 -1569639978.0,9839426,10000000 -1569640578.0,9844541,10000000 -1569641178.0,9810147,10000000 -1569641778.0,9810777,10000000 -1569642378.0,9838575,10000000 -1569642978.0,9869973,10000000 -1569643578.0,9851458,10000000 -1569644178.0,9840700,10000000 -1569644778.0,9842779,10000000 -1569645378.0,9878253,10000000 -1569645978.0,9885590,10000000 -1569646578.0,9936128,10000000 -1569647178.0,9957585,10000000 -1569647778.0,9892715,10000000 -1569648378.0,9935603,10000000 -1569648978.0,9909234,10000000 -1569649578.0,9932061,10000000 -1569650178.0,9932360,10000000 -1569650778.0,9971338,10000000 -1569651378.0,9973906,10000000 -1569651978.0,9980442,10000000 -1569652578.0,9912538,10000000 -1569653178.0,9969832,10000000 -1569653778.0,9971506,10000000 -1569654378.0,9955719,10000000 -1569654978.0,10009775,10000000 -1569655578.0,10033847,10000000 -1569656178.0,10044510,10000000 -1569656778.0,10065253,10000000 -1569657378.0,10068481,10000000 -1569657978.0,10024305,10000000 -1569658578.0,9971898,10000000 -1569659178.0,10010834,10000000 -1569659778.0,10055571,10000000 -1569660378.0,10078871,10000000 -1569660978.0,10092498,10000000 -1569661578.0,10134049,10000000 -1569662178.0,10183570,10000000 -1569662778.0,10202164,10000000 -1569663378.0,10245377,10000000 -1569663978.0,10283814,10000000 -1569664578.0,10261770,10000000 -1569665178.0,10297292,10000000 -1569665778.0,10254276,10000000 -1569666378.0,10158886,10000000 -1569666978.0,10188353,10000000 -1569667578.0,10171956,10000000 -1569668178.0,10255176,10000000 -1569668778.0,10202786,10000000 -1569669378.0,10243445,10000000 -1569669978.0,10233820,10000000 -1569670578.0,10246023,10000000 -1569671178.0,10200005,10000000 -1569671778.0,10303227,10000000 -1569672378.0,10291869,10000000 -1569672978.0,10379982,10000000 -1569673578.0,10377096,10000000 -1569674178.0,10325193,10000000 -1569674778.0,10291190,10000000 -1569675378.0,10348518,10000000 -1569675978.0,10324252,10000000 -1569676578.0,10328436,10000000 -1569677178.0,10389343,10000000 -1569677778.0,10436943,10000000 -1569678378.0,10393487,10000000 -1569678978.0,10381507,10000000 -1569679578.0,10449840,10000000 -1569680178.0,10426741,10000000 -1569680778.0,10469220,10000000 -1569681378.0,10479101,10000000 -1569681978.0,10425526,10000000 -1569682578.0,10439425,10000000 -1569683178.0,10414088,10000000 -1569683778.0,10420090,10000000 -1569684378.0,10386468,10000000 -1569684978.0,10415031,10000000 -1569685578.0,10413102,10000000 -1569686178.0,10453463,10000000 -1569686778.0,10406729,10000000 -1569687378.0,10399808,10000000 -1569687978.0,10446734,10000000 -1569688578.0,10501392,10000000 -1569689178.0,10546777,10000000 -1569689778.0,10585338,10000000 -1569690378.0,10553751,10000000 -1569690978.0,10573797,10000000 -1569691578.0,10602971,10000000 -1569692178.0,10615220,10000000 -1569692778.0,10647221,10000000 -1569693378.0,10628540,10000000 -1569693978.0,10664429,10000000 -1569694578.0,10653532,10000000 -1569695178.0,10616997,10000000 -1569695778.0,10552408,10000000 -1569696378.0,10601882,10000000 -1569696978.0,10549816,10000000 -1569697578.0,10505423,10000000 -1569698178.0,10437536,10000000 -1569698778.0,10527431,10000000 -1569699378.0,10611333,10000000 -1569699978.0,10576750,10000000 -1569700578.0,10497301,10000000 -1569701178.0,10464075,10000000 -1569701778.0,10436539,10000000 -1569702378.0,10416028,10000000 -1569702978.0,10432988,10000000 -1569703578.0,10388707,10000000 -1569704178.0,10383569,10000000 -1569704778.0,10400893,10000000 -1569705378.0,10416922,10000000 -1569705978.0,10432465,10000000 -1569706578.0,10407193,10000000 -1569707178.0,10399678,10000000 -1569707778.0,10430730,10000000 -1569708378.0,10373932,10000000 -1569708978.0,10415174,10000000 -1569709578.0,10396292,10000000 -1569710178.0,10437366,10000000 -1569710778.0,10359800,10000000 -1569711378.0,10379053,10000000 -1569711978.0,10355204,10000000 -1569712578.0,10402131,10000000 -1569713178.0,10397546,10000000 -1569713778.0,10353553,10000000 -1569714378.0,10390308,10000000 -1569714978.0,10354147,10000000 -1569715578.0,10303804,10000000 -1569716178.0,10260296,10000000 -1569716778.0,10221906,10000000 -1569717378.0,10187507,10000000 -1569717978.0,10156900,10000000 -1569718578.0,10193903,10000000 -1569719178.0,10234862,10000000 -1569719778.0,10286686,10000000 -1569720378.0,10369019,10000000 -1569720978.0,10392375,10000000 -1569721578.0,10386948,10000000 -1569722178.0,10331858,10000000 -1569722778.0,10312104,10000000 -1569723378.0,10312496,10000000 -1569723978.0,10369518,10000000 -1569724578.0,10342059,10000000 -1569725178.0,10412010,10000000 -1569725778.0,10480770,10000000 -1569726378.0,10470170,10000000 -1569726978.0,10455172,10000000 -1569727578.0,10456261,10000000 -1569728178.0,10422562,10000000 -1569728778.0,10375394,10000000 -1569729378.0,10351706,10000000 -1569729978.0,10373145,10000000 -1569730578.0,10275544,10000000 -1569731178.0,10305922,10000000 -1569731778.0,10376575,10000000 -1569732378.0,10430562,10000000 -1569732978.0,10503145,10000000 -1569733578.0,10438978,10000000 -1569734178.0,10392901,10000000 -1569734778.0,10462408,10000000 -1569735378.0,10480003,10000000 -1569735978.0,10536514,10000000 -1569736578.0,10546448,10000000 -1569737178.0,10574391,10000000 -1569737778.0,10530988,10000000 -1569738378.0,10508309,10000000 -1569738978.0,10550041,10000000 -1569739578.0,10558592,10000000 -1569740178.0,10557633,10000000 -1569740778.0,10595438,10000000 -1569741378.0,10560263,10000000 -1569741978.0,10487572,10000000 -1569742578.0,10451132,10000000 -1569743178.0,10439533,10000000 -1569743778.0,10506522,10000000 -1569744378.0,10465278,10000000 -1569744978.0,10497621,10000000 -1569745578.0,10522610,10000000 -1569746178.0,10559722,10000000 -1569746778.0,10625221,10000000 -1569747378.0,10625724,10000000 -1569747978.0,10673323,10000000 -1569748578.0,10630340,10000000 -1569749178.0,10679199,10000000 -1569749778.0,10696168,10000000 -1569750378.0,10648242,10000000 -1569750978.0,10550144,10000000 -1569751578.0,10545385,10000000 -1569752178.0,10538221,10000000 -1569752778.0,10636666,10000000 -1569753378.0,10737667,10000000 -1569753978.0,10693413,10000000 -1569754578.0,10738915,10000000 -1569755178.0,10734039,10000000 -1569755778.0,10727902,10000000 -1569756378.0,10670576,10000000 -1569756978.0,10659064,10000000 -1569757578.0,10676240,10000000 -1569758178.0,10649319,10000000 -1569758778.0,10679716,10000000 -1569759378.0,10685804,10000000 -1569759978.0,10764890,10000000 -1569760578.0,10801349,10000000 -1569761178.0,10823249,10000000 -1569761778.0,10831087,10000000 -1569762378.0,10814852,10000000 -1569762978.0,10859019,10000000 -1569763578.0,10834426,10000000 -1569764178.0,10869237,10000000 -1569764778.0,10868340,10000000 -1569765378.0,10876720,10000000 -1569765978.0,10969213,10000000 -1569766578.0,11003930,10000000 -1569767178.0,11040219,10000000 -1569767778.0,11023020,10000000 -1569768378.0,11025050,10000000 -1569768978.0,11035143,10000000 -1569769578.0,11002358,10000000 -1569770178.0,10959865,10000000 -1569770778.0,10971903,10000000 -1569771378.0,11031924,10000000 -1569771978.0,10978899,10000000 -1569772578.0,10986079,10000000 -1569773178.0,10955314,10000000 -1569773778.0,10978005,10000000 -1569774378.0,10994636,10000000 -1569774978.0,10937471,10000000 -1569775578.0,10883911,10000000 -1569776178.0,10905407,10000000 -1569776778.0,10913532,10000000 -1569777378.0,10929785,10000000 -1569777978.0,10957789,10000000 -1569778578.0,10987912,10000000 -1569779178.0,11092624,10000000 -1569779778.0,11111826,10000000 -1569780378.0,11114945,10000000 -1569780978.0,11101652,10000000 -1569781578.0,11176623,10000000 -1569782178.0,11226172,10000000 -1569782778.0,11197588,10000000 -1569783378.0,11150014,10000000 -1569783978.0,11101653,10000000 -1569784578.0,11144154,10000000 -1569785178.0,11192903,10000000 -1569785778.0,11203021,10000000 -1569786378.0,11115896,10000000 -1569786978.0,11054568,10000000 -1569787578.0,11072107,10000000 -1569788178.0,11071225,10000000 -1569788778.0,11075419,10000000 -1569789378.0,11066641,10000000 -1569789978.0,11044342,10000000 -1569790578.0,11058699,10000000 -1569791178.0,11051223,10000000 -1569791778.0,10973739,10000000 -1569792378.0,10949414,10000000 -1569792978.0,10963664,10000000 -1569793578.0,10946838,10000000 -1569794178.0,10978479,10000000 -1569794778.0,11057391,10000000 -1569795378.0,10995823,10000000 -1569795978.0,11144592,10000000 -1569796578.0,11123302,10000000 -1569797178.0,11116959,10000000 -1569797778.0,11145204,10000000 -1569798378.0,11081498,10000000 -1569798978.0,11086671,10000000 -1569799578.0,11088449,10000000 -1569800178.0,11064978,10000000 -1569800778.0,11079331,10000000 -1569801378.0,11049251,10000000 -1569801978.0,11052147,10000000 -1569802578.0,10980283,10000000 -1569803178.0,11007289,10000000 -1569803778.0,11050809,10000000 -1569804378.0,11134616,10000000 -1569804978.0,11102015,10000000 -1569805578.0,11131157,10000000 -1569806178.0,11119428,10000000 -1569806778.0,11163570,10000000 -1569807378.0,11092945,10000000 -1569807978.0,11064358,10000000 -1569808578.0,11061436,10000000 -1569809178.0,11135954,10000000 -1569809778.0,11058731,10000000 -1569810378.0,11092932,10000000 -1569810978.0,11091594,10000000 -1569811578.0,11109316,10000000 -1569812178.0,11084850,10000000 -1569812778.0,11016468,10000000 -1569813378.0,11075889,10000000 -1569813978.0,11027453,10000000 -1569814578.0,11035171,10000000 -1569815178.0,10988027,10000000 -1569815778.0,11001000,10000000 -1569816378.0,11056043,10000000 -1569816978.0,11071466,10000000 -1569817578.0,11043495,10000000 -1569818178.0,11038265,10000000 -1569818778.0,11055419,10000000 -1569819378.0,10989054,10000000 -1569819978.0,11014488,10000000 -1569820578.0,11021515,10000000 -1569821178.0,11008235,10000000 -1569821778.0,11035571,10000000 -1569822378.0,11060662,10000000 -1569822978.0,11062606,10000000 -1569823578.0,11054099,10000000 -1569824178.0,11028063,10000000 -1569824778.0,11047844,10000000 -1569825378.0,11122783,10000000 -1569825978.0,11150294,10000000 -1569826578.0,11185575,10000000 -1569827178.0,11127420,10000000 -1569827778.0,11057168,10000000 -1569828378.0,11088400,10000000 -1569828978.0,11062112,10000000 -1569829578.0,11116496,10000000 -1569830178.0,11107128,10000000 -1569830778.0,11100892,10000000 -1569831378.0,11121251,10000000 -1569831978.0,11104667,10000000 -1569832578.0,11001156,10000000 -1569833178.0,11063583,10000000 -1569833778.0,11049837,10000000 -1569834378.0,11070722,10000000 -1569834978.0,11043730,10000000 -1569835578.0,11027394,10000000 -1569836178.0,11022457,10000000 -1569836778.0,11055185,10000000 -1569837378.0,11076039,10000000 -1569837978.0,11004715,10000000 -1569838578.0,11034309,10000000 -1569839178.0,11041917,10000000 -1569839778.0,11039511,10000000 -1569840378.0,11082871,10000000 -1569840978.0,10990883,10000000 -1569841578.0,11003190,10000000 -1569842178.0,11001379,10000000 -1569842778.0,11037970,10000000 -1569843378.0,11061351,10000000 -1569843978.0,11105194,10000000 -1569844578.0,11054060,10000000 -1569845178.0,11100111,10000000 -1569845778.0,11039261,10000000 -1569846378.0,11035362,10000000 -1569846978.0,11016637,10000000 -1569847578.0,11045498,10000000 -1569848178.0,11037653,10000000 -1569848778.0,11059457,10000000 -1569849378.0,11085563,10000000 -1569849978.0,11073262,10000000 -1569850578.0,11115413,10000000 -1569851178.0,11127032,10000000 -1569851778.0,11041033,10000000 -1569852378.0,10995273,10000000 -1569852978.0,10958266,10000000 -1569853578.0,10950834,10000000 -1569854178.0,10927271,10000000 -1569854778.0,10949269,10000000 -1569855378.0,10921844,10000000 -1569855978.0,10960382,10000000 -1569856578.0,10979766,10000000 -1569857178.0,10906468,10000000 -1569857778.0,10900918,10000000 -1569858378.0,10869623,10000000 -1569858978.0,10897202,10000000 -1569859578.0,10966415,10000000 -1569860178.0,10901727,10000000 -1569860778.0,10888575,10000000 -1569861378.0,10992355,10000000 -1569861978.0,10937795,10000000 -1569862578.0,10964531,10000000 -1569863178.0,10875185,10000000 -1569863778.0,10866662,10000000 -1569864378.0,10848765,10000000 -1569864978.0,10790261,10000000 -1569865578.0,10736193,10000000 -1569866178.0,10775116,10000000 -1569866778.0,10769331,10000000 -1569867378.0,10832994,10000000 -1569867978.0,10796398,10000000 -1569868578.0,10778180,10000000 -1569869178.0,10842325,10000000 -1569869778.0,10930856,10000000 -1569870378.0,10969458,10000000 -1569870978.0,10990256,10000000 -1569871578.0,11020457,10000000 -1569872178.0,11018591,10000000 -1569872778.0,11122178,10000000 -1569873378.0,11171579,10000000 -1569873978.0,11138880,10000000 -1569874578.0,11203538,10000000 -1569875178.0,11189339,10000000 -1569875778.0,11192740,10000000 -1569876378.0,11214234,10000000 -1569876978.0,11171223,10000000 -1569877578.0,11198818,10000000 -1569878178.0,11301722,10000000 -1569878778.0,11258250,10000000 -1569879378.0,11183765,10000000 -1569879978.0,11170457,10000000 -1569880578.0,11149497,10000000 -1569881178.0,11205457,10000000 -1569881778.0,11155043,10000000 -1569882378.0,11246355,10000000 -1569882978.0,11195410,10000000 -1569883578.0,11215910,10000000 -1569884178.0,11315909,10000000 -1569884778.0,11384050,10000000 -1569885378.0,11432584,10000000 -1569885978.0,11432261,10000000 -1569886578.0,11447372,10000000 -1569887178.0,11411552,10000000 -1569887778.0,11496188,10000000 -1569888378.0,11475335,10000000 -1569888978.0,11458745,10000000 -1569889578.0,11453817,10000000 -1569890178.0,11446189,10000000 -1569890778.0,11417608,10000000 -1569891378.0,11412774,10000000 -1569891978.0,11397843,10000000 -1569892578.0,11428498,10000000 -1569893178.0,11463130,10000000 -1569893778.0,11455887,10000000 -1569894378.0,11445186,10000000 -1569894978.0,11326473,10000000 -1569895578.0,11327774,10000000 -1569896178.0,11292633,10000000 -1569896778.0,11245893,10000000 -1569897378.0,11292397,10000000 -1569897978.0,11259926,10000000 -1569898578.0,11257715,10000000 -1569899178.0,11332385,10000000 -1569899778.0,11370656,10000000 -1569900378.0,11370418,10000000 -1569900978.0,11350623,10000000 -1569901578.0,11349275,10000000 -1569902178.0,11216307,10000000 -1569902778.0,11252623,10000000 -1569903378.0,11252567,10000000 -1569903978.0,11316470,10000000 -1569904578.0,11356287,10000000 -1569905178.0,11385017,10000000 -1569905778.0,11505492,10000000 -1569906378.0,11525556,10000000 -1569906978.0,11544797,10000000 -1569907578.0,11566427,10000000 -1569908178.0,11690560,10000000 -1569908778.0,11709528,10000000 -1569909378.0,11584189,10000000 -1569909978.0,11583621,10000000 -1569910578.0,11581876,10000000 -1569911178.0,11616646,10000000 -1569911778.0,11616874,10000000 -1569912378.0,11578004,10000000 -1569912978.0,11525116,10000000 -1569913578.0,11517767,10000000 -1569914178.0,11540380,10000000 -1569914778.0,11614528,10000000 -1569915378.0,11691361,10000000 -1569915978.0,11671435,10000000 -1569916578.0,11648661,10000000 -1569917178.0,11650364,10000000 -1569917778.0,11525634,10000000 -1569918378.0,11585106,10000000 -1569918978.0,11528152,10000000 -1569919578.0,11530488,10000000 -1569920178.0,11468442,10000000 -1569920778.0,11468508,10000000 -1569921378.0,11478237,10000000 -1569921978.0,11439095,10000000 -1569922578.0,11462991,10000000 -1569923178.0,11455178,10000000 -1569923778.0,11491994,10000000 -1569924378.0,11452216,10000000 -1569924978.0,11444077,10000000 -1569925578.0,11453656,10000000 -1569926178.0,11420904,10000000 -1569926778.0,11322852,10000000 -1569927378.0,11349379,10000000 -1569927978.0,11347219,10000000 -1569928578.0,11371215,10000000 -1569929178.0,11320575,10000000 -1569929778.0,11357487,10000000 -1569930378.0,11392622,10000000 -1569930978.0,11393612,10000000 -1569931578.0,11442020,10000000 -1569932178.0,11332657,10000000 -1569932778.0,11284652,10000000 -1569933378.0,11229510,10000000 -1569933978.0,11162522,10000000 -1569934578.0,11133523,10000000 -1569935178.0,11136449,10000000 -1569935778.0,11209638,10000000 -1569936378.0,11215182,10000000 -1569936978.0,11244796,10000000 -1569937578.0,11231669,10000000 -1569938178.0,11316201,10000000 -1569938778.0,11276737,10000000 -1569939378.0,11225840,10000000 -1569939978.0,11235960,10000000 -1569940578.0,11324805,10000000 -1569941178.0,11308441,10000000 -1569941778.0,11298254,10000000 -1569942378.0,11369598,10000000 -1569942978.0,11315498,10000000 -1569943578.0,11271691,10000000 -1569944178.0,11188934,10000000 -1569944778.0,11072883,10000000 -1569945378.0,11016488,10000000 -1569945978.0,10932781,10000000 -1569946578.0,10878148,10000000 -1569947178.0,10942865,10000000 -1569947778.0,10899459,10000000 -1569948378.0,10864980,10000000 -1569948978.0,10920673,10000000 -1569949578.0,10920959,10000000 -1569950178.0,10991917,10000000 -1569950778.0,11030050,10000000 -1569951378.0,11026428,10000000 -1569951978.0,11118619,10000000 -1569952578.0,11151756,10000000 -1569953178.0,11121267,10000000 -1569953778.0,11066689,10000000 -1569954378.0,11176039,10000000 -1569954978.0,11149938,10000000 -1569955578.0,11183874,10000000 -1569956178.0,11207221,10000000 -1569956778.0,11247616,10000000 -1569957378.0,11320628,10000000 -1569957978.0,11198820,10000000 -1569958578.0,11178236,10000000 -1569959178.0,11174338,10000000 -1569959778.0,11245531,10000000 -1569960378.0,11221013,10000000 -1569960978.0,11188365,10000000 -1569961578.0,11221889,10000000 -1569962178.0,11195777,10000000 -1569962778.0,11230414,10000000 -1569963378.0,11304196,10000000 -1569963978.0,11375767,10000000 -1569964578.0,11335537,10000000 -1569965178.0,11241091,10000000 -1569965778.0,11266327,10000000 -1569966378.0,11258743,10000000 -1569966978.0,11343584,10000000 -1569967578.0,11267510,10000000 -1569968178.0,11298323,10000000 -1569968778.0,11266735,10000000 -1569969378.0,11279061,10000000 -1569969978.0,11323013,10000000 -1569970578.0,11340440,10000000 -1569971178.0,11351526,10000000 -1569971778.0,11393758,10000000 -1569972378.0,11399226,10000000 -1569972978.0,11395040,10000000 -1569973578.0,11468255,10000000 -1569974178.0,11365641,10000000 -1569974778.0,11402063,10000000 -1569975378.0,11486841,10000000 -1569975978.0,11511665,10000000 -1569976578.0,11559492,10000000 -1569977178.0,11626012,10000000 -1569977778.0,11703093,10000000 -1569978378.0,11654273,10000000 -1569978978.0,11690163,10000000 -1569979578.0,11810137,10000000 -1569980178.0,11760385,10000000 -1569980778.0,11762941,10000000 -1569981378.0,11738285,10000000 -1569981978.0,11703849,10000000 -1569982578.0,11711169,10000000 -1569983178.0,11685334,10000000 -1569983778.0,11629636,10000000 -1569984378.0,11558399,10000000 -1569984978.0,11616194,10000000 -1569985578.0,11715931,10000000 -1569986178.0,11811661,10000000 -1569986778.0,11766784,10000000 -1569987378.0,11698525,10000000 -1569987978.0,11685229,10000000 -1569988578.0,11722878,10000000 -1569989178.0,11711505,10000000 -1569989778.0,11787022,10000000 -1569990378.0,11838920,10000000 -1569990978.0,11855598,10000000 -1569991578.0,11811614,10000000 -1569992178.0,11793449,10000000 -1569992778.0,11876047,10000000 -1569993378.0,11853257,10000000 -1569993978.0,11838380,10000000 -1569994578.0,11780252,10000000 -1569995178.0,11833922,10000000 -1569995778.0,11830141,10000000 -1569996378.0,11839131,10000000 -1569996978.0,11754843,10000000 -1569997578.0,11729453,10000000 -1569998178.0,11669751,10000000 -1569998778.0,11678352,10000000 -1569999378.0,11760389,10000000 -1569999978.0,11702149,10000000 -1570000578.0,11619991,10000000 -1570001178.0,11624914,10000000 -1570001778.0,11660281,10000000 -1570002378.0,11633904,10000000 -1570002978.0,11613878,10000000 -1570003578.0,11625608,10000000 -1570004178.0,11619708,10000000 -1570004778.0,11636376,10000000 -1570005378.0,11586418,10000000 -1570005978.0,11539718,10000000 -1570006578.0,11538753,10000000 -1570007178.0,11581704,10000000 -1570007778.0,11608328,10000000 -1570008378.0,11596929,10000000 -1570008978.0,11615099,10000000 -1570009578.0,11578482,10000000 -1570010178.0,11569605,10000000 -1570010778.0,11494298,10000000 -1570011378.0,11426414,10000000 -1570011978.0,11289484,10000000 -1570012578.0,11359835,10000000 -1570013178.0,11388752,10000000 -1570013778.0,11422590,10000000 -1570014378.0,11452060,10000000 -1570014978.0,11466389,10000000 -1570015578.0,11471523,10000000 -1570016178.0,11447824,10000000 -1570016778.0,11472445,10000000 -1570017378.0,11470550,10000000 -1570017978.0,11457048,10000000 -1570018578.0,11438779,10000000 -1570019178.0,11399641,10000000 -1570019778.0,11397942,10000000 -1570020378.0,11335295,10000000 -1570020978.0,11287969,10000000 -1570021578.0,11299295,10000000 -1570022178.0,11371260,10000000 -1570022778.0,11375477,10000000 -1570023378.0,11365850,10000000 -1570023978.0,11393289,10000000 -1570024578.0,11439699,10000000 -1570025178.0,11510157,10000000 -1570025778.0,11514179,10000000 -1570026378.0,11575099,10000000 -1570026978.0,11553731,10000000 -1570027578.0,11467831,10000000 -1570028178.0,11544453,10000000 -1570028778.0,11578795,10000000 -1570029378.0,11570433,10000000 -1570029978.0,11575166,10000000 -1570030578.0,11630481,10000000 -1570031178.0,11645830,10000000 -1570031778.0,11563124,10000000 -1570032378.0,11611352,10000000 -1570032978.0,11685721,10000000 -1570033578.0,11754030,10000000 -1570034178.0,11782310,10000000 -1570034778.0,11821036,10000000 -1570035378.0,11793975,10000000 -1570035978.0,11821999,10000000 -1570036578.0,11809397,10000000 -1570037178.0,11753096,10000000 -1570037778.0,11714849,10000000 -1570038378.0,11697644,10000000 -1570038978.0,11711197,10000000 -1570039578.0,11718841,10000000 -1570040178.0,11798719,10000000 -1570040778.0,11755202,10000000 -1570041378.0,11847617,10000000 -1570041978.0,11886291,10000000 -1570042578.0,11876710,10000000 -1570043178.0,11813015,10000000 -1570043778.0,11855408,10000000 -1570044378.0,11791281,10000000 -1570044978.0,11874352,10000000 -1570045578.0,11823369,10000000 -1570046178.0,11870186,10000000 -1570046778.0,11848005,10000000 -1570047378.0,11942874,10000000 -1570047978.0,11878444,10000000 -1570048578.0,11889394,10000000 -1570049178.0,11835137,10000000 -1570049778.0,11883977,10000000 -1570050378.0,11942617,10000000 -1570050978.0,12004862,10000000 -1570051578.0,11959893,10000000 -1570052178.0,11972798,10000000 -1570052778.0,11975100,10000000 -1570053378.0,12003050,10000000 -1570053978.0,12053372,10000000 -1570054578.0,12135471,10000000 -1570055178.0,12047622,10000000 -1570055778.0,12054760,10000000 -1570056378.0,12134144,10000000 -1570056978.0,12175530,10000000 -1570057578.0,12250173,10000000 -1570058178.0,12205083,10000000 -1570058778.0,12226979,10000000 -1570059378.0,12190680,10000000 -1570059978.0,12222883,10000000 -1570060578.0,12200147,10000000 -1570061178.0,12235876,10000000 -1570061778.0,12253847,10000000 -1570062378.0,12259609,10000000 -1570062978.0,12219517,10000000 -1570063578.0,12191508,10000000 -1570064178.0,12161505,10000000 -1570064778.0,12141569,10000000 -1570065378.0,12129429,10000000 -1570065978.0,12149713,10000000 -1570066578.0,12119832,10000000 -1570067178.0,12172243,10000000 -1570067778.0,12183866,10000000 -1570068378.0,12186547,10000000 -1570068978.0,12165614,10000000 -1570069578.0,12188413,10000000 -1570070178.0,12252540,10000000 -1570070778.0,12294725,10000000 -1570071378.0,12327360,10000000 -1570071978.0,12324101,10000000 -1570072578.0,12288358,10000000 -1570073178.0,12278880,10000000 -1570073778.0,12182976,10000000 -1570074378.0,12202047,10000000 -1570074978.0,12279137,10000000 -1570075578.0,12357004,10000000 -1570076178.0,12313179,10000000 -1570076778.0,12364845,10000000 -1570077378.0,12378540,10000000 -1570077978.0,12369534,10000000 -1570078578.0,12304466,10000000 -1570079178.0,12227246,10000000 -1570079778.0,12286320,10000000 -1570080378.0,12250522,10000000 -1570080978.0,12258340,10000000 -1570081578.0,12256106,10000000 -1570082178.0,12209160,10000000 -1570082778.0,12227326,10000000 -1570083378.0,12229585,10000000 -1570083978.0,12294207,10000000 -1570084578.0,12351542,10000000 -1570085178.0,12369711,10000000 -1570085778.0,12439593,10000000 -1570086378.0,12462691,10000000 -1570086978.0,12535759,10000000 -1570087578.0,12463697,10000000 -1570088178.0,12434228,10000000 -1570088778.0,12389555,10000000 -1570089378.0,12403045,10000000 -1570089978.0,12369457,10000000 -1570090578.0,12435046,10000000 -1570091178.0,12460916,10000000 -1570091778.0,12501011,10000000 -1570092378.0,12559968,10000000 -1570092978.0,12526092,10000000 -1570093578.0,12500438,10000000 -1570094178.0,12618499,10000000 -1570094778.0,12733001,10000000 -1570095378.0,12643790,10000000 -1570095978.0,12567838,10000000 -1570096578.0,12544195,10000000 -1570097178.0,12634502,10000000 -1570097778.0,12561185,10000000 -1570098378.0,12508049,10000000 -1570098978.0,12434641,10000000 -1570099578.0,12445173,10000000 -1570100178.0,12479683,10000000 -1570100778.0,12495507,10000000 -1570101378.0,12470424,10000000 -1570101978.0,12498415,10000000 -1570102578.0,12546126,10000000 -1570103178.0,12516159,10000000 -1570103778.0,12460665,10000000 -1570104378.0,12464403,10000000 -1570104978.0,12417343,10000000 -1570105578.0,12503742,10000000 -1570106178.0,12493285,10000000 -1570106778.0,12594579,10000000 -1570107378.0,12520652,10000000 -1570107978.0,12485494,10000000 -1570108578.0,12452832,10000000 -1570109178.0,12450180,10000000 -1570109778.0,12437044,10000000 -1570110378.0,12431528,10000000 -1570110978.0,12467052,10000000 -1570111578.0,12478656,10000000 -1570112178.0,12516853,10000000 -1570112778.0,12500451,10000000 -1570113378.0,12447450,10000000 -1570113978.0,12410045,10000000 -1570114578.0,12396190,10000000 -1570115178.0,12415636,10000000 -1570115778.0,12373424,10000000 -1570116378.0,12298826,10000000 -1570116978.0,12303706,10000000 -1570117578.0,12303033,10000000 -1570118178.0,12290393,10000000 -1570118778.0,12347821,10000000 -1570119378.0,12354514,10000000 -1570119978.0,12332241,10000000 -1570120578.0,12365094,10000000 -1570121178.0,12369036,10000000 -1570121778.0,12396019,10000000 -1570122378.0,12417194,10000000 -1570122978.0,12423106,10000000 -1570123578.0,12475947,10000000 -1570124178.0,12501339,10000000 -1570124778.0,12472445,10000000 -1570125378.0,12509784,10000000 -1570125978.0,12479438,10000000 -1570126578.0,12430899,10000000 -1570127178.0,12369776,10000000 -1570127778.0,12364084,10000000 -1570128378.0,12340526,10000000 -1570128978.0,12284542,10000000 -1570129578.0,12341931,10000000 -1570130178.0,12415550,10000000 -1570130778.0,12482336,10000000 -1570131378.0,12453250,10000000 -1570131978.0,12376988,10000000 -1570132578.0,12477946,10000000 -1570133178.0,12530607,10000000 -1570133778.0,12585851,10000000 -1570134378.0,12555752,10000000 -1570134978.0,12576529,10000000 -1570135578.0,12427292,10000000 -1570136178.0,12436810,10000000 -1570136778.0,12441676,10000000 -1570137378.0,12371848,10000000 -1570137978.0,12360931,10000000 -1570138578.0,12449003,10000000 -1570139178.0,12403137,10000000 -1570139778.0,12511754,10000000 -1570140378.0,12544352,10000000 -1570140978.0,12500103,10000000 -1570141578.0,12501494,10000000 -1570142178.0,12582945,10000000 -1570142778.0,12623250,10000000 -1570143378.0,12654313,10000000 -1570143978.0,12683745,10000000 -1570144578.0,12704265,10000000 -1570145178.0,12578801,10000000 -1570145778.0,12591419,10000000 -1570146378.0,12581923,10000000 -1570146978.0,12537979,10000000 -1570147578.0,12630871,10000000 -1570148178.0,12639277,10000000 -1570148778.0,12605837,10000000 -1570149378.0,12512639,10000000 -1570149978.0,12504224,10000000 -1570150578.0,12406526,10000000 -1570151178.0,12362856,10000000 -1570151778.0,12309219,10000000 -1570152378.0,12327321,10000000 -1570152978.0,12336266,10000000 -1570153578.0,12349205,10000000 -1570154178.0,12322131,10000000 -1570154778.0,12257252,10000000 -1570155378.0,12266568,10000000 -1570155978.0,12295946,10000000 -1570156578.0,12355547,10000000 -1570157178.0,12500915,10000000 -1570157778.0,12491375,10000000 -1570158378.0,12502730,10000000 -1570158978.0,12491242,10000000 -1570159578.0,12521420,10000000 -1570160178.0,12534778,10000000 -1570160778.0,12584945,10000000 -1570161378.0,12489837,10000000 -1570161978.0,12446636,10000000 -1570162578.0,12396877,10000000 -1570163178.0,12334981,10000000 -1570163778.0,12272592,10000000 -1570164378.0,12245136,10000000 -1570164978.0,12195784,10000000 -1570165578.0,12208077,10000000 -1570166178.0,12243930,10000000 -1570166778.0,12280718,10000000 -1570167378.0,12362354,10000000 -1570167978.0,12381831,10000000 -1570168578.0,12428405,10000000 -1570169178.0,12424612,10000000 -1570169778.0,12405323,10000000 -1570170378.0,12454729,10000000 -1570170978.0,12527674,10000000 -1570171578.0,12480729,10000000 -1570172178.0,12445121,10000000 -1570172778.0,12466773,10000000 -1570173378.0,12455561,10000000 -1570173978.0,12524695,10000000 -1570174578.0,12519689,10000000 -1570175178.0,12513691,10000000 -1570175778.0,12434398,10000000 -1570176378.0,12517798,10000000 -1570176978.0,12446181,10000000 -1570177578.0,12449587,10000000 -1570178178.0,12449615,10000000 -1570178778.0,12313913,10000000 -1570179378.0,12253440,10000000 -1570179978.0,12289269,10000000 -1570180578.0,12269831,10000000 -1570181178.0,12243721,10000000 -1570181778.0,12249704,10000000 -1570182378.0,12203030,10000000 -1570182978.0,12281862,10000000 -1570183578.0,12172027,10000000 -1570184178.0,12101687,10000000 -1570184778.0,12151768,10000000 -1570185378.0,12140163,10000000 -1570185978.0,12145043,10000000 -1570186578.0,12129729,10000000 -1570187178.0,12167239,10000000 -1570187778.0,12091462,10000000 -1570188378.0,12120058,10000000 -1570188978.0,12163720,10000000 -1570189578.0,12233658,10000000 -1570190178.0,12163562,10000000 -1570190778.0,12168808,10000000 -1570191378.0,12233997,10000000 -1570191978.0,12208190,10000000 -1570192578.0,12181162,10000000 -1570193178.0,12174082,10000000 -1570193778.0,12171937,10000000 -1570194378.0,12122127,10000000 -1570194978.0,12151740,10000000 -1570195578.0,12144738,10000000 -1570196178.0,12152502,10000000 -1570196778.0,12162942,10000000 -1570197378.0,12190227,10000000 -1570197978.0,12138810,10000000 -1570198578.0,12128118,10000000 -1570199178.0,12005487,10000000 -1570199778.0,12079045,10000000 -1570200378.0,12071645,10000000 -1570200978.0,12130167,10000000 -1570201578.0,12138203,10000000 -1570202178.0,12124024,10000000 -1570202778.0,12174038,10000000 -1570203378.0,12290614,10000000 -1570203978.0,12290494,10000000 -1570204578.0,12218101,10000000 -1570205178.0,12242158,10000000 -1570205778.0,12302549,10000000 -1570206378.0,12345819,10000000 -1570206978.0,12405730,10000000 -1570207578.0,12457206,10000000 -1570208178.0,12407766,10000000 -1570208778.0,12408652,10000000 -1570209378.0,12427719,10000000 -1570209978.0,12490127,10000000 -1570210578.0,12392791,10000000 -1570211178.0,12452027,10000000 -1570211778.0,12461313,10000000 -1570212378.0,12527994,10000000 -1570212978.0,12463010,10000000 -1570213578.0,12377247,10000000 -1570214178.0,12320865,10000000 -1570214778.0,12280446,10000000 -1570215378.0,12287225,10000000 -1570215978.0,12398536,10000000 -1570216578.0,12492269,10000000 -1570217178.0,12519742,10000000 -1570217778.0,12519422,10000000 -1570218378.0,12485116,10000000 -1570218978.0,12449049,10000000 -1570219578.0,12482803,10000000 -1570220178.0,12463043,10000000 -1570220778.0,12468976,10000000 -1570221378.0,12424987,10000000 -1570221978.0,12441322,10000000 -1570222578.0,12475430,10000000 -1570223178.0,12493050,10000000 -1570223778.0,12521075,10000000 -1570224378.0,12497062,10000000 -1570224978.0,12473244,10000000 -1570225578.0,12505033,10000000 -1570226178.0,12446842,10000000 -1570226778.0,12465784,10000000 -1570227378.0,12458774,10000000 -1570227978.0,12382970,10000000 -1570228578.0,12351814,10000000 -1570229178.0,12336468,10000000 -1570229778.0,12270442,10000000 -1570230378.0,12248251,10000000 -1570230978.0,12236103,10000000 -1570231578.0,12289399,10000000 -1570232178.0,12250561,10000000 -1570232778.0,12247712,10000000 -1570233378.0,12196478,10000000 -1570233978.0,12190825,10000000 -1570234578.0,12201648,10000000 -1570235178.0,12227925,10000000 -1570235778.0,12294001,10000000 -1570236378.0,12268740,10000000 -1570236978.0,12271422,10000000 -1570237578.0,12232133,10000000 -1570238178.0,12195800,10000000 -1570238778.0,12202841,10000000 -1570239378.0,12279650,10000000 -1570239978.0,12270185,10000000 -1570240578.0,12251880,10000000 -1570241178.0,12300697,10000000 -1570241778.0,12350300,10000000 -1570242378.0,12316984,10000000 -1570242978.0,12292061,10000000 -1570243578.0,12218982,10000000 -1570244178.0,12195854,10000000 -1570244778.0,12153242,10000000 -1570245378.0,12155304,10000000 -1570245978.0,12056873,10000000 -1570246578.0,12012541,10000000 -1570247178.0,12011603,10000000 -1570247778.0,12031483,10000000 -1570248378.0,12057118,10000000 -1570248978.0,12055872,10000000 -1570249578.0,12003352,10000000 -1570250178.0,11987620,10000000 -1570250778.0,12012801,10000000 -1570251378.0,11992141,10000000 -1570251978.0,11963509,10000000 -1570252578.0,12008163,10000000 -1570253178.0,12053614,10000000 -1570253778.0,12059037,10000000 -1570254378.0,12065822,10000000 -1570254978.0,12069305,10000000 -1570255578.0,12084030,10000000 -1570256178.0,12044068,10000000 -1570256778.0,12043781,10000000 -1570257378.0,12040145,10000000 -1570257978.0,12036767,10000000 -1570258578.0,12039231,10000000 -1570259178.0,12016921,10000000 -1570259778.0,11982524,10000000 -1570260378.0,11975145,10000000 -1570260978.0,11912669,10000000 -1570261578.0,11925236,10000000 -1570262178.0,11901396,10000000 -1570262778.0,11927579,10000000 -1570263378.0,11988349,10000000 -1570263978.0,12039552,10000000 -1570264578.0,12129539,10000000 -1570265178.0,12095854,10000000 -1570265778.0,12090172,10000000 -1570266378.0,12172987,10000000 -1570266978.0,12216431,10000000 -1570267578.0,12259009,10000000 -1570268178.0,12125889,10000000 -1570268778.0,12088013,10000000 -1570269378.0,12114743,10000000 -1570269978.0,12136981,10000000 -1570270578.0,12240567,10000000 -1570271178.0,12268468,10000000 -1570271778.0,12251790,10000000 -1570272378.0,12263840,10000000 -1570272978.0,12174569,10000000 -1570273578.0,12215836,10000000 -1570274178.0,12254762,10000000 -1570274778.0,12254215,10000000 -1570275378.0,12148894,10000000 -1570275978.0,12069835,10000000 -1570276578.0,12042025,10000000 -1570277178.0,12061299,10000000 -1570277778.0,12128741,10000000 -1570278378.0,12141835,10000000 -1570278978.0,12193429,10000000 -1570279578.0,12172335,10000000 -1570280178.0,12199766,10000000 -1570280778.0,12202416,10000000 -1570281378.0,12279899,10000000 -1570281978.0,12216282,10000000 -1570282578.0,12255452,10000000 -1570283178.0,12234468,10000000 -1570283778.0,12293184,10000000 -1570284378.0,12305467,10000000 -1570284978.0,12353027,10000000 -1570285578.0,12346367,10000000 -1570286178.0,12346685,10000000 -1570286778.0,12314965,10000000 -1570287378.0,12403197,10000000 -1570287978.0,12504534,10000000 -1570288578.0,12440904,10000000 -1570289178.0,12482404,10000000 -1570289778.0,12447025,10000000 -1570290378.0,12499084,10000000 -1570290978.0,12503663,10000000 -1570291578.0,12461005,10000000 -1570292178.0,12487094,10000000 -1570292778.0,12540576,10000000 -1570293378.0,12583839,10000000 -1570293978.0,12599796,10000000 -1570294578.0,12603357,10000000 -1570295178.0,12615546,10000000 -1570295778.0,12523738,10000000 -1570296378.0,12402129,10000000 -1570296978.0,12400501,10000000 -1570297578.0,12430853,10000000 -1570298178.0,12504936,10000000 -1570298778.0,12583887,10000000 -1570299378.0,12555644,10000000 -1570299978.0,12608139,10000000 -1570300578.0,12538270,10000000 -1570301178.0,12537497,10000000 -1570301778.0,12501550,10000000 -1570302378.0,12461616,10000000 -1570302978.0,12381931,10000000 -1570303578.0,12410635,10000000 -1570304178.0,12442377,10000000 -1570304778.0,12357266,10000000 -1570305378.0,12239110,10000000 -1570305978.0,12227900,10000000 -1570306578.0,12302160,10000000 -1570307178.0,12288325,10000000 -1570307778.0,12309782,10000000 -1570308378.0,12270581,10000000 -1570308978.0,12233972,10000000 -1570309578.0,12224095,10000000 -1570310178.0,12244657,10000000 -1570310778.0,12205476,10000000 -1570311378.0,12225728,10000000 -1570311978.0,12152104,10000000 -1570312578.0,12140732,10000000 -1570313178.0,12044380,10000000 -1570313778.0,12003799,10000000 -1570314378.0,11910518,10000000 -1570314978.0,11891592,10000000 -1570315578.0,11952479,10000000 -1570316178.0,11967170,10000000 -1570316778.0,12120952,10000000 -1570317378.0,12108838,10000000 -1570317978.0,12081808,10000000 -1570318578.0,12099386,10000000 -1570319178.0,12184511,10000000 -1570319778.0,12118133,10000000 -1570320378.0,12136500,10000000 -1570320978.0,12133603,10000000 -1570321578.0,12089107,10000000 -1570322178.0,12020849,10000000 -1570322778.0,11931512,10000000 -1570323378.0,12011843,10000000 -1570323978.0,12068946,10000000 -1570324578.0,12138217,10000000 -1570325178.0,12118871,10000000 -1570325778.0,12146401,10000000 -1570326378.0,12136451,10000000 -1570326978.0,12152996,10000000 -1570327578.0,12137707,10000000 -1570328178.0,12159248,10000000 -1570328778.0,12210547,10000000 -1570329378.0,12233664,10000000 -1570329978.0,12258800,10000000 -1570330578.0,12300240,10000000 -1570331178.0,12372854,10000000 -1570331778.0,12423580,10000000 -1570332378.0,12406450,10000000 -1570332978.0,12325036,10000000 -1570333578.0,12358057,10000000 -1570334178.0,12409030,10000000 -1570334778.0,12421473,10000000 -1570335378.0,12364762,10000000 -1570335978.0,12400337,10000000 -1570336578.0,12420103,10000000 -1570337178.0,12453941,10000000 -1570337778.0,12534161,10000000 -1570338378.0,12609470,10000000 -1570338978.0,12716747,10000000 -1570339578.0,12777612,10000000 -1570340178.0,12777311,10000000 -1570340778.0,12799200,10000000 -1570341378.0,12905794,10000000 -1570341978.0,12880788,10000000 -1570342578.0,12868275,10000000 -1570343178.0,12862853,10000000 -1570343778.0,12756776,10000000 -1570344378.0,12832610,10000000 -1570344978.0,12815434,10000000 -1570345578.0,12768821,10000000 -1570346178.0,12727452,10000000 -1570346778.0,12653417,10000000 -1570347378.0,12739541,10000000 -1570347978.0,12693846,10000000 -1570348578.0,12710842,10000000 -1570349178.0,12684912,10000000 -1570349778.0,12645864,10000000 -1570350378.0,12698642,10000000 -1570350978.0,12750113,10000000 -1570351578.0,12702749,10000000 -1570352178.0,12767619,10000000 -1570352778.0,12729205,10000000 -1570353378.0,12745267,10000000 -1570353978.0,12781975,10000000 -1570354578.0,12782199,10000000 -1570355178.0,12679316,10000000 -1570355778.0,12664505,10000000 -1570356378.0,12707432,10000000 -1570356978.0,12687406,10000000 -1570357578.0,12687080,10000000 -1570358178.0,12693839,10000000 -1570358778.0,12685956,10000000 -1570359378.0,12659434,10000000 -1570359978.0,12729725,10000000 -1570360578.0,12726707,10000000 -1570361178.0,12735916,10000000 -1570361778.0,12721543,10000000 -1570362378.0,12686302,10000000 -1570362978.0,12612226,10000000 -1570363578.0,12580067,10000000 -1570364178.0,12506886,10000000 -1570364778.0,12483081,10000000 -1570365378.0,12477422,10000000 -1570365978.0,12543282,10000000 -1570366578.0,12480696,10000000 -1570367178.0,12441035,10000000 -1570367778.0,12449649,10000000 -1570368378.0,12428358,10000000 -1570368978.0,12468644,10000000 -1570369578.0,12495123,10000000 -1570370178.0,12580032,10000000 -1570370778.0,12684252,10000000 -1570371378.0,12688659,10000000 -1570371978.0,12754251,10000000 -1570372578.0,12820337,10000000 -1570373178.0,12766800,10000000 -1570373778.0,12774778,10000000 -1570374378.0,12876055,10000000 -1570374978.0,12746596,10000000 -1570375578.0,12726277,10000000 -1570376178.0,12707547,10000000 -1570376778.0,12725180,10000000 -1570377378.0,12684264,10000000 -1570377978.0,12648249,10000000 -1570378578.0,12673631,10000000 -1570379178.0,12637292,10000000 -1570379778.0,12628321,10000000 -1570380378.0,12672883,10000000 -1570380978.0,12789520,10000000 -1570381578.0,12818068,10000000 -1570382178.0,12825620,10000000 -1570382778.0,12796060,10000000 -1570383378.0,12895704,10000000 -1570383978.0,12893614,10000000 -1570384578.0,12920285,10000000 -1570385178.0,12856500,10000000 -1570385778.0,12901701,10000000 -1570386378.0,13020431,10000000 -1570386978.0,13035929,10000000 -1570387578.0,12956758,10000000 -1570388178.0,12973285,10000000 -1570388778.0,13007319,10000000 -1570389378.0,12929181,10000000 -1570389978.0,13044010,10000000 -1570390578.0,13132751,10000000 -1570391178.0,13117082,10000000 -1570391778.0,13141560,10000000 -1570392378.0,13105698,10000000 -1570392978.0,13045910,10000000 -1570393578.0,12971187,10000000 -1570394178.0,12920646,10000000 -1570394778.0,12916906,10000000 -1570395378.0,12916913,10000000 -1570395978.0,13016090,10000000 -1570396578.0,13018828,10000000 -1570397178.0,13023943,10000000 -1570397778.0,13017638,10000000 -1570398378.0,12944464,10000000 -1570398978.0,12941960,10000000 -1570399578.0,12952756,10000000 -1570400178.0,12828251,10000000 -1570400778.0,12765604,10000000 -1570401378.0,12842238,10000000 -1570401978.0,12901356,10000000 -1570402578.0,12889247,10000000 -1570403178.0,12907347,10000000 -1570403778.0,12856230,10000000 -1570404378.0,12859018,10000000 -1570404978.0,12848726,10000000 -1570405578.0,12774312,10000000 -1570406178.0,12785029,10000000 -1570406778.0,12831647,10000000 -1570407378.0,12748600,10000000 -1570407978.0,12802218,10000000 -1570408578.0,12879892,10000000 -1570409178.0,12852491,10000000 -1570409778.0,12784349,10000000 -1570410378.0,12851873,10000000 -1570410978.0,12781024,10000000 -1570411578.0,12710432,10000000 -1570412178.0,12767147,10000000 -1570412778.0,12787206,10000000 -1570413378.0,12768342,10000000 -1570413978.0,12761179,10000000 -1570414578.0,12795226,10000000 -1570415178.0,12752905,10000000 -1570415778.0,12794760,10000000 -1570416378.0,12783477,10000000 -1570416978.0,12773567,10000000 -1570417578.0,12758359,10000000 -1570418178.0,12720118,10000000 -1570418778.0,12750574,10000000 -1570419378.0,12675278,10000000 -1570419978.0,12740551,10000000 -1570420578.0,12609731,10000000 -1570421178.0,12638553,10000000 -1570421778.0,12665859,10000000 -1570422378.0,12688741,10000000 -1570422978.0,12724626,10000000 -1570423578.0,12841790,10000000 -1570424178.0,12856751,10000000 -1570424778.0,12923997,10000000 -1570425378.0,12953742,10000000 -1570425978.0,13019656,10000000 -1570426578.0,12991315,10000000 -1570427178.0,13016242,10000000 -1570427778.0,12998196,10000000 -1570428378.0,12990251,10000000 -1570428978.0,13004630,10000000 -1570429578.0,13063918,10000000 -1570430178.0,13133280,10000000 -1570430778.0,13128391,10000000 -1570431378.0,13248635,10000000 -1570431978.0,13304295,10000000 -1570432578.0,13309387,10000000 -1570433178.0,13290758,10000000 -1570433778.0,13262901,10000000 -1570434378.0,13331755,10000000 -1570434978.0,13355578,10000000 -1570435578.0,13323564,10000000 -1570436178.0,13386049,10000000 -1570436778.0,13327640,10000000 -1570437378.0,13381360,10000000 -1570437978.0,13422701,10000000 -1570438578.0,13462329,10000000 -1570439178.0,13473149,10000000 -1570439778.0,13410503,10000000 -1570440378.0,13430908,10000000 -1570440978.0,13415182,10000000 -1570441578.0,13370048,10000000 -1570442178.0,13364712,10000000 -1570442778.0,13313351,10000000 -1570443378.0,13295139,10000000 -1570443978.0,13214837,10000000 -1570444578.0,13184432,10000000 -1570445178.0,13190970,10000000 -1570445778.0,13177524,10000000 -1570446378.0,13218183,10000000 -1570446978.0,13115291,10000000 -1570447578.0,13073142,10000000 -1570448178.0,13030065,10000000 -1570448778.0,13047302,10000000 -1570449378.0,12989842,10000000 -1570449978.0,12965941,10000000 -1570450578.0,12931519,10000000 -1570451178.0,13075085,10000000 -1570451778.0,12998304,10000000 -1570452378.0,13033686,10000000 -1570452978.0,12987205,10000000 -1570453578.0,12922730,10000000 -1570454178.0,12890575,10000000 -1570454778.0,12927471,10000000 -1570455378.0,12841161,10000000 -1570455978.0,12723935,10000000 -1570456578.0,12688515,10000000 -1570457178.0,12792892,10000000 -1570457778.0,12864715,10000000 -1570458378.0,12861066,10000000 -1570458978.0,12855909,10000000 -1570459578.0,12816151,10000000 -1570460178.0,12787601,10000000 -1570460778.0,12808690,10000000 -1570461378.0,12839019,10000000 -1570461978.0,12902494,10000000 -1570462578.0,12889252,10000000 -1570463178.0,12936188,10000000 -1570463778.0,12848551,10000000 -1570464378.0,12658399,10000000 -1570464978.0,12597770,10000000 -1570465578.0,12567513,10000000 -1570466178.0,12524321,10000000 -1570466778.0,12474281,10000000 -1570467378.0,12399990,10000000 -1570467978.0,12364855,10000000 -1570468578.0,12375777,10000000 -1570469178.0,12379767,10000000 -1570469778.0,12331550,10000000 -1570470378.0,12302665,10000000 -1570470978.0,12348802,10000000 -1570471578.0,12348703,10000000 -1570472178.0,12527045,10000000 -1570472778.0,12519862,10000000 -1570473378.0,12465033,10000000 -1570473978.0,12526229,10000000 -1570474578.0,12562024,10000000 -1570475178.0,12577861,10000000 -1570475778.0,12604257,10000000 -1570476378.0,12656323,10000000 -1570476978.0,12653793,10000000 -1570477578.0,12643627,10000000 -1570478178.0,12595705,10000000 -1570478778.0,12633346,10000000 -1570479378.0,12639342,10000000 -1570479978.0,12656858,10000000 -1570480578.0,12694696,10000000 -1570481178.0,12782949,10000000 -1570481778.0,12697537,10000000 -1570482378.0,12716500,10000000 -1570482978.0,12653191,10000000 -1570483578.0,12650457,10000000 -1570484178.0,12670396,10000000 -1570484778.0,12615074,10000000 -1570485378.0,12655038,10000000 -1570485978.0,12657161,10000000 -1570486578.0,12653866,10000000 -1570487178.0,12631723,10000000 -1570487778.0,12696020,10000000 -1570488378.0,12663121,10000000 -1570488978.0,12678704,10000000 -1570489578.0,12662112,10000000 -1570490178.0,12599261,10000000 -1570490778.0,12621091,10000000 -1570491378.0,12572985,10000000 -1570491978.0,12649411,10000000 -1570492578.0,12550560,10000000 -1570493178.0,12607530,10000000 -1570493778.0,12568313,10000000 -1570494378.0,12531943,10000000 -1570494978.0,12546380,10000000 -1570495578.0,12548423,10000000 -1570496178.0,12566031,10000000 -1570496778.0,12612612,10000000 -1570497378.0,12499285,10000000 -1570497978.0,12484107,10000000 -1570498578.0,12446094,10000000 -1570499178.0,12510703,10000000 -1570499778.0,12369402,10000000 -1570500378.0,12299974,10000000 -1570500978.0,12365383,10000000 -1570501578.0,12448509,10000000 -1570502178.0,12467459,10000000 -1570502778.0,12490262,10000000 -1570503378.0,12487994,10000000 -1570503978.0,12414647,10000000 -1570504578.0,12359198,10000000 -1570505178.0,12335490,10000000 -1570505778.0,12180692,10000000 -1570506378.0,12191793,10000000 -1570506978.0,12170396,10000000 -1570507578.0,12214960,10000000 -1570508178.0,12199600,10000000 -1570508778.0,12186167,10000000 -1570509378.0,12182459,10000000 -1570509978.0,12056926,10000000 -1570510578.0,12031537,10000000 -1570511178.0,11958453,10000000 -1570511778.0,12065653,10000000 -1570512378.0,12103178,10000000 -1570512978.0,12085461,10000000 -1570513578.0,12099996,10000000 -1570514178.0,12173111,10000000 -1570514778.0,12085721,10000000 -1570515378.0,12033233,10000000 -1570515978.0,12007218,10000000 -1570516578.0,12063141,10000000 -1570517178.0,12019956,10000000 -1570517778.0,12015577,10000000 -1570518378.0,11958717,10000000 -1570518978.0,12004508,10000000 -1570519578.0,12046979,10000000 -1570520178.0,12015722,10000000 -1570520778.0,12091944,10000000 -1570521378.0,12034142,10000000 -1570521978.0,11937493,10000000 -1570522578.0,11861074,10000000 -1570523178.0,11794194,10000000 -1570523778.0,11745416,10000000 -1570524378.0,11790365,10000000 -1570524978.0,11787796,10000000 -1570525578.0,11818577,10000000 -1570526178.0,11774603,10000000 -1570526778.0,11785528,10000000 -1570527378.0,11835150,10000000 -1570527978.0,11777471,10000000 -1570528578.0,11799241,10000000 -1570529178.0,11664461,10000000 -1570529778.0,11758043,10000000 -1570530378.0,11742540,10000000 -1570530978.0,11772697,10000000 -1570531578.0,11755064,10000000 -1570532178.0,11727722,10000000 -1570532778.0,11817852,10000000 -1570533378.0,11815325,10000000 -1570533978.0,11802987,10000000 -1570534578.0,11783274,10000000 -1570535178.0,11788418,10000000 -1570535778.0,11784482,10000000 -1570536378.0,11739820,10000000 -1570536978.0,11860387,10000000 -1570537578.0,11856479,10000000 -1570538178.0,11877749,10000000 -1570538778.0,11925887,10000000 -1570539378.0,11868848,10000000 -1570539978.0,11884095,10000000 -1570540578.0,11897735,10000000 -1570541178.0,11902981,10000000 -1570541778.0,11904871,10000000 -1570542378.0,12030490,10000000 -1570542978.0,12010402,10000000 -1570543578.0,12120048,10000000 -1570544178.0,12228809,10000000 -1570544778.0,12172137,10000000 -1570545378.0,12278395,10000000 -1570545978.0,12269713,10000000 -1570546578.0,12318731,10000000 -1570547178.0,12292709,10000000 -1570547778.0,12309236,10000000 -1570548378.0,12326804,10000000 -1570548978.0,12261685,10000000 -1570549578.0,12288081,10000000 -1570550178.0,12349678,10000000 -1570550778.0,12317860,10000000 -1570551378.0,12330680,10000000 -1570551978.0,12330067,10000000 -1570552578.0,12224150,10000000 -1570553178.0,12274137,10000000 -1570553778.0,12254052,10000000 -1570554378.0,12283790,10000000 -1570554978.0,12205301,10000000 -1570555578.0,12198195,10000000 -1570556178.0,12198899,10000000 -1570556778.0,12127844,10000000 -1570557378.0,12145224,10000000 -1570557978.0,12140690,10000000 -1570558578.0,12133034,10000000 -1570559178.0,12076580,10000000 -1570559778.0,12095978,10000000 -1570560378.0,12164379,10000000 -1570560978.0,12156312,10000000 -1570561578.0,12152955,10000000 -1570562178.0,12130715,10000000 -1570562778.0,12106871,10000000 -1570563378.0,12051536,10000000 -1570563978.0,12086233,10000000 -1570564578.0,12202872,10000000 -1570565178.0,12248530,10000000 -1570565778.0,12272252,10000000 -1570566378.0,12226191,10000000 -1570566978.0,12270065,10000000 -1570567578.0,12256213,10000000 -1570568178.0,12311166,10000000 -1570568778.0,12316951,10000000 -1570569378.0,12323477,10000000 -1570569978.0,12308280,10000000 -1570570578.0,12318737,10000000 -1570571178.0,12278265,10000000 -1570571778.0,12254044,10000000 -1570572378.0,12204629,10000000 -1570572978.0,12192836,10000000 -1570573578.0,12156667,10000000 -1570574178.0,12071580,10000000 -1570574778.0,12043612,10000000 -1570575378.0,12113875,10000000 -1570575978.0,12105642,10000000 -1570576578.0,12082857,10000000 -1570577178.0,12025087,10000000 -1570577778.0,11993317,10000000 -1570578378.0,11955950,10000000 -1570578978.0,12000110,10000000 -1570579578.0,11953674,10000000 -1570580178.0,11917393,10000000 -1570580778.0,11978221,10000000 -1570581378.0,12037473,10000000 -1570581978.0,12027260,10000000 -1570582578.0,11986904,10000000 -1570583178.0,12042391,10000000 -1570583778.0,12039650,10000000 -1570584378.0,11938696,10000000 -1570584978.0,11908259,10000000 -1570585578.0,11926516,10000000 -1570586178.0,11943236,10000000 -1570586778.0,11913787,10000000 -1570587378.0,11841466,10000000 -1570587978.0,11780166,10000000 -1570588578.0,11840838,10000000 -1570589178.0,11811091,10000000 -1570589778.0,11715889,10000000 -1570590378.0,11683772,10000000 -1570590978.0,11762906,10000000 -1570591578.0,11705094,10000000 -1570592178.0,11748771,10000000 -1570592778.0,11759827,10000000 -1570593378.0,11772951,10000000 -1570593978.0,11723390,10000000 -1570594578.0,11750819,10000000 -1570595178.0,11692170,10000000 -1570595778.0,11690046,10000000 -1570596378.0,11701040,10000000 -1570596978.0,11710034,10000000 -1570597578.0,11704700,10000000 -1570598178.0,11753074,10000000 -1570598778.0,11806261,10000000 -1570599378.0,11714929,10000000 -1570599978.0,11705337,10000000 -1570600578.0,11718799,10000000 -1570601178.0,11758099,10000000 -1570601778.0,11781825,10000000 -1570602378.0,11778246,10000000 -1570602978.0,11775114,10000000 -1570603578.0,11745704,10000000 -1570604178.0,11719075,10000000 -1570604778.0,11765964,10000000 -1570605378.0,11766698,10000000 -1570605978.0,11772746,10000000 -1570606578.0,11717877,10000000 -1570607178.0,11737456,10000000 -1570607778.0,11789508,10000000 -1570608378.0,11901026,10000000 -1570608978.0,11959442,10000000 -1570609578.0,12020858,10000000 -1570610178.0,12096645,10000000 -1570610778.0,12052735,10000000 -1570611378.0,12004886,10000000 -1570611978.0,12078162,10000000 -1570612578.0,12110206,10000000 -1570613178.0,12128179,10000000 -1570613778.0,12161710,10000000 -1570614378.0,12155414,10000000 -1570614978.0,12194694,10000000 -1570615578.0,12208478,10000000 -1570616178.0,12197515,10000000 -1570616778.0,12173387,10000000 -1570617378.0,12211502,10000000 -1570617978.0,12177834,10000000 -1570618578.0,12196085,10000000 -1570619178.0,12213039,10000000 -1570619778.0,12279110,10000000 -1570620378.0,12281627,10000000 -1570620978.0,12312933,10000000 -1570621578.0,12338248,10000000 -1570622178.0,12346611,10000000 -1570622778.0,12347298,10000000 -1570623378.0,12302146,10000000 -1570623978.0,12257229,10000000 -1570624578.0,12170007,10000000 -1570625178.0,12184167,10000000 -1570625778.0,12229539,10000000 -1570626378.0,12216430,10000000 -1570626978.0,12190539,10000000 -1570627578.0,12145862,10000000 -1570628178.0,12112599,10000000 -1570628778.0,12146435,10000000 -1570629378.0,12138769,10000000 -1570629978.0,12104145,10000000 -1570630578.0,12017329,10000000 -1570631178.0,12034480,10000000 -1570631778.0,12003705,10000000 -1570632378.0,11971968,10000000 -1570632978.0,11997238,10000000 -1570633578.0,12061709,10000000 -1570634178.0,12127952,10000000 -1570634778.0,12134982,10000000 -1570635378.0,12162786,10000000 -1570635978.0,12121084,10000000 -1570636578.0,12145931,10000000 -1570637178.0,12046357,10000000 -1570637778.0,11909496,10000000 -1570638378.0,11886153,10000000 -1570638978.0,11962906,10000000 -1570639578.0,12011428,10000000 -1570640178.0,11945465,10000000 -1570640778.0,11881467,10000000 -1570641378.0,11879200,10000000 -1570641978.0,11927297,10000000 -1570642578.0,11931759,10000000 -1570643178.0,11990290,10000000 -1570643778.0,11860781,10000000 -1570644378.0,11818662,10000000 -1570644978.0,11821559,10000000 -1570645578.0,11851139,10000000 -1570646178.0,11862651,10000000 -1570646778.0,11903977,10000000 -1570647378.0,11919854,10000000 -1570647978.0,11959494,10000000 -1570648578.0,12033564,10000000 -1570649178.0,12089394,10000000 -1570649778.0,12015041,10000000 -1570650378.0,11970220,10000000 -1570650978.0,12001705,10000000 -1570651578.0,12064586,10000000 -1570652178.0,12058424,10000000 -1570652778.0,12051874,10000000 -1570653378.0,12068363,10000000 -1570653978.0,12112771,10000000 -1570654578.0,12141515,10000000 -1570655178.0,12133590,10000000 -1570655778.0,12126170,10000000 -1570656378.0,12130106,10000000 -1570656978.0,12115234,10000000 -1570657578.0,12124645,10000000 -1570658178.0,12132608,10000000 -1570658778.0,12207063,10000000 -1570659378.0,12226115,10000000 -1570659978.0,12206218,10000000 -1570660578.0,12223498,10000000 -1570661178.0,12264131,10000000 -1570661778.0,12208207,10000000 -1570662378.0,12094652,10000000 -1570662978.0,12050134,10000000 -1570663578.0,12124646,10000000 -1570664178.0,12181326,10000000 -1570664778.0,12183518,10000000 -1570665378.0,12201475,10000000 -1570665978.0,12239376,10000000 -1570666578.0,12095680,10000000 -1570667178.0,12172440,10000000 -1570667778.0,12138091,10000000 -1570668378.0,12136169,10000000 -1570668978.0,12057377,10000000 -1570669578.0,12114981,10000000 -1570670178.0,12105967,10000000 -1570670778.0,12125173,10000000 -1570671378.0,12170505,10000000 -1570671978.0,12237721,10000000 -1570672578.0,12242526,10000000 -1570673178.0,12329591,10000000 -1570673778.0,12238222,10000000 -1570674378.0,12218772,10000000 -1570674978.0,12144917,10000000 -1570675578.0,12103688,10000000 -1570676178.0,12141255,10000000 -1570676778.0,12060170,10000000 -1570677378.0,11979828,10000000 -1570677978.0,11961634,10000000 -1570678578.0,11937906,10000000 -1570679178.0,11981140,10000000 -1570679778.0,12045338,10000000 -1570680378.0,11997520,10000000 -1570680978.0,12025644,10000000 -1570681578.0,11998361,10000000 -1570682178.0,11985003,10000000 -1570682778.0,11980885,10000000 -1570683378.0,12023411,10000000 -1570683978.0,12051655,10000000 -1570684578.0,12025613,10000000 -1570685178.0,12013451,10000000 -1570685778.0,12029132,10000000 -1570686378.0,11935136,10000000 -1570686978.0,11918355,10000000 -1570687578.0,11925035,10000000 -1570688178.0,11945341,10000000 -1570688778.0,11960409,10000000 -1570689378.0,11988080,10000000 -1570689978.0,11892268,10000000 -1570690578.0,11849823,10000000 -1570691178.0,11984104,10000000 -1570691778.0,11996705,10000000 -1570692378.0,11941479,10000000 -1570692978.0,12024287,10000000 -1570693578.0,11982206,10000000 -1570694178.0,12011031,10000000 -1570694778.0,11998800,10000000 -1570695378.0,11962099,10000000 -1570695978.0,11896324,10000000 -1570696578.0,11883040,10000000 -1570697178.0,11867654,10000000 -1570697778.0,11841260,10000000 -1570698378.0,11773425,10000000 -1570698978.0,11734123,10000000 -1570699578.0,11806630,10000000 -1570700178.0,11810490,10000000 -1570700778.0,11824367,10000000 -1570701378.0,11745420,10000000 -1570701978.0,11838379,10000000 -1570702578.0,11857430,10000000 -1570703178.0,11864413,10000000 -1570703778.0,11894564,10000000 -1570704378.0,11901284,10000000 -1570704978.0,11885592,10000000 -1570705578.0,11821155,10000000 -1570706178.0,11791222,10000000 -1570706778.0,11735637,10000000 -1570707378.0,11799859,10000000 -1570707978.0,11769746,10000000 -1570708578.0,11701669,10000000 -1570709178.0,11733527,10000000 -1570709778.0,11774496,10000000 -1570710378.0,11777814,10000000 -1570710978.0,11766963,10000000 -1570711578.0,11778315,10000000 -1570712178.0,11764337,10000000 -1570712778.0,11779185,10000000 -1570713378.0,11696907,10000000 -1570713978.0,11709556,10000000 -1570714578.0,11692196,10000000 -1570715178.0,11671983,10000000 -1570715778.0,11647605,10000000 -1570716378.0,11610374,10000000 -1570716978.0,11579395,10000000 -1570717578.0,11475749,10000000 -1570718178.0,11530616,10000000 -1570718778.0,11565239,10000000 -1570719378.0,11636275,10000000 -1570719978.0,11591104,10000000 -1570720578.0,11459323,10000000 -1570721178.0,11471861,10000000 -1570721778.0,11445277,10000000 -1570722378.0,11493166,10000000 -1570722978.0,11576865,10000000 -1570723578.0,11620328,10000000 -1570724178.0,11600987,10000000 -1570724778.0,11594027,10000000 -1570725378.0,11582091,10000000 -1570725978.0,11582590,10000000 -1570726578.0,11536419,10000000 -1570727178.0,11423798,10000000 -1570727778.0,11378542,10000000 -1570728378.0,11352209,10000000 -1570728978.0,11332793,10000000 -1570729578.0,11318599,10000000 -1570730178.0,11272183,10000000 -1570730778.0,11197853,10000000 -1570731378.0,11185316,10000000 -1570731978.0,11166794,10000000 -1570732578.0,11209613,10000000 -1570733178.0,11200940,10000000 -1570733778.0,11275150,10000000 -1570734378.0,11333726,10000000 -1570734978.0,11290245,10000000 -1570735578.0,11293987,10000000 -1570736178.0,11396893,10000000 -1570736778.0,11369676,10000000 -1570737378.0,11382487,10000000 -1570737978.0,11493030,10000000 -1570738578.0,11497975,10000000 -1570739178.0,11540520,10000000 -1570739778.0,11565765,10000000 -1570740378.0,11721301,10000000 -1570740978.0,11715001,10000000 -1570741578.0,11757241,10000000 -1570742178.0,11713954,10000000 -1570742778.0,11778931,10000000 -1570743378.0,11741133,10000000 -1570743978.0,11733926,10000000 -1570744578.0,11746353,10000000 -1570745178.0,11683024,10000000 -1570745778.0,11709680,10000000 -1570746378.0,11761268,10000000 -1570746978.0,11702456,10000000 -1570747578.0,11675936,10000000 -1570748178.0,11688787,10000000 -1570748778.0,11647169,10000000 -1570749378.0,11682080,10000000 -1570749978.0,11629301,10000000 -1570750578.0,11671673,10000000 -1570751178.0,11669859,10000000 -1570751778.0,11705849,10000000 -1570752378.0,11713059,10000000 -1570752978.0,11704087,10000000 -1570753578.0,11580646,10000000 -1570754178.0,11701181,10000000 -1570754778.0,11728078,10000000 -1570755378.0,11717585,10000000 -1570755978.0,11681174,10000000 -1570756578.0,11684237,10000000 -1570757178.0,11748717,10000000 -1570757778.0,11772687,10000000 -1570758378.0,11776557,10000000 -1570758978.0,11751803,10000000 -1570759578.0,11721976,10000000 -1570760178.0,11716191,10000000 -1570760778.0,11783643,10000000 -1570761378.0,11768899,10000000 -1570761978.0,11882636,10000000 -1570762578.0,11866638,10000000 -1570763178.0,11969355,10000000 -1570763778.0,11903018,10000000 -1570764378.0,11865126,10000000 -1570764978.0,11852643,10000000 -1570765578.0,11752690,10000000 -1570766178.0,11766604,10000000 -1570766778.0,11671489,10000000 -1570767378.0,11541532,10000000 -1570767978.0,11476788,10000000 -1570768578.0,11460673,10000000 -1570769178.0,11352459,10000000 -1570769778.0,11377635,10000000 -1570770378.0,11383382,10000000 -1570770978.0,11333378,10000000 -1570771578.0,11278797,10000000 -1570772178.0,11274084,10000000 -1570772778.0,11331048,10000000 -1570773378.0,11260352,10000000 -1570773978.0,11299252,10000000 -1570774578.0,11355473,10000000 -1570775178.0,11255800,10000000 -1570775778.0,11190628,10000000 -1570776378.0,11220151,10000000 -1570776978.0,11205272,10000000 -1570777578.0,11232247,10000000 -1570778178.0,11168924,10000000 -1570778778.0,11168724,10000000 -1570779378.0,11267271,10000000 -1570779978.0,11300395,10000000 -1570780578.0,11318448,10000000 -1570781178.0,11220095,10000000 -1570781778.0,11222987,10000000 -1570782378.0,11178487,10000000 -1570782978.0,11176591,10000000 -1570783578.0,11178005,10000000 -1570784178.0,11169219,10000000 -1570784778.0,11192813,10000000 -1570785378.0,11076816,10000000 -1570785978.0,11066079,10000000 -1570786578.0,11094186,10000000 -1570787178.0,11024719,10000000 -1570787778.0,10972806,10000000 -1570788378.0,10899997,10000000 -1570788978.0,10904285,10000000 -1570789578.0,10912041,10000000 -1570790178.0,10851378,10000000 -1570790778.0,10869947,10000000 -1570791378.0,10883965,10000000 -1570791978.0,10946539,10000000 -1570792578.0,10965698,10000000 -1570793178.0,10924794,10000000 -1570793778.0,10898496,10000000 -1570794378.0,10914576,10000000 -1570794978.0,10878835,10000000 -1570795578.0,10839995,10000000 -1570796178.0,10835942,10000000 -1570796778.0,10791389,10000000 -1570797378.0,10839196,10000000 -1570797978.0,10836621,10000000 -1570798578.0,10915121,10000000 -1570799178.0,10933984,10000000 -1570799778.0,10940907,10000000 -1570800378.0,10933743,10000000 -1570800978.0,10934460,10000000 -1570801578.0,10972285,10000000 -1570802178.0,10987106,10000000 -1570802778.0,10986421,10000000 -1570803378.0,11057591,10000000 -1570803978.0,11063637,10000000 -1570804578.0,11052685,10000000 -1570805178.0,11021561,10000000 -1570805778.0,11044148,10000000 -1570806378.0,11070314,10000000 -1570806978.0,11060698,10000000 -1570807578.0,11063814,10000000 -1570808178.0,11023261,10000000 -1570808778.0,10985883,10000000 -1570809378.0,10996319,10000000 -1570809978.0,11004334,10000000 -1570810578.0,11049376,10000000 -1570811178.0,10981830,10000000 -1570811778.0,11031559,10000000 -1570812378.0,11029811,10000000 -1570812978.0,11089940,10000000 -1570813578.0,11166236,10000000 -1570814178.0,11156277,10000000 -1570814778.0,11256228,10000000 -1570815378.0,11323497,10000000 -1570815978.0,11343947,10000000 -1570816578.0,11386066,10000000 -1570817178.0,11357191,10000000 -1570817778.0,11323176,10000000 -1570818378.0,11306329,10000000 -1570818978.0,11227055,10000000 -1570819578.0,11213565,10000000 -1570820178.0,11237580,10000000 -1570820778.0,11220987,10000000 -1570821378.0,11277189,10000000 -1570821978.0,11278329,10000000 -1570822578.0,11313806,10000000 -1570823178.0,11360058,10000000 -1570823778.0,11327283,10000000 -1570824378.0,11274284,10000000 -1570824978.0,11233807,10000000 -1570825578.0,11349656,10000000 -1570826178.0,11308398,10000000 -1570826778.0,11291034,10000000 -1570827378.0,11305401,10000000 -1570827978.0,11233442,10000000 -1570828578.0,11225448,10000000 -1570829178.0,11229319,10000000 -1570829778.0,11261952,10000000 -1570830378.0,11213656,10000000 -1570830978.0,11208881,10000000 -1570831578.0,11242191,10000000 -1570832178.0,11333049,10000000 -1570832778.0,11360459,10000000 -1570833378.0,11376837,10000000 -1570833978.0,11425853,10000000 -1570834578.0,11488196,10000000 -1570835178.0,11380716,10000000 -1570835778.0,11416558,10000000 -1570836378.0,11432432,10000000 -1570836978.0,11441744,10000000 -1570837578.0,11427789,10000000 -1570838178.0,11391461,10000000 -1570838778.0,11423791,10000000 -1570839378.0,11443207,10000000 -1570839978.0,11400162,10000000 -1570840578.0,11447488,10000000 -1570841178.0,11450261,10000000 -1570841778.0,11354780,10000000 -1570842378.0,11394047,10000000 -1570842978.0,11472715,10000000 -1570843578.0,11388422,10000000 -1570844178.0,11394068,10000000 -1570844778.0,11371485,10000000 -1570845378.0,11493770,10000000 -1570845978.0,11489854,10000000 -1570846578.0,11423636,10000000 -1570847178.0,11415733,10000000 -1570847778.0,11422650,10000000 -1570848378.0,11345500,10000000 -1570848978.0,11346159,10000000 -1570849578.0,11303960,10000000 -1570850178.0,11307129,10000000 -1570850778.0,11283576,10000000 -1570851378.0,11358953,10000000 -1570851978.0,11371157,10000000 -1570852578.0,11338698,10000000 -1570853178.0,11368812,10000000 -1570853778.0,11365594,10000000 -1570854378.0,11414921,10000000 -1570854978.0,11331068,10000000 -1570855578.0,11417130,10000000 -1570856178.0,11382761,10000000 -1570856778.0,11342398,10000000 -1570857378.0,11325988,10000000 -1570857978.0,11335983,10000000 -1570858578.0,11279553,10000000 -1570859178.0,11244109,10000000 -1570859778.0,11236325,10000000 -1570860378.0,11284220,10000000 -1570860978.0,11263368,10000000 -1570861578.0,11305203,10000000 -1570862178.0,11322724,10000000 -1570862778.0,11317560,10000000 -1570863378.0,11283365,10000000 -1570863978.0,11279247,10000000 -1570864578.0,11282235,10000000 -1570865178.0,11340761,10000000 -1570865778.0,11326512,10000000 -1570866378.0,11310166,10000000 -1570866978.0,11347758,10000000 -1570867578.0,11289839,10000000 -1570868178.0,11320125,10000000 -1570868778.0,11309007,10000000 -1570869378.0,11333495,10000000 -1570869978.0,11359970,10000000 -1570870578.0,11384725,10000000 -1570871178.0,11413103,10000000 -1570871778.0,11388834,10000000 -1570872378.0,11416503,10000000 -1570872978.0,11438360,10000000 -1570873578.0,11471727,10000000 -1570874178.0,11491087,10000000 -1570874778.0,11557459,10000000 -1570875378.0,11534493,10000000 -1570875978.0,11489481,10000000 -1570876578.0,11548144,10000000 -1570877178.0,11617359,10000000 -1570877778.0,11622962,10000000 -1570878378.0,11567767,10000000 -1570878978.0,11555076,10000000 -1570879578.0,11568906,10000000 -1570880178.0,11507170,10000000 -1570880778.0,11449054,10000000 -1570881378.0,11426306,10000000 -1570881978.0,11421725,10000000 -1570882578.0,11436733,10000000 -1570883178.0,11479870,10000000 -1570883778.0,11464756,10000000 -1570884378.0,11459954,10000000 -1570884978.0,11494661,10000000 -1570885578.0,11519213,10000000 -1570886178.0,11527342,10000000 -1570886778.0,11413833,10000000 -1570887378.0,11498312,10000000 -1570887978.0,11427253,10000000 -1570888578.0,11373926,10000000 -1570889178.0,11454707,10000000 -1570889778.0,11403674,10000000 -1570890378.0,11391105,10000000 -1570890978.0,11420245,10000000 -1570891578.0,11438595,10000000 -1570892178.0,11407544,10000000 -1570892778.0,11473093,10000000 -1570893378.0,11445397,10000000 -1570893978.0,11456456,10000000 -1570894578.0,11462745,10000000 -1570895178.0,11413504,10000000 -1570895778.0,11439248,10000000 -1570896378.0,11531378,10000000 -1570896978.0,11598228,10000000 -1570897578.0,11573871,10000000 -1570898178.0,11603202,10000000 -1570898778.0,11582701,10000000 -1570899378.0,11659604,10000000 -1570899978.0,11720383,10000000 -1570900578.0,11639811,10000000 -1570901178.0,11538537,10000000 -1570901778.0,11558467,10000000 -1570902378.0,11536095,10000000 -1570902978.0,11525137,10000000 -1570903578.0,11520241,10000000 -1570904178.0,11515553,10000000 -1570904778.0,11551196,10000000 -1570905378.0,11668491,10000000 -1570905978.0,11632012,10000000 -1570906578.0,11647470,10000000 -1570907178.0,11624094,10000000 -1570907778.0,11591039,10000000 -1570908378.0,11615094,10000000 -1570908978.0,11531045,10000000 -1570909578.0,11600883,10000000 -1570910178.0,11608458,10000000 -1570910778.0,11629284,10000000 -1570911378.0,11599513,10000000 -1570911978.0,11539826,10000000 -1570912578.0,11597017,10000000 -1570913178.0,11606893,10000000 -1570913778.0,11631560,10000000 -1570914378.0,11687059,10000000 -1570914978.0,11690001,10000000 -1570915578.0,11692467,10000000 -1570916178.0,11689178,10000000 -1570916778.0,11606072,10000000 -1570917378.0,11643146,10000000 -1570917978.0,11688824,10000000 -1570918578.0,11658683,10000000 -1570919178.0,11629426,10000000 -1570919778.0,11622866,10000000 -1570920378.0,11625699,10000000 -1570920978.0,11537349,10000000 -1570921578.0,11527675,10000000 -1570922178.0,11544140,10000000 -1570922778.0,11524501,10000000 -1570923378.0,11459774,10000000 -1570923978.0,11442502,10000000 -1570924578.0,11449200,10000000 -1570925178.0,11387682,10000000 -1570925778.0,11264881,10000000 -1570926378.0,11288220,10000000 -1570926978.0,11283128,10000000 -1570927578.0,11282428,10000000 -1570928178.0,11269242,10000000 -1570928778.0,11275854,10000000 -1570929378.0,11263716,10000000 -1570929978.0,11383365,10000000 -1570930578.0,11388596,10000000 -1570931178.0,11416348,10000000 -1570931778.0,11390298,10000000 -1570932378.0,11350945,10000000 -1570932978.0,11291593,10000000 -1570933578.0,11330041,10000000 -1570934178.0,11324916,10000000 -1570934778.0,11262722,10000000 -1570935378.0,11272485,10000000 -1570935978.0,11292902,10000000 -1570936578.0,11280573,10000000 -1570937178.0,11361298,10000000 -1570937778.0,11398761,10000000 -1570938378.0,11419909,10000000 -1570938978.0,11334285,10000000 -1570939578.0,11346424,10000000 -1570940178.0,11352899,10000000 -1570940778.0,11319280,10000000 -1570941378.0,11283279,10000000 -1570941978.0,11277375,10000000 -1570942578.0,11350150,10000000 -1570943178.0,11372472,10000000 -1570943778.0,11303765,10000000 -1570944378.0,11262952,10000000 -1570944978.0,11296883,10000000 -1570945578.0,11268761,10000000 -1570946178.0,11306783,10000000 -1570946778.0,11329379,10000000 -1570947378.0,11281265,10000000 -1570947978.0,11199183,10000000 -1570948578.0,11213195,10000000 -1570949178.0,11160496,10000000 -1570949778.0,11155097,10000000 -1570950378.0,11218729,10000000 -1570950978.0,11217261,10000000 -1570951578.0,11151443,10000000 -1570952178.0,11194560,10000000 -1570952778.0,11134959,10000000 -1570953378.0,11158001,10000000 -1570953978.0,11173973,10000000 -1570954578.0,11167436,10000000 -1570955178.0,11100221,10000000 -1570955778.0,11103677,10000000 -1570956378.0,11105112,10000000 -1570956978.0,11091759,10000000 -1570957578.0,11210334,10000000 -1570958178.0,11199970,10000000 -1570958778.0,11163558,10000000 -1570959378.0,11147431,10000000 -1570959978.0,11120800,10000000 -1570960578.0,11093593,10000000 -1570961178.0,11068692,10000000 -1570961778.0,11015879,10000000 -1570962378.0,10971562,10000000 -1570962978.0,11002170,10000000 -1570963578.0,11029924,10000000 -1570964178.0,11070373,10000000 -1570964778.0,11094854,10000000 -1570965378.0,11096450,10000000 -1570965978.0,11099149,10000000 -1570966578.0,11085761,10000000 -1570967178.0,10987473,10000000 -1570967778.0,10971751,10000000 -1570968378.0,10931978,10000000 -1570968978.0,10964897,10000000 -1570969578.0,10991162,10000000 -1570970178.0,10970107,10000000 -1570970778.0,10987481,10000000 -1570971378.0,10991206,10000000 -1570971978.0,11057304,10000000 -1570972578.0,10992866,10000000 -1570973178.0,10935617,10000000 -1570973778.0,10901465,10000000 -1570974378.0,10920916,10000000 -1570974978.0,10966833,10000000 -1570975578.0,10927551,10000000 -1570976178.0,10883561,10000000 -1570976778.0,10885331,10000000 -1570977378.0,10887678,10000000 -1570977978.0,10866251,10000000 -1570978578.0,10875250,10000000 -1570979178.0,10849637,10000000 -1570979778.0,10813173,10000000 -1570980378.0,10869206,10000000 -1570980978.0,10847427,10000000 -1570981578.0,10868910,10000000 -1570982178.0,10881442,10000000 -1570982778.0,10833791,10000000 -1570983378.0,10853405,10000000 -1570983978.0,10873896,10000000 -1570984578.0,10887116,10000000 -1570985178.0,10856635,10000000 -1570985778.0,10920277,10000000 -1570986378.0,10928572,10000000 -1570986978.0,10998934,10000000 -1570987578.0,10976149,10000000 -1570988178.0,10900978,10000000 -1570988778.0,10884651,10000000 -1570989378.0,10929180,10000000 -1570989978.0,10944067,10000000 -1570990578.0,10999330,10000000 -1570991178.0,11031845,10000000 -1570991778.0,11001682,10000000 -1570992378.0,11038555,10000000 -1570992978.0,11025395,10000000 -1570993578.0,11035372,10000000 -1570994178.0,11118035,10000000 -1570994778.0,11163487,10000000 -1570995378.0,11195514,10000000 -1570995978.0,11145610,10000000 -1570996578.0,11144405,10000000 -1570997178.0,11121864,10000000 -1570997778.0,11022113,10000000 -1570998378.0,11074677,10000000 -1570998978.0,11030751,10000000 -1570999578.0,11144718,10000000 -1571000178.0,11039504,10000000 -1571000778.0,11058782,10000000 -1571001378.0,11047693,10000000 -1571001978.0,11042826,10000000 -1571002578.0,11064678,10000000 -1571003178.0,11043375,10000000 -1571003778.0,11061849,10000000 -1571004378.0,11052924,10000000 -1571004978.0,11048889,10000000 -1571005578.0,11073134,10000000 -1571006178.0,11142918,10000000 -1571006778.0,11216410,10000000 -1571007378.0,11191302,10000000 -1571007978.0,11202715,10000000 -1571008578.0,11234734,10000000 -1571009178.0,11261751,10000000 -1571009778.0,11285058,10000000 -1571010378.0,11239713,10000000 -1571010978.0,11225613,10000000 -1571011578.0,11206887,10000000 -1571012178.0,11214056,10000000 -1571012778.0,11238708,10000000 -1571013378.0,11184436,10000000 -1571013978.0,11241722,10000000 -1571014578.0,11258100,10000000 -1571015178.0,11209957,10000000 -1571015778.0,11171449,10000000 -1571016378.0,11145263,10000000 -1571016978.0,11182694,10000000 -1571017578.0,11158814,10000000 -1571018178.0,11132898,10000000 -1571018778.0,11120312,10000000 -1571019378.0,11104884,10000000 -1571019978.0,11140710,10000000 -1571020578.0,11157168,10000000 -1571021178.0,11126615,10000000 -1571021778.0,11137683,10000000 -1571022378.0,11015019,10000000 -1571022978.0,11006231,10000000 -1571023578.0,10990149,10000000 -1571024178.0,10915773,10000000 -1571024778.0,10827710,10000000 -1571025378.0,10840670,10000000 -1571025978.0,10814473,10000000 -1571026578.0,10837857,10000000 -1571027178.0,10840712,10000000 -1571027778.0,10870483,10000000 -1571028378.0,10880724,10000000 -1571028978.0,10838675,10000000 -1571029578.0,10820625,10000000 -1571030178.0,10952554,10000000 -1571030778.0,10916742,10000000 -1571031378.0,10942049,10000000 -1571031978.0,10919406,10000000 -1571032578.0,10947079,10000000 -1571033178.0,10956973,10000000 -1571033778.0,10939845,10000000 -1571034378.0,11005161,10000000 -1571034978.0,11007956,10000000 -1571035578.0,10917761,10000000 -1571036178.0,10960770,10000000 -1571036778.0,10980669,10000000 -1571037378.0,11030695,10000000 -1571037978.0,10998488,10000000 -1571038578.0,10958404,10000000 -1571039178.0,10880134,10000000 -1571039778.0,10928141,10000000 -1571040378.0,10991433,10000000 -1571040978.0,11010547,10000000 -1571041578.0,11107649,10000000 -1571042178.0,11106425,10000000 -1571042778.0,11100642,10000000 -1571043378.0,11066295,10000000 -1571043978.0,11153620,10000000 -1571044578.0,11187184,10000000 -1571045178.0,11161603,10000000 -1571045778.0,11198991,10000000 -1571046378.0,11130124,10000000 -1571046978.0,11166675,10000000 -1571047578.0,11108264,10000000 -1571048178.0,11119944,10000000 -1571048778.0,11126205,10000000 -1571049378.0,11043215,10000000 -1571049978.0,11010043,10000000 -1571050578.0,11031286,10000000 -1571051178.0,10918653,10000000 -1571051778.0,10892214,10000000 -1571052378.0,10912520,10000000 -1571052978.0,10997423,10000000 -1571053578.0,11006934,10000000 -1571054178.0,11040940,10000000 -1571054778.0,11150626,10000000 -1571055378.0,11171678,10000000 -1571055978.0,11168650,10000000 -1571056578.0,11147959,10000000 -1571057178.0,11140191,10000000 -1571057778.0,11152823,10000000 -1571058378.0,11201445,10000000 -1571058978.0,11219405,10000000 -1571059578.0,11238060,10000000 -1571060178.0,11196966,10000000 -1571060778.0,11201984,10000000 -1571061378.0,11231569,10000000 -1571061978.0,11215774,10000000 -1571062578.0,11205272,10000000 -1571063178.0,11216003,10000000 -1571063778.0,11159065,10000000 -1571064378.0,11153151,10000000 -1571064978.0,11221632,10000000 -1571065578.0,11211332,10000000 -1571066178.0,11188099,10000000 -1571066778.0,11171930,10000000 -1571067378.0,11192855,10000000 -1571067978.0,11227573,10000000 -1571068578.0,11281245,10000000 -1571069178.0,11280093,10000000 -1571069778.0,11330242,10000000 -1571070378.0,11299633,10000000 -1571070978.0,11344428,10000000 -1571071578.0,11399995,10000000 -1571072178.0,11379451,10000000 -1571072778.0,11418765,10000000 -1571073378.0,11477121,10000000 -1571073978.0,11513565,10000000 -1571074578.0,11535434,10000000 -1571075178.0,11572620,10000000 -1571075778.0,11533470,10000000 -1571076378.0,11537508,10000000 -1571076978.0,11497707,10000000 -1571077578.0,11493959,10000000 -1571078178.0,11472355,10000000 -1571078778.0,11511084,10000000 -1571079378.0,11571879,10000000 -1571079978.0,11639983,10000000 -1571080578.0,11676814,10000000 -1571081178.0,11689146,10000000 -1571081778.0,11757437,10000000 -1571082378.0,11760289,10000000 -1571082978.0,11746406,10000000 -1571083578.0,11737468,10000000 -1571084178.0,11732298,10000000 -1571084778.0,11733608,10000000 -1571085378.0,11844730,10000000 -1571085978.0,11846898,10000000 -1571086578.0,11797386,10000000 -1571087178.0,11861844,10000000 -1571087778.0,11868129,10000000 -1571088378.0,11821178,10000000 -1571088978.0,11802559,10000000 -1571089578.0,11831341,10000000 -1571090178.0,11825383,10000000 -1571090778.0,11755484,10000000 -1571091378.0,11750379,10000000 -1571091978.0,11760309,10000000 -1571092578.0,11723715,10000000 -1571093178.0,11791901,10000000 -1571093778.0,11804098,10000000 -1571094378.0,11823599,10000000 -1571094978.0,11914325,10000000 -1571095578.0,11929719,10000000 -1571096178.0,11965387,10000000 -1571096778.0,11959362,10000000 -1571097378.0,11947722,10000000 -1571097978.0,11996747,10000000 -1571098578.0,11997368,10000000 -1571099178.0,11945818,10000000 -1571099778.0,11958984,10000000 -1571100378.0,11886559,10000000 -1571100978.0,11867726,10000000 -1571101578.0,11874966,10000000 -1571102178.0,11836484,10000000 -1571102778.0,11766362,10000000 -1571103378.0,11770435,10000000 -1571103978.0,11690511,10000000 -1571104578.0,11660922,10000000 -1571105178.0,11665150,10000000 -1571105778.0,11645281,10000000 -1571106378.0,11677573,10000000 -1571106978.0,11693668,10000000 -1571107578.0,11754038,10000000 -1571108178.0,11730486,10000000 -1571108778.0,11718982,10000000 -1571109378.0,11787124,10000000 -1571109978.0,11820912,10000000 -1571110578.0,11759380,10000000 -1571111178.0,11740784,10000000 -1571111778.0,11712683,10000000 -1571112378.0,11735096,10000000 -1571112978.0,11717731,10000000 -1571113578.0,11692779,10000000 -1571114178.0,11718253,10000000 -1571114778.0,11761695,10000000 -1571115378.0,11678780,10000000 -1571115978.0,11675185,10000000 -1571116578.0,11746160,10000000 -1571117178.0,11759553,10000000 -1571117778.0,11735753,10000000 -1571118378.0,11779251,10000000 -1571118978.0,11723853,10000000 -1571119578.0,11715673,10000000 -1571120178.0,11751237,10000000 -1571120778.0,11864084,10000000 -1571121378.0,11950416,10000000 -1571121978.0,12050878,10000000 -1571122578.0,12013195,10000000 -1571123178.0,11953166,10000000 -1571123778.0,11989852,10000000 -1571124378.0,11929398,10000000 -1571124978.0,11894157,10000000 -1571125578.0,11900062,10000000 -1571126178.0,11905573,10000000 -1571126778.0,11959659,10000000 -1571127378.0,11864662,10000000 -1571127978.0,11844872,10000000 -1571128578.0,11908007,10000000 -1571129178.0,11866493,10000000 -1571129778.0,11897406,10000000 -1571130378.0,11850514,10000000 -1571130978.0,11898778,10000000 -1571131578.0,11933218,10000000 -1571132178.0,11983222,10000000 -1571132778.0,11976311,10000000 -1571133378.0,11993899,10000000 -1571133978.0,11934662,10000000 -1571134578.0,11922378,10000000 -1571135178.0,11998525,10000000 -1571135778.0,12062652,10000000 -1571136378.0,12153213,10000000 -1571136978.0,12265735,10000000 -1571137578.0,12264519,10000000 -1571138178.0,12265442,10000000 -1571138778.0,12200467,10000000 -1571139378.0,12168611,10000000 -1571139978.0,12213002,10000000 -1571140578.0,12152094,10000000 -1571141178.0,12168331,10000000 -1571141778.0,12097740,10000000 -1571142378.0,12152139,10000000 -1571142978.0,12117627,10000000 -1571143578.0,12075218,10000000 -1571144178.0,12101761,10000000 -1571144778.0,12129894,10000000 -1571145378.0,12138648,10000000 -1571145978.0,12194353,10000000 -1571146578.0,12189380,10000000 -1571147178.0,12249967,10000000 -1571147778.0,12315512,10000000 -1571148378.0,12263573,10000000 -1571148978.0,12309447,10000000 -1571149578.0,12339157,10000000 -1571150178.0,12379992,10000000 -1571150778.0,12395705,10000000 -1571151378.0,12391189,10000000 -1571151978.0,12325957,10000000 -1571152578.0,12334444,10000000 -1571153178.0,12296760,10000000 -1571153778.0,12245306,10000000 -1571154378.0,12274207,10000000 -1571154978.0,12261406,10000000 -1571155578.0,12275729,10000000 -1571156178.0,12274973,10000000 -1571156778.0,12302681,10000000 -1571157378.0,12321154,10000000 -1571157978.0,12307188,10000000 -1571158578.0,12261459,10000000 -1571159178.0,12334734,10000000 -1571159778.0,12253862,10000000 -1571160378.0,12222119,10000000 -1571160978.0,12307978,10000000 -1571161578.0,12315227,10000000 -1571162178.0,12218479,10000000 -1571162778.0,12151630,10000000 -1571163378.0,12233055,10000000 -1571163978.0,12277047,10000000 -1571164578.0,12236672,10000000 -1571165178.0,12230546,10000000 -1571165778.0,12246596,10000000 -1571166378.0,12213717,10000000 -1571166978.0,12228562,10000000 -1571167578.0,12261874,10000000 -1571168178.0,12236110,10000000 -1571168778.0,12211815,10000000 -1571169378.0,12184941,10000000 -1571169978.0,12198011,10000000 -1571170578.0,12131894,10000000 -1571171178.0,12176392,10000000 -1571171778.0,12207115,10000000 -1571172378.0,12243765,10000000 -1571172978.0,12236198,10000000 -1571173578.0,12181298,10000000 -1571174178.0,12243871,10000000 -1571174778.0,12182188,10000000 -1571175378.0,12184090,10000000 -1571175978.0,12203194,10000000 -1571176578.0,12175179,10000000 -1571177178.0,12067203,10000000 -1571177778.0,12036078,10000000 -1571178378.0,12083504,10000000 -1571178978.0,12108204,10000000 -1571179578.0,12016399,10000000 -1571180178.0,12030815,10000000 -1571180778.0,12041599,10000000 -1571181378.0,12040830,10000000 -1571181978.0,12070032,10000000 -1571182578.0,12040880,10000000 -1571183178.0,12002737,10000000 -1571183778.0,12062163,10000000 -1571184378.0,12068932,10000000 -1571184978.0,12055602,10000000 -1571185578.0,12002632,10000000 -1571186178.0,11934414,10000000 -1571186778.0,11921814,10000000 -1571187378.0,11851281,10000000 -1571187978.0,11893191,10000000 -1571188578.0,11950695,10000000 -1571189178.0,11984885,10000000 -1571189778.0,11990946,10000000 -1571190378.0,11999944,10000000 -1571190978.0,12035866,10000000 -1571191578.0,11961688,10000000 -1571192178.0,12001536,10000000 -1571192778.0,12090444,10000000 -1571193378.0,12003081,10000000 -1571193978.0,12083242,10000000 -1571194578.0,12081225,10000000 -1571195178.0,12068637,10000000 -1571195778.0,12069511,10000000 -1571196378.0,12031918,10000000 -1571196978.0,11964907,10000000 -1571197578.0,11960773,10000000 -1571198178.0,12059827,10000000 -1571198778.0,12037729,10000000 -1571199378.0,11975393,10000000 -1571199978.0,12053354,10000000 -1571200578.0,12135188,10000000 -1571201178.0,12110400,10000000 -1571201778.0,12071157,10000000 -1571202378.0,12160372,10000000 -1571202978.0,12139613,10000000 -1571203578.0,12172707,10000000 -1571204178.0,12184490,10000000 -1571204778.0,12112182,10000000 -1571205378.0,12095615,10000000 -1571205978.0,11972906,10000000 -1571206578.0,11894381,10000000 -1571207178.0,12006844,10000000 -1571207778.0,11960639,10000000 -1571208378.0,11901464,10000000 -1571208978.0,11901976,10000000 -1571209578.0,11942305,10000000 -1571210178.0,12013531,10000000 -1571210778.0,12018381,10000000 -1571211378.0,12069432,10000000 -1571211978.0,12156997,10000000 -1571212578.0,12164176,10000000 -1571213178.0,12176376,10000000 -1571213778.0,12190311,10000000 -1571214378.0,12238371,10000000 -1571214978.0,12191649,10000000 -1571215578.0,12163565,10000000 -1571216178.0,12047138,10000000 -1571216778.0,12094843,10000000 -1571217378.0,12127047,10000000 -1571217978.0,12191191,10000000 -1571218578.0,12299987,10000000 -1571219178.0,12306266,10000000 -1571219778.0,12217134,10000000 -1571220378.0,12291497,10000000 -1571220978.0,12386386,10000000 -1571221578.0,12375202,10000000 -1571222178.0,12455518,10000000 -1571222778.0,12356757,10000000 -1571223378.0,12406441,10000000 -1571223978.0,12448609,10000000 -1571224578.0,12402296,10000000 -1571225178.0,12481413,10000000 -1571225778.0,12440136,10000000 -1571226378.0,12412432,10000000 -1571226978.0,12394313,10000000 -1571227578.0,12381162,10000000 -1571228178.0,12382580,10000000 -1571228778.0,12445747,10000000 -1571229378.0,12444295,10000000 -1571229978.0,12413369,10000000 -1571230578.0,12391631,10000000 -1571231178.0,12356219,10000000 -1571231778.0,12410908,10000000 -1571232378.0,12415866,10000000 -1571232978.0,12397526,10000000 -1571233578.0,12444920,10000000 -1571234178.0,12540318,10000000 -1571234778.0,12530403,10000000 -1571235378.0,12605363,10000000 -1571235978.0,12582596,10000000 -1571236578.0,12621013,10000000 -1571237178.0,12635359,10000000 -1571237778.0,12678792,10000000 -1571238378.0,12622522,10000000 -1571238978.0,12541016,10000000 -1571239578.0,12509615,10000000 -1571240178.0,12474072,10000000 -1571240778.0,12514997,10000000 -1571241378.0,12584614,10000000 -1571241978.0,12500110,10000000 -1571242578.0,12406964,10000000 -1571243178.0,12386916,10000000 -1571243778.0,12387945,10000000 -1571244378.0,12393373,10000000 -1571244978.0,12445122,10000000 -1571245578.0,12422529,10000000 -1571246178.0,12462914,10000000 -1571246778.0,12474550,10000000 -1571247378.0,12530852,10000000 -1571247978.0,12519529,10000000 -1571248578.0,12440827,10000000 -1571249178.0,12425498,10000000 -1571249778.0,12391397,10000000 -1571250378.0,12447280,10000000 -1571250978.0,12443687,10000000 -1571251578.0,12479236,10000000 -1571252178.0,12425173,10000000 -1571252778.0,12368821,10000000 -1571253378.0,12293949,10000000 -1571253978.0,12273816,10000000 -1571254578.0,12236150,10000000 -1571255178.0,12108232,10000000 -1571255778.0,12059238,10000000 -1571256378.0,12060603,10000000 -1571256978.0,11992488,10000000 -1571257578.0,11993119,10000000 -1571258178.0,11863958,10000000 -1571258778.0,11833738,10000000 -1571259378.0,11884410,10000000 -1571259978.0,11863476,10000000 -1571260578.0,11853400,10000000 -1571261178.0,11946502,10000000 -1571261778.0,11910428,10000000 -1571262378.0,11864576,10000000 -1571262978.0,11874435,10000000 -1571263578.0,11777511,10000000 -1571264178.0,11793973,10000000 -1571264778.0,11778641,10000000 -1571265378.0,11831122,10000000 -1571265978.0,11853522,10000000 -1571266578.0,11849630,10000000 -1571267178.0,11848982,10000000 -1571267778.0,11868156,10000000 -1571268378.0,11752759,10000000 -1571268978.0,11728568,10000000 -1571269578.0,11737682,10000000 -1571270178.0,11787748,10000000 -1571270778.0,11755961,10000000 -1571271378.0,11834165,10000000 -1571271978.0,11898102,10000000 -1571272578.0,11889548,10000000 -1571273178.0,11839295,10000000 -1571273778.0,11843589,10000000 -1571274378.0,11861539,10000000 -1571274978.0,11786279,10000000 -1571275578.0,11792929,10000000 -1571276178.0,11806229,10000000 -1571276778.0,11795853,10000000 -1571277378.0,11902248,10000000 -1571277978.0,11888673,10000000 -1571278578.0,11887329,10000000 -1571279178.0,11922115,10000000 -1571279778.0,11868084,10000000 -1571280378.0,11934967,10000000 -1571280978.0,11924346,10000000 -1571281578.0,11900757,10000000 -1571282178.0,11805182,10000000 -1571282778.0,11821970,10000000 -1571283378.0,11794498,10000000 -1571283978.0,11769215,10000000 -1571284578.0,11846016,10000000 -1571285178.0,11760950,10000000 -1571285778.0,11784365,10000000 -1571286378.0,11770349,10000000 -1571286978.0,11689969,10000000 -1571287578.0,11672214,10000000 -1571288178.0,11658610,10000000 -1571288778.0,11745035,10000000 -1571289378.0,11712431,10000000 -1571289978.0,11719887,10000000 -1571290578.0,11687910,10000000 -1571291178.0,11719495,10000000 -1571291778.0,11756668,10000000 -1571292378.0,11757759,10000000 -1571292978.0,11719040,10000000 -1571293578.0,11667633,10000000 -1571294178.0,11658129,10000000 -1571294778.0,11510802,10000000 -1571295378.0,11514007,10000000 -1571295978.0,11562748,10000000 -1571296578.0,11517555,10000000 -1571297178.0,11558905,10000000 -1571297778.0,11599677,10000000 -1571298378.0,11568983,10000000 -1571298978.0,11519996,10000000 -1571299578.0,11570959,10000000 -1571300178.0,11584187,10000000 -1571300778.0,11568905,10000000 -1571301378.0,11571545,10000000 -1571301978.0,11514912,10000000 -1571302578.0,11536842,10000000 -1571303178.0,11497900,10000000 -1571303778.0,11536670,10000000 -1571304378.0,11466743,10000000 -1571304978.0,11434112,10000000 -1571305578.0,11452970,10000000 -1571306178.0,11454809,10000000 -1571306778.0,11545441,10000000 -1571307378.0,11579442,10000000 -1571307978.0,11612589,10000000 -1571308578.0,11620881,10000000 -1571309178.0,11620269,10000000 -1571309778.0,11592299,10000000 -1571310378.0,11573161,10000000 -1571310978.0,11550077,10000000 -1571311578.0,11543621,10000000 -1571312178.0,11436059,10000000 -1571312778.0,11393581,10000000 -1571313378.0,11420098,10000000 -1571313978.0,11451680,10000000 -1571314578.0,11446357,10000000 -1571315178.0,11431750,10000000 -1571315778.0,11421159,10000000 -1571316378.0,11422120,10000000 -1571316978.0,11471402,10000000 -1571317578.0,11460646,10000000 -1571318178.0,11558315,10000000 -1571318778.0,11503997,10000000 -1571319378.0,11570225,10000000 -1571319978.0,11567376,10000000 -1571320578.0,11580232,10000000 -1571321178.0,11558255,10000000 -1571321778.0,11573999,10000000 -1571322378.0,11571984,10000000 -1571322978.0,11590246,10000000 -1571323578.0,11620615,10000000 -1571324178.0,11590831,10000000 -1571324778.0,11555335,10000000 -1571325378.0,11519661,10000000 -1571325978.0,11485099,10000000 -1571326578.0,11388246,10000000 -1571327178.0,11474388,10000000 -1571327778.0,11505820,10000000 -1571328378.0,11546298,10000000 -1571328978.0,11534507,10000000 -1571329578.0,11598586,10000000 -1571330178.0,11613973,10000000 -1571330778.0,11630641,10000000 -1571331378.0,11604135,10000000 -1571331978.0,11542812,10000000 -1571332578.0,11548929,10000000 -1571333178.0,11535217,10000000 -1571333778.0,11590964,10000000 -1571334378.0,11547542,10000000 -1571334978.0,11554501,10000000 -1571335578.0,11553710,10000000 -1571336178.0,11541161,10000000 -1571336778.0,11632748,10000000 -1571337378.0,11587950,10000000 -1571337978.0,11613510,10000000 -1571338578.0,11645253,10000000 -1571339178.0,11625115,10000000 -1571339778.0,11617918,10000000 -1571340378.0,11659711,10000000 -1571340978.0,11669838,10000000 -1571341578.0,11694596,10000000 -1571342178.0,11727371,10000000 -1571342778.0,11751935,10000000 -1571343378.0,11749112,10000000 -1571343978.0,11743721,10000000 -1571344578.0,11749202,10000000 -1571345178.0,11768903,10000000 -1571345778.0,11761962,10000000 -1571346378.0,11837251,10000000 -1571346978.0,11881746,10000000 -1571347578.0,11868294,10000000 -1571348178.0,11810116,10000000 -1571348778.0,11836743,10000000 -1571349378.0,11811401,10000000 -1571349978.0,11736549,10000000 -1571350578.0,11728430,10000000 -1571351178.0,11749565,10000000 -1571351778.0,11762016,10000000 -1571352378.0,11655229,10000000 -1571352978.0,11697494,10000000 -1571353578.0,11674874,10000000 -1571354178.0,11654501,10000000 -1571354778.0,11685400,10000000 -1571355378.0,11659448,10000000 -1571355978.0,11681327,10000000 -1571356578.0,11667419,10000000 -1571357178.0,11684878,10000000 -1571357778.0,11643014,10000000 -1571358378.0,11570716,10000000 -1571358978.0,11498908,10000000 -1571359578.0,11594050,10000000 -1571360178.0,11588687,10000000 -1571360778.0,11567621,10000000 -1571361378.0,11520983,10000000 -1571361978.0,11547294,10000000 -1571362578.0,11495114,10000000 -1571363178.0,11479287,10000000 -1571363778.0,11453513,10000000 -1571364378.0,11445927,10000000 -1571364978.0,11341200,10000000 -1571365578.0,11350852,10000000 -1571366178.0,11351690,10000000 -1571366778.0,11298773,10000000 -1571367378.0,11295126,10000000 -1571367978.0,11347620,10000000 -1571368578.0,11341465,10000000 -1571369178.0,11309083,10000000 -1571369778.0,11319441,10000000 -1571370378.0,11333283,10000000 -1571370978.0,11287006,10000000 -1571371578.0,11275591,10000000 -1571372178.0,11223915,10000000 -1571372778.0,11214959,10000000 -1571373378.0,11212538,10000000 -1571373978.0,11178236,10000000 -1571374578.0,11184764,10000000 -1571375178.0,11194672,10000000 -1571375778.0,11116604,10000000 -1571376378.0,11157630,10000000 -1571376978.0,11227958,10000000 -1571377578.0,11129659,10000000 -1571378178.0,11174666,10000000 -1571378778.0,11178604,10000000 -1571379378.0,11123300,10000000 -1571379978.0,11089912,10000000 -1571380578.0,11061578,10000000 -1571381178.0,11034397,10000000 -1571381778.0,11108118,10000000 -1571382378.0,11159711,10000000 -1571382978.0,11270695,10000000 -1571383578.0,11257021,10000000 -1571384178.0,11263082,10000000 -1571384778.0,11229428,10000000 -1571385378.0,11193921,10000000 -1571385978.0,11172265,10000000 -1571386578.0,11199172,10000000 -1571387178.0,11303698,10000000 -1571387778.0,11303178,10000000 -1571388378.0,11364554,10000000 -1571388978.0,11360932,10000000 -1571389578.0,11300368,10000000 -1571390178.0,11280043,10000000 -1571390778.0,11239301,10000000 -1571391378.0,11246643,10000000 -1571391978.0,11265040,10000000 -1571392578.0,11220783,10000000 -1571393178.0,11253707,10000000 -1571393778.0,11293800,10000000 -1571394378.0,11323274,10000000 -1571394978.0,11356789,10000000 -1571395578.0,11300804,10000000 -1571396178.0,11304196,10000000 -1571396778.0,11327345,10000000 -1571397378.0,11379389,10000000 -1571397978.0,11407910,10000000 -1571398578.0,11496677,10000000 -1571399178.0,11507885,10000000 -1571399778.0,11504348,10000000 -1571400378.0,11489815,10000000 -1571400978.0,11436760,10000000 -1571401578.0,11428635,10000000 -1571402178.0,11569809,10000000 -1571402778.0,11644769,10000000 -1571403378.0,11689848,10000000 -1571403978.0,11703512,10000000 -1571404578.0,11719035,10000000 -1571405178.0,11785851,10000000 -1571405778.0,11785418,10000000 -1571406378.0,11787605,10000000 -1571406978.0,11830699,10000000 -1571407578.0,11816887,10000000 -1571408178.0,11893553,10000000 -1571408778.0,11858299,10000000 -1571409378.0,11908663,10000000 -1571409978.0,11908122,10000000 -1571410578.0,11931658,10000000 -1571411178.0,11941835,10000000 -1571411778.0,11944300,10000000 -1571412378.0,11998831,10000000 -1571412978.0,11956106,10000000 -1571413578.0,11925553,10000000 -1571414178.0,11775878,10000000 -1571414778.0,11655698,10000000 -1571415378.0,11653923,10000000 -1571415978.0,11639138,10000000 -1571416578.0,11642641,10000000 -1571417178.0,11663493,10000000 -1571417778.0,11640652,10000000 -1571418378.0,11630030,10000000 -1571418978.0,11699502,10000000 -1571419578.0,11711755,10000000 -1571420178.0,11662674,10000000 -1571420778.0,11653152,10000000 -1571421378.0,11625020,10000000 -1571421978.0,11625319,10000000 -1571422578.0,11573585,10000000 -1571423178.0,11549390,10000000 -1571423778.0,11516548,10000000 -1571424378.0,11494947,10000000 -1571424978.0,11541292,10000000 -1571425578.0,11541656,10000000 -1571426178.0,11607535,10000000 -1571426778.0,11614973,10000000 -1571427378.0,11524930,10000000 -1571427978.0,11516758,10000000 -1571428578.0,11511139,10000000 -1571429178.0,11474572,10000000 -1571429778.0,11420304,10000000 -1571430378.0,11494368,10000000 -1571430978.0,11482880,10000000 -1571431578.0,11482624,10000000 -1571432178.0,11532076,10000000 -1571432778.0,11571440,10000000 -1571433378.0,11588575,10000000 -1571433978.0,11605299,10000000 -1571434578.0,11650266,10000000 -1571435178.0,11621493,10000000 -1571435778.0,11609938,10000000 -1571436378.0,11604533,10000000 -1571436978.0,11554387,10000000 -1571437578.0,11490950,10000000 -1571438178.0,11534179,10000000 -1571438778.0,11485982,10000000 -1571439378.0,11446456,10000000 -1571439978.0,11464746,10000000 -1571440578.0,11417606,10000000 -1571441178.0,11426994,10000000 -1571441778.0,11424767,10000000 -1571442378.0,11370268,10000000 -1571442978.0,11376338,10000000 -1571443578.0,11365326,10000000 -1571444178.0,11396566,10000000 -1571444778.0,11390959,10000000 -1571445378.0,11409333,10000000 -1571445978.0,11439154,10000000 -1571446578.0,11377366,10000000 -1571447178.0,11321042,10000000 -1571447778.0,11307998,10000000 -1571448378.0,11310108,10000000 -1571448978.0,11395421,10000000 -1571449578.0,11356226,10000000 -1571450178.0,11402423,10000000 -1571450778.0,11432589,10000000 -1571451378.0,11400678,10000000 -1571451978.0,11402849,10000000 -1571452578.0,11417661,10000000 -1571453178.0,11444621,10000000 -1571453778.0,11410714,10000000 -1571454378.0,11388541,10000000 -1571454978.0,11400025,10000000 -1571455578.0,11315665,10000000 -1571456178.0,11315516,10000000 -1571456778.0,11305331,10000000 -1571457378.0,11287473,10000000 -1571457978.0,11274769,10000000 -1571458578.0,11288402,10000000 -1571459178.0,11283569,10000000 -1571459778.0,11339711,10000000 -1571460378.0,11352358,10000000 -1571460978.0,11285800,10000000 -1571461578.0,11280492,10000000 -1571462178.0,11265565,10000000 -1571462778.0,11234434,10000000 -1571463378.0,11330575,10000000 -1571463978.0,11261185,10000000 -1571464578.0,11231543,10000000 -1571465178.0,11209702,10000000 -1571465778.0,11281703,10000000 -1571466378.0,11219413,10000000 -1571466978.0,11296541,10000000 -1571467578.0,11233144,10000000 -1571468178.0,11187536,10000000 -1571468778.0,11185451,10000000 -1571469378.0,11220351,10000000 -1571469978.0,11248909,10000000 -1571470578.0,11240611,10000000 -1571471178.0,11299435,10000000 -1571471778.0,11308535,10000000 -1571472378.0,11300372,10000000 -1571472978.0,11256911,10000000 -1571473578.0,11285281,10000000 -1571474178.0,11252272,10000000 -1571474778.0,11266610,10000000 -1571475378.0,11267592,10000000 -1571475978.0,11319161,10000000 -1571476578.0,11375672,10000000 -1571477178.0,11339770,10000000 -1571477778.0,11441903,10000000 -1571478378.0,11531710,10000000 -1571478978.0,11499679,10000000 -1571479578.0,11458152,10000000 -1571480178.0,11428687,10000000 -1571480778.0,11383554,10000000 -1571481378.0,11458863,10000000 -1571481978.0,11394057,10000000 -1571482578.0,11417379,10000000 -1571483178.0,11416647,10000000 -1571483778.0,11414413,10000000 -1571484378.0,11407442,10000000 -1571484978.0,11476512,10000000 -1571485578.0,11556588,10000000 -1571486178.0,11565045,10000000 -1571486778.0,11573656,10000000 -1571487378.0,11619441,10000000 -1571487978.0,11614296,10000000 -1571488578.0,11546838,10000000 -1571489178.0,11577536,10000000 -1571489778.0,11569022,10000000 -1571490378.0,11519624,10000000 -1571490978.0,11612438,10000000 -1571491578.0,11654319,10000000 -1571492178.0,11709372,10000000 -1571492778.0,11710461,10000000 -1571493378.0,11714806,10000000 -1571493978.0,11726767,10000000 -1571494578.0,11657839,10000000 -1571495178.0,11689213,10000000 -1571495778.0,11740922,10000000 -1571496378.0,11685649,10000000 -1571496978.0,11674709,10000000 -1571497578.0,11729010,10000000 -1571498178.0,11806493,10000000 -1571498778.0,11731481,10000000 -1571499378.0,11726450,10000000 -1571499978.0,11741320,10000000 -1571500578.0,11747256,10000000 -1571501178.0,11769355,10000000 -1571501778.0,11798245,10000000 -1571502378.0,11816745,10000000 -1571502978.0,11827388,10000000 -1571503578.0,11803655,10000000 -1571504178.0,11854118,10000000 -1571504778.0,11819130,10000000 -1571505378.0,11768278,10000000 -1571505978.0,11758781,10000000 -1571506578.0,11841261,10000000 -1571507178.0,11735124,10000000 -1571507778.0,11798121,10000000 -1571508378.0,11811591,10000000 -1571508978.0,11799091,10000000 -1571509578.0,11761935,10000000 -1571510178.0,11738815,10000000 -1571510778.0,11838568,10000000 -1571511378.0,11861126,10000000 -1571511978.0,11920584,10000000 -1571512578.0,11929388,10000000 -1571513178.0,11898173,10000000 -1571513778.0,11905300,10000000 -1571514378.0,11929217,10000000 -1571514978.0,11927604,10000000 -1571515578.0,11885944,10000000 -1571516178.0,11815164,10000000 -1571516778.0,11803667,10000000 -1571517378.0,11868706,10000000 -1571517978.0,11922043,10000000 -1571518578.0,12002825,10000000 -1571519178.0,12062779,10000000 -1571519778.0,12075678,10000000 -1571520378.0,12078707,10000000 -1571520978.0,12095657,10000000 -1571521578.0,11959716,10000000 -1571522178.0,11942152,10000000 -1571522778.0,11962465,10000000 -1571523378.0,11974386,10000000 -1571523978.0,11993990,10000000 -1571524578.0,12031154,10000000 -1571525178.0,11999627,10000000 -1571525778.0,11938658,10000000 -1571526378.0,11947626,10000000 -1571526978.0,11914472,10000000 -1571527578.0,11893124,10000000 -1571528178.0,11874791,10000000 -1571528778.0,11929984,10000000 -1571529378.0,11948636,10000000 -1571529978.0,11928299,10000000 -1571530578.0,11932554,10000000 -1571531178.0,11887775,10000000 -1571531778.0,11872945,10000000 -1571532378.0,11839754,10000000 -1571532978.0,11871534,10000000 -1571533578.0,11892149,10000000 -1571534178.0,12017186,10000000 -1571534778.0,12102893,10000000 -1571535378.0,12051977,10000000 -1571535978.0,12047080,10000000 -1571536578.0,11974403,10000000 -1571537178.0,12090221,10000000 -1571537778.0,12130009,10000000 -1571538378.0,12263231,10000000 -1571538978.0,12232923,10000000 -1571539578.0,12180709,10000000 -1571540178.0,12210700,10000000 -1571540778.0,12282779,10000000 -1571541378.0,12269945,10000000 -1571541978.0,12226307,10000000 -1571542578.0,12224498,10000000 -1571543178.0,12156061,10000000 -1571543778.0,12203960,10000000 -1571544378.0,12126028,10000000 -1571544978.0,12135162,10000000 -1571545578.0,12208124,10000000 -1571546178.0,12177665,10000000 -1571546778.0,12227934,10000000 -1571547378.0,12305444,10000000 -1571547978.0,12339580,10000000 -1571548578.0,12311679,10000000 -1571549178.0,12237605,10000000 -1571549778.0,12165668,10000000 -1571550378.0,12176519,10000000 -1571550978.0,12169516,10000000 -1571551578.0,12137428,10000000 -1571552178.0,12172129,10000000 -1571552778.0,12157210,10000000 -1571553378.0,12170635,10000000 -1571553978.0,12173377,10000000 -1571554578.0,12178622,10000000 -1571555178.0,12246599,10000000 -1571555778.0,12278689,10000000 -1571556378.0,12269412,10000000 -1571556978.0,12214529,10000000 -1571557578.0,12179830,10000000 -1571558178.0,12127427,10000000 -1571558778.0,12078902,10000000 -1571559378.0,12003730,10000000 -1571559978.0,11969134,10000000 -1571560578.0,11959740,10000000 -1571561178.0,11876451,10000000 -1571561778.0,11791217,10000000 -1571562378.0,11832073,10000000 -1571562978.0,11853821,10000000 -1571563578.0,11879262,10000000 -1571564178.0,11871755,10000000 -1571564778.0,11899261,10000000 -1571565378.0,11908395,10000000 -1571565978.0,11986576,10000000 -1571566578.0,12004176,10000000 -1571567178.0,11986674,10000000 -1571567778.0,11948496,10000000 -1571568378.0,11901730,10000000 -1571568978.0,11934934,10000000 -1571569578.0,11947760,10000000 -1571570178.0,11983432,10000000 -1571570778.0,11995461,10000000 -1571571378.0,12022338,10000000 -1571571978.0,12029794,10000000 -1571572578.0,12023522,10000000 -1571573178.0,12043553,10000000 -1571573778.0,12130237,10000000 -1571574378.0,12182067,10000000 -1571574978.0,12180451,10000000 -1571575578.0,12176044,10000000 -1571576178.0,12168017,10000000 -1571576778.0,12102103,10000000 -1571577378.0,12220005,10000000 -1571577978.0,12180915,10000000 -1571578578.0,12267656,10000000 -1571579178.0,12283345,10000000 -1571579778.0,12295458,10000000 -1571580378.0,12277423,10000000 -1571580978.0,12318925,10000000 -1571581578.0,12277597,10000000 -1571582178.0,12316204,10000000 -1571582778.0,12233667,10000000 -1571583378.0,12218524,10000000 -1571583978.0,12277656,10000000 -1571584578.0,12315108,10000000 -1571585178.0,12363045,10000000 -1571585778.0,12363767,10000000 -1571586378.0,12329292,10000000 -1571586978.0,12391081,10000000 -1571587578.0,12429342,10000000 -1571588178.0,12513511,10000000 -1571588778.0,12583505,10000000 -1571589378.0,12570763,10000000 -1571589978.0,12528384,10000000 -1571590578.0,12532935,10000000 -1571591178.0,12605762,10000000 -1571591778.0,12703492,10000000 -1571592378.0,12764620,10000000 -1571592978.0,12747005,10000000 -1571593578.0,12698112,10000000 -1571594178.0,12761379,10000000 -1571594778.0,12776558,10000000 -1571595378.0,12810767,10000000 -1571595978.0,12804186,10000000 -1571596578.0,12752478,10000000 -1571597178.0,12778531,10000000 -1571597778.0,12840065,10000000 -1571598378.0,12859322,10000000 -1571598978.0,12851733,10000000 -1571599578.0,12845912,10000000 -1571600178.0,12884128,10000000 -1571600778.0,12828105,10000000 -1571601378.0,12788591,10000000 -1571601978.0,12831089,10000000 -1571602578.0,12854941,10000000 -1571603178.0,12827038,10000000 -1571603778.0,12849581,10000000 -1571604378.0,12967218,10000000 -1571604978.0,12962812,10000000 -1571605578.0,13014825,10000000 -1571606178.0,13012395,10000000 -1571606778.0,12999362,10000000 -1571607378.0,12930817,10000000 -1571607978.0,12916723,10000000 -1571608578.0,12958294,10000000 -1571609178.0,12870969,10000000 -1571609778.0,12824920,10000000 -1571610378.0,12780865,10000000 -1571610978.0,12716260,10000000 -1571611578.0,12663543,10000000 -1571612178.0,12741502,10000000 -1571612778.0,12829945,10000000 -1571613378.0,12876449,10000000 -1571613978.0,12855652,10000000 -1571614578.0,12872591,10000000 -1571615178.0,12957371,10000000 -1571615778.0,12857656,10000000 -1571616378.0,12859085,10000000 -1571616978.0,12862245,10000000 -1571617578.0,12892286,10000000 -1571618178.0,12906881,10000000 -1571618778.0,12874808,10000000 -1571619378.0,12973963,10000000 -1571619978.0,13049217,10000000 -1571620578.0,13022004,10000000 -1571621178.0,12965754,10000000 -1571621778.0,13023994,10000000 -1571622378.0,13041241,10000000 -1571622978.0,13033393,10000000 -1571623578.0,13058055,10000000 -1571624178.0,12995361,10000000 -1571624778.0,12888918,10000000 -1571625378.0,12963844,10000000 -1571625978.0,13020865,10000000 -1571626578.0,13093475,10000000 -1571627178.0,12987269,10000000 -1571627778.0,13015491,10000000 -1571628378.0,13003483,10000000 -1571628978.0,12982753,10000000 -1571629578.0,13005709,10000000 -1571630178.0,13021029,10000000 -1571630778.0,13040188,10000000 -1571631378.0,13149443,10000000 -1571631978.0,13159278,10000000 -1571632578.0,13211613,10000000 -1571633178.0,13085947,10000000 -1571633778.0,13082419,10000000 -1571634378.0,13093298,10000000 -1571634978.0,13024459,10000000 -1571635578.0,13073122,10000000 -1571636178.0,13002205,10000000 -1571636778.0,13040635,10000000 -1571637378.0,12991573,10000000 -1571637978.0,13044155,10000000 -1571638578.0,12978014,10000000 -1571639178.0,13013449,10000000 -1571639778.0,12992852,10000000 -1571640378.0,12946794,10000000 -1571640978.0,12923289,10000000 -1571641578.0,12893107,10000000 -1571642178.0,12854935,10000000 -1571642778.0,12914944,10000000 -1571643378.0,12895588,10000000 -1571643978.0,12921937,10000000 -1571644578.0,12892957,10000000 -1571645178.0,12879880,10000000 -1571645778.0,12846384,10000000 -1571646378.0,12814634,10000000 -1571646978.0,12915272,10000000 -1571647578.0,12885577,10000000 -1571648178.0,12747176,10000000 -1571648778.0,12721992,10000000 -1571649378.0,12696538,10000000 -1571649978.0,12738978,10000000 -1571650578.0,12659588,10000000 -1571651178.0,12645739,10000000 -1571651778.0,12674072,10000000 -1571652378.0,12689680,10000000 -1571652978.0,12700050,10000000 -1571653578.0,12756141,10000000 -1571654178.0,12733658,10000000 -1571654778.0,12655880,10000000 -1571655378.0,12722772,10000000 -1571655978.0,12812874,10000000 -1571656578.0,12778016,10000000 -1571657178.0,12706626,10000000 -1571657778.0,12673280,10000000 -1571658378.0,12548597,10000000 -1571658978.0,12485515,10000000 -1571659578.0,12529531,10000000 -1571660178.0,12572325,10000000 -1571660778.0,12627412,10000000 -1571661378.0,12602851,10000000 -1571661978.0,12547525,10000000 -1571662578.0,12613023,10000000 -1571663178.0,12534898,10000000 -1571663778.0,12618669,10000000 -1571664378.0,12680403,10000000 -1571664978.0,12554089,10000000 -1571665578.0,12628853,10000000 -1571666178.0,12669994,10000000 -1571666778.0,12699151,10000000 -1571667378.0,12812055,10000000 -1571667978.0,12789595,10000000 -1571668578.0,12791004,10000000 -1571669178.0,12899252,10000000 -1571669778.0,12984818,10000000 -1571670378.0,12894531,10000000 -1571670978.0,12932208,10000000 -1571671578.0,12875861,10000000 -1571672178.0,12993236,10000000 -1571672778.0,12937349,10000000 -1571673378.0,12872613,10000000 -1571673978.0,12861611,10000000 -1571674578.0,12885306,10000000 -1571675178.0,12744442,10000000 -1571675778.0,12726968,10000000 -1571676378.0,12726927,10000000 -1571676978.0,12664021,10000000 -1571677578.0,12580600,10000000 -1571678178.0,12529082,10000000 -1571678778.0,12508346,10000000 -1571679378.0,12445277,10000000 -1571679978.0,12456409,10000000 -1571680578.0,12526021,10000000 -1571681178.0,12508052,10000000 -1571681778.0,12502108,10000000 -1571682378.0,12530150,10000000 -1571682978.0,12528386,10000000 -1571683578.0,12559679,10000000 -1571684178.0,12494452,10000000 -1571684778.0,12488958,10000000 -1571685378.0,12480983,10000000 -1571685978.0,12555910,10000000 -1571686578.0,12545357,10000000 -1571687178.0,12451592,10000000 -1571687778.0,12495100,10000000 -1571688378.0,12450873,10000000 -1571688978.0,12396883,10000000 -1571689578.0,12404161,10000000 -1571690178.0,12377661,10000000 -1571690778.0,12440248,10000000 -1571691378.0,12403950,10000000 -1571691978.0,12380911,10000000 -1571692578.0,12445009,10000000 -1571693178.0,12484007,10000000 -1571693778.0,12466239,10000000 -1571694378.0,12464287,10000000 -1571694978.0,12319367,10000000 -1571695578.0,12433441,10000000 -1571696178.0,12436153,10000000 -1571696778.0,12388501,10000000 -1571697378.0,12433090,10000000 -1571697978.0,12403655,10000000 -1571698578.0,12357443,10000000 -1571699178.0,12284335,10000000 -1571699778.0,12273896,10000000 -1571700378.0,12305527,10000000 -1571700978.0,12281209,10000000 -1571701578.0,12402771,10000000 -1571702178.0,12371073,10000000 -1571702778.0,12384635,10000000 -1571703378.0,12350372,10000000 -1571703978.0,12310351,10000000 -1571704578.0,12275667,10000000 -1571705178.0,12193021,10000000 -1571705778.0,12259092,10000000 -1571706378.0,12162702,10000000 -1571706978.0,12149156,10000000 -1571707578.0,12242348,10000000 -1571708178.0,12152460,10000000 -1571708778.0,12203045,10000000 -1571709378.0,12282582,10000000 -1571709978.0,12233757,10000000 -1571710578.0,12238955,10000000 -1571711178.0,12259438,10000000 -1571711778.0,12227653,10000000 -1571712378.0,12278640,10000000 -1571712978.0,12247084,10000000 -1571713578.0,12299972,10000000 -1571714178.0,12288489,10000000 -1571714778.0,12311490,10000000 -1571715378.0,12304210,10000000 -1571715978.0,12326737,10000000 -1571716578.0,12355322,10000000 -1571717178.0,12386652,10000000 -1571717778.0,12415350,10000000 -1571718378.0,12341809,10000000 -1571718978.0,12316601,10000000 -1571719578.0,12357375,10000000 -1571720178.0,12346414,10000000 -1571720778.0,12234239,10000000 -1571721378.0,12186630,10000000 -1571721978.0,12143521,10000000 -1571722578.0,12157440,10000000 -1571723178.0,12299198,10000000 -1571723778.0,12281439,10000000 -1571724378.0,12346904,10000000 -1571724978.0,12312422,10000000 -1571725578.0,12334380,10000000 -1571726178.0,12255474,10000000 -1571726778.0,12267881,10000000 -1571727378.0,12303935,10000000 -1571727978.0,12412241,10000000 -1571728578.0,12387185,10000000 -1571729178.0,12433909,10000000 -1571729778.0,12521508,10000000 -1571730378.0,12505444,10000000 -1571730978.0,12466380,10000000 -1571731578.0,12449277,10000000 -1571732178.0,12443780,10000000 -1571732778.0,12439202,10000000 -1571733378.0,12392853,10000000 -1571733978.0,12433271,10000000 -1571734578.0,12467740,10000000 -1571735178.0,12386462,10000000 -1571735778.0,12378067,10000000 -1571736378.0,12369857,10000000 -1571736978.0,12479778,10000000 -1571737578.0,12305231,10000000 -1571738178.0,12326313,10000000 -1571738778.0,12312638,10000000 -1571739378.0,12296608,10000000 -1571739978.0,12312675,10000000 -1571740578.0,12335181,10000000 -1571741178.0,12354584,10000000 -1571741778.0,12399549,10000000 -1571742378.0,12368511,10000000 -1571742978.0,12387643,10000000 -1571743578.0,12326176,10000000 -1571744178.0,12379410,10000000 -1571744778.0,12394840,10000000 -1571745378.0,12403898,10000000 -1571745978.0,12406116,10000000 -1571746578.0,12328581,10000000 -1571747178.0,12361872,10000000 -1571747778.0,12351900,10000000 -1571748378.0,12340620,10000000 -1571748978.0,12360881,10000000 -1571749578.0,12396009,10000000 -1571750178.0,12381196,10000000 -1571750778.0,12398259,10000000 -1571751378.0,12370798,10000000 -1571751978.0,12277675,10000000 -1571752578.0,12283874,10000000 -1571753178.0,12240063,10000000 -1571753778.0,12286481,10000000 -1571754378.0,12231670,10000000 -1571754978.0,12166599,10000000 -1571755578.0,12103368,10000000 -1571756178.0,12083458,10000000 -1571756778.0,12096474,10000000 -1571757378.0,11997120,10000000 -1571757978.0,11967077,10000000 -1571758578.0,12013856,10000000 -1571759178.0,11942154,10000000 -1571759778.0,11919727,10000000 -1571760378.0,11834953,10000000 -1571760978.0,11893584,10000000 -1571761578.0,11758067,10000000 -1571762178.0,11704775,10000000 -1571762778.0,11698768,10000000 -1571763378.0,11659698,10000000 -1571763978.0,11645691,10000000 -1571764578.0,11605823,10000000 -1571765178.0,11544071,10000000 -1571765778.0,11438152,10000000 -1571766378.0,11358983,10000000 -1571766978.0,11405361,10000000 -1571767578.0,11359041,10000000 -1571768178.0,11415377,10000000 -1571768778.0,11407150,10000000 -1571769378.0,11330261,10000000 -1571769978.0,11300711,10000000 -1571770578.0,11318039,10000000 -1571771178.0,11365781,10000000 -1571771778.0,11357762,10000000 -1571772378.0,11349874,10000000 -1571772978.0,11344479,10000000 -1571773578.0,11299492,10000000 -1571774178.0,11390568,10000000 -1571774778.0,11302399,10000000 -1571775378.0,11329592,10000000 -1571775978.0,11325211,10000000 -1571776578.0,11317073,10000000 -1571777178.0,11374671,10000000 -1571777778.0,11424305,10000000 -1571778378.0,11424142,10000000 -1571778978.0,11480168,10000000 -1571779578.0,11489988,10000000 -1571780178.0,11458234,10000000 -1571780778.0,11384812,10000000 -1571781378.0,11469464,10000000 -1571781978.0,11486897,10000000 -1571782578.0,11509529,10000000 -1571783178.0,11564387,10000000 -1571783778.0,11571000,10000000 -1571784378.0,11508776,10000000 -1571784978.0,11479812,10000000 -1571785578.0,11433326,10000000 -1571786178.0,11446266,10000000 -1571786778.0,11463783,10000000 -1571787378.0,11506637,10000000 -1571787978.0,11535212,10000000 -1571788578.0,11536585,10000000 -1571789178.0,11566332,10000000 -1571789778.0,11551069,10000000 -1571790378.0,11560548,10000000 -1571790978.0,11545198,10000000 -1571791578.0,11537103,10000000 -1571792178.0,11511490,10000000 -1571792778.0,11406687,10000000 -1571793378.0,11481499,10000000 -1571793978.0,11473513,10000000 -1571794578.0,11474145,10000000 -1571795178.0,11509988,10000000 -1571795778.0,11584937,10000000 -1571796378.0,11584634,10000000 -1571796978.0,11594072,10000000 -1571797578.0,11591865,10000000 -1571798178.0,11589745,10000000 -1571798778.0,11553279,10000000 -1571799378.0,11549939,10000000 -1571799978.0,11491766,10000000 -1571800578.0,11448992,10000000 -1571801178.0,11399176,10000000 -1571801778.0,11309695,10000000 -1571802378.0,11261494,10000000 -1571802978.0,11248598,10000000 -1571803578.0,11182616,10000000 -1571804178.0,11134958,10000000 -1571804778.0,11156792,10000000 -1571805378.0,11181600,10000000 -1571805978.0,11211997,10000000 -1571806578.0,11216085,10000000 -1571807178.0,11202534,10000000 -1571807778.0,11188627,10000000 -1571808378.0,11183836,10000000 -1571808978.0,11170518,10000000 -1571809578.0,11249263,10000000 -1571810178.0,11257368,10000000 -1571810778.0,11279869,10000000 -1571811378.0,11329465,10000000 -1571811978.0,11343006,10000000 -1571812578.0,11299190,10000000 -1571813178.0,11202289,10000000 -1571813778.0,11214286,10000000 -1571814378.0,11196173,10000000 -1571814978.0,11171301,10000000 -1571815578.0,11186638,10000000 -1571816178.0,11183217,10000000 -1571816778.0,11127459,10000000 -1571817378.0,11100302,10000000 -1571817978.0,11137390,10000000 -1571818578.0,11174316,10000000 -1571819178.0,11240816,10000000 -1571819778.0,11361523,10000000 -1571820378.0,11350612,10000000 -1571820978.0,11391286,10000000 -1571821578.0,11297759,10000000 -1571822178.0,11281445,10000000 -1571822778.0,11350422,10000000 -1571823378.0,11326460,10000000 -1571823978.0,11268524,10000000 -1571824578.0,11240741,10000000 -1571825178.0,11239689,10000000 -1571825778.0,11317795,10000000 -1571826378.0,11281048,10000000 -1571826978.0,11219200,10000000 -1571827578.0,11200148,10000000 -1571828178.0,11232407,10000000 -1571828778.0,11254641,10000000 -1571829378.0,11234060,10000000 -1571829978.0,11229048,10000000 -1571830578.0,11274627,10000000 -1571831178.0,11239865,10000000 -1571831778.0,11192383,10000000 -1571832378.0,11215300,10000000 -1571832978.0,11198021,10000000 -1571833578.0,11180121,10000000 -1571834178.0,11105397,10000000 -1571834778.0,11096235,10000000 -1571835378.0,10993361,10000000 -1571835978.0,11026167,10000000 -1571836578.0,10954187,10000000 -1571837178.0,10925507,10000000 -1571837778.0,10894496,10000000 -1571838378.0,10841824,10000000 -1571838978.0,10899545,10000000 -1571839578.0,10929836,10000000 -1571840178.0,10925324,10000000 -1571840778.0,10889254,10000000 -1571841378.0,10828027,10000000 -1571841978.0,10801615,10000000 -1571842578.0,10877750,10000000 -1571843178.0,10837946,10000000 -1571843778.0,10838646,10000000 -1571844378.0,10876677,10000000 -1571844978.0,10860134,10000000 -1571845578.0,10869328,10000000 -1571846178.0,10842313,10000000 -1571846778.0,10890297,10000000 -1571847378.0,10935128,10000000 -1571847978.0,10986345,10000000 -1571848578.0,10965962,10000000 -1571849178.0,10976883,10000000 -1571849778.0,10986278,10000000 -1571850378.0,11029185,10000000 -1571850978.0,10997643,10000000 -1571851578.0,10960207,10000000 -1571852178.0,10975128,10000000 -1571852778.0,10937236,10000000 -1571853378.0,10965137,10000000 -1571853978.0,10992135,10000000 -1571854578.0,11029625,10000000 -1571855178.0,11003166,10000000 -1571855778.0,11021283,10000000 -1571856378.0,11043172,10000000 -1571856978.0,10997489,10000000 -1571857578.0,11038485,10000000 -1571858178.0,10971301,10000000 -1571858778.0,10965419,10000000 -1571859378.0,10911344,10000000 -1571859978.0,10850748,10000000 -1571860578.0,10840027,10000000 -1571861178.0,10800602,10000000 -1571861778.0,10826215,10000000 -1571862378.0,10837872,10000000 -1571862978.0,10793813,10000000 -1571863578.0,10678385,10000000 -1571864178.0,10602315,10000000 -1571864778.0,10633206,10000000 -1571865378.0,10637317,10000000 -1571865978.0,10680568,10000000 -1571866578.0,10724363,10000000 -1571867178.0,10758400,10000000 -1571867778.0,10744264,10000000 -1571868378.0,10716445,10000000 -1571868978.0,10679927,10000000 -1571869578.0,10735240,10000000 -1571870178.0,10731277,10000000 -1571870778.0,10714766,10000000 -1571871378.0,10764639,10000000 -1571871978.0,10762528,10000000 -1571872578.0,10690752,10000000 -1571873178.0,10744142,10000000 -1571873778.0,10706184,10000000 -1571874378.0,10701088,10000000 -1571874978.0,10661136,10000000 -1571875578.0,10680338,10000000 -1571876178.0,10669421,10000000 -1571876778.0,10726329,10000000 -1571877378.0,10782442,10000000 -1571877978.0,10851825,10000000 -1571878578.0,10911213,10000000 -1571879178.0,10952674,10000000 -1571879778.0,10976650,10000000 -1571880378.0,11041834,10000000 -1571880978.0,11044541,10000000 -1571881578.0,11028907,10000000 -1571882178.0,11113236,10000000 -1571882778.0,11192872,10000000 -1571883378.0,11139276,10000000 -1571883978.0,11143063,10000000 -1571884578.0,11183888,10000000 -1571885178.0,11177254,10000000 -1571885778.0,11170486,10000000 -1571886378.0,11166906,10000000 -1571886978.0,11129852,10000000 -1571887578.0,11121675,10000000 -1571888178.0,11112700,10000000 -1571888778.0,11191571,10000000 -1571889378.0,11194391,10000000 -1571889978.0,11285934,10000000 -1571890578.0,11317107,10000000 -1571891178.0,11268064,10000000 -1571891778.0,11174550,10000000 -1571892378.0,11283858,10000000 -1571892978.0,11232710,10000000 -1571893578.0,11184516,10000000 -1571894178.0,11234931,10000000 -1571894778.0,11242591,10000000 -1571895378.0,11160549,10000000 -1571895978.0,11037687,10000000 -1571896578.0,11004529,10000000 -1571897178.0,11053180,10000000 -1571897778.0,11040847,10000000 -1571898378.0,11046999,10000000 -1571898978.0,11025492,10000000 -1571899578.0,11139284,10000000 -1571900178.0,11151109,10000000 -1571900778.0,11219714,10000000 -1571901378.0,11145036,10000000 -1571901978.0,11091035,10000000 -1571902578.0,11077421,10000000 -1571903178.0,11092483,10000000 -1571903778.0,11181851,10000000 -1571904378.0,11249179,10000000 -1571904978.0,11257296,10000000 -1571905578.0,11398115,10000000 -1571906178.0,11353679,10000000 -1571906778.0,11376099,10000000 -1571907378.0,11394432,10000000 -1571907978.0,11383881,10000000 -1571908578.0,11373521,10000000 -1571909178.0,11325800,10000000 -1571909778.0,11301853,10000000 -1571910378.0,11343060,10000000 -1571910978.0,11388591,10000000 -1571911578.0,11311437,10000000 -1571912178.0,11287432,10000000 -1571912778.0,11241539,10000000 -1571913378.0,11131656,10000000 -1571913978.0,11074368,10000000 -1571914578.0,11059238,10000000 -1571915178.0,11101153,10000000 -1571915778.0,11122260,10000000 -1571916378.0,11173098,10000000 -1571916978.0,11217784,10000000 -1571917578.0,11249501,10000000 -1571918178.0,11199587,10000000 -1571918778.0,11176147,10000000 -1571919378.0,11159413,10000000 -1571919978.0,11209056,10000000 -1571920578.0,11177407,10000000 -1571921178.0,11100382,10000000 -1571921778.0,11087475,10000000 -1571922378.0,11038427,10000000 -1571922978.0,11033486,10000000 -1571923578.0,10965256,10000000 -1571924178.0,11046548,10000000 -1571924778.0,11064726,10000000 -1571925378.0,11033178,10000000 -1571925978.0,11106701,10000000 -1571926578.0,11107640,10000000 -1571927178.0,11040848,10000000 -1571927778.0,11027914,10000000 -1571928378.0,11013892,10000000 -1571928978.0,10964831,10000000 -1571929578.0,11007804,10000000 -1571930178.0,11017049,10000000 -1571930778.0,11017230,10000000 -1571931378.0,11025500,10000000 -1571931978.0,11067214,10000000 -1571932578.0,11068144,10000000 -1571933178.0,11085531,10000000 -1571933778.0,11043365,10000000 -1571934378.0,11050931,10000000 -1571934978.0,11028140,10000000 -1571935578.0,11047876,10000000 -1571936178.0,11046044,10000000 -1571936778.0,11086019,10000000 -1571937378.0,11148701,10000000 -1571937978.0,11081573,10000000 -1571938578.0,11048628,10000000 -1571939178.0,11051824,10000000 -1571939778.0,11013206,10000000 -1571940378.0,10956579,10000000 -1571940978.0,10944581,10000000 -1571941578.0,10879609,10000000 -1571942178.0,10922719,10000000 -1571942778.0,10896149,10000000 -1571943378.0,10887834,10000000 -1571943978.0,10863456,10000000 -1571944578.0,10874522,10000000 -1571945178.0,10867103,10000000 -1571945778.0,10815636,10000000 -1571946378.0,10792887,10000000 -1571946978.0,10869791,10000000 -1571947578.0,10820452,10000000 -1571948178.0,10804433,10000000 -1571948778.0,10792303,10000000 -1571949378.0,10762235,10000000 -1571949978.0,10754613,10000000 -1571950578.0,10769873,10000000 -1571951178.0,10801093,10000000 -1571951778.0,10823924,10000000 -1571952378.0,10825733,10000000 -1571952978.0,10846357,10000000 -1571953578.0,10857845,10000000 -1571954178.0,10859271,10000000 -1571954778.0,10922888,10000000 -1571955378.0,10884314,10000000 -1571955978.0,10854606,10000000 -1571956578.0,10801185,10000000 -1571957178.0,10821043,10000000 -1571957778.0,10950313,10000000 -1571958378.0,10919388,10000000 -1571958978.0,10955846,10000000 -1571959578.0,10984484,10000000 -1571960178.0,10968433,10000000 -1571960778.0,10979079,10000000 -1571961378.0,10982339,10000000 -1571961978.0,11005745,10000000 -1571962578.0,11015408,10000000 -1571963178.0,11076616,10000000 -1571963778.0,11086806,10000000 -1571964378.0,11136764,10000000 -1571964978.0,11077860,10000000 -1571965578.0,11133408,10000000 -1571966178.0,11067005,10000000 -1571966778.0,11022448,10000000 -1571967378.0,11061719,10000000 -1571967978.0,11015580,10000000 -1571968578.0,11018959,10000000 -1571969178.0,11038265,10000000 -1571969778.0,11092094,10000000 -1571970378.0,11121714,10000000 -1571970978.0,11141239,10000000 -1571971578.0,11121518,10000000 -1571972178.0,11127106,10000000 -1571972778.0,11097015,10000000 -1571973378.0,11139226,10000000 -1571973978.0,11082754,10000000 -1571974578.0,11085281,10000000 -1571975178.0,11177613,10000000 -1571975778.0,11160859,10000000 -1571976378.0,11160947,10000000 -1571976978.0,11127018,10000000 -1571977578.0,11167671,10000000 -1571978178.0,11154970,10000000 -1571978778.0,11153854,10000000 -1571979378.0,11023379,10000000 -1571979978.0,11032056,10000000 -1571980578.0,11049107,10000000 -1571981178.0,11090956,10000000 -1571981778.0,11120168,10000000 -1571982378.0,11021018,10000000 -1571982978.0,11023722,10000000 -1571983578.0,10953806,10000000 -1571984178.0,10976224,10000000 -1571984778.0,11010148,10000000 -1571985378.0,10992123,10000000 -1571985978.0,11061676,10000000 -1571986578.0,11078809,10000000 -1571987178.0,10993828,10000000 -1571987778.0,11003690,10000000 -1571988378.0,11015500,10000000 -1571988978.0,11022307,10000000 -1571989578.0,10995280,10000000 -1571990178.0,10949940,10000000 -1571990778.0,11010876,10000000 -1571991378.0,11001329,10000000 -1571991978.0,10923792,10000000 -1571992578.0,10972367,10000000 -1571993178.0,11028614,10000000 -1571993778.0,10983567,10000000 -1571994378.0,11106777,10000000 -1571994978.0,11062665,10000000 -1571995578.0,11056276,10000000 -1571996178.0,11143712,10000000 -1571996778.0,11073833,10000000 -1571997378.0,11058890,10000000 -1571997978.0,11062097,10000000 -1571998578.0,11054111,10000000 -1571999178.0,11033808,10000000 -1571999778.0,11016893,10000000 -1572000378.0,11064487,10000000 -1572000978.0,11081912,10000000 -1572001578.0,11171999,10000000 -1572002178.0,11081380,10000000 -1572002778.0,11088056,10000000 -1572003378.0,11116061,10000000 -1572003978.0,11108746,10000000 -1572004578.0,11103279,10000000 -1572005178.0,11174528,10000000 -1572005778.0,11187151,10000000 -1572006378.0,11269718,10000000 -1572006978.0,11278861,10000000 -1572007578.0,11299538,10000000 -1572008178.0,11249303,10000000 -1572008778.0,11202998,10000000 -1572009378.0,11187312,10000000 -1572009978.0,11170176,10000000 -1572010578.0,11115490,10000000 -1572011178.0,11098247,10000000 -1572011778.0,11117583,10000000 -1572012378.0,11110149,10000000 -1572012978.0,11140962,10000000 -1572013578.0,11147784,10000000 -1572014178.0,11145567,10000000 -1572014778.0,11304752,10000000 -1572015378.0,11294760,10000000 -1572015978.0,11267820,10000000 -1572016578.0,11229726,10000000 -1572017178.0,11256319,10000000 -1572017778.0,11188058,10000000 -1572018378.0,11189567,10000000 -1572018978.0,11184977,10000000 -1572019578.0,11158510,10000000 -1572020178.0,11203834,10000000 -1572020778.0,11308965,10000000 -1572021378.0,11283544,10000000 -1572021978.0,11268218,10000000 -1572022578.0,11281861,10000000 -1572023178.0,11292010,10000000 -1572023778.0,11326146,10000000 -1572024378.0,11344549,10000000 -1572024978.0,11323780,10000000 -1572025578.0,11375561,10000000 -1572026178.0,11423302,10000000 -1572026778.0,11371713,10000000 -1572027378.0,11407330,10000000 -1572027978.0,11415269,10000000 -1572028578.0,11386746,10000000 -1572029178.0,11339525,10000000 -1572029778.0,11308243,10000000 -1572030378.0,11237334,10000000 -1572030978.0,11178925,10000000 -1572031578.0,11163148,10000000 -1572032178.0,11179708,10000000 -1572032778.0,11161182,10000000 -1572033378.0,11200425,10000000 -1572033978.0,11246807,10000000 -1572034578.0,11289279,10000000 -1572035178.0,11380387,10000000 -1572035778.0,11336618,10000000 -1572036378.0,11367638,10000000 -1572036978.0,11453270,10000000 -1572037578.0,11520536,10000000 -1572038178.0,11546502,10000000 -1572038778.0,11538082,10000000 -1572039378.0,11590078,10000000 -1572039978.0,11551036,10000000 -1572040578.0,11590683,10000000 -1572041178.0,11553131,10000000 -1572041778.0,11621247,10000000 -1572042378.0,11609502,10000000 -1572042978.0,11562346,10000000 -1572043578.0,11600471,10000000 -1572044178.0,11563233,10000000 -1572044778.0,11618207,10000000 -1572045378.0,11674201,10000000 -1572045978.0,11693471,10000000 -1572046578.0,11632472,10000000 -1572047178.0,11685845,10000000 -1572047778.0,11700223,10000000 -1572048378.0,11666467,10000000 -1572048978.0,11688022,10000000 -1572049578.0,11750981,10000000 -1572050178.0,11740984,10000000 -1572050778.0,11775156,10000000 -1572051378.0,11769677,10000000 -1572051978.0,11735947,10000000 -1572052578.0,11733430,10000000 -1572053178.0,11687588,10000000 -1572053778.0,11746612,10000000 -1572054378.0,11775746,10000000 -1572054978.0,11758115,10000000 -1572055578.0,11759782,10000000 -1572056178.0,11686045,10000000 -1572056778.0,11832575,10000000 -1572057378.0,11816510,10000000 -1572057978.0,11854522,10000000 -1572058578.0,11901256,10000000 -1572059178.0,11879166,10000000 -1572059778.0,11850186,10000000 -1572060378.0,11889504,10000000 -1572060978.0,11900829,10000000 -1572061578.0,11853832,10000000 -1572062178.0,11776631,10000000 -1572062778.0,11703070,10000000 -1572063378.0,11803304,10000000 -1572063978.0,11749249,10000000 -1572064578.0,11803674,10000000 -1572065178.0,11831787,10000000 -1572065778.0,11782187,10000000 -1572066378.0,11784378,10000000 -1572066978.0,11749486,10000000 -1572067578.0,11719209,10000000 -1572068178.0,11768137,10000000 -1572068778.0,11781728,10000000 -1572069378.0,11731236,10000000 -1572069978.0,11830110,10000000 -1572070578.0,11884304,10000000 -1572071178.0,11938638,10000000 -1572071778.0,11955894,10000000 -1572072378.0,12007962,10000000 -1572072978.0,11949719,10000000 -1572073578.0,11943318,10000000 -1572074178.0,11907335,10000000 -1572074778.0,11852736,10000000 -1572075378.0,11788997,10000000 -1572075978.0,11804735,10000000 -1572076578.0,11702476,10000000 -1572077178.0,11816086,10000000 -1572077778.0,11825093,10000000 -1572078378.0,11788883,10000000 -1572078978.0,11726960,10000000 -1572079578.0,11687026,10000000 -1572080178.0,11606519,10000000 -1572080778.0,11619473,10000000 -1572081378.0,11538119,10000000 -1572081978.0,11561635,10000000 -1572082578.0,11593961,10000000 -1572083178.0,11515748,10000000 -1572083778.0,11520019,10000000 -1572084378.0,11523519,10000000 -1572084978.0,11541369,10000000 -1572085578.0,11656305,10000000 -1572086178.0,11594145,10000000 -1572086778.0,11592943,10000000 -1572087378.0,11663349,10000000 -1572087978.0,11682011,10000000 -1572088578.0,11655548,10000000 -1572089178.0,11663512,10000000 -1572089778.0,11601871,10000000 -1572090378.0,11636017,10000000 -1572090978.0,11616267,10000000 -1572091578.0,11642267,10000000 -1572092178.0,11732835,10000000 -1572092778.0,11626286,10000000 -1572093378.0,11658637,10000000 -1572093978.0,11708584,10000000 -1572094578.0,11727421,10000000 -1572095178.0,11725100,10000000 -1572095778.0,11732515,10000000 -1572096378.0,11659263,10000000 -1572096978.0,11623494,10000000 -1572097578.0,11632333,10000000 -1572098178.0,11570919,10000000 -1572098778.0,11519294,10000000 -1572099378.0,11489541,10000000 -1572099978.0,11522401,10000000 -1572100578.0,11536196,10000000 -1572101178.0,11459639,10000000 -1572101778.0,11468438,10000000 -1572102378.0,11408260,10000000 -1572102978.0,11451690,10000000 -1572103578.0,11458405,10000000 -1572104178.0,11440386,10000000 -1572104778.0,11493156,10000000 -1572105378.0,11558346,10000000 -1572105978.0,11564808,10000000 -1572106578.0,11553606,10000000 -1572107178.0,11520677,10000000 -1572107778.0,11526184,10000000 -1572108378.0,11448500,10000000 -1572108978.0,11473296,10000000 -1572109578.0,11496282,10000000 -1572110178.0,11469201,10000000 -1572110778.0,11446182,10000000 -1572111378.0,11494808,10000000 -1572111978.0,11478127,10000000 -1572112578.0,11406732,10000000 -1572113178.0,11395595,10000000 -1572113778.0,11398391,10000000 -1572114378.0,11369921,10000000 -1572114978.0,11392034,10000000 -1572115578.0,11388398,10000000 -1572116178.0,11441201,10000000 -1572116778.0,11398234,10000000 -1572117378.0,11483755,10000000 -1572117978.0,11486865,10000000 -1572118578.0,11610503,10000000 -1572119178.0,11555348,10000000 -1572119778.0,11573612,10000000 -1572120378.0,11601088,10000000 -1572120978.0,11599702,10000000 -1572121578.0,11613198,10000000 -1572122178.0,11604339,10000000 -1572122778.0,11594202,10000000 -1572123378.0,11464951,10000000 -1572123978.0,11538316,10000000 -1572124578.0,11584358,10000000 -1572125178.0,11650043,10000000 -1572125778.0,11700894,10000000 -1572126378.0,11707983,10000000 -1572126978.0,11691463,10000000 -1572127578.0,11762971,10000000 -1572128178.0,11747004,10000000 -1572128778.0,11747493,10000000 -1572129378.0,11727826,10000000 -1572129978.0,11785394,10000000 -1572130578.0,11778282,10000000 -1572131178.0,11775438,10000000 -1572131778.0,11754664,10000000 -1572132378.0,11727525,10000000 -1572132978.0,11598969,10000000 -1572133578.0,11658902,10000000 -1572134178.0,11694329,10000000 -1572134778.0,11739273,10000000 -1572135378.0,11721383,10000000 -1572135978.0,11717703,10000000 -1572136578.0,11698762,10000000 -1572137178.0,11650087,10000000 -1572137778.0,11627864,10000000 -1572138378.0,11613174,10000000 -1572138978.0,11594713,10000000 -1572139578.0,11692102,10000000 -1572140178.0,11714384,10000000 -1572140778.0,11783482,10000000 -1572141378.0,11751297,10000000 -1572141978.0,11791624,10000000 -1572142578.0,11749599,10000000 -1572143178.0,11758867,10000000 -1572143778.0,11783942,10000000 -1572144378.0,11786616,10000000 -1572144978.0,11681115,10000000 -1572145578.0,11630385,10000000 -1572146178.0,11650097,10000000 -1572146778.0,11664414,10000000 -1572147378.0,11662816,10000000 -1572147978.0,11680905,10000000 -1572148578.0,11673442,10000000 -1572149178.0,11678939,10000000 -1572149778.0,11604508,10000000 -1572150378.0,11690830,10000000 -1572150978.0,11749479,10000000 -1572151578.0,11776849,10000000 -1572152178.0,11741207,10000000 -1572152778.0,11722462,10000000 -1572153378.0,11825701,10000000 -1572153978.0,11842222,10000000 -1572154578.0,11901738,10000000 -1572155178.0,11932494,10000000 -1572155778.0,11885608,10000000 -1572156378.0,11920187,10000000 -1572156978.0,11916405,10000000 -1572157578.0,11985609,10000000 -1572158178.0,12028472,10000000 -1572158778.0,12085414,10000000 -1572159378.0,12126112,10000000 -1572159978.0,12018284,10000000 -1572160578.0,12017723,10000000 -1572161178.0,12004594,10000000 -1572161778.0,12063324,10000000 -1572162378.0,12152958,10000000 -1572162978.0,12160701,10000000 -1572163578.0,12237200,10000000 -1572164178.0,12195454,10000000 -1572164778.0,12178770,10000000 -1572165378.0,12277473,10000000 -1572165978.0,12346921,10000000 -1572166578.0,12275658,10000000 -1572167178.0,12230264,10000000 -1572167778.0,12226889,10000000 -1572168378.0,12266029,10000000 -1572168978.0,12334454,10000000 -1572169578.0,12360020,10000000 -1572170178.0,12411855,10000000 -1572170778.0,12368084,10000000 -1572171378.0,12366922,10000000 -1572171978.0,12367626,10000000 -1572172578.0,12383425,10000000 -1572173178.0,12352946,10000000 -1572173778.0,12304019,10000000 -1572174378.0,12310754,10000000 -1572174978.0,12302531,10000000 -1572175578.0,12295645,10000000 -1572176178.0,12309681,10000000 -1572176778.0,12331057,10000000 -1572177378.0,12297955,10000000 -1572177978.0,12232165,10000000 -1572178578.0,12287368,10000000 -1572179178.0,12315481,10000000 -1572179778.0,12405226,10000000 -1572180378.0,12453357,10000000 -1572180978.0,12465333,10000000 -1572181578.0,12484875,10000000 -1572182178.0,12502536,10000000 -1572182778.0,12515053,10000000 -1572183378.0,12480335,10000000 -1572183978.0,12491480,10000000 -1572184578.0,12550539,10000000 -1572185178.0,12568503,10000000 -1572185778.0,12615205,10000000 -1572186378.0,12665473,10000000 -1572186978.0,12594782,10000000 -1572187578.0,12597339,10000000 -1572188178.0,12552548,10000000 -1572188778.0,12563153,10000000 -1572189378.0,12525078,10000000 -1572189978.0,12517213,10000000 -1572190578.0,12483342,10000000 -1572191178.0,12505550,10000000 -1572191778.0,12491353,10000000 -1572192378.0,12492086,10000000 -1572192978.0,12475684,10000000 -1572193578.0,12514181,10000000 -1572194178.0,12523725,10000000 -1572194778.0,12581699,10000000 -1572195378.0,12541590,10000000 -1572195978.0,12533923,10000000 -1572196578.0,12477449,10000000 -1572197178.0,12467224,10000000 -1572197778.0,12449804,10000000 -1572198378.0,12524035,10000000 -1572198978.0,12561953,10000000 -1572199578.0,12526996,10000000 -1572200178.0,12503798,10000000 -1572200778.0,12527703,10000000 -1572201378.0,12509367,10000000 -1572201978.0,12475398,10000000 -1572202578.0,12549952,10000000 -1572203178.0,12524114,10000000 -1572203778.0,12480870,10000000 -1572204378.0,12518003,10000000 -1572204978.0,12569471,10000000 -1572205578.0,12545291,10000000 -1572206178.0,12583982,10000000 -1572206778.0,12636330,10000000 -1572207378.0,12684129,10000000 -1572207978.0,12691163,10000000 -1572208578.0,12661810,10000000 -1572209178.0,12633353,10000000 -1572209778.0,12596126,10000000 -1572210378.0,12680797,10000000 -1572210978.0,12787026,10000000 -1572211578.0,12772355,10000000 -1572212178.0,12768403,10000000 -1572212778.0,12698846,10000000 -1572213378.0,12772867,10000000 -1572213978.0,12731169,10000000 -1572214578.0,12714305,10000000 -1572215178.0,12809998,10000000 -1572215778.0,12835047,10000000 -1572216378.0,12791919,10000000 -1572216978.0,12780375,10000000 -1572217578.0,12848741,10000000 -1572218178.0,12819469,10000000 -1572218778.0,12796799,10000000 -1572219378.0,12751135,10000000 -1572219978.0,12715293,10000000 -1572220578.0,12707154,10000000 -1572221178.0,12802249,10000000 -1572221778.0,12875838,10000000 -1572222378.0,12820274,10000000 -1572222978.0,12763734,10000000 -1572223578.0,12801452,10000000 -1572224178.0,12792102,10000000 -1572224778.0,12782651,10000000 -1572225378.0,12837731,10000000 -1572225978.0,12867355,10000000 -1572226578.0,12893218,10000000 -1572227178.0,12950337,10000000 -1572227778.0,12968731,10000000 -1572228378.0,13064698,10000000 -1572228978.0,13078364,10000000 -1572229578.0,13122549,10000000 -1572230178.0,13123925,10000000 -1572230778.0,13212391,10000000 -1572231378.0,13212480,10000000 -1572231978.0,13251608,10000000 -1572232578.0,13211048,10000000 -1572233178.0,13073562,10000000 -1572233778.0,13065884,10000000 -1572234378.0,12993101,10000000 -1572234978.0,13004790,10000000 -1572235578.0,12910824,10000000 -1572236178.0,12962552,10000000 -1572236778.0,12917140,10000000 -1572237378.0,12939262,10000000 -1572237978.0,12933274,10000000 -1572238578.0,12972479,10000000 -1572239178.0,12921546,10000000 -1572239778.0,12912603,10000000 -1572240378.0,12891209,10000000 -1572240978.0,12893302,10000000 -1572241578.0,12891971,10000000 -1572242178.0,12941249,10000000 -1572242778.0,12856647,10000000 -1572243378.0,12860560,10000000 -1572243978.0,12789194,10000000 -1572244578.0,12820609,10000000 -1572245178.0,12806866,10000000 -1572245778.0,12823851,10000000 -1572246378.0,12883588,10000000 -1572246978.0,12921743,10000000 -1572247578.0,12922874,10000000 -1572248178.0,12878126,10000000 -1572248778.0,12946319,10000000 -1572249378.0,12958586,10000000 -1572249978.0,13065551,10000000 -1572250578.0,12990356,10000000 -1572251178.0,12959807,10000000 -1572251778.0,12995925,10000000 -1572252378.0,12962308,10000000 -1572252978.0,12893616,10000000 -1572253578.0,12898964,10000000 -1572254178.0,12955432,10000000 -1572254778.0,12952912,10000000 -1572255378.0,12949881,10000000 -1572255978.0,12916092,10000000 -1572256578.0,12938892,10000000 -1572257178.0,12827834,10000000 -1572257778.0,12652826,10000000 -1572258378.0,12645385,10000000 -1572258978.0,12614643,10000000 -1572259578.0,12677132,10000000 -1572260178.0,12679949,10000000 -1572260778.0,12642906,10000000 -1572261378.0,12676472,10000000 -1572261978.0,12726427,10000000 -1572262578.0,12779296,10000000 -1572263178.0,12710607,10000000 -1572263778.0,12803341,10000000 -1572264378.0,12838270,10000000 -1572264978.0,12886238,10000000 -1572265578.0,12877024,10000000 -1572266178.0,12892404,10000000 -1572266778.0,12778035,10000000 -1572267378.0,12844820,10000000 -1572267978.0,12841771,10000000 -1572268578.0,12844366,10000000 -1572269178.0,12872605,10000000 -1572269778.0,12858121,10000000 -1572270378.0,12883335,10000000 -1572270978.0,12796598,10000000 -1572271578.0,12800628,10000000 -1572272178.0,12778831,10000000 -1572272778.0,12951656,10000000 -1572273378.0,12930710,10000000 -1572273978.0,12902819,10000000 -1572274578.0,12781767,10000000 -1572275178.0,12826939,10000000 -1572275778.0,12914211,10000000 -1572276378.0,12898775,10000000 -1572276978.0,12800353,10000000 -1572277578.0,12797527,10000000 -1572278178.0,12729073,10000000 -1572278778.0,12705208,10000000 -1572279378.0,12673487,10000000 -1572279978.0,12636929,10000000 -1572280578.0,12638801,10000000 -1572281178.0,12702209,10000000 -1572281778.0,12710705,10000000 -1572282378.0,12688607,10000000 -1572282978.0,12720791,10000000 -1572283578.0,12783680,10000000 -1572284178.0,12727093,10000000 -1572284778.0,12766940,10000000 -1572285378.0,12802105,10000000 -1572285978.0,12953934,10000000 -1572286578.0,12988225,10000000 -1572287178.0,13073375,10000000 -1572287778.0,13140354,10000000 -1572288378.0,13124235,10000000 -1572288978.0,13191731,10000000 -1572289578.0,13153920,10000000 -1572290178.0,13162542,10000000 -1572290778.0,12995261,10000000 -1572291378.0,12999493,10000000 -1572291978.0,13057259,10000000 -1572292578.0,13114271,10000000 -1572293178.0,13086284,10000000 -1572293778.0,13165713,10000000 -1572294378.0,13161161,10000000 -1572294978.0,13219728,10000000 -1572295578.0,13237361,10000000 -1572296178.0,13375961,10000000 -1572296778.0,13329938,10000000 -1572297378.0,13323532,10000000 -1572297978.0,13401032,10000000 -1572298578.0,13438806,10000000 -1572299178.0,13351369,10000000 -1572299778.0,13329362,10000000 -1572300378.0,13318689,10000000 -1572300978.0,13249217,10000000 -1572301578.0,13205293,10000000 -1572302178.0,13267543,10000000 -1572302778.0,13167224,10000000 -1572303378.0,13056929,10000000 -1572303978.0,13017856,10000000 -1572304578.0,13012622,10000000 -1572305178.0,12957235,10000000 -1572305778.0,12982915,10000000 -1572306378.0,12988696,10000000 -1572306978.0,13102865,10000000 -1572307578.0,13144564,10000000 -1572308178.0,13163416,10000000 -1572308778.0,13087766,10000000 -1572309378.0,13090390,10000000 -1572309978.0,13095290,10000000 -1572310578.0,13135819,10000000 -1572311178.0,13018894,10000000 -1572311778.0,12981126,10000000 -1572312378.0,12964801,10000000 -1572312978.0,13008253,10000000 -1572313578.0,13051469,10000000 -1572314178.0,13016867,10000000 -1572314778.0,12953346,10000000 -1572315378.0,12920507,10000000 -1572315978.0,13014273,10000000 -1572316578.0,13060895,10000000 -1572317178.0,13071073,10000000 -1572317778.0,13051935,10000000 -1572318378.0,13043224,10000000 -1572318978.0,13094055,10000000 -1572319578.0,13070197,10000000 -1572320178.0,13052196,10000000 -1572320778.0,13032300,10000000 -1572321378.0,13067189,10000000 -1572321978.0,13051548,10000000 -1572322578.0,13073946,10000000 -1572323178.0,13171817,10000000 -1572323778.0,13246803,10000000 -1572324378.0,13341562,10000000 -1572324978.0,13327781,10000000 -1572325578.0,13373945,10000000 -1572326178.0,13430878,10000000 -1572326778.0,13469618,10000000 -1572327378.0,13571151,10000000 -1572327978.0,13566247,10000000 -1572328578.0,13532025,10000000 -1572329178.0,13555627,10000000 -1572329778.0,13548301,10000000 -1572330378.0,13633073,10000000 -1572330978.0,13619104,10000000 -1572331578.0,13586876,10000000 -1572332178.0,13605331,10000000 -1572332778.0,13590044,10000000 -1572333378.0,13515991,10000000 -1572333978.0,13523208,10000000 -1572334578.0,13637873,10000000 -1572335178.0,13550134,10000000 -1572335778.0,13529142,10000000 -1572336378.0,13504849,10000000 -1572336978.0,13451906,10000000 -1572337578.0,13508296,10000000 -1572338178.0,13529692,10000000 -1572338778.0,13582924,10000000 -1572339378.0,13652190,10000000 -1572339978.0,13673586,10000000 -1572340578.0,13783015,10000000 -1572341178.0,13865501,10000000 -1572341778.0,13804028,10000000 -1572342378.0,13813295,10000000 -1572342978.0,13827450,10000000 -1572343578.0,13805587,10000000 -1572344178.0,13814293,10000000 -1572344778.0,13784804,10000000 -1572345378.0,13796543,10000000 -1572345978.0,13696645,10000000 -1572346578.0,13640536,10000000 -1572347178.0,13680953,10000000 -1572347778.0,13734344,10000000 -1572348378.0,13822027,10000000 -1572348978.0,13872811,10000000 -1572349578.0,13947626,10000000 -1572350178.0,13913469,10000000 -1572350778.0,13826811,10000000 -1572351378.0,13907352,10000000 -1572351978.0,13971235,10000000 -1572352578.0,13946051,10000000 -1572353178.0,13976649,10000000 -1572353778.0,13971738,10000000 -1572354378.0,13944718,10000000 -1572354978.0,14069987,10000000 -1572355578.0,14144620,10000000 -1572356178.0,14215939,10000000 -1572356778.0,14272366,10000000 -1572357378.0,14356562,10000000 -1572357978.0,14474067,10000000 -1572358578.0,14486773,10000000 -1572359178.0,14475208,10000000 -1572359778.0,14505550,10000000 -1572360378.0,14516184,10000000 -1572360978.0,14448364,10000000 -1572361578.0,14554523,10000000 -1572362178.0,14511276,10000000 -1572362778.0,14515533,10000000 -1572363378.0,14550662,10000000 -1572363978.0,14476042,10000000 -1572364578.0,14488589,10000000 -1572365178.0,14401711,10000000 -1572365778.0,14370361,10000000 -1572366378.0,14302126,10000000 -1572366978.0,14316457,10000000 -1572367578.0,14294893,10000000 -1572368178.0,14275821,10000000 -1572368778.0,14283728,10000000 -1572369378.0,14329345,10000000 -1572369978.0,14461757,10000000 -1572370578.0,14525646,10000000 -1572371178.0,14513860,10000000 -1572371778.0,14582419,10000000 -1572372378.0,14581319,10000000 -1572372978.0,14543086,10000000 -1572373578.0,14549983,10000000 -1572374178.0,14576019,10000000 -1572374778.0,14510335,10000000 -1572375378.0,14481267,10000000 -1572375978.0,14447419,10000000 -1572376578.0,14412997,10000000 -1572377178.0,14427318,10000000 -1572377778.0,14265844,10000000 -1572378378.0,14232045,10000000 -1572378978.0,14289112,10000000 -1572379578.0,14395177,10000000 -1572380178.0,14372662,10000000 -1572380778.0,14320124,10000000 -1572381378.0,14344336,10000000 -1572381978.0,14369070,10000000 -1572382578.0,14308407,10000000 -1572383178.0,14355630,10000000 -1572383778.0,14335798,10000000 -1572384378.0,14350913,10000000 -1572384978.0,14380731,10000000 -1572385578.0,14411982,10000000 -1572386178.0,14402213,10000000 -1572386778.0,14416741,10000000 -1572387378.0,14437957,10000000 -1572387978.0,14547848,10000000 -1572388578.0,14523566,10000000 -1572389178.0,14542915,10000000 -1572389778.0,14561716,10000000 -1572390378.0,14609868,10000000 -1572390978.0,14609956,10000000 -1572391578.0,14694501,10000000 -1572392178.0,14718846,10000000 -1572392778.0,14672463,10000000 -1572393378.0,14829770,10000000 -1572393978.0,14731982,10000000 -1572394578.0,14741766,10000000 -1572395178.0,14841957,10000000 -1572395778.0,14919334,10000000 -1572396378.0,14921497,10000000 -1572396978.0,14904700,10000000 -1572397578.0,14966070,10000000 -1572398178.0,14747756,10000000 -1572398778.0,14708143,10000000 -1572399378.0,14772666,10000000 -1572399978.0,14890329,10000000 -1572400578.0,14884080,10000000 -1572401178.0,14902180,10000000 -1572401778.0,14822807,10000000 -1572402378.0,14736744,10000000 -1572402978.0,14772062,10000000 -1572403578.0,14744493,10000000 -1572404178.0,14682191,10000000 -1572404778.0,14581897,10000000 -1572405378.0,14530811,10000000 -1572405978.0,14450587,10000000 -1572406578.0,14510079,10000000 -1572407178.0,14440869,10000000 -1572407778.0,14417710,10000000 -1572408378.0,14479531,10000000 -1572408978.0,14455039,10000000 -1572409578.0,14576720,10000000 -1572410178.0,14687741,10000000 -1572410778.0,14692228,10000000 -1572411378.0,14625211,10000000 -1572411978.0,14706178,10000000 -1572412578.0,14636907,10000000 -1572413178.0,14597261,10000000 -1572413778.0,14651154,10000000 -1572414378.0,14687011,10000000 -1572414978.0,14737518,10000000 -1572415578.0,14728626,10000000 -1572416178.0,14877803,10000000 -1572416778.0,14968272,10000000 -1572417378.0,14965528,10000000 -1572417978.0,14935962,10000000 -1572418578.0,14982312,10000000 -1572419178.0,14835251,10000000 -1572419778.0,14900379,10000000 -1572420378.0,14904009,10000000 -1572420978.0,14854879,10000000 -1572421578.0,14670710,10000000 -1572422178.0,14595292,10000000 -1572422778.0,14661090,10000000 -1572423378.0,14724902,10000000 -1572423978.0,14706427,10000000 -1572424578.0,14748226,10000000 -1572425178.0,14801983,10000000 -1572425778.0,14835818,10000000 -1572426378.0,14806467,10000000 -1572426978.0,14785992,10000000 -1572427578.0,14769941,10000000 -1572428178.0,14807881,10000000 -1572428778.0,14863690,10000000 -1572429378.0,14880508,10000000 -1572429978.0,14877797,10000000 -1572430578.0,14852100,10000000 -1572431178.0,14846726,10000000 -1572431778.0,14885056,10000000 -1572432378.0,14888774,10000000 -1572432978.0,14962870,10000000 -1572433578.0,14865587,10000000 -1572434178.0,14902758,10000000 -1572434778.0,14891807,10000000 -1572435378.0,14878034,10000000 -1572435978.0,14800079,10000000 -1572436578.0,14749814,10000000 -1572437178.0,14676963,10000000 -1572437778.0,14678768,10000000 -1572438378.0,14689050,10000000 -1572438978.0,14603331,10000000 -1572439578.0,14687985,10000000 -1572440178.0,14656916,10000000 -1572440778.0,14709093,10000000 -1572441378.0,14792211,10000000 -1572441978.0,14778652,10000000 -1572442578.0,14734428,10000000 -1572443178.0,14628864,10000000 -1572443778.0,14604774,10000000 -1572444378.0,14627945,10000000 -1572444978.0,14783488,10000000 -1572445578.0,14792334,10000000 -1572446178.0,14725272,10000000 -1572446778.0,14811826,10000000 -1572447378.0,14863379,10000000 -1572447978.0,14824521,10000000 -1572448578.0,14896176,10000000 -1572449178.0,14809910,10000000 -1572449778.0,14876894,10000000 -1572450378.0,14908363,10000000 -1572450978.0,15154223,10000000 -1572451578.0,15135581,10000000 -1572452178.0,15143928,10000000 -1572452778.0,15227039,10000000 -1572453378.0,15294179,10000000 -1572453978.0,15250358,10000000 -1572454578.0,15244550,10000000 -1572455178.0,15257619,10000000 -1572455778.0,15314477,10000000 -1572456378.0,15250519,10000000 -1572456978.0,15271935,10000000 -1572457578.0,15315393,10000000 -1572458178.0,15445006,10000000 -1572458778.0,15540681,10000000 -1572459378.0,15657652,10000000 -1572459978.0,15607351,10000000 -1572460578.0,15555635,10000000 -1572461178.0,15602481,10000000 -1572461778.0,15472098,10000000 -1572462378.0,15423407,10000000 -1572462978.0,15439292,10000000 -1572463578.0,15399623,10000000 -1572464178.0,15282442,10000000 -1572464778.0,15305595,10000000 -1572465378.0,15237638,10000000 -1572465978.0,15305377,10000000 -1572466578.0,15275960,10000000 -1572467178.0,15215172,10000000 -1572467778.0,15229011,10000000 -1572468378.0,15150550,10000000 -1572468978.0,15143741,10000000 -1572469578.0,15072847,10000000 -1572470178.0,15053058,10000000 -1572470778.0,15039393,10000000 -1572471378.0,15065648,10000000 -1572471978.0,14954966,10000000 -1572472578.0,14980129,10000000 -1572473178.0,14892407,10000000 -1572473778.0,14901042,10000000 -1572474378.0,14917539,10000000 -1572474978.0,14772203,10000000 -1572475578.0,14717198,10000000 -1572476178.0,14708529,10000000 -1572476778.0,14752397,10000000 -1572477378.0,14739108,10000000 -1572477978.0,14809693,10000000 -1572478578.0,14930943,10000000 -1572479178.0,14807057,10000000 -1572479778.0,14763073,10000000 -1572480378.0,14756281,10000000 -1572480978.0,14747965,10000000 -1572481578.0,14732963,10000000 -1572482178.0,14815371,10000000 -1572482778.0,14884742,10000000 -1572483378.0,14895508,10000000 -1572483978.0,14820810,10000000 -1572484578.0,14763841,10000000 -1572485178.0,14734133,10000000 -1572485778.0,14679430,10000000 -1572486378.0,14772494,10000000 -1572486978.0,14826273,10000000 -1572487578.0,14819157,10000000 -1572488178.0,14779959,10000000 -1572488778.0,14834176,10000000 -1572489378.0,14716455,10000000 -1572489978.0,14654139,10000000 -1572490578.0,14750219,10000000 -1572491178.0,14727409,10000000 -1572491778.0,14676381,10000000 -1572492378.0,14653170,10000000 -1572492978.0,14629085,10000000 -1572493578.0,14615227,10000000 -1572494178.0,14614498,10000000 -1572494778.0,14768233,10000000 -1572495378.0,14695202,10000000 -1572495978.0,14684883,10000000 -1572496578.0,14817340,10000000 -1572497178.0,14752160,10000000 -1572497778.0,14759230,10000000 -1572498378.0,14792198,10000000 -1572498978.0,14689408,10000000 -1572499578.0,14748199,10000000 -1572500178.0,14659208,10000000 -1572500778.0,14682657,10000000 -1572501378.0,14578285,10000000 -1572501978.0,14565208,10000000 -1572502578.0,14571473,10000000 -1572503178.0,14521367,10000000 -1572503778.0,14660301,10000000 -1572504378.0,14673824,10000000 -1572504978.0,14753994,10000000 -1572505578.0,14743903,10000000 -1572506178.0,14735903,10000000 -1572506778.0,14652258,10000000 -1572507378.0,14619507,10000000 -1572507978.0,14631697,10000000 -1572508578.0,14660373,10000000 -1572509178.0,14706286,10000000 -1572509778.0,14715151,10000000 -1572510378.0,14653716,10000000 -1572510978.0,14694720,10000000 -1572511578.0,14743329,10000000 -1572512178.0,14708897,10000000 -1572512778.0,14688436,10000000 -1572513378.0,14620300,10000000 -1572513978.0,14629278,10000000 -1572514578.0,14629708,10000000 -1572515178.0,14728147,10000000 -1572515778.0,14713487,10000000 -1572516378.0,14658655,10000000 -1572516978.0,14647129,10000000 -1572517578.0,14628449,10000000 -1572518178.0,14577432,10000000 -1572518778.0,14596648,10000000 -1572519378.0,14664882,10000000 -1572519978.0,14669421,10000000 -1572520578.0,14690242,10000000 -1572521178.0,14740671,10000000 -1572521778.0,14740379,10000000 -1572522378.0,14820753,10000000 -1572522978.0,14782996,10000000 -1572523578.0,14807063,10000000 -1572524178.0,14807949,10000000 -1572524778.0,14752380,10000000 -1572525378.0,14764448,10000000 -1572525978.0,14769162,10000000 -1572526578.0,14761797,10000000 -1572527178.0,14798031,10000000 -1572527778.0,14843148,10000000 -1572528378.0,14870990,10000000 -1572528978.0,14867836,10000000 -1572529578.0,14841562,10000000 -1572530178.0,14822433,10000000 -1572530778.0,14798665,10000000 -1572531378.0,14765980,10000000 -1572531978.0,14659420,10000000 -1572532578.0,14536241,10000000 -1572533178.0,14463531,10000000 -1572533778.0,14401976,10000000 -1572534378.0,14481812,10000000 -1572534978.0,14404524,10000000 -1572535578.0,14304071,10000000 -1572536178.0,14300972,10000000 -1572536778.0,14345492,10000000 -1572537378.0,14402971,10000000 -1572537978.0,14412868,10000000 -1572538578.0,14426384,10000000 -1572539178.0,14510735,10000000 -1572539778.0,14464699,10000000 -1572540378.0,14451922,10000000 -1572540978.0,14405597,10000000 -1572541578.0,14451160,10000000 -1572542178.0,14414278,10000000 -1572542778.0,14398534,10000000 -1572543378.0,14414668,10000000 -1572543978.0,14376373,10000000 -1572544578.0,14241971,10000000 -1572545178.0,14283613,10000000 -1572545778.0,14292545,10000000 -1572546378.0,14326074,10000000 -1572546978.0,14271368,10000000 -1572547578.0,14226233,10000000 -1572548178.0,14228991,10000000 -1572548778.0,14261121,10000000 -1572549378.0,14324016,10000000 -1572549978.0,14283258,10000000 -1572550578.0,14198806,10000000 -1572551178.0,14171502,10000000 -1572551778.0,14219104,10000000 -1572552378.0,14137324,10000000 -1572552978.0,14209358,10000000 -1572553578.0,14185342,10000000 -1572554178.0,14179755,10000000 -1572554778.0,14184518,10000000 -1572555378.0,14220797,10000000 -1572555978.0,14254451,10000000 -1572556578.0,14249790,10000000 -1572557178.0,14230231,10000000 -1572557778.0,14261621,10000000 -1572558378.0,14271654,10000000 -1572558978.0,14165069,10000000 -1572559578.0,14247247,10000000 -1572560178.0,14315495,10000000 -1572560778.0,14300662,10000000 -1572561378.0,14433288,10000000 -1572561978.0,14413448,10000000 -1572562578.0,14408256,10000000 -1572563178.0,14372777,10000000 -1572563778.0,14383083,10000000 -1572564378.0,14324168,10000000 -1572564978.0,14275582,10000000 -1572565578.0,14321151,10000000 -1572566178.0,14208623,10000000 -1572566778.0,14171180,10000000 -1572567378.0,14123033,10000000 -1572567978.0,14115374,10000000 -1572568578.0,14054624,10000000 -1572569178.0,14090969,10000000 -1572569778.0,14068826,10000000 -1572570378.0,14001860,10000000 -1572570978.0,14027247,10000000 -1572571578.0,14190118,10000000 -1572572178.0,14247681,10000000 -1572572778.0,14253216,10000000 -1572573378.0,14327529,10000000 -1572573978.0,14399954,10000000 -1572574578.0,14286208,10000000 -1572575178.0,14343356,10000000 -1572575778.0,14297397,10000000 -1572576378.0,14429945,10000000 -1572576978.0,14387306,10000000 -1572577578.0,14351310,10000000 -1572578178.0,14407520,10000000 -1572578778.0,14395439,10000000 -1572579378.0,14477621,10000000 -1572579978.0,14416213,10000000 -1572580578.0,14446176,10000000 -1572581178.0,14488669,10000000 -1572581778.0,14484333,10000000 -1572582378.0,14504626,10000000 -1572582978.0,14494917,10000000 -1572583578.0,14428763,10000000 -1572584178.0,14434173,10000000 -1572584778.0,14582072,10000000 -1572585378.0,14605738,10000000 -1572585978.0,14637556,10000000 -1572586578.0,14610148,10000000 -1572587178.0,14530144,10000000 -1572587778.0,14565241,10000000 -1572588378.0,14437220,10000000 -1572588978.0,14397959,10000000 -1572589578.0,14371684,10000000 -1572590178.0,14439208,10000000 -1572590778.0,14531208,10000000 -1572591378.0,14587783,10000000 -1572591978.0,14543332,10000000 -1572592578.0,14445233,10000000 -1572593178.0,14474281,10000000 -1572593778.0,14405262,10000000 -1572594378.0,14405129,10000000 -1572594978.0,14360249,10000000 -1572595578.0,14353689,10000000 -1572596178.0,14359847,10000000 -1572596778.0,14237416,10000000 -1572597378.0,14213322,10000000 -1572597978.0,14224075,10000000 -1572598578.0,14257883,10000000 -1572599178.0,14289085,10000000 -1572599778.0,14293036,10000000 -1572600378.0,14280685,10000000 -1572600978.0,14213758,10000000 -1572601578.0,14356776,10000000 -1572602178.0,14382072,10000000 -1572602778.0,14367904,10000000 -1572603378.0,14352270,10000000 -1572603978.0,14331417,10000000 -1572604578.0,14298183,10000000 -1572605178.0,14393132,10000000 -1572605778.0,14344114,10000000 -1572606378.0,14414474,10000000 -1572606978.0,14453250,10000000 -1572607578.0,14457574,10000000 -1572608178.0,14323785,10000000 -1572608778.0,14334515,10000000 -1572609378.0,14384938,10000000 -1572609978.0,14399861,10000000 -1572610578.0,14289743,10000000 -1572611178.0,14354314,10000000 -1572611778.0,14308783,10000000 -1572612378.0,14265619,10000000 -1572612978.0,14309096,10000000 -1572613578.0,14292163,10000000 -1572614178.0,14266788,10000000 -1572614778.0,14330318,10000000 -1572615378.0,14344364,10000000 -1572615978.0,14347215,10000000 -1572616578.0,14336895,10000000 -1572617178.0,14376137,10000000 -1572617778.0,14417382,10000000 -1572618378.0,14549251,10000000 -1572618978.0,14620713,10000000 -1572619578.0,14663492,10000000 -1572620178.0,14555531,10000000 -1572620778.0,14594241,10000000 -1572621378.0,14595680,10000000 -1572621978.0,14498435,10000000 -1572622578.0,14491638,10000000 -1572623178.0,14558042,10000000 -1572623778.0,14500258,10000000 -1572624378.0,14501363,10000000 -1572624978.0,14498387,10000000 -1572625578.0,14537477,10000000 -1572626178.0,14668779,10000000 -1572626778.0,14550096,10000000 -1572627378.0,14590304,10000000 -1572627978.0,14556827,10000000 -1572628578.0,14519768,10000000 -1572629178.0,14588108,10000000 -1572629778.0,14639871,10000000 -1572630378.0,14774117,10000000 -1572630978.0,14594117,10000000 -1572631578.0,14605996,10000000 -1572632178.0,14604670,10000000 -1572632778.0,14540226,10000000 -1572633378.0,14469103,10000000 -1572633978.0,14527330,10000000 -1572634578.0,14447874,10000000 -1572635178.0,14510229,10000000 -1572635778.0,14510507,10000000 -1572636378.0,14523874,10000000 -1572636978.0,14473353,10000000 -1572637578.0,14466997,10000000 -1572638178.0,14423835,10000000 -1572638778.0,14339846,10000000 -1572639378.0,14323433,10000000 -1572639978.0,14339572,10000000 -1572640578.0,14372554,10000000 -1572641178.0,14293914,10000000 -1572641778.0,14229001,10000000 -1572642378.0,14203976,10000000 -1572642978.0,14294468,10000000 -1572643578.0,14298252,10000000 -1572644178.0,14380415,10000000 -1572644778.0,14367170,10000000 -1572645378.0,14375300,10000000 -1572645978.0,14355584,10000000 -1572646578.0,14509847,10000000 -1572647178.0,14423889,10000000 -1572647778.0,14436375,10000000 -1572648378.0,14452180,10000000 -1572648978.0,14549649,10000000 -1572649578.0,14613200,10000000 -1572650178.0,14623380,10000000 -1572650778.0,14693478,10000000 -1572651378.0,14650021,10000000 -1572651978.0,14742082,10000000 -1572652578.0,14745422,10000000 -1572653178.0,14726034,10000000 -1572653778.0,14786610,10000000 -1572654378.0,14818483,10000000 -1572654978.0,14830412,10000000 -1572655578.0,14788822,10000000 -1572656178.0,14855606,10000000 -1572656778.0,14911658,10000000 -1572657378.0,14922702,10000000 -1572657978.0,15047238,10000000 -1572658578.0,15061485,10000000 -1572659178.0,15017571,10000000 -1572659778.0,15040477,10000000 -1572660378.0,15044606,10000000 -1572660978.0,14910593,10000000 -1572661578.0,14921315,10000000 -1572662178.0,14861741,10000000 -1572662778.0,14858919,10000000 -1572663378.0,14855496,10000000 -1572663978.0,14860211,10000000 -1572664578.0,14786007,10000000 -1572665178.0,14855949,10000000 -1572665778.0,14737454,10000000 -1572666378.0,14641248,10000000 -1572666978.0,14515062,10000000 -1572667578.0,14568381,10000000 -1572668178.0,14577412,10000000 -1572668778.0,14587587,10000000 -1572669378.0,14528765,10000000 -1572669978.0,14535429,10000000 -1572670578.0,14512999,10000000 -1572671178.0,14554534,10000000 -1572671778.0,14625693,10000000 -1572672378.0,14587850,10000000 -1572672978.0,14638017,10000000 -1572673578.0,14685095,10000000 -1572674178.0,14683581,10000000 -1572674778.0,14628415,10000000 -1572675378.0,14637760,10000000 -1572675978.0,14633309,10000000 -1572676578.0,14626442,10000000 -1572677178.0,14542149,10000000 -1572677778.0,14487764,10000000 -1572678378.0,14545767,10000000 -1572678978.0,14643110,10000000 -1572679578.0,14619646,10000000 -1572680178.0,14722740,10000000 -1572680778.0,14754224,10000000 -1572681378.0,14720482,10000000 -1572681978.0,14778668,10000000 -1572682578.0,14785129,10000000 -1572683178.0,14729401,10000000 -1572683778.0,14793378,10000000 -1572684378.0,14756572,10000000 -1572684978.0,14785679,10000000 -1572685578.0,14861474,10000000 -1572686178.0,14853839,10000000 -1572686778.0,14764847,10000000 -1572687378.0,14726564,10000000 -1572687978.0,14681452,10000000 -1572688578.0,14613012,10000000 -1572689178.0,14619875,10000000 -1572689778.0,14635948,10000000 -1572690378.0,14654481,10000000 -1572690978.0,14590007,10000000 -1572691578.0,14577332,10000000 -1572692178.0,14674922,10000000 -1572692778.0,14564131,10000000 -1572693378.0,14584736,10000000 -1572693978.0,14659876,10000000 -1572694578.0,14645686,10000000 -1572695178.0,14710718,10000000 -1572695778.0,14688006,10000000 -1572696378.0,14757775,10000000 -1572696978.0,14687944,10000000 -1572697578.0,14697588,10000000 -1572698178.0,14858791,10000000 -1572698778.0,14862463,10000000 -1572699378.0,14934142,10000000 -1572699978.0,14812539,10000000 -1572700578.0,14768252,10000000 -1572701178.0,14824639,10000000 -1572701778.0,14893752,10000000 -1572702378.0,14846151,10000000 -1572702978.0,14917747,10000000 -1572703578.0,14973979,10000000 -1572704178.0,14937181,10000000 -1572704778.0,14922321,10000000 -1572705378.0,14906615,10000000 -1572705978.0,14929768,10000000 -1572706578.0,14911065,10000000 -1572707178.0,14825032,10000000 -1572707778.0,14735500,10000000 -1572708378.0,14746237,10000000 -1572708978.0,14786997,10000000 -1572709578.0,14739674,10000000 -1572710178.0,14658949,10000000 -1572710778.0,14638086,10000000 -1572711378.0,14673147,10000000 -1572711978.0,14615560,10000000 -1572712578.0,14620065,10000000 -1572713178.0,14619351,10000000 -1572713778.0,14615696,10000000 -1572714378.0,14577455,10000000 -1572714978.0,14612279,10000000 -1572715578.0,14632674,10000000 -1572716178.0,14730526,10000000 -1572716778.0,14593463,10000000 -1572717378.0,14605545,10000000 -1572717978.0,14597227,10000000 -1572718578.0,14686656,10000000 -1572719178.0,14670350,10000000 -1572719778.0,14665804,10000000 -1572720378.0,14655934,10000000 -1572720978.0,14629706,10000000 -1572721578.0,14611042,10000000 -1572722178.0,14574343,10000000 -1572722778.0,14556887,10000000 -1572723378.0,14493143,10000000 -1572723978.0,14461676,10000000 -1572724578.0,14564560,10000000 -1572725178.0,14396931,10000000 -1572725778.0,14453479,10000000 -1572726378.0,14402017,10000000 -1572726978.0,14330904,10000000 -1572727578.0,14366106,10000000 -1572728178.0,14433308,10000000 -1572728778.0,14464085,10000000 -1572729378.0,14533634,10000000 -1572729978.0,14485395,10000000 -1572730578.0,14454983,10000000 -1572731178.0,14490459,10000000 -1572731778.0,14548894,10000000 -1572732378.0,14540376,10000000 -1572732978.0,14537583,10000000 -1572733578.0,14536514,10000000 -1572734178.0,14606471,10000000 -1572734778.0,14549138,10000000 -1572735378.0,14561000,10000000 -1572735978.0,14549312,10000000 -1572736578.0,14512334,10000000 -1572737178.0,14456393,10000000 -1572737778.0,14320055,10000000 -1572738378.0,14286729,10000000 -1572738978.0,14212977,10000000 -1572739578.0,14232739,10000000 -1572740178.0,14211162,10000000 -1572740778.0,14174000,10000000 -1572741378.0,14180490,10000000 -1572741978.0,14210690,10000000 -1572742578.0,14272974,10000000 -1572743178.0,14280454,10000000 -1572743778.0,14364752,10000000 -1572744378.0,14239399,10000000 -1572744978.0,14273819,10000000 -1572745578.0,14250533,10000000 -1572746178.0,14236961,10000000 -1572746778.0,14256047,10000000 -1572747378.0,14215339,10000000 -1572747978.0,14234179,10000000 -1572748578.0,14184574,10000000 -1572749178.0,14133808,10000000 -1572749778.0,14077670,10000000 -1572750378.0,14084844,10000000 -1572750978.0,14127077,10000000 -1572751578.0,14045546,10000000 -1572752178.0,14000333,10000000 -1572752778.0,13966163,10000000 -1572753378.0,13930152,10000000 -1572753978.0,13850857,10000000 -1572754578.0,13903549,10000000 -1572755178.0,13906169,10000000 -1572755778.0,13917789,10000000 -1572756378.0,13959961,10000000 -1572756978.0,13979844,10000000 -1572757578.0,13980157,10000000 -1572758178.0,13870409,10000000 -1572758778.0,13819213,10000000 -1572759378.0,13759301,10000000 -1572759978.0,13716438,10000000 -1572760578.0,13653630,10000000 -1572761178.0,13675157,10000000 -1572761778.0,13686756,10000000 -1572762378.0,13737577,10000000 -1572762978.0,13732946,10000000 -1572763578.0,13755924,10000000 -1572764178.0,13792482,10000000 -1572764778.0,13776099,10000000 -1572765378.0,13741772,10000000 -1572765978.0,13824908,10000000 -1572766578.0,13908057,10000000 -1572767178.0,13937567,10000000 -1572767778.0,13923423,10000000 -1572768378.0,13951200,10000000 -1572768978.0,13981442,10000000 -1572769578.0,13932400,10000000 -1572770178.0,13922489,10000000 -1572770778.0,13921855,10000000 -1572771378.0,14049659,10000000 -1572771978.0,14164227,10000000 -1572772578.0,14243394,10000000 -1572773178.0,14263867,10000000 -1572773778.0,14360077,10000000 -1572774378.0,14402348,10000000 -1572774978.0,14364170,10000000 -1572775578.0,14324567,10000000 -1572776178.0,14417322,10000000 -1572776778.0,14237636,10000000 -1572777378.0,14188282,10000000 -1572777978.0,14150045,10000000 -1572778578.0,14132991,10000000 -1572779178.0,14062276,10000000 -1572779778.0,14019751,10000000 -1572780378.0,13971148,10000000 -1572780978.0,13943024,10000000 -1572781578.0,13997058,10000000 -1572782178.0,14058697,10000000 -1572782778.0,14049216,10000000 -1572783378.0,14014882,10000000 -1572783978.0,13950873,10000000 -1572784578.0,13948756,10000000 -1572785178.0,13879501,10000000 -1572785778.0,13831186,10000000 -1572786378.0,13796766,10000000 -1572786978.0,13843334,10000000 -1572787578.0,13779415,10000000 -1572788178.0,13767454,10000000 -1572788778.0,13800074,10000000 -1572789378.0,13726346,10000000 -1572789978.0,13714379,10000000 -1572790578.0,13636546,10000000 -1572791178.0,13599226,10000000 -1572791778.0,13678126,10000000 -1572792378.0,13670376,10000000 -1572792978.0,13723406,10000000 -1572793578.0,13813177,10000000 -1572794178.0,13763994,10000000 -1572794778.0,13808937,10000000 -1572795378.0,13824971,10000000 -1572795978.0,13908164,10000000 -1572796578.0,13881853,10000000 -1572797178.0,13863806,10000000 -1572797778.0,13911900,10000000 -1572798378.0,13959692,10000000 -1572798978.0,13952246,10000000 -1572799578.0,13891855,10000000 -1572800178.0,13840130,10000000 -1572800778.0,13841420,10000000 -1572801378.0,13872212,10000000 -1572801978.0,13834397,10000000 -1572802578.0,13841955,10000000 -1572803178.0,13805086,10000000 -1572803778.0,13809451,10000000 -1572804378.0,13769887,10000000 -1572804978.0,13804505,10000000 -1572805578.0,13844580,10000000 -1572806178.0,13845809,10000000 -1572806778.0,13874708,10000000 -1572807378.0,13977282,10000000 -1572807978.0,13958113,10000000 -1572808578.0,13991831,10000000 -1572809178.0,14002144,10000000 -1572809778.0,13949797,10000000 -1572810378.0,13931494,10000000 -1572810978.0,13873265,10000000 -1572811578.0,14034407,10000000 -1572812178.0,14012063,10000000 -1572812778.0,14037800,10000000 -1572813378.0,14036363,10000000 -1572813978.0,14148070,10000000 -1572814578.0,14242598,10000000 -1572815178.0,14125535,10000000 -1572815778.0,14113643,10000000 -1572816378.0,14085851,10000000 -1572816978.0,14137356,10000000 -1572817578.0,14172737,10000000 -1572818178.0,14138028,10000000 -1572818778.0,14090250,10000000 -1572819378.0,14154491,10000000 -1572819978.0,14151785,10000000 -1572820578.0,14189494,10000000 -1572821178.0,14207355,10000000 -1572821778.0,14176828,10000000 -1572822378.0,14214091,10000000 -1572822978.0,14179858,10000000 -1572823578.0,14175071,10000000 -1572824178.0,14127068,10000000 -1572824778.0,14162576,10000000 -1572825378.0,14228384,10000000 -1572825978.0,14258369,10000000 -1572826578.0,14233735,10000000 -1572827178.0,14193632,10000000 -1572827778.0,14270416,10000000 -1572828378.0,14219519,10000000 -1572828978.0,14178995,10000000 -1572829578.0,14285004,10000000 -1572830178.0,14220956,10000000 -1572830778.0,14171971,10000000 -1572831378.0,14168915,10000000 -1572831978.0,14134200,10000000 -1572832578.0,14152665,10000000 -1572833178.0,14227165,10000000 -1572833778.0,14254266,10000000 -1572834378.0,14443227,10000000 -1572834978.0,14317181,10000000 -1572835578.0,14284052,10000000 -1572836178.0,14288803,10000000 -1572836778.0,14287561,10000000 -1572837378.0,14217259,10000000 -1572837978.0,14228139,10000000 -1572838578.0,14315599,10000000 -1572839178.0,14267637,10000000 -1572839778.0,14201225,10000000 -1572840378.0,14102436,10000000 -1572840978.0,14122860,10000000 -1572841578.0,14182089,10000000 -1572842178.0,14229198,10000000 -1572842778.0,14337522,10000000 -1572843378.0,14357190,10000000 -1572843978.0,14338327,10000000 -1572844578.0,14357931,10000000 -1572845178.0,14229456,10000000 -1572845778.0,14245182,10000000 -1572846378.0,14215637,10000000 -1572846978.0,14175610,10000000 -1572847578.0,14272614,10000000 -1572848178.0,14241263,10000000 -1572848778.0,14295850,10000000 -1572849378.0,14270997,10000000 -1572849978.0,14235506,10000000 -1572850578.0,14214454,10000000 -1572851178.0,14131040,10000000 -1572851778.0,14135721,10000000 -1572852378.0,14090760,10000000 -1572852978.0,14045295,10000000 -1572853578.0,14098346,10000000 -1572854178.0,14084918,10000000 -1572854778.0,14047589,10000000 -1572855378.0,14054136,10000000 -1572855978.0,14025337,10000000 -1572856578.0,13957673,10000000 -1572857178.0,14049572,10000000 -1572857778.0,14046540,10000000 -1572858378.0,14015697,10000000 -1572858978.0,14021722,10000000 -1572859578.0,13966977,10000000 -1572860178.0,13933314,10000000 -1572860778.0,13928612,10000000 -1572861378.0,13901125,10000000 -1572861978.0,13780603,10000000 -1572862578.0,13769800,10000000 -1572863178.0,13824893,10000000 -1572863778.0,13842420,10000000 -1572864378.0,13790741,10000000 -1572864978.0,13606116,10000000 -1572865578.0,13654759,10000000 -1572866178.0,13624278,10000000 -1572866778.0,13638809,10000000 -1572867378.0,13645992,10000000 -1572867978.0,13614154,10000000 -1572868578.0,13710418,10000000 -1572869178.0,13655277,10000000 -1572869778.0,13719798,10000000 -1572870378.0,13751207,10000000 -1572870978.0,13758425,10000000 -1572871578.0,13808063,10000000 -1572872178.0,13792663,10000000 -1572872778.0,13756643,10000000 -1572873378.0,13790671,10000000 -1572873978.0,13870565,10000000 -1572874578.0,13925578,10000000 -1572875178.0,13977541,10000000 -1572875778.0,14034048,10000000 -1572876378.0,14095974,10000000 -1572876978.0,14008794,10000000 -1572877578.0,13997081,10000000 -1572878178.0,13865086,10000000 -1572878778.0,13854775,10000000 -1572879378.0,13901995,10000000 -1572879978.0,13842630,10000000 -1572880578.0,13847242,10000000 -1572881178.0,13770850,10000000 -1572881778.0,13754181,10000000 -1572882378.0,13829679,10000000 -1572882978.0,13839484,10000000 -1572883578.0,13865260,10000000 -1572884178.0,13826052,10000000 -1572884778.0,13759847,10000000 -1572885378.0,13815955,10000000 -1572885978.0,13823989,10000000 -1572886578.0,13842315,10000000 -1572887178.0,13789231,10000000 -1572887778.0,13735267,10000000 -1572888378.0,13753687,10000000 -1572888978.0,13819510,10000000 -1572889578.0,13859294,10000000 -1572890178.0,13926306,10000000 -1572890778.0,13905603,10000000 -1572891378.0,13836743,10000000 -1572891978.0,13825595,10000000 -1572892578.0,13880243,10000000 -1572893178.0,13842996,10000000 -1572893778.0,13920115,10000000 -1572894378.0,13936163,10000000 -1572894978.0,13995605,10000000 -1572895578.0,14109109,10000000 -1572896178.0,14052665,10000000 -1572896778.0,14142884,10000000 -1572897378.0,14205118,10000000 -1572897978.0,14148757,10000000 -1572898578.0,14192235,10000000 -1572899178.0,14185140,10000000 -1572899778.0,14235665,10000000 -1572900378.0,14288795,10000000 -1572900978.0,14356593,10000000 -1572901578.0,14372294,10000000 -1572902178.0,14386502,10000000 -1572902778.0,14306990,10000000 -1572903378.0,14321326,10000000 -1572903978.0,14459898,10000000 -1572904578.0,14297524,10000000 -1572905178.0,14253663,10000000 -1572905778.0,14241102,10000000 -1572906378.0,14189159,10000000 -1572906978.0,14193532,10000000 -1572907578.0,14194276,10000000 -1572908178.0,14161804,10000000 -1572908778.0,14141893,10000000 -1572909378.0,14005023,10000000 -1572909978.0,14050750,10000000 -1572910578.0,14079773,10000000 -1572911178.0,14089122,10000000 -1572911778.0,14116944,10000000 -1572912378.0,14144214,10000000 -1572912978.0,14229468,10000000 -1572913578.0,14220130,10000000 -1572914178.0,14193117,10000000 -1572914778.0,14240167,10000000 -1572915378.0,14156184,10000000 -1572915978.0,14267068,10000000 -1572916578.0,14340070,10000000 -1572917178.0,14312662,10000000 -1572917778.0,14322766,10000000 -1572918378.0,14340357,10000000 -1572918978.0,14462388,10000000 -1572919578.0,14502673,10000000 -1572920178.0,14438867,10000000 -1572920778.0,14411323,10000000 -1572921378.0,14316346,10000000 -1572921978.0,14367343,10000000 -1572922578.0,14431323,10000000 -1572923178.0,14394776,10000000 -1572923778.0,14396570,10000000 -1572924378.0,14439926,10000000 -1572924978.0,14455258,10000000 -1572925578.0,14479728,10000000 -1572926178.0,14460287,10000000 -1572926778.0,14455616,10000000 -1572927378.0,14396862,10000000 -1572927978.0,14413101,10000000 -1572928578.0,14421510,10000000 -1572929178.0,14411685,10000000 -1572929778.0,14392329,10000000 -1572930378.0,14520207,10000000 -1572930978.0,14505524,10000000 -1572931578.0,14486453,10000000 -1572932178.0,14532338,10000000 -1572932778.0,14492709,10000000 -1572933378.0,14519760,10000000 -1572933978.0,14539503,10000000 -1572934578.0,14517712,10000000 -1572935178.0,14499941,10000000 -1572935778.0,14619735,10000000 -1572936378.0,14768912,10000000 -1572936978.0,14829052,10000000 -1572937578.0,14838120,10000000 -1572938178.0,14758516,10000000 -1572938778.0,14787029,10000000 -1572939378.0,14731614,10000000 -1572939978.0,14631526,10000000 -1572940578.0,14635465,10000000 -1572941178.0,14560416,10000000 -1572941778.0,14451593,10000000 -1572942378.0,14462252,10000000 -1572942978.0,14480889,10000000 -1572943578.0,14549640,10000000 -1572944178.0,14425931,10000000 -1572944778.0,14389657,10000000 -1572945378.0,14311793,10000000 -1572945978.0,14246504,10000000 -1572946578.0,14296531,10000000 -1572947178.0,14448917,10000000 -1572947778.0,14491739,10000000 -1572948378.0,14560789,10000000 -1572948978.0,14613804,10000000 -1572949578.0,14721603,10000000 -1572950178.0,14761496,10000000 -1572950778.0,14788581,10000000 -1572951378.0,14769255,10000000 -1572951978.0,14758867,10000000 -1572952578.0,14796054,10000000 -1572953178.0,14781535,10000000 -1572953778.0,14814848,10000000 -1572954378.0,14718769,10000000 -1572954978.0,14768647,10000000 -1572955578.0,14745533,10000000 -1572956178.0,14724746,10000000 -1572956778.0,14745262,10000000 -1572957378.0,14739645,10000000 -1572957978.0,14725856,10000000 -1572958578.0,14786257,10000000 -1572959178.0,14722069,10000000 -1572959778.0,14762742,10000000 -1572960378.0,14661886,10000000 -1572960978.0,14672936,10000000 -1572961578.0,14646232,10000000 -1572962178.0,14653838,10000000 -1572962778.0,14693757,10000000 -1572963378.0,14621854,10000000 -1572963978.0,14529923,10000000 -1572964578.0,14523748,10000000 -1572965178.0,14515672,10000000 -1572965778.0,14403583,10000000 -1572966378.0,14400199,10000000 -1572966978.0,14378830,10000000 -1572967578.0,14450403,10000000 -1572968178.0,14517249,10000000 -1572968778.0,14563054,10000000 -1572969378.0,14495483,10000000 -1572969978.0,14543626,10000000 -1572970578.0,14509190,10000000 -1572971178.0,14453832,10000000 -1572971778.0,14461823,10000000 -1572972378.0,14471695,10000000 -1572972978.0,14411618,10000000 -1572973578.0,14426548,10000000 -1572974178.0,14488928,10000000 -1572974778.0,14563355,10000000 -1572975378.0,14559845,10000000 -1572975978.0,14490401,10000000 -1572976578.0,14476919,10000000 -1572977178.0,14456297,10000000 -1572977778.0,14472343,10000000 -1572978378.0,14377982,10000000 -1572978978.0,14371017,10000000 -1572979578.0,14368279,10000000 -1572980178.0,14319743,10000000 -1572980778.0,14290899,10000000 -1572981378.0,14348655,10000000 -1572981978.0,14383634,10000000 -1572982578.0,14344417,10000000 -1572983178.0,14379438,10000000 -1572983778.0,14403606,10000000 -1572984378.0,14363728,10000000 -1572984978.0,14341224,10000000 -1572985578.0,14364961,10000000 -1572986178.0,14372763,10000000 -1572986778.0,14353257,10000000 -1572987378.0,14246652,10000000 -1572987978.0,14222481,10000000 -1572988578.0,14267837,10000000 -1572989178.0,14263466,10000000 -1572989778.0,14237242,10000000 -1572990378.0,14146540,10000000 -1572990978.0,14215915,10000000 -1572991578.0,14267150,10000000 -1572992178.0,14326402,10000000 -1572992778.0,14349454,10000000 -1572993378.0,14336881,10000000 -1572993978.0,14399722,10000000 -1572994578.0,14395256,10000000 -1572995178.0,14356979,10000000 -1572995778.0,14276854,10000000 -1572996378.0,14216332,10000000 -1572996978.0,14231236,10000000 -1572997578.0,14244371,10000000 -1572998178.0,14174686,10000000 -1572998778.0,14198194,10000000 -1572999378.0,14110814,10000000 -1572999978.0,14132986,10000000 -1573000578.0,14128968,10000000 -1573001178.0,14030698,10000000 -1573001778.0,14074083,10000000 -1573002378.0,14075960,10000000 -1573002978.0,14147157,10000000 -1573003578.0,14192048,10000000 -1573004178.0,14192422,10000000 -1573004778.0,14060119,10000000 -1573005378.0,14107655,10000000 -1573005978.0,14182782,10000000 -1573006578.0,14183767,10000000 -1573007178.0,14051339,10000000 -1573007778.0,14142959,10000000 -1573008378.0,14100643,10000000 -1573008978.0,14110849,10000000 -1573009578.0,14163593,10000000 -1573010178.0,14261364,10000000 -1573010778.0,14231216,10000000 -1573011378.0,14089336,10000000 -1573011978.0,14079495,10000000 -1573012578.0,14056875,10000000 -1573013178.0,14099846,10000000 -1573013778.0,14111362,10000000 -1573014378.0,14082103,10000000 -1573014978.0,14132077,10000000 -1573015578.0,14131226,10000000 -1573016178.0,14023518,10000000 -1573016778.0,14047448,10000000 -1573017378.0,14196235,10000000 -1573017978.0,14089061,10000000 -1573018578.0,14077284,10000000 -1573019178.0,14102110,10000000 -1573019778.0,14228173,10000000 -1573020378.0,14248597,10000000 -1573020978.0,14210750,10000000 -1573021578.0,14118441,10000000 -1573022178.0,14070053,10000000 -1573022778.0,14081110,10000000 -1573023378.0,13990288,10000000 -1573023978.0,13986621,10000000 -1573024578.0,14074934,10000000 -1573025178.0,14162427,10000000 -1573025778.0,14126580,10000000 -1573026378.0,14175395,10000000 -1573026978.0,14254055,10000000 -1573027578.0,14268669,10000000 -1573028178.0,14200606,10000000 -1573028778.0,14263110,10000000 -1573029378.0,14266333,10000000 -1573029978.0,14285754,10000000 -1573030578.0,14297346,10000000 -1573031178.0,14311658,10000000 -1573031778.0,14336203,10000000 -1573032378.0,14386080,10000000 -1573032978.0,14354204,10000000 -1573033578.0,14441277,10000000 -1573034178.0,14509967,10000000 -1573034778.0,14576459,10000000 -1573035378.0,14495979,10000000 -1573035978.0,14570125,10000000 -1573036578.0,14630422,10000000 -1573037178.0,14699633,10000000 -1573037778.0,14778954,10000000 -1573038378.0,14855497,10000000 -1573038978.0,14737815,10000000 -1573039578.0,14785646,10000000 -1573040178.0,14829698,10000000 -1573040778.0,14874470,10000000 -1573041378.0,15003077,10000000 -1573041978.0,14972517,10000000 -1573042578.0,15031572,10000000 -1573043178.0,15031486,10000000 -1573043778.0,14953354,10000000 -1573044378.0,14947533,10000000 -1573044978.0,14904553,10000000 -1573045578.0,14906574,10000000 -1573046178.0,14809188,10000000 -1573046778.0,14796514,10000000 -1573047378.0,14735347,10000000 -1573047978.0,14821774,10000000 -1573048578.0,14777927,10000000 -1573049178.0,14829347,10000000 -1573049778.0,14853068,10000000 -1573050378.0,14886685,10000000 -1573050978.0,15000000,10000000 +1561501135.0,10000000,10000000 +1561501735.0,10000679,10000000 +1561502335.0,9989254,10000000 +1561502935.0,9943538,10000000 +1561503535.0,9943634,10000000 +1561504135.0,9928599,10000000 +1561504735.0,9909343,10000000 +1561505335.0,9847515,10000000 +1561505935.0,9828017,10000000 +1561506535.0,9818788,10000000 +1561507135.0,9792935,10000000 +1561507735.0,9819538,10000000 +1561508335.0,9891620,10000000 +1561508935.0,9904482,10000000 +1561509535.0,9934352,10000000 +1561510135.0,10010725,10000000 +1561510735.0,10029345,10000000 +1561511335.0,10094661,10000000 +1561511935.0,10057483,10000000 +1561512535.0,10052375,10000000 +1561513135.0,10107511,10000000 +1561513735.0,10136632,10000000 +1561514335.0,10138624,10000000 +1561514935.0,10178129,10000000 +1561515535.0,10194925,10000000 +1561516135.0,10217530,10000000 +1561516735.0,10203064,10000000 +1561517335.0,10212590,10000000 +1561517935.0,10227222,10000000 +1561518535.0,10206659,10000000 +1561519135.0,10118728,10000000 +1561519735.0,10115887,10000000 +1561520335.0,10220550,10000000 +1561520935.0,10108028,10000000 +1561521535.0,10070275,10000000 +1561522135.0,10061378,10000000 +1561522735.0,10073313,10000000 +1561523335.0,10121514,10000000 +1561523935.0,10166214,10000000 +1561524535.0,10222240,10000000 +1561525135.0,10282241,10000000 +1561525735.0,10254805,10000000 +1561526335.0,10253051,10000000 +1561526935.0,10232364,10000000 +1561527535.0,10251637,10000000 +1561528135.0,10236245,10000000 +1561528735.0,10197597,10000000 +1561529335.0,10280038,10000000 +1561529935.0,10274253,10000000 +1561530535.0,10247595,10000000 +1561531135.0,10283523,10000000 +1561531735.0,10232419,10000000 +1561532335.0,10211626,10000000 +1561532935.0,10182449,10000000 +1561533535.0,10099670,10000000 +1561534135.0,9989160,10000000 +1561534735.0,9987392,10000000 +1561535335.0,9960753,10000000 +1561535935.0,9933957,10000000 +1561536535.0,9966484,10000000 +1561537135.0,9929850,10000000 +1561537735.0,10000804,10000000 +1561538335.0,9930955,10000000 +1561538935.0,9816660,10000000 +1561539535.0,9808035,10000000 +1561540135.0,9824912,10000000 +1561540735.0,9893718,10000000 +1561541335.0,9874010,10000000 +1561541935.0,9859173,10000000 +1561542535.0,9852826,10000000 +1561543135.0,9953189,10000000 +1561543735.0,9879081,10000000 +1561544335.0,9893702,10000000 +1561544935.0,9893392,10000000 +1561545535.0,9854522,10000000 +1561546135.0,9839426,10000000 +1561546735.0,9844541,10000000 +1561547335.0,9810147,10000000 +1561547935.0,9810777,10000000 +1561548535.0,9838575,10000000 +1561549135.0,9869973,10000000 +1561549735.0,9851458,10000000 +1561550335.0,9840700,10000000 +1561550935.0,9842779,10000000 +1561551535.0,9878253,10000000 +1561552135.0,9885590,10000000 +1561552735.0,9936128,10000000 +1561553335.0,9957585,10000000 +1561553935.0,9892715,10000000 +1561554535.0,9935603,10000000 +1561555135.0,9909234,10000000 +1561555735.0,9932061,10000000 +1561556335.0,9932360,10000000 +1561556935.0,9971338,10000000 +1561557535.0,9973906,10000000 +1561558135.0,9980442,10000000 +1561558735.0,9912538,10000000 +1561559335.0,9969832,10000000 +1561559935.0,9971506,10000000 +1561560535.0,9955719,10000000 +1561561135.0,10009775,10000000 +1561561735.0,10033847,10000000 +1561562335.0,10044510,10000000 +1561562935.0,10065253,10000000 +1561563535.0,10068481,10000000 +1561564135.0,10024305,10000000 +1561564735.0,9971898,10000000 +1561565335.0,10010834,10000000 +1561565935.0,10055571,10000000 +1561566535.0,10078871,10000000 +1561567135.0,10092498,10000000 +1561567735.0,10134049,10000000 +1561568335.0,10183570,10000000 +1561568935.0,10202164,10000000 +1561569535.0,10245377,10000000 +1561570135.0,10283814,10000000 +1561570735.0,10261770,10000000 +1561571335.0,10297292,10000000 +1561571935.0,10254276,10000000 +1561572535.0,10158886,10000000 +1561573135.0,10188353,10000000 +1561573735.0,10171956,10000000 +1561574335.0,10255176,10000000 +1561574935.0,10202786,10000000 +1561575535.0,10243445,10000000 +1561576135.0,10233820,10000000 +1561576735.0,10246023,10000000 +1561577335.0,10200005,10000000 +1561577935.0,10303227,10000000 +1561578535.0,10291869,10000000 +1561579135.0,10379982,10000000 +1561579735.0,10377096,10000000 +1561580335.0,10325193,10000000 +1561580935.0,10291190,10000000 +1561581535.0,10348518,10000000 +1561582135.0,10324252,10000000 +1561582735.0,10328436,10000000 +1561583335.0,10389343,10000000 +1561583935.0,10436943,10000000 +1561584535.0,10393487,10000000 +1561585135.0,10381507,10000000 +1561585735.0,10449840,10000000 +1561586335.0,10426741,10000000 +1561586935.0,10469220,10000000 +1561587535.0,10479101,10000000 +1561588135.0,10425526,10000000 +1561588735.0,10439425,10000000 +1561589335.0,10414088,10000000 +1561589935.0,10420090,10000000 +1561590535.0,10386468,10000000 +1561591135.0,10415031,10000000 +1561591735.0,10413102,10000000 +1561592335.0,10453463,10000000 +1561592935.0,10406729,10000000 +1561593535.0,10399808,10000000 +1561594135.0,10446734,10000000 +1561594735.0,10501392,10000000 +1561595335.0,10546777,10000000 +1561595935.0,10585338,10000000 +1561596535.0,10553751,10000000 +1561597135.0,10573797,10000000 +1561597735.0,10602971,10000000 +1561598335.0,10615220,10000000 +1561598935.0,10647221,10000000 +1561599535.0,10628540,10000000 +1561600135.0,10664429,10000000 +1561600735.0,10653532,10000000 +1561601335.0,10616997,10000000 +1561601935.0,10552408,10000000 +1561602535.0,10601882,10000000 +1561603135.0,10549816,10000000 +1561603735.0,10505423,10000000 +1561604335.0,10437536,10000000 +1561604935.0,10527431,10000000 +1561605535.0,10611333,10000000 +1561606135.0,10576750,10000000 +1561606735.0,10497301,10000000 +1561607335.0,10464075,10000000 +1561607935.0,10436539,10000000 +1561608535.0,10416028,10000000 +1561609135.0,10432988,10000000 +1561609735.0,10388707,10000000 +1561610335.0,10383569,10000000 +1561610935.0,10400893,10000000 +1561611535.0,10416922,10000000 +1561612135.0,10432465,10000000 +1561612735.0,10407193,10000000 +1561613335.0,10399678,10000000 +1561613935.0,10430730,10000000 +1561614535.0,10373932,10000000 +1561615135.0,10415174,10000000 +1561615735.0,10396292,10000000 +1561616335.0,10437366,10000000 +1561616935.0,10359800,10000000 +1561617535.0,10379053,10000000 +1561618135.0,10355204,10000000 +1561618735.0,10402131,10000000 +1561619335.0,10397546,10000000 +1561619935.0,10353553,10000000 +1561620535.0,10390308,10000000 +1561621135.0,10354147,10000000 +1561621735.0,10303804,10000000 +1561622335.0,10260296,10000000 +1561622935.0,10221906,10000000 +1561623535.0,10187507,10000000 +1561624135.0,10156900,10000000 +1561624735.0,10193903,10000000 +1561625335.0,10234862,10000000 +1561625935.0,10286686,10000000 +1561626535.0,10369019,10000000 +1561627135.0,10392375,10000000 +1561627735.0,10386948,10000000 +1561628335.0,10331858,10000000 +1561628935.0,10312104,10000000 +1561629535.0,10312496,10000000 +1561630135.0,10369518,10000000 +1561630735.0,10342059,10000000 +1561631335.0,10412010,10000000 +1561631935.0,10480770,10000000 +1561632535.0,10470170,10000000 +1561633135.0,10455172,10000000 +1561633735.0,10456261,10000000 +1561634335.0,10422562,10000000 +1561634935.0,10375394,10000000 +1561635535.0,10351706,10000000 +1561636135.0,10373145,10000000 +1561636735.0,10275544,10000000 +1561637335.0,10305922,10000000 +1561637935.0,10376575,10000000 +1561638535.0,10430562,10000000 +1561639135.0,10503145,10000000 +1561639735.0,10438978,10000000 +1561640335.0,10392901,10000000 +1561640935.0,10462408,10000000 +1561641535.0,10480003,10000000 +1561642135.0,10536514,10000000 +1561642735.0,10546448,10000000 +1561643335.0,10574391,10000000 +1561643935.0,10530988,10000000 +1561644535.0,10508309,10000000 +1561645135.0,10550041,10000000 +1561645735.0,10558592,10000000 +1561646335.0,10557633,10000000 +1561646935.0,10595438,10000000 +1561647535.0,10560263,10000000 +1561648135.0,10487572,10000000 +1561648735.0,10451132,10000000 +1561649335.0,10439533,10000000 +1561649935.0,10506522,10000000 +1561650535.0,10465278,10000000 +1561651135.0,10497621,10000000 +1561651735.0,10522610,10000000 +1561652335.0,10559722,10000000 +1561652935.0,10625221,10000000 +1561653535.0,10625724,10000000 +1561654135.0,10673323,10000000 +1561654735.0,10630340,10000000 +1561655335.0,10679199,10000000 +1561655935.0,10696168,10000000 +1561656535.0,10648242,10000000 +1561657135.0,10550144,10000000 +1561657735.0,10545385,10000000 +1561658335.0,10538221,10000000 +1561658935.0,10636666,10000000 +1561659535.0,10737667,10000000 +1561660135.0,10693413,10000000 +1561660735.0,10738915,10000000 +1561661335.0,10734039,10000000 +1561661935.0,10727902,10000000 +1561662535.0,10670576,10000000 +1561663135.0,10659064,10000000 +1561663735.0,10676240,10000000 +1561664335.0,10649319,10000000 +1561664935.0,10679716,10000000 +1561665535.0,10685804,10000000 +1561666135.0,10764890,10000000 +1561666735.0,10801349,10000000 +1561667335.0,10823249,10000000 +1561667935.0,10831087,10000000 +1561668535.0,10814852,10000000 +1561669135.0,10859019,10000000 +1561669735.0,10834426,10000000 +1561670335.0,10869237,10000000 +1561670935.0,10868340,10000000 +1561671535.0,10876720,10000000 +1561672135.0,10969213,10000000 +1561672735.0,11003930,10000000 +1561673335.0,11040219,10000000 +1561673935.0,11023020,10000000 +1561674535.0,11025050,10000000 +1561675135.0,11035143,10000000 +1561675735.0,11002358,10000000 +1561676335.0,10959865,10000000 +1561676935.0,10971903,10000000 +1561677535.0,11031924,10000000 +1561678135.0,10978899,10000000 +1561678735.0,10986079,10000000 +1561679335.0,10955314,10000000 +1561679935.0,10978005,10000000 +1561680535.0,10994636,10000000 +1561681135.0,10937471,10000000 +1561681735.0,10883911,10000000 +1561682335.0,10905407,10000000 +1561682935.0,10913532,10000000 +1561683535.0,10929785,10000000 +1561684135.0,10957789,10000000 +1561684735.0,10987912,10000000 +1561685335.0,11092624,10000000 +1561685935.0,11111826,10000000 +1561686535.0,11114945,10000000 +1561687135.0,11101652,10000000 +1561687735.0,11176623,10000000 +1561688335.0,11226172,10000000 +1561688935.0,11197588,10000000 +1561689535.0,11150014,10000000 +1561690135.0,11101653,10000000 +1561690735.0,11144154,10000000 +1561691335.0,11192903,10000000 +1561691935.0,11203021,10000000 +1561692535.0,11115896,10000000 +1561693135.0,11054568,10000000 +1561693735.0,11072107,10000000 +1561694335.0,11071225,10000000 +1561694935.0,11075419,10000000 +1561695535.0,11066641,10000000 +1561696135.0,11044342,10000000 +1561696735.0,11058699,10000000 +1561697335.0,11051223,10000000 +1561697935.0,10973739,10000000 +1561698535.0,10949414,10000000 +1561699135.0,10963664,10000000 +1561699735.0,10946838,10000000 +1561700335.0,10978479,10000000 +1561700935.0,11057391,10000000 +1561701535.0,10995823,10000000 +1561702135.0,11144592,10000000 +1561702735.0,11123302,10000000 +1561703335.0,11116959,10000000 +1561703935.0,11145204,10000000 +1561704535.0,11081498,10000000 +1561705135.0,11086671,10000000 +1561705735.0,11088449,10000000 +1561706335.0,11064978,10000000 +1561706935.0,11079331,10000000 +1561707535.0,11049251,10000000 +1561708135.0,11052147,10000000 +1561708735.0,10980283,10000000 +1561709335.0,11007289,10000000 +1561709935.0,11050809,10000000 +1561710535.0,11134616,10000000 +1561711135.0,11102015,10000000 +1561711735.0,11131157,10000000 +1561712335.0,11119428,10000000 +1561712935.0,11163570,10000000 +1561713535.0,11092945,10000000 +1561714135.0,11064358,10000000 +1561714735.0,11061436,10000000 +1561715335.0,11135954,10000000 +1561715935.0,11058731,10000000 +1561716535.0,11092932,10000000 +1561717135.0,11091594,10000000 +1561717735.0,11109316,10000000 +1561718335.0,11084850,10000000 +1561718935.0,11016468,10000000 +1561719535.0,11075889,10000000 +1561720135.0,11027453,10000000 +1561720735.0,11035171,10000000 +1561721335.0,10988027,10000000 +1561721935.0,11001000,10000000 +1561722535.0,11056043,10000000 +1561723135.0,11071466,10000000 +1561723735.0,11043495,10000000 +1561724335.0,11038265,10000000 +1561724935.0,11055419,10000000 +1561725535.0,10989054,10000000 +1561726135.0,11014488,10000000 +1561726735.0,11021515,10000000 +1561727335.0,11008235,10000000 +1561727935.0,11035571,10000000 +1561728535.0,11060662,10000000 +1561729135.0,11062606,10000000 +1561729735.0,11054099,10000000 +1561730335.0,11028063,10000000 +1561730935.0,11047844,10000000 +1561731535.0,11122783,10000000 +1561732135.0,11150294,10000000 +1561732735.0,11185575,10000000 +1561733335.0,11127420,10000000 +1561733935.0,11057168,10000000 +1561734535.0,11088400,10000000 +1561735135.0,11062112,10000000 +1561735735.0,11116496,10000000 +1561736335.0,11107128,10000000 +1561736935.0,11100892,10000000 +1561737535.0,11121251,10000000 +1561738135.0,11104667,10000000 +1561738735.0,11001156,10000000 +1561739335.0,11063583,10000000 +1561739935.0,11049837,10000000 +1561740535.0,11070722,10000000 +1561741135.0,11043730,10000000 +1561741735.0,11027394,10000000 +1561742335.0,11022457,10000000 +1561742935.0,11055185,10000000 +1561743535.0,11076039,10000000 +1561744135.0,11004715,10000000 +1561744735.0,11034309,10000000 +1561745335.0,11041917,10000000 +1561745935.0,11039511,10000000 +1561746535.0,11082871,10000000 +1561747135.0,10990883,10000000 +1561747735.0,11003190,10000000 +1561748335.0,11001379,10000000 +1561748935.0,11037970,10000000 +1561749535.0,11061351,10000000 +1561750135.0,11105194,10000000 +1561750735.0,11054060,10000000 +1561751335.0,11100111,10000000 +1561751935.0,11039261,10000000 +1561752535.0,11035362,10000000 +1561753135.0,11016637,10000000 +1561753735.0,11045498,10000000 +1561754335.0,11037653,10000000 +1561754935.0,11059457,10000000 +1561755535.0,11085563,10000000 +1561756135.0,11073262,10000000 +1561756735.0,11115413,10000000 +1561757335.0,11127032,10000000 +1561757935.0,11041033,10000000 +1561758535.0,10995273,10000000 +1561759135.0,10958266,10000000 +1561759735.0,10950834,10000000 +1561760335.0,10927271,10000000 +1561760935.0,10949269,10000000 +1561761535.0,10921844,10000000 +1561762135.0,10960382,10000000 +1561762735.0,10979766,10000000 +1561763335.0,10906468,10000000 +1561763935.0,10900918,10000000 +1561764535.0,10869623,10000000 +1561765135.0,10897202,10000000 +1561765735.0,10966415,10000000 +1561766335.0,10901727,10000000 +1561766935.0,10888575,10000000 +1561767535.0,10992355,10000000 +1561768135.0,10937795,10000000 +1561768735.0,10964531,10000000 +1561769335.0,10875185,10000000 +1561769935.0,10866662,10000000 +1561770535.0,10848765,10000000 +1561771135.0,10790261,10000000 +1561771735.0,10736193,10000000 +1561772335.0,10775116,10000000 +1561772935.0,10769331,10000000 +1561773535.0,10832994,10000000 +1561774135.0,10796398,10000000 +1561774735.0,10778180,10000000 +1561775335.0,10842325,10000000 +1561775935.0,10930856,10000000 +1561776535.0,10969458,10000000 +1561777135.0,10990256,10000000 +1561777735.0,11020457,10000000 +1561778335.0,11018591,10000000 +1561778935.0,11122178,10000000 +1561779535.0,11171579,10000000 +1561780135.0,11138880,10000000 +1561780735.0,11203538,10000000 +1561781335.0,11189339,10000000 +1561781935.0,11192740,10000000 +1561782535.0,11214234,10000000 +1561783135.0,11171223,10000000 +1561783735.0,11198818,10000000 +1561784335.0,11301722,10000000 +1561784935.0,11258250,10000000 +1561785535.0,11183765,10000000 +1561786135.0,11170457,10000000 +1561786735.0,11149497,10000000 +1561787335.0,11205457,10000000 +1561787935.0,11155043,10000000 +1561788535.0,11246355,10000000 +1561789135.0,11195410,10000000 +1561789735.0,11215910,10000000 +1561790335.0,11315909,10000000 +1561790935.0,11384050,10000000 +1561791535.0,11432584,10000000 +1561792135.0,11432261,10000000 +1561792735.0,11447372,10000000 +1561793335.0,11411552,10000000 +1561793935.0,11496188,10000000 +1561794535.0,11475335,10000000 +1561795135.0,11458745,10000000 +1561795735.0,11453817,10000000 +1561796335.0,11446189,10000000 +1561796935.0,11417608,10000000 +1561797535.0,11412774,10000000 +1561798135.0,11397843,10000000 +1561798735.0,11428498,10000000 +1561799335.0,11463130,10000000 +1561799935.0,11455887,10000000 +1561800535.0,11445186,10000000 +1561801135.0,11326473,10000000 +1561801735.0,11327774,10000000 +1561802335.0,11292633,10000000 +1561802935.0,11245893,10000000 +1561803535.0,11292397,10000000 +1561804135.0,11259926,10000000 +1561804735.0,11257715,10000000 +1561805335.0,11332385,10000000 +1561805935.0,11370656,10000000 +1561806535.0,11370418,10000000 +1561807135.0,11350623,10000000 +1561807735.0,11349275,10000000 +1561808335.0,11216307,10000000 +1561808935.0,11252623,10000000 +1561809535.0,11252567,10000000 +1561810135.0,11316470,10000000 +1561810735.0,11356287,10000000 +1561811335.0,11385017,10000000 +1561811935.0,11505492,10000000 +1561812535.0,11525556,10000000 +1561813135.0,11544797,10000000 +1561813735.0,11566427,10000000 +1561814335.0,11690560,10000000 +1561814935.0,11709528,10000000 +1561815535.0,11584189,10000000 +1561816135.0,11583621,10000000 +1561816735.0,11581876,10000000 +1561817335.0,11616646,10000000 +1561817935.0,11616874,10000000 +1561818535.0,11578004,10000000 +1561819135.0,11525116,10000000 +1561819735.0,11517767,10000000 +1561820335.0,11540380,10000000 +1561820935.0,11614528,10000000 +1561821535.0,11691361,10000000 +1561822135.0,11671435,10000000 +1561822735.0,11648661,10000000 +1561823335.0,11650364,10000000 +1561823935.0,11525634,10000000 +1561824535.0,11585106,10000000 +1561825135.0,11528152,10000000 +1561825735.0,11530488,10000000 +1561826335.0,11468442,10000000 +1561826935.0,11468508,10000000 +1561827535.0,11478237,10000000 +1561828135.0,11439095,10000000 +1561828735.0,11462991,10000000 +1561829335.0,11455178,10000000 +1561829935.0,11491994,10000000 +1561830535.0,11452216,10000000 +1561831135.0,11444077,10000000 +1561831735.0,11453656,10000000 +1561832335.0,11420904,10000000 +1561832935.0,11322852,10000000 +1561833535.0,11349379,10000000 +1561834135.0,11347219,10000000 +1561834735.0,11371215,10000000 +1561835335.0,11320575,10000000 +1561835935.0,11357487,10000000 +1561836535.0,11392622,10000000 +1561837135.0,11393612,10000000 +1561837735.0,11442020,10000000 +1561838335.0,11332657,10000000 +1561838935.0,11284652,10000000 +1561839535.0,11229510,10000000 +1561840135.0,11162522,10000000 +1561840735.0,11133523,10000000 +1561841335.0,11136449,10000000 +1561841935.0,11209638,10000000 +1561842535.0,11215182,10000000 +1561843135.0,11244796,10000000 +1561843735.0,11231669,10000000 +1561844335.0,11316201,10000000 +1561844935.0,11276737,10000000 +1561845535.0,11225840,10000000 +1561846135.0,11235960,10000000 +1561846735.0,11324805,10000000 +1561847335.0,11308441,10000000 +1561847935.0,11298254,10000000 +1561848535.0,11369598,10000000 +1561849135.0,11315498,10000000 +1561849735.0,11271691,10000000 +1561850335.0,11188934,10000000 +1561850935.0,11072883,10000000 +1561851535.0,11016488,10000000 +1561852135.0,10932781,10000000 +1561852735.0,10878148,10000000 +1561853335.0,10942865,10000000 +1561853935.0,10899459,10000000 +1561854535.0,10864980,10000000 +1561855135.0,10920673,10000000 +1561855735.0,10920959,10000000 +1561856335.0,10991917,10000000 +1561856935.0,11030050,10000000 +1561857535.0,11026428,10000000 +1561858135.0,11118619,10000000 +1561858735.0,11151756,10000000 +1561859335.0,11121267,10000000 +1561859935.0,11066689,10000000 +1561860535.0,11176039,10000000 +1561861135.0,11149938,10000000 +1561861735.0,11183874,10000000 +1561862335.0,11207221,10000000 +1561862935.0,11247616,10000000 +1561863535.0,11320628,10000000 +1561864135.0,11198820,10000000 +1561864735.0,11178236,10000000 +1561865335.0,11174338,10000000 +1561865935.0,11245531,10000000 +1561866535.0,11221013,10000000 +1561867135.0,11188365,10000000 +1561867735.0,11221889,10000000 +1561868335.0,11195777,10000000 +1561868935.0,11230414,10000000 +1561869535.0,11304196,10000000 +1561870135.0,11375767,10000000 +1561870735.0,11335537,10000000 +1561871335.0,11241091,10000000 +1561871935.0,11266327,10000000 +1561872535.0,11258743,10000000 +1561873135.0,11343584,10000000 +1561873735.0,11267510,10000000 +1561874335.0,11298323,10000000 +1561874935.0,11266735,10000000 +1561875535.0,11279061,10000000 +1561876135.0,11323013,10000000 +1561876735.0,11340440,10000000 +1561877335.0,11351526,10000000 +1561877935.0,11393758,10000000 +1561878535.0,11399226,10000000 +1561879135.0,11395040,10000000 +1561879735.0,11468255,10000000 +1561880335.0,11365641,10000000 +1561880935.0,11402063,10000000 +1561881535.0,11486841,10000000 +1561882135.0,11511665,10000000 +1561882735.0,11559492,10000000 +1561883335.0,11626012,10000000 +1561883935.0,11703093,10000000 +1561884535.0,11654273,10000000 +1561885135.0,11690163,10000000 +1561885735.0,11810137,10000000 +1561886335.0,11760385,10000000 +1561886935.0,11762941,10000000 +1561887535.0,11738285,10000000 +1561888135.0,11703849,10000000 +1561888735.0,11711169,10000000 +1561889335.0,11685334,10000000 +1561889935.0,11629636,10000000 +1561890535.0,11558399,10000000 +1561891135.0,11616194,10000000 +1561891735.0,11715931,10000000 +1561892335.0,11811661,10000000 +1561892935.0,11766784,10000000 +1561893535.0,11698525,10000000 +1561894135.0,11685229,10000000 +1561894735.0,11722878,10000000 +1561895335.0,11711505,10000000 +1561895935.0,11787022,10000000 +1561896535.0,11838920,10000000 +1561897135.0,11855598,10000000 +1561897735.0,11811614,10000000 +1561898335.0,11793449,10000000 +1561898935.0,11876047,10000000 +1561899535.0,11853257,10000000 +1561900135.0,11838380,10000000 +1561900735.0,11780252,10000000 +1561901335.0,11833922,10000000 +1561901935.0,11830141,10000000 +1561902535.0,11839131,10000000 +1561903135.0,11754843,10000000 +1561903735.0,11729453,10000000 +1561904335.0,11669751,10000000 +1561904935.0,11678352,10000000 +1561905535.0,11760389,10000000 +1561906135.0,11702149,10000000 +1561906735.0,11619991,10000000 +1561907335.0,11624914,10000000 +1561907935.0,11660281,10000000 +1561908535.0,11633904,10000000 +1561909135.0,11613878,10000000 +1561909735.0,11625608,10000000 +1561910335.0,11619708,10000000 +1561910935.0,11636376,10000000 +1561911535.0,11586418,10000000 +1561912135.0,11539718,10000000 +1561912735.0,11538753,10000000 +1561913335.0,11581704,10000000 +1561913935.0,11608328,10000000 +1561914535.0,11596929,10000000 +1561915135.0,11615099,10000000 +1561915735.0,11578482,10000000 +1561916335.0,11569605,10000000 +1561916935.0,11494298,10000000 +1561917535.0,11426414,10000000 +1561918135.0,11289484,10000000 +1561918735.0,11359835,10000000 +1561919335.0,11388752,10000000 +1561919935.0,11422590,10000000 +1561920535.0,11452060,10000000 +1561921135.0,11466389,10000000 +1561921735.0,11471523,10000000 +1561922335.0,11447824,10000000 +1561922935.0,11472445,10000000 +1561923535.0,11470550,10000000 +1561924135.0,11457048,10000000 +1561924735.0,11438779,10000000 +1561925335.0,11399641,10000000 +1561925935.0,11397942,10000000 +1561926535.0,11335295,10000000 +1561927135.0,11287969,10000000 +1561927735.0,11299295,10000000 +1561928335.0,11371260,10000000 +1561928935.0,11375477,10000000 +1561929535.0,11365850,10000000 +1561930135.0,11393289,10000000 +1561930735.0,11439699,10000000 +1561931335.0,11510157,10000000 +1561931935.0,11514179,10000000 +1561932535.0,11575099,10000000 +1561933135.0,11553731,10000000 +1561933735.0,11467831,10000000 +1561934335.0,11544453,10000000 +1561934935.0,11578795,10000000 +1561935535.0,11570433,10000000 +1561936135.0,11575166,10000000 +1561936735.0,11630481,10000000 +1561937335.0,11645830,10000000 +1561937935.0,11563124,10000000 +1561938535.0,11611352,10000000 +1561939135.0,11685721,10000000 +1561939735.0,11754030,10000000 +1561940335.0,11782310,10000000 +1561940935.0,11821036,10000000 +1561941535.0,11793975,10000000 +1561942135.0,11821999,10000000 +1561942735.0,11809397,10000000 +1561943335.0,11753096,10000000 +1561943935.0,11714849,10000000 +1561944535.0,11697644,10000000 +1561945135.0,11711197,10000000 +1561945735.0,11718841,10000000 +1561946335.0,11798719,10000000 +1561946935.0,11755202,10000000 +1561947535.0,11847617,10000000 +1561948135.0,11886291,10000000 +1561948735.0,11876710,10000000 +1561949335.0,11813015,10000000 +1561949935.0,11855408,10000000 +1561950535.0,11791281,10000000 +1561951135.0,11874352,10000000 +1561951735.0,11823369,10000000 +1561952335.0,11870186,10000000 +1561952935.0,11848005,10000000 +1561953535.0,11942874,10000000 +1561954135.0,11878444,10000000 +1561954735.0,11889394,10000000 +1561955335.0,11835137,10000000 +1561955935.0,11883977,10000000 +1561956535.0,11942617,10000000 +1561957135.0,12004862,10000000 +1561957735.0,11959893,10000000 +1561958335.0,11972798,10000000 +1561958935.0,11975100,10000000 +1561959535.0,12003050,10000000 +1561960135.0,12053372,10000000 +1561960735.0,12135471,10000000 +1561961335.0,12047622,10000000 +1561961935.0,12054760,10000000 +1561962535.0,12134144,10000000 +1561963135.0,12175530,10000000 +1561963735.0,12250173,10000000 +1561964335.0,12205083,10000000 +1561964935.0,12226979,10000000 +1561965535.0,12190680,10000000 +1561966135.0,12222883,10000000 +1561966735.0,12200147,10000000 +1561967335.0,12235876,10000000 +1561967935.0,12253847,10000000 +1561968535.0,12259609,10000000 +1561969135.0,12219517,10000000 +1561969735.0,12191508,10000000 +1561970335.0,12161505,10000000 +1561970935.0,12141569,10000000 +1561971535.0,12129429,10000000 +1561972135.0,12149713,10000000 +1561972735.0,12119832,10000000 +1561973335.0,12172243,10000000 +1561973935.0,12183866,10000000 +1561974535.0,12186547,10000000 +1561975135.0,12165614,10000000 +1561975735.0,12188413,10000000 +1561976335.0,12252540,10000000 +1561976935.0,12294725,10000000 +1561977535.0,12327360,10000000 +1561978135.0,12324101,10000000 +1561978735.0,12288358,10000000 +1561979335.0,12278880,10000000 +1561979935.0,12182976,10000000 +1561980535.0,12202047,10000000 +1561981135.0,12279137,10000000 +1561981735.0,12357004,10000000 +1561982335.0,12313179,10000000 +1561982935.0,12364845,10000000 +1561983535.0,12378540,10000000 +1561984135.0,12369534,10000000 +1561984735.0,12304466,10000000 +1561985335.0,12227246,10000000 +1561985935.0,12286320,10000000 +1561986535.0,12250522,10000000 +1561987135.0,12258340,10000000 +1561987735.0,12256106,10000000 +1561988335.0,12209160,10000000 +1561988935.0,12227326,10000000 +1561989535.0,12229585,10000000 +1561990135.0,12294207,10000000 +1561990735.0,12351542,10000000 +1561991335.0,12369711,10000000 +1561991935.0,12439593,10000000 +1561992535.0,12462691,10000000 +1561993135.0,12535759,10000000 +1561993735.0,12463697,10000000 +1561994335.0,12434228,10000000 +1561994935.0,12389555,10000000 +1561995535.0,12403045,10000000 +1561996135.0,12369457,10000000 +1561996735.0,12435046,10000000 +1561997335.0,12460916,10000000 +1561997935.0,12501011,10000000 +1561998535.0,12559968,10000000 +1561999135.0,12526092,10000000 +1561999735.0,12500438,10000000 +1562000335.0,12618499,10000000 +1562000935.0,12733001,10000000 +1562001535.0,12643790,10000000 +1562002135.0,12567838,10000000 +1562002735.0,12544195,10000000 +1562003335.0,12634502,10000000 +1562003935.0,12561185,10000000 +1562004535.0,12508049,10000000 +1562005135.0,12434641,10000000 +1562005735.0,12445173,10000000 +1562006335.0,12479683,10000000 +1562006935.0,12495507,10000000 +1562007535.0,12470424,10000000 +1562008135.0,12498415,10000000 +1562008735.0,12546126,10000000 +1562009335.0,12516159,10000000 +1562009935.0,12460665,10000000 +1562010535.0,12464403,10000000 +1562011135.0,12417343,10000000 +1562011735.0,12503742,10000000 +1562012335.0,12493285,10000000 +1562012935.0,12594579,10000000 +1562013535.0,12520652,10000000 +1562014135.0,12485494,10000000 +1562014735.0,12452832,10000000 +1562015335.0,12450180,10000000 +1562015935.0,12437044,10000000 +1562016535.0,12431528,10000000 +1562017135.0,12467052,10000000 +1562017735.0,12478656,10000000 +1562018335.0,12516853,10000000 +1562018935.0,12500451,10000000 +1562019535.0,12447450,10000000 +1562020135.0,12410045,10000000 +1562020735.0,12396190,10000000 +1562021335.0,12415636,10000000 +1562021935.0,12373424,10000000 +1562022535.0,12298826,10000000 +1562023135.0,12303706,10000000 +1562023735.0,12303033,10000000 +1562024335.0,12290393,10000000 +1562024935.0,12347821,10000000 +1562025535.0,12354514,10000000 +1562026135.0,12332241,10000000 +1562026735.0,12365094,10000000 +1562027335.0,12369036,10000000 +1562027935.0,12396019,10000000 +1562028535.0,12417194,10000000 +1562029135.0,12423106,10000000 +1562029735.0,12475947,10000000 +1562030335.0,12501339,10000000 +1562030935.0,12472445,10000000 +1562031535.0,12509784,10000000 +1562032135.0,12479438,10000000 +1562032735.0,12430899,10000000 +1562033335.0,12369776,10000000 +1562033935.0,12364084,10000000 +1562034535.0,12340526,10000000 +1562035135.0,12284542,10000000 +1562035735.0,12341931,10000000 +1562036335.0,12415550,10000000 +1562036935.0,12482336,10000000 +1562037535.0,12453250,10000000 +1562038135.0,12376988,10000000 +1562038735.0,12477946,10000000 +1562039335.0,12530607,10000000 +1562039935.0,12585851,10000000 +1562040535.0,12555752,10000000 +1562041135.0,12576529,10000000 +1562041735.0,12427292,10000000 +1562042335.0,12436810,10000000 +1562042935.0,12441676,10000000 +1562043535.0,12371848,10000000 +1562044135.0,12360931,10000000 +1562044735.0,12449003,10000000 +1562045335.0,12403137,10000000 +1562045935.0,12511754,10000000 +1562046535.0,12544352,10000000 +1562047135.0,12500103,10000000 +1562047735.0,12501494,10000000 +1562048335.0,12582945,10000000 +1562048935.0,12623250,10000000 +1562049535.0,12654313,10000000 +1562050135.0,12683745,10000000 +1562050735.0,12704265,10000000 +1562051335.0,12578801,10000000 +1562051935.0,12591419,10000000 +1562052535.0,12581923,10000000 +1562053135.0,12537979,10000000 +1562053735.0,12630871,10000000 +1562054335.0,12639277,10000000 +1562054935.0,12605837,10000000 +1562055535.0,12512639,10000000 +1562056135.0,12504224,10000000 +1562056735.0,12406526,10000000 +1562057335.0,12362856,10000000 +1562057935.0,12309219,10000000 +1562058535.0,12327321,10000000 +1562059135.0,12336266,10000000 +1562059735.0,12349205,10000000 +1562060335.0,12322131,10000000 +1562060935.0,12257252,10000000 +1562061535.0,12266568,10000000 +1562062135.0,12295946,10000000 +1562062735.0,12355547,10000000 +1562063335.0,12500915,10000000 +1562063935.0,12491375,10000000 +1562064535.0,12502730,10000000 +1562065135.0,12491242,10000000 +1562065735.0,12521420,10000000 +1562066335.0,12534778,10000000 +1562066935.0,12584945,10000000 +1562067535.0,12489837,10000000 +1562068135.0,12446636,10000000 +1562068735.0,12396877,10000000 +1562069335.0,12334981,10000000 +1562069935.0,12272592,10000000 +1562070535.0,12245136,10000000 +1562071135.0,12195784,10000000 +1562071735.0,12208077,10000000 +1562072335.0,12243930,10000000 +1562072935.0,12280718,10000000 +1562073535.0,12362354,10000000 +1562074135.0,12381831,10000000 +1562074735.0,12428405,10000000 +1562075335.0,12424612,10000000 +1562075935.0,12405323,10000000 +1562076535.0,12454729,10000000 +1562077135.0,12527674,10000000 +1562077735.0,12480729,10000000 +1562078335.0,12445121,10000000 +1562078935.0,12466773,10000000 +1562079535.0,12455561,10000000 +1562080135.0,12524695,10000000 +1562080735.0,12519689,10000000 +1562081335.0,12513691,10000000 +1562081935.0,12434398,10000000 +1562082535.0,12517798,10000000 +1562083135.0,12446181,10000000 +1562083735.0,12449587,10000000 +1562084335.0,12449615,10000000 +1562084935.0,12313913,10000000 +1562085535.0,12253440,10000000 +1562086135.0,12289269,10000000 +1562086735.0,12269831,10000000 +1562087335.0,12243721,10000000 +1562087935.0,12249704,10000000 +1562088535.0,12203030,10000000 +1562089135.0,12281862,10000000 +1562089735.0,12172027,10000000 +1562090335.0,12101687,10000000 +1562090935.0,12151768,10000000 +1562091535.0,12140163,10000000 +1562092135.0,12145043,10000000 +1562092735.0,12129729,10000000 +1562093335.0,12167239,10000000 +1562093935.0,12091462,10000000 +1562094535.0,12120058,10000000 +1562095135.0,12163720,10000000 +1562095735.0,12233658,10000000 +1562096335.0,12163562,10000000 +1562096935.0,12168808,10000000 +1562097535.0,12233997,10000000 +1562098135.0,12208190,10000000 +1562098735.0,12181162,10000000 +1562099335.0,12174082,10000000 +1562099935.0,12171937,10000000 +1562100535.0,12122127,10000000 +1562101135.0,12151740,10000000 +1562101735.0,12144738,10000000 +1562102335.0,12152502,10000000 +1562102935.0,12162942,10000000 +1562103535.0,12190227,10000000 +1562104135.0,12138810,10000000 +1562104735.0,12128118,10000000 +1562105335.0,12005487,10000000 +1562105935.0,12079045,10000000 +1562106535.0,12071645,10000000 +1562107135.0,12130167,10000000 +1562107735.0,12138203,10000000 +1562108335.0,12124024,10000000 +1562108935.0,12174038,10000000 +1562109535.0,12290614,10000000 +1562110135.0,12290494,10000000 +1562110735.0,12218101,10000000 +1562111335.0,12242158,10000000 +1562111935.0,12302549,10000000 +1562112535.0,12345819,10000000 +1562113135.0,12405730,10000000 +1562113735.0,12457206,10000000 +1562114335.0,12407766,10000000 +1562114935.0,12408652,10000000 +1562115535.0,12427719,10000000 +1562116135.0,12490127,10000000 +1562116735.0,12392791,10000000 +1562117335.0,12452027,10000000 +1562117935.0,12461313,10000000 +1562118535.0,12527994,10000000 +1562119135.0,12463010,10000000 +1562119735.0,12377247,10000000 +1562120335.0,12320865,10000000 +1562120935.0,12280446,10000000 +1562121535.0,12287225,10000000 +1562122135.0,12398536,10000000 +1562122735.0,12492269,10000000 +1562123335.0,12519742,10000000 +1562123935.0,12519422,10000000 +1562124535.0,12485116,10000000 +1562125135.0,12449049,10000000 +1562125735.0,12482803,10000000 +1562126335.0,12463043,10000000 +1562126935.0,12468976,10000000 +1562127535.0,12424987,10000000 +1562128135.0,12441322,10000000 +1562128735.0,12475430,10000000 +1562129335.0,12493050,10000000 +1562129935.0,12521075,10000000 +1562130535.0,12497062,10000000 +1562131135.0,12473244,10000000 +1562131735.0,12505033,10000000 +1562132335.0,12446842,10000000 +1562132935.0,12465784,10000000 +1562133535.0,12458774,10000000 +1562134135.0,12382970,10000000 +1562134735.0,12351814,10000000 +1562135335.0,12336468,10000000 +1562135935.0,12270442,10000000 +1562136535.0,12248251,10000000 +1562137135.0,12236103,10000000 +1562137735.0,12289399,10000000 +1562138335.0,12250561,10000000 +1562138935.0,12247712,10000000 +1562139535.0,12196478,10000000 +1562140135.0,12190825,10000000 +1562140735.0,12201648,10000000 +1562141335.0,12227925,10000000 +1562141935.0,12294001,10000000 +1562142535.0,12268740,10000000 +1562143135.0,12271422,10000000 +1562143735.0,12232133,10000000 +1562144335.0,12195800,10000000 +1562144935.0,12202841,10000000 +1562145535.0,12279650,10000000 +1562146135.0,12270185,10000000 +1562146735.0,12251880,10000000 +1562147335.0,12300697,10000000 +1562147935.0,12350300,10000000 +1562148535.0,12316984,10000000 +1562149135.0,12292061,10000000 +1562149735.0,12218982,10000000 +1562150335.0,12195854,10000000 +1562150935.0,12153242,10000000 +1562151535.0,12155304,10000000 +1562152135.0,12056873,10000000 +1562152735.0,12012541,10000000 +1562153335.0,12011603,10000000 +1562153935.0,12031483,10000000 +1562154535.0,12057118,10000000 +1562155135.0,12055872,10000000 +1562155735.0,12003352,10000000 +1562156335.0,11987620,10000000 +1562156935.0,12012801,10000000 +1562157535.0,11992141,10000000 +1562158135.0,11963509,10000000 +1562158735.0,12008163,10000000 +1562159335.0,12053614,10000000 +1562159935.0,12059037,10000000 +1562160535.0,12065822,10000000 +1562161135.0,12069305,10000000 +1562161735.0,12084030,10000000 +1562162335.0,12044068,10000000 +1562162935.0,12043781,10000000 +1562163535.0,12040145,10000000 +1562164135.0,12036767,10000000 +1562164735.0,12039231,10000000 +1562165335.0,12016921,10000000 +1562165935.0,11982524,10000000 +1562166535.0,11975145,10000000 +1562167135.0,11912669,10000000 +1562167735.0,11925236,10000000 +1562168335.0,11901396,10000000 +1562168935.0,11927579,10000000 +1562169535.0,11988349,10000000 +1562170135.0,12039552,10000000 +1562170735.0,12129539,10000000 +1562171335.0,12095854,10000000 +1562171935.0,12090172,10000000 +1562172535.0,12172987,10000000 +1562173135.0,12216431,10000000 +1562173735.0,12259009,10000000 +1562174335.0,12125889,10000000 +1562174935.0,12088013,10000000 +1562175535.0,12114743,10000000 +1562176135.0,12136981,10000000 +1562176735.0,12240567,10000000 +1562177335.0,12268468,10000000 +1562177935.0,12251790,10000000 +1562178535.0,12263840,10000000 +1562179135.0,12174569,10000000 +1562179735.0,12215836,10000000 +1562180335.0,12254762,10000000 +1562180935.0,12254215,10000000 +1562181535.0,12148894,10000000 +1562182135.0,12069835,10000000 +1562182735.0,12042025,10000000 +1562183335.0,12061299,10000000 +1562183935.0,12128741,10000000 +1562184535.0,12141835,10000000 +1562185135.0,12193429,10000000 +1562185735.0,12172335,10000000 +1562186335.0,12199766,10000000 +1562186935.0,12202416,10000000 +1562187535.0,12279899,10000000 +1562188135.0,12216282,10000000 +1562188735.0,12255452,10000000 +1562189335.0,12234468,10000000 +1562189935.0,12293184,10000000 +1562190535.0,12305467,10000000 +1562191135.0,12353027,10000000 +1562191735.0,12346367,10000000 +1562192335.0,12346685,10000000 +1562192935.0,12314965,10000000 +1562193535.0,12403197,10000000 +1562194135.0,12504534,10000000 +1562194735.0,12440904,10000000 +1562195335.0,12482404,10000000 +1562195935.0,12447025,10000000 +1562196535.0,12499084,10000000 +1562197135.0,12503663,10000000 +1562197735.0,12461005,10000000 +1562198335.0,12487094,10000000 +1562198935.0,12540576,10000000 +1562199535.0,12583839,10000000 +1562200135.0,12599796,10000000 +1562200735.0,12603357,10000000 +1562201335.0,12615546,10000000 +1562201935.0,12523738,10000000 +1562202535.0,12402129,10000000 +1562203135.0,12400501,10000000 +1562203735.0,12430853,10000000 +1562204335.0,12504936,10000000 +1562204935.0,12583887,10000000 +1562205535.0,12555644,10000000 +1562206135.0,12608139,10000000 +1562206735.0,12538270,10000000 +1562207335.0,12537497,10000000 +1562207935.0,12501550,10000000 +1562208535.0,12461616,10000000 +1562209135.0,12381931,10000000 +1562209735.0,12410635,10000000 +1562210335.0,12442377,10000000 +1562210935.0,12357266,10000000 +1562211535.0,12239110,10000000 +1562212135.0,12227900,10000000 +1562212735.0,12302160,10000000 +1562213335.0,12288325,10000000 +1562213935.0,12309782,10000000 +1562214535.0,12270581,10000000 +1562215135.0,12233972,10000000 +1562215735.0,12224095,10000000 +1562216335.0,12244657,10000000 +1562216935.0,12205476,10000000 +1562217535.0,12225728,10000000 +1562218135.0,12152104,10000000 +1562218735.0,12140732,10000000 +1562219335.0,12044380,10000000 +1562219935.0,12003799,10000000 +1562220535.0,11910518,10000000 +1562221135.0,11891592,10000000 +1562221735.0,11952479,10000000 +1562222335.0,11967170,10000000 +1562222935.0,12120952,10000000 +1562223535.0,12108838,10000000 +1562224135.0,12081808,10000000 +1562224735.0,12099386,10000000 +1562225335.0,12184511,10000000 +1562225935.0,12118133,10000000 +1562226535.0,12136500,10000000 +1562227135.0,12133603,10000000 +1562227735.0,12089107,10000000 +1562228335.0,12020849,10000000 +1562228935.0,11931512,10000000 +1562229535.0,12011843,10000000 +1562230135.0,12068946,10000000 +1562230735.0,12138217,10000000 +1562231335.0,12118871,10000000 +1562231935.0,12146401,10000000 +1562232535.0,12136451,10000000 +1562233135.0,12152996,10000000 +1562233735.0,12137707,10000000 +1562234335.0,12159248,10000000 +1562234935.0,12210547,10000000 +1562235535.0,12233664,10000000 +1562236135.0,12258800,10000000 +1562236735.0,12300240,10000000 +1562237335.0,12372854,10000000 +1562237935.0,12423580,10000000 +1562238535.0,12406450,10000000 +1562239135.0,12325036,10000000 +1562239735.0,12358057,10000000 +1562240335.0,12409030,10000000 +1562240935.0,12421473,10000000 +1562241535.0,12364762,10000000 +1562242135.0,12400337,10000000 +1562242735.0,12420103,10000000 +1562243335.0,12453941,10000000 +1562243935.0,12534161,10000000 +1562244535.0,12609470,10000000 +1562245135.0,12716747,10000000 +1562245735.0,12777612,10000000 +1562246335.0,12777311,10000000 +1562246935.0,12799200,10000000 +1562247535.0,12905794,10000000 +1562248135.0,12880788,10000000 +1562248735.0,12868275,10000000 +1562249335.0,12862853,10000000 +1562249935.0,12756776,10000000 +1562250535.0,12832610,10000000 +1562251135.0,12815434,10000000 +1562251735.0,12768821,10000000 +1562252335.0,12727452,10000000 +1562252935.0,12653417,10000000 +1562253535.0,12739541,10000000 +1562254135.0,12693846,10000000 +1562254735.0,12710842,10000000 +1562255335.0,12684912,10000000 +1562255935.0,12645864,10000000 +1562256535.0,12698642,10000000 +1562257135.0,12750113,10000000 +1562257735.0,12702749,10000000 +1562258335.0,12767619,10000000 +1562258935.0,12729205,10000000 +1562259535.0,12745267,10000000 +1562260135.0,12781975,10000000 +1562260735.0,12782199,10000000 +1562261335.0,12679316,10000000 +1562261935.0,12664505,10000000 +1562262535.0,12707432,10000000 +1562263135.0,12687406,10000000 +1562263735.0,12687080,10000000 +1562264335.0,12693839,10000000 +1562264935.0,12685956,10000000 +1562265535.0,12659434,10000000 +1562266135.0,12729725,10000000 +1562266735.0,12726707,10000000 +1562267335.0,12735916,10000000 +1562267935.0,12721543,10000000 +1562268535.0,12686302,10000000 +1562269135.0,12612226,10000000 +1562269735.0,12580067,10000000 +1562270335.0,12506886,10000000 +1562270935.0,12483081,10000000 +1562271535.0,12477422,10000000 +1562272135.0,12543282,10000000 +1562272735.0,12480696,10000000 +1562273335.0,12441035,10000000 +1562273935.0,12449649,10000000 +1562274535.0,12428358,10000000 +1562275135.0,12468644,10000000 +1562275735.0,12495123,10000000 +1562276335.0,12580032,10000000 +1562276935.0,12684252,10000000 +1562277535.0,12688659,10000000 +1562278135.0,12754251,10000000 +1562278735.0,12820337,10000000 +1562279335.0,12766800,10000000 +1562279935.0,12774778,10000000 +1562280535.0,12876055,10000000 +1562281135.0,12746596,10000000 +1562281735.0,12726277,10000000 +1562282335.0,12707547,10000000 +1562282935.0,12725180,10000000 +1562283535.0,12684264,10000000 +1562284135.0,12648249,10000000 +1562284735.0,12673631,10000000 +1562285335.0,12637292,10000000 +1562285935.0,12628321,10000000 +1562286535.0,12672883,10000000 +1562287135.0,12789520,10000000 +1562287735.0,12818068,10000000 +1562288335.0,12825620,10000000 +1562288935.0,12796060,10000000 +1562289535.0,12895704,10000000 +1562290135.0,12893614,10000000 +1562290735.0,12920285,10000000 +1562291335.0,12856500,10000000 +1562291935.0,12901701,10000000 +1562292535.0,13020431,10000000 +1562293135.0,13035929,10000000 +1562293735.0,12956758,10000000 +1562294335.0,12973285,10000000 +1562294935.0,13007319,10000000 +1562295535.0,12929181,10000000 +1562296135.0,13044010,10000000 +1562296735.0,13132751,10000000 +1562297335.0,13117082,10000000 +1562297935.0,13141560,10000000 +1562298535.0,13105698,10000000 +1562299135.0,13045910,10000000 +1562299735.0,12971187,10000000 +1562300335.0,12920646,10000000 +1562300935.0,12916906,10000000 +1562301535.0,12916913,10000000 +1562302135.0,13016090,10000000 +1562302735.0,13018828,10000000 +1562303335.0,13023943,10000000 +1562303935.0,13017638,10000000 +1562304535.0,12944464,10000000 +1562305135.0,12941960,10000000 +1562305735.0,12952756,10000000 +1562306335.0,12828251,10000000 +1562306935.0,12765604,10000000 +1562307535.0,12842238,10000000 +1562308135.0,12901356,10000000 +1562308735.0,12889247,10000000 +1562309335.0,12907347,10000000 +1562309935.0,12856230,10000000 +1562310535.0,12859018,10000000 +1562311135.0,12848726,10000000 +1562311735.0,12774312,10000000 +1562312335.0,12785029,10000000 +1562312935.0,12831647,10000000 +1562313535.0,12748600,10000000 +1562314135.0,12802218,10000000 +1562314735.0,12879892,10000000 +1562315335.0,12852491,10000000 +1562315935.0,12784349,10000000 +1562316535.0,12851873,10000000 +1562317135.0,12781024,10000000 +1562317735.0,12710432,10000000 +1562318335.0,12767147,10000000 +1562318935.0,12787206,10000000 +1562319535.0,12768342,10000000 +1562320135.0,12761179,10000000 +1562320735.0,12795226,10000000 +1562321335.0,12752905,10000000 +1562321935.0,12794760,10000000 +1562322535.0,12783477,10000000 +1562323135.0,12773567,10000000 +1562323735.0,12758359,10000000 +1562324335.0,12720118,10000000 +1562324935.0,12750574,10000000 +1562325535.0,12675278,10000000 +1562326135.0,12740551,10000000 +1562326735.0,12609731,10000000 +1562327335.0,12638553,10000000 +1562327935.0,12665859,10000000 +1562328535.0,12688741,10000000 +1562329135.0,12724626,10000000 +1562329735.0,12841790,10000000 +1562330335.0,12856751,10000000 +1562330935.0,12923997,10000000 +1562331535.0,12953742,10000000 +1562332135.0,13019656,10000000 +1562332735.0,12991315,10000000 +1562333335.0,13016242,10000000 +1562333935.0,12998196,10000000 +1562334535.0,12990251,10000000 +1562335135.0,13004630,10000000 +1562335735.0,13063918,10000000 +1562336335.0,13133280,10000000 +1562336935.0,13128391,10000000 +1562337535.0,13248635,10000000 +1562338135.0,13304295,10000000 +1562338735.0,13309387,10000000 +1562339335.0,13290758,10000000 +1562339935.0,13262901,10000000 +1562340535.0,13331755,10000000 +1562341135.0,13355578,10000000 +1562341735.0,13323564,10000000 +1562342335.0,13386049,10000000 +1562342935.0,13327640,10000000 +1562343535.0,13381360,10000000 +1562344135.0,13422701,10000000 +1562344735.0,13462329,10000000 +1562345335.0,13473149,10000000 +1562345935.0,13410503,10000000 +1562346535.0,13430908,10000000 +1562347135.0,13415182,10000000 +1562347735.0,13370048,10000000 +1562348335.0,13364712,10000000 +1562348935.0,13313351,10000000 +1562349535.0,13295139,10000000 +1562350135.0,13214837,10000000 +1562350735.0,13184432,10000000 +1562351335.0,13190970,10000000 +1562351935.0,13177524,10000000 +1562352535.0,13218183,10000000 +1562353135.0,13115291,10000000 +1562353735.0,13073142,10000000 +1562354335.0,13030065,10000000 +1562354935.0,13047302,10000000 +1562355535.0,12989842,10000000 +1562356135.0,12965941,10000000 +1562356735.0,12931519,10000000 +1562357335.0,13075085,10000000 +1562357935.0,12998304,10000000 +1562358535.0,13033686,10000000 +1562359135.0,12987205,10000000 +1562359735.0,12922730,10000000 +1562360335.0,12890575,10000000 +1562360935.0,12927471,10000000 +1562361535.0,12841161,10000000 +1562362135.0,12723935,10000000 +1562362735.0,12688515,10000000 +1562363335.0,12792892,10000000 +1562363935.0,12864715,10000000 +1562364535.0,12861066,10000000 +1562365135.0,12855909,10000000 +1562365735.0,12816151,10000000 +1562366335.0,12787601,10000000 +1562366935.0,12808690,10000000 +1562367535.0,12839019,10000000 +1562368135.0,12902494,10000000 +1562368735.0,12889252,10000000 +1562369335.0,12936188,10000000 +1562369935.0,12848551,10000000 +1562370535.0,12658399,10000000 +1562371135.0,12597770,10000000 +1562371735.0,12567513,10000000 +1562372335.0,12524321,10000000 +1562372935.0,12474281,10000000 +1562373535.0,12399990,10000000 +1562374135.0,12364855,10000000 +1562374735.0,12375777,10000000 +1562375335.0,12379767,10000000 +1562375935.0,12331550,10000000 +1562376535.0,12302665,10000000 +1562377135.0,12348802,10000000 +1562377735.0,12348703,10000000 +1562378335.0,12527045,10000000 +1562378935.0,12519862,10000000 +1562379535.0,12465033,10000000 +1562380135.0,12526229,10000000 +1562380735.0,12562024,10000000 +1562381335.0,12577861,10000000 +1562381935.0,12604257,10000000 +1562382535.0,12656323,10000000 +1562383135.0,12653793,10000000 +1562383735.0,12643627,10000000 +1562384335.0,12595705,10000000 +1562384935.0,12633346,10000000 +1562385535.0,12639342,10000000 +1562386135.0,12656858,10000000 +1562386735.0,12694696,10000000 +1562387335.0,12782949,10000000 +1562387935.0,12697537,10000000 +1562388535.0,12716500,10000000 +1562389135.0,12653191,10000000 +1562389735.0,12650457,10000000 +1562390335.0,12670396,10000000 +1562390935.0,12615074,10000000 +1562391535.0,12655038,10000000 +1562392135.0,12657161,10000000 +1562392735.0,12653866,10000000 +1562393335.0,12631723,10000000 +1562393935.0,12696020,10000000 +1562394535.0,12663121,10000000 +1562395135.0,12678704,10000000 +1562395735.0,12662112,10000000 +1562396335.0,12599261,10000000 +1562396935.0,12621091,10000000 +1562397535.0,12572985,10000000 +1562398135.0,12649411,10000000 +1562398735.0,12550560,10000000 +1562399335.0,12607530,10000000 +1562399935.0,12568313,10000000 +1562400535.0,12531943,10000000 +1562401135.0,12546380,10000000 +1562401735.0,12548423,10000000 +1562402335.0,12566031,10000000 +1562402935.0,12612612,10000000 +1562403535.0,12499285,10000000 +1562404135.0,12484107,10000000 +1562404735.0,12446094,10000000 +1562405335.0,12510703,10000000 +1562405935.0,12369402,10000000 +1562406535.0,12299974,10000000 +1562407135.0,12365383,10000000 +1562407735.0,12448509,10000000 +1562408335.0,12467459,10000000 +1562408935.0,12490262,10000000 +1562409535.0,12487994,10000000 +1562410135.0,12414647,10000000 +1562410735.0,12359198,10000000 +1562411335.0,12335490,10000000 +1562411935.0,12180692,10000000 +1562412535.0,12191793,10000000 +1562413135.0,12170396,10000000 +1562413735.0,12214960,10000000 +1562414335.0,12199600,10000000 +1562414935.0,12186167,10000000 +1562415535.0,12182459,10000000 +1562416135.0,12056926,10000000 +1562416735.0,12031537,10000000 +1562417335.0,11958453,10000000 +1562417935.0,12065653,10000000 +1562418535.0,12103178,10000000 +1562419135.0,12085461,10000000 +1562419735.0,12099996,10000000 +1562420335.0,12173111,10000000 +1562420935.0,12085721,10000000 +1562421535.0,12033233,10000000 +1562422135.0,12007218,10000000 +1562422735.0,12063141,10000000 +1562423335.0,12019956,10000000 +1562423935.0,12015577,10000000 +1562424535.0,11958717,10000000 +1562425135.0,12004508,10000000 +1562425735.0,12046979,10000000 +1562426335.0,12015722,10000000 +1562426935.0,12091944,10000000 +1562427535.0,12034142,10000000 +1562428135.0,11937493,10000000 +1562428735.0,11861074,10000000 +1562429335.0,11794194,10000000 +1562429935.0,11745416,10000000 +1562430535.0,11790365,10000000 +1562431135.0,11787796,10000000 +1562431735.0,11818577,10000000 +1562432335.0,11774603,10000000 +1562432935.0,11785528,10000000 +1562433535.0,11835150,10000000 +1562434135.0,11777471,10000000 +1562434735.0,11799241,10000000 +1562435335.0,11664461,10000000 +1562435935.0,11758043,10000000 +1562436535.0,11742540,10000000 +1562437135.0,11772697,10000000 +1562437735.0,11755064,10000000 +1562438335.0,11727722,10000000 +1562438935.0,11817852,10000000 +1562439535.0,11815325,10000000 +1562440135.0,11802987,10000000 +1562440735.0,11783274,10000000 +1562441335.0,11788418,10000000 +1562441935.0,11784482,10000000 +1562442535.0,11739820,10000000 +1562443135.0,11860387,10000000 +1562443735.0,11856479,10000000 +1562444335.0,11877749,10000000 +1562444935.0,11925887,10000000 +1562445535.0,11868848,10000000 +1562446135.0,11884095,10000000 +1562446735.0,11897735,10000000 +1562447335.0,11902981,10000000 +1562447935.0,11904871,10000000 +1562448535.0,12030490,10000000 +1562449135.0,12010402,10000000 +1562449735.0,12120048,10000000 +1562450335.0,12228809,10000000 +1562450935.0,12172137,10000000 +1562451535.0,12278395,10000000 +1562452135.0,12269713,10000000 +1562452735.0,12318731,10000000 +1562453335.0,12292709,10000000 +1562453935.0,12309236,10000000 +1562454535.0,12326804,10000000 +1562455135.0,12261685,10000000 +1562455735.0,12288081,10000000 +1562456335.0,12349678,10000000 +1562456935.0,12317860,10000000 +1562457535.0,12330680,10000000 +1562458135.0,12330067,10000000 +1562458735.0,12224150,10000000 +1562459335.0,12274137,10000000 +1562459935.0,12254052,10000000 +1562460535.0,12283790,10000000 +1562461135.0,12205301,10000000 +1562461735.0,12198195,10000000 +1562462335.0,12198899,10000000 +1562462935.0,12127844,10000000 +1562463535.0,12145224,10000000 +1562464135.0,12140690,10000000 +1562464735.0,12133034,10000000 +1562465335.0,12076580,10000000 +1562465935.0,12095978,10000000 +1562466535.0,12164379,10000000 +1562467135.0,12156312,10000000 +1562467735.0,12152955,10000000 +1562468335.0,12130715,10000000 +1562468935.0,12106871,10000000 +1562469535.0,12051536,10000000 +1562470135.0,12086233,10000000 +1562470735.0,12202872,10000000 +1562471335.0,12248530,10000000 +1562471935.0,12272252,10000000 +1562472535.0,12226191,10000000 +1562473135.0,12270065,10000000 +1562473735.0,12256213,10000000 +1562474335.0,12311166,10000000 +1562474935.0,12316951,10000000 +1562475535.0,12323477,10000000 +1562476135.0,12308280,10000000 +1562476735.0,12318737,10000000 +1562477335.0,12278265,10000000 +1562477935.0,12254044,10000000 +1562478535.0,12204629,10000000 +1562479135.0,12192836,10000000 +1562479735.0,12156667,10000000 +1562480335.0,12071580,10000000 +1562480935.0,12043612,10000000 +1562481535.0,12113875,10000000 +1562482135.0,12105642,10000000 +1562482735.0,12082857,10000000 +1562483335.0,12025087,10000000 +1562483935.0,11993317,10000000 +1562484535.0,11955950,10000000 +1562485135.0,12000110,10000000 +1562485735.0,11953674,10000000 +1562486335.0,11917393,10000000 +1562486935.0,11978221,10000000 +1562487535.0,12037473,10000000 +1562488135.0,12027260,10000000 +1562488735.0,11986904,10000000 +1562489335.0,12042391,10000000 +1562489935.0,12039650,10000000 +1562490535.0,11938696,10000000 +1562491135.0,11908259,10000000 +1562491735.0,11926516,10000000 +1562492335.0,11943236,10000000 +1562492935.0,11913787,10000000 +1562493535.0,11841466,10000000 +1562494135.0,11780166,10000000 +1562494735.0,11840838,10000000 +1562495335.0,11811091,10000000 +1562495935.0,11715889,10000000 +1562496535.0,11683772,10000000 +1562497135.0,11762906,10000000 +1562497735.0,11705094,10000000 +1562498335.0,11748771,10000000 +1562498935.0,11759827,10000000 +1562499535.0,11772951,10000000 +1562500135.0,11723390,10000000 +1562500735.0,11750819,10000000 +1562501335.0,11692170,10000000 +1562501935.0,11690046,10000000 +1562502535.0,11701040,10000000 +1562503135.0,11710034,10000000 +1562503735.0,11704700,10000000 +1562504335.0,11753074,10000000 +1562504935.0,11806261,10000000 +1562505535.0,11714929,10000000 +1562506135.0,11705337,10000000 +1562506735.0,11718799,10000000 +1562507335.0,11758099,10000000 +1562507935.0,11781825,10000000 +1562508535.0,11778246,10000000 +1562509135.0,11775114,10000000 +1562509735.0,11745704,10000000 +1562510335.0,11719075,10000000 +1562510935.0,11765964,10000000 +1562511535.0,11766698,10000000 +1562512135.0,11772746,10000000 +1562512735.0,11717877,10000000 +1562513335.0,11737456,10000000 +1562513935.0,11789508,10000000 +1562514535.0,11901026,10000000 +1562515135.0,11959442,10000000 +1562515735.0,12020858,10000000 +1562516335.0,12096645,10000000 +1562516935.0,12052735,10000000 +1562517535.0,12004886,10000000 +1562518135.0,12078162,10000000 +1562518735.0,12110206,10000000 +1562519335.0,12128179,10000000 +1562519935.0,12161710,10000000 +1562520535.0,12155414,10000000 +1562521135.0,12194694,10000000 +1562521735.0,12208478,10000000 +1562522335.0,12197515,10000000 +1562522935.0,12173387,10000000 +1562523535.0,12211502,10000000 +1562524135.0,12177834,10000000 +1562524735.0,12196085,10000000 +1562525335.0,12213039,10000000 +1562525935.0,12279110,10000000 +1562526535.0,12281627,10000000 +1562527135.0,12312933,10000000 +1562527735.0,12338248,10000000 +1562528335.0,12346611,10000000 +1562528935.0,12347298,10000000 +1562529535.0,12302146,10000000 +1562530135.0,12257229,10000000 +1562530735.0,12170007,10000000 +1562531335.0,12184167,10000000 +1562531935.0,12229539,10000000 +1562532535.0,12216430,10000000 +1562533135.0,12190539,10000000 +1562533735.0,12145862,10000000 +1562534335.0,12112599,10000000 +1562534935.0,12146435,10000000 +1562535535.0,12138769,10000000 +1562536135.0,12104145,10000000 +1562536735.0,12017329,10000000 +1562537335.0,12034480,10000000 +1562537935.0,12003705,10000000 +1562538535.0,11971968,10000000 +1562539135.0,11997238,10000000 +1562539735.0,12061709,10000000 +1562540335.0,12127952,10000000 +1562540935.0,12134982,10000000 +1562541535.0,12162786,10000000 +1562542135.0,12121084,10000000 +1562542735.0,12145931,10000000 +1562543335.0,12046357,10000000 +1562543935.0,11909496,10000000 +1562544535.0,11886153,10000000 +1562545135.0,11962906,10000000 +1562545735.0,12011428,10000000 +1562546335.0,11945465,10000000 +1562546935.0,11881467,10000000 +1562547535.0,11879200,10000000 +1562548135.0,11927297,10000000 +1562548735.0,11931759,10000000 +1562549335.0,11990290,10000000 +1562549935.0,11860781,10000000 +1562550535.0,11818662,10000000 +1562551135.0,11821559,10000000 +1562551735.0,11851139,10000000 +1562552335.0,11862651,10000000 +1562552935.0,11903977,10000000 +1562553535.0,11919854,10000000 +1562554135.0,11959494,10000000 +1562554735.0,12033564,10000000 +1562555335.0,12089394,10000000 +1562555935.0,12015041,10000000 +1562556535.0,11970220,10000000 +1562557135.0,12001705,10000000 +1562557735.0,12064586,10000000 +1562558335.0,12058424,10000000 +1562558935.0,12051874,10000000 +1562559535.0,12068363,10000000 +1562560135.0,12112771,10000000 +1562560735.0,12141515,10000000 +1562561335.0,12133590,10000000 +1562561935.0,12126170,10000000 +1562562535.0,12130106,10000000 +1562563135.0,12115234,10000000 +1562563735.0,12124645,10000000 +1562564335.0,12132608,10000000 +1562564935.0,12207063,10000000 +1562565535.0,12226115,10000000 +1562566135.0,12206218,10000000 +1562566735.0,12223498,10000000 +1562567335.0,12264131,10000000 +1562567935.0,12208207,10000000 +1562568535.0,12094652,10000000 +1562569135.0,12050134,10000000 +1562569735.0,12124646,10000000 +1562570335.0,12181326,10000000 +1562570935.0,12183518,10000000 +1562571535.0,12201475,10000000 +1562572135.0,12239376,10000000 +1562572735.0,12095680,10000000 +1562573335.0,12172440,10000000 +1562573935.0,12138091,10000000 +1562574535.0,12136169,10000000 +1562575135.0,12057377,10000000 +1562575735.0,12114981,10000000 +1562576335.0,12105967,10000000 +1562576935.0,12125173,10000000 +1562577535.0,12170505,10000000 +1562578135.0,12237721,10000000 +1562578735.0,12242526,10000000 +1562579335.0,12329591,10000000 +1562579935.0,12238222,10000000 +1562580535.0,12218772,10000000 +1562581135.0,12144917,10000000 +1562581735.0,12103688,10000000 +1562582335.0,12141255,10000000 +1562582935.0,12060170,10000000 +1562583535.0,11979828,10000000 +1562584135.0,11961634,10000000 +1562584735.0,11937906,10000000 +1562585335.0,11981140,10000000 +1562585935.0,12045338,10000000 +1562586535.0,11997520,10000000 +1562587135.0,12025644,10000000 +1562587735.0,11998361,10000000 +1562588335.0,11985003,10000000 +1562588935.0,11980885,10000000 +1562589535.0,12023411,10000000 +1562590135.0,12051655,10000000 +1562590735.0,12025613,10000000 +1562591335.0,12013451,10000000 +1562591935.0,12029132,10000000 +1562592535.0,11935136,10000000 +1562593135.0,11918355,10000000 +1562593735.0,11925035,10000000 +1562594335.0,11945341,10000000 +1562594935.0,11960409,10000000 +1562595535.0,11988080,10000000 +1562596135.0,11892268,10000000 +1562596735.0,11849823,10000000 +1562597335.0,11984104,10000000 +1562597935.0,11996705,10000000 +1562598535.0,11941479,10000000 +1562599135.0,12024287,10000000 +1562599735.0,11982206,10000000 +1562600335.0,12011031,10000000 +1562600935.0,11998800,10000000 +1562601535.0,11962099,10000000 +1562602135.0,11896324,10000000 +1562602735.0,11883040,10000000 +1562603335.0,11867654,10000000 +1562603935.0,11841260,10000000 +1562604535.0,11773425,10000000 +1562605135.0,11734123,10000000 +1562605735.0,11806630,10000000 +1562606335.0,11810490,10000000 +1562606935.0,11824367,10000000 +1562607535.0,11745420,10000000 +1562608135.0,11838379,10000000 +1562608735.0,11857430,10000000 +1562609335.0,11864413,10000000 +1562609935.0,11894564,10000000 +1562610535.0,11901284,10000000 +1562611135.0,11885592,10000000 +1562611735.0,11821155,10000000 +1562612335.0,11791222,10000000 +1562612935.0,11735637,10000000 +1562613535.0,11799859,10000000 +1562614135.0,11769746,10000000 +1562614735.0,11701669,10000000 +1562615335.0,11733527,10000000 +1562615935.0,11774496,10000000 +1562616535.0,11777814,10000000 +1562617135.0,11766963,10000000 +1562617735.0,11778315,10000000 +1562618335.0,11764337,10000000 +1562618935.0,11779185,10000000 +1562619535.0,11696907,10000000 +1562620135.0,11709556,10000000 +1562620735.0,11692196,10000000 +1562621335.0,11671983,10000000 +1562621935.0,11647605,10000000 +1562622535.0,11610374,10000000 +1562623135.0,11579395,10000000 +1562623735.0,11475749,10000000 +1562624335.0,11530616,10000000 +1562624935.0,11565239,10000000 +1562625535.0,11636275,10000000 +1562626135.0,11591104,10000000 +1562626735.0,11459323,10000000 +1562627335.0,11471861,10000000 +1562627935.0,11445277,10000000 +1562628535.0,11493166,10000000 +1562629135.0,11576865,10000000 +1562629735.0,11620328,10000000 +1562630335.0,11600987,10000000 +1562630935.0,11594027,10000000 +1562631535.0,11582091,10000000 +1562632135.0,11582590,10000000 +1562632735.0,11536419,10000000 +1562633335.0,11423798,10000000 +1562633935.0,11378542,10000000 +1562634535.0,11352209,10000000 +1562635135.0,11332793,10000000 +1562635735.0,11318599,10000000 +1562636335.0,11272183,10000000 +1562636935.0,11197853,10000000 +1562637535.0,11185316,10000000 +1562638135.0,11166794,10000000 +1562638735.0,11209613,10000000 +1562639335.0,11200940,10000000 +1562639935.0,11275150,10000000 +1562640535.0,11333726,10000000 +1562641135.0,11290245,10000000 +1562641735.0,11293987,10000000 +1562642335.0,11396893,10000000 +1562642935.0,11369676,10000000 +1562643535.0,11382487,10000000 +1562644135.0,11493030,10000000 +1562644735.0,11497975,10000000 +1562645335.0,11540520,10000000 +1562645935.0,11565765,10000000 +1562646535.0,11721301,10000000 +1562647135.0,11715001,10000000 +1562647735.0,11757241,10000000 +1562648335.0,11713954,10000000 +1562648935.0,11778931,10000000 +1562649535.0,11741133,10000000 +1562650135.0,11733926,10000000 +1562650735.0,11746353,10000000 +1562651335.0,11683024,10000000 +1562651935.0,11709680,10000000 +1562652535.0,11761268,10000000 +1562653135.0,11702456,10000000 +1562653735.0,11675936,10000000 +1562654335.0,11688787,10000000 +1562654935.0,11647169,10000000 +1562655535.0,11682080,10000000 +1562656135.0,11629301,10000000 +1562656735.0,11671673,10000000 +1562657335.0,11669859,10000000 +1562657935.0,11705849,10000000 +1562658535.0,11713059,10000000 +1562659135.0,11704087,10000000 +1562659735.0,11580646,10000000 +1562660335.0,11701181,10000000 +1562660935.0,11728078,10000000 +1562661535.0,11717585,10000000 +1562662135.0,11681174,10000000 +1562662735.0,11684237,10000000 +1562663335.0,11748717,10000000 +1562663935.0,11772687,10000000 +1562664535.0,11776557,10000000 +1562665135.0,11751803,10000000 +1562665735.0,11721976,10000000 +1562666335.0,11716191,10000000 +1562666935.0,11783643,10000000 +1562667535.0,11768899,10000000 +1562668135.0,11882636,10000000 +1562668735.0,11866638,10000000 +1562669335.0,11969355,10000000 +1562669935.0,11903018,10000000 +1562670535.0,11865126,10000000 +1562671135.0,11852643,10000000 +1562671735.0,11752690,10000000 +1562672335.0,11766604,10000000 +1562672935.0,11671489,10000000 +1562673535.0,11541532,10000000 +1562674135.0,11476788,10000000 +1562674735.0,11460673,10000000 +1562675335.0,11352459,10000000 +1562675935.0,11377635,10000000 +1562676535.0,11383382,10000000 +1562677135.0,11333378,10000000 +1562677735.0,11278797,10000000 +1562678335.0,11274084,10000000 +1562678935.0,11331048,10000000 +1562679535.0,11260352,10000000 +1562680135.0,11299252,10000000 +1562680735.0,11355473,10000000 +1562681335.0,11255800,10000000 +1562681935.0,11190628,10000000 +1562682535.0,11220151,10000000 +1562683135.0,11205272,10000000 +1562683735.0,11232247,10000000 +1562684335.0,11168924,10000000 +1562684935.0,11168724,10000000 +1562685535.0,11267271,10000000 +1562686135.0,11300395,10000000 +1562686735.0,11318448,10000000 +1562687335.0,11220095,10000000 +1562687935.0,11222987,10000000 +1562688535.0,11178487,10000000 +1562689135.0,11176591,10000000 +1562689735.0,11178005,10000000 +1562690335.0,11169219,10000000 +1562690935.0,11192813,10000000 +1562691535.0,11076816,10000000 +1562692135.0,11066079,10000000 +1562692735.0,11094186,10000000 +1562693335.0,11024719,10000000 +1562693935.0,10972806,10000000 +1562694535.0,10899997,10000000 +1562695135.0,10904285,10000000 +1562695735.0,10912041,10000000 +1562696335.0,10851378,10000000 +1562696935.0,10869947,10000000 +1562697535.0,10883965,10000000 +1562698135.0,10946539,10000000 +1562698735.0,10965698,10000000 +1562699335.0,10924794,10000000 +1562699935.0,10898496,10000000 +1562700535.0,10914576,10000000 +1562701135.0,10878835,10000000 +1562701735.0,10839995,10000000 +1562702335.0,10835942,10000000 +1562702935.0,10791389,10000000 +1562703535.0,10839196,10000000 +1562704135.0,10836621,10000000 +1562704735.0,10915121,10000000 +1562705335.0,10933984,10000000 +1562705935.0,10940907,10000000 +1562706535.0,10933743,10000000 +1562707135.0,10934460,10000000 +1562707735.0,10972285,10000000 +1562708335.0,10987106,10000000 +1562708935.0,10986421,10000000 +1562709535.0,11057591,10000000 +1562710135.0,11063637,10000000 +1562710735.0,11052685,10000000 +1562711335.0,11021561,10000000 +1562711935.0,11044148,10000000 +1562712535.0,11070314,10000000 +1562713135.0,11060698,10000000 +1562713735.0,11063814,10000000 +1562714335.0,11023261,10000000 +1562714935.0,10985883,10000000 +1562715535.0,10996319,10000000 +1562716135.0,11004334,10000000 +1562716735.0,11049376,10000000 +1562717335.0,10981830,10000000 +1562717935.0,11031559,10000000 +1562718535.0,11029811,10000000 +1562719135.0,11089940,10000000 +1562719735.0,11166236,10000000 +1562720335.0,11156277,10000000 +1562720935.0,11256228,10000000 +1562721535.0,11323497,10000000 +1562722135.0,11343947,10000000 +1562722735.0,11386066,10000000 +1562723335.0,11357191,10000000 +1562723935.0,11323176,10000000 +1562724535.0,11306329,10000000 +1562725135.0,11227055,10000000 +1562725735.0,11213565,10000000 +1562726335.0,11237580,10000000 +1562726935.0,11220987,10000000 +1562727535.0,11277189,10000000 +1562728135.0,11278329,10000000 +1562728735.0,11313806,10000000 +1562729335.0,11360058,10000000 +1562729935.0,11327283,10000000 +1562730535.0,11274284,10000000 +1562731135.0,11233807,10000000 +1562731735.0,11349656,10000000 +1562732335.0,11308398,10000000 +1562732935.0,11291034,10000000 +1562733535.0,11305401,10000000 +1562734135.0,11233442,10000000 +1562734735.0,11225448,10000000 +1562735335.0,11229319,10000000 +1562735935.0,11261952,10000000 +1562736535.0,11213656,10000000 +1562737135.0,11208881,10000000 +1562737735.0,11242191,10000000 +1562738335.0,11333049,10000000 +1562738935.0,11360459,10000000 +1562739535.0,11376837,10000000 +1562740135.0,11425853,10000000 +1562740735.0,11488196,10000000 +1562741335.0,11380716,10000000 +1562741935.0,11416558,10000000 +1562742535.0,11432432,10000000 +1562743135.0,11441744,10000000 +1562743735.0,11427789,10000000 +1562744335.0,11391461,10000000 +1562744935.0,11423791,10000000 +1562745535.0,11443207,10000000 +1562746135.0,11400162,10000000 +1562746735.0,11447488,10000000 +1562747335.0,11450261,10000000 +1562747935.0,11354780,10000000 +1562748535.0,11394047,10000000 +1562749135.0,11472715,10000000 +1562749735.0,11388422,10000000 +1562750335.0,11394068,10000000 +1562750935.0,11371485,10000000 +1562751535.0,11493770,10000000 +1562752135.0,11489854,10000000 +1562752735.0,11423636,10000000 +1562753335.0,11415733,10000000 +1562753935.0,11422650,10000000 +1562754535.0,11345500,10000000 +1562755135.0,11346159,10000000 +1562755735.0,11303960,10000000 +1562756335.0,11307129,10000000 +1562756935.0,11283576,10000000 +1562757535.0,11358953,10000000 +1562758135.0,11371157,10000000 +1562758735.0,11338698,10000000 +1562759335.0,11368812,10000000 +1562759935.0,11365594,10000000 +1562760535.0,11414921,10000000 +1562761135.0,11331068,10000000 +1562761735.0,11417130,10000000 +1562762335.0,11382761,10000000 +1562762935.0,11342398,10000000 +1562763535.0,11325988,10000000 +1562764135.0,11335983,10000000 +1562764735.0,11279553,10000000 +1562765335.0,11244109,10000000 +1562765935.0,11236325,10000000 +1562766535.0,11284220,10000000 +1562767135.0,11263368,10000000 +1562767735.0,11305203,10000000 +1562768335.0,11322724,10000000 +1562768935.0,11317560,10000000 +1562769535.0,11283365,10000000 +1562770135.0,11279247,10000000 +1562770735.0,11282235,10000000 +1562771335.0,11340761,10000000 +1562771935.0,11326512,10000000 +1562772535.0,11310166,10000000 +1562773135.0,11347758,10000000 +1562773735.0,11289839,10000000 +1562774335.0,11320125,10000000 +1562774935.0,11309007,10000000 +1562775535.0,11333495,10000000 +1562776135.0,11359970,10000000 +1562776735.0,11384725,10000000 +1562777335.0,11413103,10000000 +1562777935.0,11388834,10000000 +1562778535.0,11416503,10000000 +1562779135.0,11438360,10000000 +1562779735.0,11471727,10000000 +1562780335.0,11491087,10000000 +1562780935.0,11557459,10000000 +1562781535.0,11534493,10000000 +1562782135.0,11489481,10000000 +1562782735.0,11548144,10000000 +1562783335.0,11617359,10000000 +1562783935.0,11622962,10000000 +1562784535.0,11567767,10000000 +1562785135.0,11555076,10000000 +1562785735.0,11568906,10000000 +1562786335.0,11507170,10000000 +1562786935.0,11449054,10000000 +1562787535.0,11426306,10000000 +1562788135.0,11421725,10000000 +1562788735.0,11436733,10000000 +1562789335.0,11479870,10000000 +1562789935.0,11464756,10000000 +1562790535.0,11459954,10000000 +1562791135.0,11494661,10000000 +1562791735.0,11519213,10000000 +1562792335.0,11527342,10000000 +1562792935.0,11413833,10000000 +1562793535.0,11498312,10000000 +1562794135.0,11427253,10000000 +1562794735.0,11373926,10000000 +1562795335.0,11454707,10000000 +1562795935.0,11403674,10000000 +1562796535.0,11391105,10000000 +1562797135.0,11420245,10000000 +1562797735.0,11438595,10000000 +1562798335.0,11407544,10000000 +1562798935.0,11473093,10000000 +1562799535.0,11445397,10000000 +1562800135.0,11456456,10000000 +1562800735.0,11462745,10000000 +1562801335.0,11413504,10000000 +1562801935.0,11439248,10000000 +1562802535.0,11531378,10000000 +1562803135.0,11598228,10000000 +1562803735.0,11573871,10000000 +1562804335.0,11603202,10000000 +1562804935.0,11582701,10000000 +1562805535.0,11659604,10000000 +1562806135.0,11720383,10000000 +1562806735.0,11639811,10000000 +1562807335.0,11538537,10000000 +1562807935.0,11558467,10000000 +1562808535.0,11536095,10000000 +1562809135.0,11525137,10000000 +1562809735.0,11520241,10000000 +1562810335.0,11515553,10000000 +1562810935.0,11551196,10000000 +1562811535.0,11668491,10000000 +1562812135.0,11632012,10000000 +1562812735.0,11647470,10000000 +1562813335.0,11624094,10000000 +1562813935.0,11591039,10000000 +1562814535.0,11615094,10000000 +1562815135.0,11531045,10000000 +1562815735.0,11600883,10000000 +1562816335.0,11608458,10000000 +1562816935.0,11629284,10000000 +1562817535.0,11599513,10000000 +1562818135.0,11539826,10000000 +1562818735.0,11597017,10000000 +1562819335.0,11606893,10000000 +1562819935.0,11631560,10000000 +1562820535.0,11687059,10000000 +1562821135.0,11690001,10000000 +1562821735.0,11692467,10000000 +1562822335.0,11689178,10000000 +1562822935.0,11606072,10000000 +1562823535.0,11643146,10000000 +1562824135.0,11688824,10000000 +1562824735.0,11658683,10000000 +1562825335.0,11629426,10000000 +1562825935.0,11622866,10000000 +1562826535.0,11625699,10000000 +1562827135.0,11537349,10000000 +1562827735.0,11527675,10000000 +1562828335.0,11544140,10000000 +1562828935.0,11524501,10000000 +1562829535.0,11459774,10000000 +1562830135.0,11442502,10000000 +1562830735.0,11449200,10000000 +1562831335.0,11387682,10000000 +1562831935.0,11264881,10000000 +1562832535.0,11288220,10000000 +1562833135.0,11283128,10000000 +1562833735.0,11282428,10000000 +1562834335.0,11269242,10000000 +1562834935.0,11275854,10000000 +1562835535.0,11263716,10000000 +1562836135.0,11383365,10000000 +1562836735.0,11388596,10000000 +1562837335.0,11416348,10000000 +1562837935.0,11390298,10000000 +1562838535.0,11350945,10000000 +1562839135.0,11291593,10000000 +1562839735.0,11330041,10000000 +1562840335.0,11324916,10000000 +1562840935.0,11262722,10000000 +1562841535.0,11272485,10000000 +1562842135.0,11292902,10000000 +1562842735.0,11280573,10000000 +1562843335.0,11361298,10000000 +1562843935.0,11398761,10000000 +1562844535.0,11419909,10000000 +1562845135.0,11334285,10000000 +1562845735.0,11346424,10000000 +1562846335.0,11352899,10000000 +1562846935.0,11319280,10000000 +1562847535.0,11283279,10000000 +1562848135.0,11277375,10000000 +1562848735.0,11350150,10000000 +1562849335.0,11372472,10000000 +1562849935.0,11303765,10000000 +1562850535.0,11262952,10000000 +1562851135.0,11296883,10000000 +1562851735.0,11268761,10000000 +1562852335.0,11306783,10000000 +1562852935.0,11329379,10000000 +1562853535.0,11281265,10000000 +1562854135.0,11199183,10000000 +1562854735.0,11213195,10000000 +1562855335.0,11160496,10000000 +1562855935.0,11155097,10000000 +1562856535.0,11218729,10000000 +1562857135.0,11217261,10000000 +1562857735.0,11151443,10000000 +1562858335.0,11194560,10000000 +1562858935.0,11134959,10000000 +1562859535.0,11158001,10000000 +1562860135.0,11173973,10000000 +1562860735.0,11167436,10000000 +1562861335.0,11100221,10000000 +1562861935.0,11103677,10000000 +1562862535.0,11105112,10000000 +1562863135.0,11091759,10000000 +1562863735.0,11210334,10000000 +1562864335.0,11199970,10000000 +1562864935.0,11163558,10000000 +1562865535.0,11147431,10000000 +1562866135.0,11120800,10000000 +1562866735.0,11093593,10000000 +1562867335.0,11068692,10000000 +1562867935.0,11015879,10000000 +1562868535.0,10971562,10000000 +1562869135.0,11002170,10000000 +1562869735.0,11029924,10000000 +1562870335.0,11070373,10000000 +1562870935.0,11094854,10000000 +1562871535.0,11096450,10000000 +1562872135.0,11099149,10000000 +1562872735.0,11085761,10000000 +1562873335.0,10987473,10000000 +1562873935.0,10971751,10000000 +1562874535.0,10931978,10000000 +1562875135.0,10964897,10000000 +1562875735.0,10991162,10000000 +1562876335.0,10970107,10000000 +1562876935.0,10987481,10000000 +1562877535.0,10991206,10000000 +1562878135.0,11057304,10000000 +1562878735.0,10992866,10000000 +1562879335.0,10935617,10000000 +1562879935.0,10901465,10000000 +1562880535.0,10920916,10000000 +1562881135.0,10966833,10000000 +1562881735.0,10927551,10000000 +1562882335.0,10883561,10000000 +1562882935.0,10885331,10000000 +1562883535.0,10887678,10000000 +1562884135.0,10866251,10000000 +1562884735.0,10875250,10000000 +1562885335.0,10849637,10000000 +1562885935.0,10813173,10000000 +1562886535.0,10869206,10000000 +1562887135.0,10847427,10000000 +1562887735.0,10868910,10000000 +1562888335.0,10881442,10000000 +1562888935.0,10833791,10000000 +1562889535.0,10853405,10000000 +1562890135.0,10873896,10000000 +1562890735.0,10887116,10000000 +1562891335.0,10856635,10000000 +1562891935.0,10920277,10000000 +1562892535.0,10928572,10000000 +1562893135.0,10998934,10000000 +1562893735.0,10976149,10000000 +1562894335.0,10900978,10000000 +1562894935.0,10884651,10000000 +1562895535.0,10929180,10000000 +1562896135.0,10944067,10000000 +1562896735.0,10999330,10000000 +1562897335.0,11031845,10000000 +1562897935.0,11001682,10000000 +1562898535.0,11038555,10000000 +1562899135.0,11025395,10000000 +1562899735.0,11035372,10000000 +1562900335.0,11118035,10000000 +1562900935.0,11163487,10000000 +1562901535.0,11195514,10000000 +1562902135.0,11145610,10000000 +1562902735.0,11144405,10000000 +1562903335.0,11121864,10000000 +1562903935.0,11022113,10000000 +1562904535.0,11074677,10000000 +1562905135.0,11030751,10000000 +1562905735.0,11144718,10000000 +1562906335.0,11039504,10000000 +1562906935.0,11058782,10000000 +1562907535.0,11047693,10000000 +1562908135.0,11042826,10000000 +1562908735.0,11064678,10000000 +1562909335.0,11043375,10000000 +1562909935.0,11061849,10000000 +1562910535.0,11052924,10000000 +1562911135.0,11048889,10000000 +1562911735.0,11073134,10000000 +1562912335.0,11142918,10000000 +1562912935.0,11216410,10000000 +1562913535.0,11191302,10000000 +1562914135.0,11202715,10000000 +1562914735.0,11234734,10000000 +1562915335.0,11261751,10000000 +1562915935.0,11285058,10000000 +1562916535.0,11239713,10000000 +1562917135.0,11225613,10000000 +1562917735.0,11206887,10000000 +1562918335.0,11214056,10000000 +1562918935.0,11238708,10000000 +1562919535.0,11184436,10000000 +1562920135.0,11241722,10000000 +1562920735.0,11258100,10000000 +1562921335.0,11209957,10000000 +1562921935.0,11171449,10000000 +1562922535.0,11145263,10000000 +1562923135.0,11182694,10000000 +1562923735.0,11158814,10000000 +1562924335.0,11132898,10000000 +1562924935.0,11120312,10000000 +1562925535.0,11104884,10000000 +1562926135.0,11140710,10000000 +1562926735.0,11157168,10000000 +1562927335.0,11126615,10000000 +1562927935.0,11137683,10000000 +1562928535.0,11015019,10000000 +1562929135.0,11006231,10000000 +1562929735.0,10990149,10000000 +1562930335.0,10915773,10000000 +1562930935.0,10827710,10000000 +1562931535.0,10840670,10000000 +1562932135.0,10814473,10000000 +1562932735.0,10837857,10000000 +1562933335.0,10840712,10000000 +1562933935.0,10870483,10000000 +1562934535.0,10880724,10000000 +1562935135.0,10838675,10000000 +1562935735.0,10820625,10000000 +1562936335.0,10952554,10000000 +1562936935.0,10916742,10000000 +1562937535.0,10942049,10000000 +1562938135.0,10919406,10000000 +1562938735.0,10947079,10000000 +1562939335.0,10956973,10000000 +1562939935.0,10939845,10000000 +1562940535.0,11005161,10000000 +1562941135.0,11007956,10000000 +1562941735.0,10917761,10000000 +1562942335.0,10960770,10000000 +1562942935.0,10980669,10000000 +1562943535.0,11030695,10000000 +1562944135.0,10998488,10000000 +1562944735.0,10958404,10000000 +1562945335.0,10880134,10000000 +1562945935.0,10928141,10000000 +1562946535.0,10991433,10000000 +1562947135.0,11010547,10000000 +1562947735.0,11107649,10000000 +1562948335.0,11106425,10000000 +1562948935.0,11100642,10000000 +1562949535.0,11066295,10000000 +1562950135.0,11153620,10000000 +1562950735.0,11187184,10000000 +1562951335.0,11161603,10000000 +1562951935.0,11198991,10000000 +1562952535.0,11130124,10000000 +1562953135.0,11166675,10000000 +1562953735.0,11108264,10000000 +1562954335.0,11119944,10000000 +1562954935.0,11126205,10000000 +1562955535.0,11043215,10000000 +1562956135.0,11010043,10000000 +1562956735.0,11031286,10000000 +1562957335.0,10918653,10000000 +1562957935.0,10892214,10000000 +1562958535.0,10912520,10000000 +1562959135.0,10997423,10000000 +1562959735.0,11006934,10000000 +1562960335.0,11040940,10000000 +1562960935.0,11150626,10000000 +1562961535.0,11171678,10000000 +1562962135.0,11168650,10000000 +1562962735.0,11147959,10000000 +1562963335.0,11140191,10000000 +1562963935.0,11152823,10000000 +1562964535.0,11201445,10000000 +1562965135.0,11219405,10000000 +1562965735.0,11238060,10000000 +1562966335.0,11196966,10000000 +1562966935.0,11201984,10000000 +1562967535.0,11231569,10000000 +1562968135.0,11215774,10000000 +1562968735.0,11205272,10000000 +1562969335.0,11216003,10000000 +1562969935.0,11159065,10000000 +1562970535.0,11153151,10000000 +1562971135.0,11221632,10000000 +1562971735.0,11211332,10000000 +1562972335.0,11188099,10000000 +1562972935.0,11171930,10000000 +1562973535.0,11192855,10000000 +1562974135.0,11227573,10000000 +1562974735.0,11281245,10000000 +1562975335.0,11280093,10000000 +1562975935.0,11330242,10000000 +1562976535.0,11299633,10000000 +1562977135.0,11344428,10000000 +1562977735.0,11399995,10000000 +1562978335.0,11379451,10000000 +1562978935.0,11418765,10000000 +1562979535.0,11477121,10000000 +1562980135.0,11513565,10000000 +1562980735.0,11535434,10000000 +1562981335.0,11572620,10000000 +1562981935.0,11533470,10000000 +1562982535.0,11537508,10000000 +1562983135.0,11497707,10000000 +1562983735.0,11493959,10000000 +1562984335.0,11472355,10000000 +1562984935.0,11511084,10000000 +1562985535.0,11571879,10000000 +1562986135.0,11639983,10000000 +1562986735.0,11676814,10000000 +1562987335.0,11689146,10000000 +1562987935.0,11757437,10000000 +1562988535.0,11760289,10000000 +1562989135.0,11746406,10000000 +1562989735.0,11737468,10000000 +1562990335.0,11732298,10000000 +1562990935.0,11733608,10000000 +1562991535.0,11844730,10000000 +1562992135.0,11846898,10000000 +1562992735.0,11797386,10000000 +1562993335.0,11861844,10000000 +1562993935.0,11868129,10000000 +1562994535.0,11821178,10000000 +1562995135.0,11802559,10000000 +1562995735.0,11831341,10000000 +1562996335.0,11825383,10000000 +1562996935.0,11755484,10000000 +1562997535.0,11750379,10000000 +1562998135.0,11760309,10000000 +1562998735.0,11723715,10000000 +1562999335.0,11791901,10000000 +1562999935.0,11804098,10000000 +1563000535.0,11823599,10000000 +1563001135.0,11914325,10000000 +1563001735.0,11929719,10000000 +1563002335.0,11965387,10000000 +1563002935.0,11959362,10000000 +1563003535.0,11947722,10000000 +1563004135.0,11996747,10000000 +1563004735.0,11997368,10000000 +1563005335.0,11945818,10000000 +1563005935.0,11958984,10000000 +1563006535.0,11886559,10000000 +1563007135.0,11867726,10000000 +1563007735.0,11874966,10000000 +1563008335.0,11836484,10000000 +1563008935.0,11766362,10000000 +1563009535.0,11770435,10000000 +1563010135.0,11690511,10000000 +1563010735.0,11660922,10000000 +1563011335.0,11665150,10000000 +1563011935.0,11645281,10000000 +1563012535.0,11677573,10000000 +1563013135.0,11693668,10000000 +1563013735.0,11754038,10000000 +1563014335.0,11730486,10000000 +1563014935.0,11718982,10000000 +1563015535.0,11787124,10000000 +1563016135.0,11820912,10000000 +1563016735.0,11759380,10000000 +1563017335.0,11740784,10000000 +1563017935.0,11712683,10000000 +1563018535.0,11735096,10000000 +1563019135.0,11717731,10000000 +1563019735.0,11692779,10000000 +1563020335.0,11718253,10000000 +1563020935.0,11761695,10000000 +1563021535.0,11678780,10000000 +1563022135.0,11675185,10000000 +1563022735.0,11746160,10000000 +1563023335.0,11759553,10000000 +1563023935.0,11735753,10000000 +1563024535.0,11779251,10000000 +1563025135.0,11723853,10000000 +1563025735.0,11715673,10000000 +1563026335.0,11751237,10000000 +1563026935.0,11864084,10000000 +1563027535.0,11950416,10000000 +1563028135.0,12050878,10000000 +1563028735.0,12013195,10000000 +1563029335.0,11953166,10000000 +1563029935.0,11989852,10000000 +1563030535.0,11929398,10000000 +1563031135.0,11894157,10000000 +1563031735.0,11900062,10000000 +1563032335.0,11905573,10000000 +1563032935.0,11959659,10000000 +1563033535.0,11864662,10000000 +1563034135.0,11844872,10000000 +1563034735.0,11908007,10000000 +1563035335.0,11866493,10000000 +1563035935.0,11897406,10000000 +1563036535.0,11850514,10000000 +1563037135.0,11898778,10000000 +1563037735.0,11933218,10000000 +1563038335.0,11983222,10000000 +1563038935.0,11976311,10000000 +1563039535.0,11993899,10000000 +1563040135.0,11934662,10000000 +1563040735.0,11922378,10000000 +1563041335.0,11998525,10000000 +1563041935.0,12062652,10000000 +1563042535.0,12153213,10000000 +1563043135.0,12265735,10000000 +1563043735.0,12264519,10000000 +1563044335.0,12265442,10000000 +1563044935.0,12200467,10000000 +1563045535.0,12168611,10000000 +1563046135.0,12213002,10000000 +1563046735.0,12152094,10000000 +1563047335.0,12168331,10000000 +1563047935.0,12097740,10000000 +1563048535.0,12152139,10000000 +1563049135.0,12117627,10000000 +1563049735.0,12075218,10000000 +1563050335.0,12101761,10000000 +1563050935.0,12129894,10000000 +1563051535.0,12138648,10000000 +1563052135.0,12194353,10000000 +1563052735.0,12189380,10000000 +1563053335.0,12249967,10000000 +1563053935.0,12315512,10000000 +1563054535.0,12263573,10000000 +1563055135.0,12309447,10000000 +1563055735.0,12339157,10000000 +1563056335.0,12379992,10000000 +1563056935.0,12395705,10000000 +1563057535.0,12391189,10000000 +1563058135.0,12325957,10000000 +1563058735.0,12334444,10000000 +1563059335.0,12296760,10000000 +1563059935.0,12245306,10000000 +1563060535.0,12274207,10000000 +1563061135.0,12261406,10000000 +1563061735.0,12275729,10000000 +1563062335.0,12274973,10000000 +1563062935.0,12302681,10000000 +1563063535.0,12321154,10000000 +1563064135.0,12307188,10000000 +1563064735.0,12261459,10000000 +1563065335.0,12334734,10000000 +1563065935.0,12253862,10000000 +1563066535.0,12222119,10000000 +1563067135.0,12307978,10000000 +1563067735.0,12315227,10000000 +1563068335.0,12218479,10000000 +1563068935.0,12151630,10000000 +1563069535.0,12233055,10000000 +1563070135.0,12277047,10000000 +1563070735.0,12236672,10000000 +1563071335.0,12230546,10000000 +1563071935.0,12246596,10000000 +1563072535.0,12213717,10000000 +1563073135.0,12228562,10000000 +1563073735.0,12261874,10000000 +1563074335.0,12236110,10000000 +1563074935.0,12211815,10000000 +1563075535.0,12184941,10000000 +1563076135.0,12198011,10000000 +1563076735.0,12131894,10000000 +1563077335.0,12176392,10000000 +1563077935.0,12207115,10000000 +1563078535.0,12243765,10000000 +1563079135.0,12236198,10000000 +1563079735.0,12181298,10000000 +1563080335.0,12243871,10000000 +1563080935.0,12182188,10000000 +1563081535.0,12184090,10000000 +1563082135.0,12203194,10000000 +1563082735.0,12175179,10000000 +1563083335.0,12067203,10000000 +1563083935.0,12036078,10000000 +1563084535.0,12083504,10000000 +1563085135.0,12108204,10000000 +1563085735.0,12016399,10000000 +1563086335.0,12030815,10000000 +1563086935.0,12041599,10000000 +1563087535.0,12040830,10000000 +1563088135.0,12070032,10000000 +1563088735.0,12040880,10000000 +1563089335.0,12002737,10000000 +1563089935.0,12062163,10000000 +1563090535.0,12068932,10000000 +1563091135.0,12055602,10000000 +1563091735.0,12002632,10000000 +1563092335.0,11934414,10000000 +1563092935.0,11921814,10000000 +1563093535.0,11851281,10000000 +1563094135.0,11893191,10000000 +1563094735.0,11950695,10000000 +1563095335.0,11984885,10000000 +1563095935.0,11990946,10000000 +1563096535.0,11999944,10000000 +1563097135.0,12035866,10000000 +1563097735.0,11961688,10000000 +1563098335.0,12001536,10000000 +1563098935.0,12090444,10000000 +1563099535.0,12003081,10000000 +1563100135.0,12083242,10000000 +1563100735.0,12081225,10000000 +1563101335.0,12068637,10000000 +1563101935.0,12069511,10000000 +1563102535.0,12031918,10000000 +1563103135.0,11964907,10000000 +1563103735.0,11960773,10000000 +1563104335.0,12059827,10000000 +1563104935.0,12037729,10000000 +1563105535.0,11975393,10000000 +1563106135.0,12053354,10000000 +1563106735.0,12135188,10000000 +1563107335.0,12110400,10000000 +1563107935.0,12071157,10000000 +1563108535.0,12160372,10000000 +1563109135.0,12139613,10000000 +1563109735.0,12172707,10000000 +1563110335.0,12184490,10000000 +1563110935.0,12112182,10000000 +1563111535.0,12095615,10000000 +1563112135.0,11972906,10000000 +1563112735.0,11894381,10000000 +1563113335.0,12006844,10000000 +1563113935.0,11960639,10000000 +1563114535.0,11901464,10000000 +1563115135.0,11901976,10000000 +1563115735.0,11942305,10000000 +1563116335.0,12013531,10000000 +1563116935.0,12018381,10000000 +1563117535.0,12069432,10000000 +1563118135.0,12156997,10000000 +1563118735.0,12164176,10000000 +1563119335.0,12176376,10000000 +1563119935.0,12190311,10000000 +1563120535.0,12238371,10000000 +1563121135.0,12191649,10000000 +1563121735.0,12163565,10000000 +1563122335.0,12047138,10000000 +1563122935.0,12094843,10000000 +1563123535.0,12127047,10000000 +1563124135.0,12191191,10000000 +1563124735.0,12299987,10000000 +1563125335.0,12306266,10000000 +1563125935.0,12217134,10000000 +1563126535.0,12291497,10000000 +1563127135.0,12386386,10000000 +1563127735.0,12375202,10000000 +1563128335.0,12455518,10000000 +1563128935.0,12356757,10000000 +1563129535.0,12406441,10000000 +1563130135.0,12448609,10000000 +1563130735.0,12402296,10000000 +1563131335.0,12481413,10000000 +1563131935.0,12440136,10000000 +1563132535.0,12412432,10000000 +1563133135.0,12394313,10000000 +1563133735.0,12381162,10000000 +1563134335.0,12382580,10000000 +1563134935.0,12445747,10000000 +1563135535.0,12444295,10000000 +1563136135.0,12413369,10000000 +1563136735.0,12391631,10000000 +1563137335.0,12356219,10000000 +1563137935.0,12410908,10000000 +1563138535.0,12415866,10000000 +1563139135.0,12397526,10000000 +1563139735.0,12444920,10000000 +1563140335.0,12540318,10000000 +1563140935.0,12530403,10000000 +1563141535.0,12605363,10000000 +1563142135.0,12582596,10000000 +1563142735.0,12621013,10000000 +1563143335.0,12635359,10000000 +1563143935.0,12678792,10000000 +1563144535.0,12622522,10000000 +1563145135.0,12541016,10000000 +1563145735.0,12509615,10000000 +1563146335.0,12474072,10000000 +1563146935.0,12514997,10000000 +1563147535.0,12584614,10000000 +1563148135.0,12500110,10000000 +1563148735.0,12406964,10000000 +1563149335.0,12386916,10000000 +1563149935.0,12387945,10000000 +1563150535.0,12393373,10000000 +1563151135.0,12445122,10000000 +1563151735.0,12422529,10000000 +1563152335.0,12462914,10000000 +1563152935.0,12474550,10000000 +1563153535.0,12530852,10000000 +1563154135.0,12519529,10000000 +1563154735.0,12440827,10000000 +1563155335.0,12425498,10000000 +1563155935.0,12391397,10000000 +1563156535.0,12447280,10000000 +1563157135.0,12443687,10000000 +1563157735.0,12479236,10000000 +1563158335.0,12425173,10000000 +1563158935.0,12368821,10000000 +1563159535.0,12293949,10000000 +1563160135.0,12273816,10000000 +1563160735.0,12236150,10000000 +1563161335.0,12108232,10000000 +1563161935.0,12059238,10000000 +1563162535.0,12060603,10000000 +1563163135.0,11992488,10000000 +1563163735.0,11993119,10000000 +1563164335.0,11863958,10000000 +1563164935.0,11833738,10000000 +1563165535.0,11884410,10000000 +1563166135.0,11863476,10000000 +1563166735.0,11853400,10000000 +1563167335.0,11946502,10000000 +1563167935.0,11910428,10000000 +1563168535.0,11864576,10000000 +1563169135.0,11874435,10000000 +1563169735.0,11777511,10000000 +1563170335.0,11793973,10000000 +1563170935.0,11778641,10000000 +1563171535.0,11831122,10000000 +1563172135.0,11853522,10000000 +1563172735.0,11849630,10000000 +1563173335.0,11848982,10000000 +1563173935.0,11868156,10000000 +1563174535.0,11752759,10000000 +1563175135.0,11728568,10000000 +1563175735.0,11737682,10000000 +1563176335.0,11787748,10000000 +1563176935.0,11755961,10000000 +1563177535.0,11834165,10000000 +1563178135.0,11898102,10000000 +1563178735.0,11889548,10000000 +1563179335.0,11839295,10000000 +1563179935.0,11843589,10000000 +1563180535.0,11861539,10000000 +1563181135.0,11786279,10000000 +1563181735.0,11792929,10000000 +1563182335.0,11806229,10000000 +1563182935.0,11795853,10000000 +1563183535.0,11902248,10000000 +1563184135.0,11888673,10000000 +1563184735.0,11887329,10000000 +1563185335.0,11922115,10000000 +1563185935.0,11868084,10000000 +1563186535.0,11934967,10000000 +1563187135.0,11924346,10000000 +1563187735.0,11900757,10000000 +1563188335.0,11805182,10000000 +1563188935.0,11821970,10000000 +1563189535.0,11794498,10000000 +1563190135.0,11769215,10000000 +1563190735.0,11846016,10000000 +1563191335.0,11760950,10000000 +1563191935.0,11784365,10000000 +1563192535.0,11770349,10000000 +1563193135.0,11689969,10000000 +1563193735.0,11672214,10000000 +1563194335.0,11658610,10000000 +1563194935.0,11745035,10000000 +1563195535.0,11712431,10000000 +1563196135.0,11719887,10000000 +1563196735.0,11687910,10000000 +1563197335.0,11719495,10000000 +1563197935.0,11756668,10000000 +1563198535.0,11757759,10000000 +1563199135.0,11719040,10000000 +1563199735.0,11667633,10000000 +1563200335.0,11658129,10000000 +1563200935.0,11510802,10000000 +1563201535.0,11514007,10000000 +1563202135.0,11562748,10000000 +1563202735.0,11517555,10000000 +1563203335.0,11558905,10000000 +1563203935.0,11599677,10000000 +1563204535.0,11568983,10000000 +1563205135.0,11519996,10000000 +1563205735.0,11570959,10000000 +1563206335.0,11584187,10000000 +1563206935.0,11568905,10000000 +1563207535.0,11571545,10000000 +1563208135.0,11514912,10000000 +1563208735.0,11536842,10000000 +1563209335.0,11497900,10000000 +1563209935.0,11536670,10000000 +1563210535.0,11466743,10000000 +1563211135.0,11434112,10000000 +1563211735.0,11452970,10000000 +1563212335.0,11454809,10000000 +1563212935.0,11545441,10000000 +1563213535.0,11579442,10000000 +1563214135.0,11612589,10000000 +1563214735.0,11620881,10000000 +1563215335.0,11620269,10000000 +1563215935.0,11592299,10000000 +1563216535.0,11573161,10000000 +1563217135.0,11550077,10000000 +1563217735.0,11543621,10000000 +1563218335.0,11436059,10000000 +1563218935.0,11393581,10000000 +1563219535.0,11420098,10000000 +1563220135.0,11451680,10000000 +1563220735.0,11446357,10000000 +1563221335.0,11431750,10000000 +1563221935.0,11421159,10000000 +1563222535.0,11422120,10000000 +1563223135.0,11471402,10000000 +1563223735.0,11460646,10000000 +1563224335.0,11558315,10000000 +1563224935.0,11503997,10000000 +1563225535.0,11570225,10000000 +1563226135.0,11567376,10000000 +1563226735.0,11580232,10000000 +1563227335.0,11558255,10000000 +1563227935.0,11573999,10000000 +1563228535.0,11571984,10000000 +1563229135.0,11590246,10000000 +1563229735.0,11620615,10000000 +1563230335.0,11590831,10000000 +1563230935.0,11555335,10000000 +1563231535.0,11519661,10000000 +1563232135.0,11485099,10000000 +1563232735.0,11388246,10000000 +1563233335.0,11474388,10000000 +1563233935.0,11505820,10000000 +1563234535.0,11546298,10000000 +1563235135.0,11534507,10000000 +1563235735.0,11598586,10000000 +1563236335.0,11613973,10000000 +1563236935.0,11630641,10000000 +1563237535.0,11604135,10000000 +1563238135.0,11542812,10000000 +1563238735.0,11548929,10000000 +1563239335.0,11535217,10000000 +1563239935.0,11590964,10000000 +1563240535.0,11547542,10000000 +1563241135.0,11554501,10000000 +1563241735.0,11553710,10000000 +1563242335.0,11541161,10000000 +1563242935.0,11632748,10000000 +1563243535.0,11587950,10000000 +1563244135.0,11613510,10000000 +1563244735.0,11645253,10000000 +1563245335.0,11625115,10000000 +1563245935.0,11617918,10000000 +1563246535.0,11659711,10000000 +1563247135.0,11669838,10000000 +1563247735.0,11694596,10000000 +1563248335.0,11727371,10000000 +1563248935.0,11751935,10000000 +1563249535.0,11749112,10000000 +1563250135.0,11743721,10000000 +1563250735.0,11749202,10000000 +1563251335.0,11768903,10000000 +1563251935.0,11761962,10000000 +1563252535.0,11837251,10000000 +1563253135.0,11881746,10000000 +1563253735.0,11868294,10000000 +1563254335.0,11810116,10000000 +1563254935.0,11836743,10000000 +1563255535.0,11811401,10000000 +1563256135.0,11736549,10000000 +1563256735.0,11728430,10000000 +1563257335.0,11749565,10000000 +1563257935.0,11762016,10000000 +1563258535.0,11655229,10000000 +1563259135.0,11697494,10000000 +1563259735.0,11674874,10000000 +1563260335.0,11654501,10000000 +1563260935.0,11685400,10000000 +1563261535.0,11659448,10000000 +1563262135.0,11681327,10000000 +1563262735.0,11667419,10000000 +1563263335.0,11684878,10000000 +1563263935.0,11643014,10000000 +1563264535.0,11570716,10000000 +1563265135.0,11498908,10000000 +1563265735.0,11594050,10000000 +1563266335.0,11588687,10000000 +1563266935.0,11567621,10000000 +1563267535.0,11520983,10000000 +1563268135.0,11547294,10000000 +1563268735.0,11495114,10000000 +1563269335.0,11479287,10000000 +1563269935.0,11453513,10000000 +1563270535.0,11445927,10000000 +1563271135.0,11341200,10000000 +1563271735.0,11350852,10000000 +1563272335.0,11351690,10000000 +1563272935.0,11298773,10000000 +1563273535.0,11295126,10000000 +1563274135.0,11347620,10000000 +1563274735.0,11341465,10000000 +1563275335.0,11309083,10000000 +1563275935.0,11319441,10000000 +1563276535.0,11333283,10000000 +1563277135.0,11287006,10000000 +1563277735.0,11275591,10000000 +1563278335.0,11223915,10000000 +1563278935.0,11214959,10000000 +1563279535.0,11212538,10000000 +1563280135.0,11178236,10000000 +1563280735.0,11184764,10000000 +1563281335.0,11194672,10000000 +1563281935.0,11116604,10000000 +1563282535.0,11157630,10000000 +1563283135.0,11227958,10000000 +1563283735.0,11129659,10000000 +1563284335.0,11174666,10000000 +1563284935.0,11178604,10000000 +1563285535.0,11123300,10000000 +1563286135.0,11089912,10000000 +1563286735.0,11061578,10000000 +1563287335.0,11034397,10000000 +1563287935.0,11108118,10000000 +1563288535.0,11159711,10000000 +1563289135.0,11270695,10000000 +1563289735.0,11257021,10000000 +1563290335.0,11263082,10000000 +1563290935.0,11229428,10000000 +1563291535.0,11193921,10000000 +1563292135.0,11172265,10000000 +1563292735.0,11199172,10000000 +1563293335.0,11303698,10000000 +1563293935.0,11303178,10000000 +1563294535.0,11364554,10000000 +1563295135.0,11360932,10000000 +1563295735.0,11300368,10000000 +1563296335.0,11280043,10000000 +1563296935.0,11239301,10000000 +1563297535.0,11246643,10000000 +1563298135.0,11265040,10000000 +1563298735.0,11220783,10000000 +1563299335.0,11253707,10000000 +1563299935.0,11293800,10000000 +1563300535.0,11323274,10000000 +1563301135.0,11356789,10000000 +1563301735.0,11300804,10000000 +1563302335.0,11304196,10000000 +1563302935.0,11327345,10000000 +1563303535.0,11379389,10000000 +1563304135.0,11407910,10000000 +1563304735.0,11496677,10000000 +1563305335.0,11507885,10000000 +1563305935.0,11504348,10000000 +1563306535.0,11489815,10000000 +1563307135.0,11436760,10000000 +1563307735.0,11428635,10000000 +1563308335.0,11569809,10000000 +1563308935.0,11644769,10000000 +1563309535.0,11689848,10000000 +1563310135.0,11703512,10000000 +1563310735.0,11719035,10000000 +1563311335.0,11785851,10000000 +1563311935.0,11785418,10000000 +1563312535.0,11787605,10000000 +1563313135.0,11830699,10000000 +1563313735.0,11816887,10000000 +1563314335.0,11893553,10000000 +1563314935.0,11858299,10000000 +1563315535.0,11908663,10000000 +1563316135.0,11908122,10000000 +1563316735.0,11931658,10000000 +1563317335.0,11941835,10000000 +1563317935.0,11944300,10000000 +1563318535.0,11998831,10000000 +1563319135.0,11956106,10000000 +1563319735.0,11925553,10000000 +1563320335.0,11775878,10000000 +1563320935.0,11655698,10000000 +1563321535.0,11653923,10000000 +1563322135.0,11639138,10000000 +1563322735.0,11642641,10000000 +1563323335.0,11663493,10000000 +1563323935.0,11640652,10000000 +1563324535.0,11630030,10000000 +1563325135.0,11699502,10000000 +1563325735.0,11711755,10000000 +1563326335.0,11662674,10000000 +1563326935.0,11653152,10000000 +1563327535.0,11625020,10000000 +1563328135.0,11625319,10000000 +1563328735.0,11573585,10000000 +1563329335.0,11549390,10000000 +1563329935.0,11516548,10000000 +1563330535.0,11494947,10000000 +1563331135.0,11541292,10000000 +1563331735.0,11541656,10000000 +1563332335.0,11607535,10000000 +1563332935.0,11614973,10000000 +1563333535.0,11524930,10000000 +1563334135.0,11516758,10000000 +1563334735.0,11511139,10000000 +1563335335.0,11474572,10000000 +1563335935.0,11420304,10000000 +1563336535.0,11494368,10000000 +1563337135.0,11482880,10000000 +1563337735.0,11482624,10000000 +1563338335.0,11532076,10000000 +1563338935.0,11571440,10000000 +1563339535.0,11588575,10000000 +1563340135.0,11605299,10000000 +1563340735.0,11650266,10000000 +1563341335.0,11621493,10000000 +1563341935.0,11609938,10000000 +1563342535.0,11604533,10000000 +1563343135.0,11554387,10000000 +1563343735.0,11490950,10000000 +1563344335.0,11534179,10000000 +1563344935.0,11485982,10000000 +1563345535.0,11446456,10000000 +1563346135.0,11464746,10000000 +1563346735.0,11417606,10000000 +1563347335.0,11426994,10000000 +1563347935.0,11424767,10000000 +1563348535.0,11370268,10000000 +1563349135.0,11376338,10000000 +1563349735.0,11365326,10000000 +1563350335.0,11396566,10000000 +1563350935.0,11390959,10000000 +1563351535.0,11409333,10000000 +1563352135.0,11439154,10000000 +1563352735.0,11377366,10000000 +1563353335.0,11321042,10000000 +1563353935.0,11307998,10000000 +1563354535.0,11310108,10000000 +1563355135.0,11395421,10000000 +1563355735.0,11356226,10000000 +1563356335.0,11402423,10000000 +1563356935.0,11432589,10000000 +1563357535.0,11400678,10000000 +1563358135.0,11402849,10000000 +1563358735.0,11417661,10000000 +1563359335.0,11444621,10000000 +1563359935.0,11410714,10000000 +1563360535.0,11388541,10000000 +1563361135.0,11400025,10000000 +1563361735.0,11315665,10000000 +1563362335.0,11315516,10000000 +1563362935.0,11305331,10000000 +1563363535.0,11287473,10000000 +1563364135.0,11274769,10000000 +1563364735.0,11288402,10000000 +1563365335.0,11283569,10000000 +1563365935.0,11339711,10000000 +1563366535.0,11352358,10000000 +1563367135.0,11285800,10000000 +1563367735.0,11280492,10000000 +1563368335.0,11265565,10000000 +1563368935.0,11234434,10000000 +1563369535.0,11330575,10000000 +1563370135.0,11261185,10000000 +1563370735.0,11231543,10000000 +1563371335.0,11209702,10000000 +1563371935.0,11281703,10000000 +1563372535.0,11219413,10000000 +1563373135.0,11296541,10000000 +1563373735.0,11233144,10000000 +1563374335.0,11187536,10000000 +1563374935.0,11185451,10000000 +1563375535.0,11220351,10000000 +1563376135.0,11248909,10000000 +1563376735.0,11240611,10000000 +1563377335.0,11299435,10000000 +1563377935.0,11308535,10000000 +1563378535.0,11300372,10000000 +1563379135.0,11256911,10000000 +1563379735.0,11285281,10000000 +1563380335.0,11252272,10000000 +1563380935.0,11266610,10000000 +1563381535.0,11267592,10000000 +1563382135.0,11319161,10000000 +1563382735.0,11375672,10000000 +1563383335.0,11339770,10000000 +1563383935.0,11441903,10000000 +1563384535.0,11531710,10000000 +1563385135.0,11499679,10000000 +1563385735.0,11458152,10000000 +1563386335.0,11428687,10000000 +1563386935.0,11383554,10000000 +1563387535.0,11458863,10000000 +1563388135.0,11394057,10000000 +1563388735.0,11417379,10000000 +1563389335.0,11416647,10000000 +1563389935.0,11414413,10000000 +1563390535.0,11407442,10000000 +1563391135.0,11476512,10000000 +1563391735.0,11556588,10000000 +1563392335.0,11565045,10000000 +1563392935.0,11573656,10000000 +1563393535.0,11619441,10000000 +1563394135.0,11614296,10000000 +1563394735.0,11546838,10000000 +1563395335.0,11577536,10000000 +1563395935.0,11569022,10000000 +1563396535.0,11519624,10000000 +1563397135.0,11612438,10000000 +1563397735.0,11654319,10000000 +1563398335.0,11709372,10000000 +1563398935.0,11710461,10000000 +1563399535.0,11714806,10000000 +1563400135.0,11726767,10000000 +1563400735.0,11657839,10000000 +1563401335.0,11689213,10000000 +1563401935.0,11740922,10000000 +1563402535.0,11685649,10000000 +1563403135.0,11674709,10000000 +1563403735.0,11729010,10000000 +1563404335.0,11806493,10000000 +1563404935.0,11731481,10000000 +1563405535.0,11726450,10000000 +1563406135.0,11741320,10000000 +1563406735.0,11747256,10000000 +1563407335.0,11769355,10000000 +1563407935.0,11798245,10000000 +1563408535.0,11816745,10000000 +1563409135.0,11827388,10000000 +1563409735.0,11803655,10000000 +1563410335.0,11854118,10000000 +1563410935.0,11819130,10000000 +1563411535.0,11768278,10000000 +1563412135.0,11758781,10000000 +1563412735.0,11841261,10000000 +1563413335.0,11735124,10000000 +1563413935.0,11798121,10000000 +1563414535.0,11811591,10000000 +1563415135.0,11799091,10000000 +1563415735.0,11761935,10000000 +1563416335.0,11738815,10000000 +1563416935.0,11838568,10000000 +1563417535.0,11861126,10000000 +1563418135.0,11920584,10000000 +1563418735.0,11929388,10000000 +1563419335.0,11898173,10000000 +1563419935.0,11905300,10000000 +1563420535.0,11929217,10000000 +1563421135.0,11927604,10000000 +1563421735.0,11885944,10000000 +1563422335.0,11815164,10000000 +1563422935.0,11803667,10000000 +1563423535.0,11868706,10000000 +1563424135.0,11922043,10000000 +1563424735.0,12002825,10000000 +1563425335.0,12062779,10000000 +1563425935.0,12075678,10000000 +1563426535.0,12078707,10000000 +1563427135.0,12095657,10000000 +1563427735.0,11959716,10000000 +1563428335.0,11942152,10000000 +1563428935.0,11962465,10000000 +1563429535.0,11974386,10000000 +1563430135.0,11993990,10000000 +1563430735.0,12031154,10000000 +1563431335.0,11999627,10000000 +1563431935.0,11938658,10000000 +1563432535.0,11947626,10000000 +1563433135.0,11914472,10000000 +1563433735.0,11893124,10000000 +1563434335.0,11874791,10000000 +1563434935.0,11929984,10000000 +1563435535.0,11948636,10000000 +1563436135.0,11928299,10000000 +1563436735.0,11932554,10000000 +1563437335.0,11887775,10000000 +1563437935.0,11872945,10000000 +1563438535.0,11839754,10000000 +1563439135.0,11871534,10000000 +1563439735.0,11892149,10000000 +1563440335.0,12017186,10000000 +1563440935.0,12102893,10000000 +1563441535.0,12051977,10000000 +1563442135.0,12047080,10000000 +1563442735.0,11974403,10000000 +1563443335.0,12090221,10000000 +1563443935.0,12130009,10000000 +1563444535.0,12263231,10000000 +1563445135.0,12232923,10000000 +1563445735.0,12180709,10000000 +1563446335.0,12210700,10000000 +1563446935.0,12282779,10000000 +1563447535.0,12269945,10000000 +1563448135.0,12226307,10000000 +1563448735.0,12224498,10000000 +1563449335.0,12156061,10000000 +1563449935.0,12203960,10000000 +1563450535.0,12126028,10000000 +1563451135.0,12135162,10000000 +1563451735.0,12208124,10000000 +1563452335.0,12177665,10000000 +1563452935.0,12227934,10000000 +1563453535.0,12305444,10000000 +1563454135.0,12339580,10000000 +1563454735.0,12311679,10000000 +1563455335.0,12237605,10000000 +1563455935.0,12165668,10000000 +1563456535.0,12176519,10000000 +1563457135.0,12169516,10000000 +1563457735.0,12137428,10000000 +1563458335.0,12172129,10000000 +1563458935.0,12157210,10000000 +1563459535.0,12170635,10000000 +1563460135.0,12173377,10000000 +1563460735.0,12178622,10000000 +1563461335.0,12246599,10000000 +1563461935.0,12278689,10000000 +1563462535.0,12269412,10000000 +1563463135.0,12214529,10000000 +1563463735.0,12179830,10000000 +1563464335.0,12127427,10000000 +1563464935.0,12078902,10000000 +1563465535.0,12003730,10000000 +1563466135.0,11969134,10000000 +1563466735.0,11959740,10000000 +1563467335.0,11876451,10000000 +1563467935.0,11791217,10000000 +1563468535.0,11832073,10000000 +1563469135.0,11853821,10000000 +1563469735.0,11879262,10000000 +1563470335.0,11871755,10000000 +1563470935.0,11899261,10000000 +1563471535.0,11908395,10000000 +1563472135.0,11986576,10000000 +1563472735.0,12004176,10000000 +1563473335.0,11986674,10000000 +1563473935.0,11948496,10000000 +1563474535.0,11901730,10000000 +1563475135.0,11934934,10000000 +1563475735.0,11947760,10000000 +1563476335.0,11983432,10000000 +1563476935.0,11995461,10000000 +1563477535.0,12022338,10000000 +1563478135.0,12029794,10000000 +1563478735.0,12023522,10000000 +1563479335.0,12043553,10000000 +1563479935.0,12130237,10000000 +1563480535.0,12182067,10000000 +1563481135.0,12180451,10000000 +1563481735.0,12176044,10000000 +1563482335.0,12168017,10000000 +1563482935.0,12102103,10000000 +1563483535.0,12220005,10000000 +1563484135.0,12180915,10000000 +1563484735.0,12267656,10000000 +1563485335.0,12283345,10000000 +1563485935.0,12295458,10000000 +1563486535.0,12277423,10000000 +1563487135.0,12318925,10000000 +1563487735.0,12277597,10000000 +1563488335.0,12316204,10000000 +1563488935.0,12233667,10000000 +1563489535.0,12218524,10000000 +1563490135.0,12277656,10000000 +1563490735.0,12315108,10000000 +1563491335.0,12363045,10000000 +1563491935.0,12363767,10000000 +1563492535.0,12329292,10000000 +1563493135.0,12391081,10000000 +1563493735.0,12429342,10000000 +1563494335.0,12513511,10000000 +1563494935.0,12583505,10000000 +1563495535.0,12570763,10000000 +1563496135.0,12528384,10000000 +1563496735.0,12532935,10000000 +1563497335.0,12605762,10000000 +1563497935.0,12703492,10000000 +1563498535.0,12764620,10000000 +1563499135.0,12747005,10000000 +1563499735.0,12698112,10000000 +1563500335.0,12761379,10000000 +1563500935.0,12776558,10000000 +1563501535.0,12810767,10000000 +1563502135.0,12804186,10000000 +1563502735.0,12752478,10000000 +1563503335.0,12778531,10000000 +1563503935.0,12840065,10000000 +1563504535.0,12859322,10000000 +1563505135.0,12851733,10000000 +1563505735.0,12845912,10000000 +1563506335.0,12884128,10000000 +1563506935.0,12828105,10000000 +1563507535.0,12788591,10000000 +1563508135.0,12831089,10000000 +1563508735.0,12854941,10000000 +1563509335.0,12827038,10000000 +1563509935.0,12849581,10000000 +1563510535.0,12967218,10000000 +1563511135.0,12962812,10000000 +1563511735.0,13014825,10000000 +1563512335.0,13012395,10000000 +1563512935.0,12999362,10000000 +1563513535.0,12930817,10000000 +1563514135.0,12916723,10000000 +1563514735.0,12958294,10000000 +1563515335.0,12870969,10000000 +1563515935.0,12824920,10000000 +1563516535.0,12780865,10000000 +1563517135.0,12716260,10000000 +1563517735.0,12663543,10000000 +1563518335.0,12741502,10000000 +1563518935.0,12829945,10000000 +1563519535.0,12876449,10000000 +1563520135.0,12855652,10000000 +1563520735.0,12872591,10000000 +1563521335.0,12957371,10000000 +1563521935.0,12857656,10000000 +1563522535.0,12859085,10000000 +1563523135.0,12862245,10000000 +1563523735.0,12892286,10000000 +1563524335.0,12906881,10000000 +1563524935.0,12874808,10000000 +1563525535.0,12973963,10000000 +1563526135.0,13049217,10000000 +1563526735.0,13022004,10000000 +1563527335.0,12965754,10000000 +1563527935.0,13023994,10000000 +1563528535.0,13041241,10000000 +1563529135.0,13033393,10000000 +1563529735.0,13058055,10000000 +1563530335.0,12995361,10000000 +1563530935.0,12888918,10000000 +1563531535.0,12963844,10000000 +1563532135.0,13020865,10000000 +1563532735.0,13093475,10000000 +1563533335.0,12987269,10000000 +1563533935.0,13015491,10000000 +1563534535.0,13003483,10000000 +1563535135.0,12982753,10000000 +1563535735.0,13005709,10000000 +1563536335.0,13021029,10000000 +1563536935.0,13040188,10000000 +1563537535.0,13149443,10000000 +1563538135.0,13159278,10000000 +1563538735.0,13211613,10000000 +1563539335.0,13085947,10000000 +1563539935.0,13082419,10000000 +1563540535.0,13093298,10000000 +1563541135.0,13024459,10000000 +1563541735.0,13073122,10000000 +1563542335.0,13002205,10000000 +1563542935.0,13040635,10000000 +1563543535.0,12991573,10000000 +1563544135.0,13044155,10000000 +1563544735.0,12978014,10000000 +1563545335.0,13013449,10000000 +1563545935.0,12992852,10000000 +1563546535.0,12946794,10000000 +1563547135.0,12923289,10000000 +1563547735.0,12893107,10000000 +1563548335.0,12854935,10000000 +1563548935.0,12914944,10000000 +1563549535.0,12895588,10000000 +1563550135.0,12921937,10000000 +1563550735.0,12892957,10000000 +1563551335.0,12879880,10000000 +1563551935.0,12846384,10000000 +1563552535.0,12814634,10000000 +1563553135.0,12915272,10000000 +1563553735.0,12885577,10000000 +1563554335.0,12747176,10000000 +1563554935.0,12721992,10000000 +1563555535.0,12696538,10000000 +1563556135.0,12738978,10000000 +1563556735.0,12659588,10000000 +1563557335.0,12645739,10000000 +1563557935.0,12674072,10000000 +1563558535.0,12689680,10000000 +1563559135.0,12700050,10000000 +1563559735.0,12756141,10000000 +1563560335.0,12733658,10000000 +1563560935.0,12655880,10000000 +1563561535.0,12722772,10000000 +1563562135.0,12812874,10000000 +1563562735.0,12778016,10000000 +1563563335.0,12706626,10000000 +1563563935.0,12673280,10000000 +1563564535.0,12548597,10000000 +1563565135.0,12485515,10000000 +1563565735.0,12529531,10000000 +1563566335.0,12572325,10000000 +1563566935.0,12627412,10000000 +1563567535.0,12602851,10000000 +1563568135.0,12547525,10000000 +1563568735.0,12613023,10000000 +1563569335.0,12534898,10000000 +1563569935.0,12618669,10000000 +1563570535.0,12680403,10000000 +1563571135.0,12554089,10000000 +1563571735.0,12628853,10000000 +1563572335.0,12669994,10000000 +1563572935.0,12699151,10000000 +1563573535.0,12812055,10000000 +1563574135.0,12789595,10000000 +1563574735.0,12791004,10000000 +1563575335.0,12899252,10000000 +1563575935.0,12984818,10000000 +1563576535.0,12894531,10000000 +1563577135.0,12932208,10000000 +1563577735.0,12875861,10000000 +1563578335.0,12993236,10000000 +1563578935.0,12937349,10000000 +1563579535.0,12872613,10000000 +1563580135.0,12861611,10000000 +1563580735.0,12885306,10000000 +1563581335.0,12744442,10000000 +1563581935.0,12726968,10000000 +1563582535.0,12726927,10000000 +1563583135.0,12664021,10000000 +1563583735.0,12580600,10000000 +1563584335.0,12529082,10000000 +1563584935.0,12508346,10000000 +1563585535.0,12445277,10000000 +1563586135.0,12456409,10000000 +1563586735.0,12526021,10000000 +1563587335.0,12508052,10000000 +1563587935.0,12502108,10000000 +1563588535.0,12530150,10000000 +1563589135.0,12528386,10000000 +1563589735.0,12559679,10000000 +1563590335.0,12494452,10000000 +1563590935.0,12488958,10000000 +1563591535.0,12480983,10000000 +1563592135.0,12555910,10000000 +1563592735.0,12545357,10000000 +1563593335.0,12451592,10000000 +1563593935.0,12495100,10000000 +1563594535.0,12450873,10000000 +1563595135.0,12396883,10000000 +1563595735.0,12404161,10000000 +1563596335.0,12377661,10000000 +1563596935.0,12440248,10000000 +1563597535.0,12403950,10000000 +1563598135.0,12380911,10000000 +1563598735.0,12445009,10000000 +1563599335.0,12484007,10000000 +1563599935.0,12466239,10000000 +1563600535.0,12464287,10000000 +1563601135.0,12319367,10000000 +1563601735.0,12433441,10000000 +1563602335.0,12436153,10000000 +1563602935.0,12388501,10000000 +1563603535.0,12433090,10000000 +1563604135.0,12403655,10000000 +1563604735.0,12357443,10000000 +1563605335.0,12284335,10000000 +1563605935.0,12273896,10000000 +1563606535.0,12305527,10000000 +1563607135.0,12281209,10000000 +1563607735.0,12402771,10000000 +1563608335.0,12371073,10000000 +1563608935.0,12384635,10000000 +1563609535.0,12350372,10000000 +1563610135.0,12310351,10000000 +1563610735.0,12275667,10000000 +1563611335.0,12193021,10000000 +1563611935.0,12259092,10000000 +1563612535.0,12162702,10000000 +1563613135.0,12149156,10000000 +1563613735.0,12242348,10000000 +1563614335.0,12152460,10000000 +1563614935.0,12203045,10000000 +1563615535.0,12282582,10000000 +1563616135.0,12233757,10000000 +1563616735.0,12238955,10000000 +1563617335.0,12259438,10000000 +1563617935.0,12227653,10000000 +1563618535.0,12278640,10000000 +1563619135.0,12247084,10000000 +1563619735.0,12299972,10000000 +1563620335.0,12288489,10000000 +1563620935.0,12311490,10000000 +1563621535.0,12304210,10000000 +1563622135.0,12326737,10000000 +1563622735.0,12355322,10000000 +1563623335.0,12386652,10000000 +1563623935.0,12415350,10000000 +1563624535.0,12341809,10000000 +1563625135.0,12316601,10000000 +1563625735.0,12357375,10000000 +1563626335.0,12346414,10000000 +1563626935.0,12234239,10000000 +1563627535.0,12186630,10000000 +1563628135.0,12143521,10000000 +1563628735.0,12157440,10000000 +1563629335.0,12299198,10000000 +1563629935.0,12281439,10000000 +1563630535.0,12346904,10000000 +1563631135.0,12312422,10000000 +1563631735.0,12334380,10000000 +1563632335.0,12255474,10000000 +1563632935.0,12267881,10000000 +1563633535.0,12303935,10000000 +1563634135.0,12412241,10000000 +1563634735.0,12387185,10000000 +1563635335.0,12433909,10000000 +1563635935.0,12521508,10000000 +1563636535.0,12505444,10000000 +1563637135.0,12466380,10000000 +1563637735.0,12449277,10000000 +1563638335.0,12443780,10000000 +1563638935.0,12439202,10000000 +1563639535.0,12392853,10000000 +1563640135.0,12433271,10000000 +1563640735.0,12467740,10000000 +1563641335.0,12386462,10000000 +1563641935.0,12378067,10000000 +1563642535.0,12369857,10000000 +1563643135.0,12479778,10000000 +1563643735.0,12305231,10000000 +1563644335.0,12326313,10000000 +1563644935.0,12312638,10000000 +1563645535.0,12296608,10000000 +1563646135.0,12312675,10000000 +1563646735.0,12335181,10000000 +1563647335.0,12354584,10000000 +1563647935.0,12399549,10000000 +1563648535.0,12368511,10000000 +1563649135.0,12387643,10000000 +1563649735.0,12326176,10000000 +1563650335.0,12379410,10000000 +1563650935.0,12394840,10000000 +1563651535.0,12403898,10000000 +1563652135.0,12406116,10000000 +1563652735.0,12328581,10000000 +1563653335.0,12361872,10000000 +1563653935.0,12351900,10000000 +1563654535.0,12340620,10000000 +1563655135.0,12360881,10000000 +1563655735.0,12396009,10000000 +1563656335.0,12381196,10000000 +1563656935.0,12398259,10000000 +1563657535.0,12370798,10000000 +1563658135.0,12277675,10000000 +1563658735.0,12283874,10000000 +1563659335.0,12240063,10000000 +1563659935.0,12286481,10000000 +1563660535.0,12231670,10000000 +1563661135.0,12166599,10000000 +1563661735.0,12103368,10000000 +1563662335.0,12083458,10000000 +1563662935.0,12096474,10000000 +1563663535.0,11997120,10000000 +1563664135.0,11967077,10000000 +1563664735.0,12013856,10000000 +1563665335.0,11942154,10000000 +1563665935.0,11919727,10000000 +1563666535.0,11834953,10000000 +1563667135.0,11893584,10000000 +1563667735.0,11758067,10000000 +1563668335.0,11704775,10000000 +1563668935.0,11698768,10000000 +1563669535.0,11659698,10000000 +1563670135.0,11645691,10000000 +1563670735.0,11605823,10000000 +1563671335.0,11544071,10000000 +1563671935.0,11438152,10000000 +1563672535.0,11358983,10000000 +1563673135.0,11405361,10000000 +1563673735.0,11359041,10000000 +1563674335.0,11415377,10000000 +1563674935.0,11407150,10000000 +1563675535.0,11330261,10000000 +1563676135.0,11300711,10000000 +1563676735.0,11318039,10000000 +1563677335.0,11365781,10000000 +1563677935.0,11357762,10000000 +1563678535.0,11349874,10000000 +1563679135.0,11344479,10000000 +1563679735.0,11299492,10000000 +1563680335.0,11390568,10000000 +1563680935.0,11302399,10000000 +1563681535.0,11329592,10000000 +1563682135.0,11325211,10000000 +1563682735.0,11317073,10000000 +1563683335.0,11374671,10000000 +1563683935.0,11424305,10000000 +1563684535.0,11424142,10000000 +1563685135.0,11480168,10000000 +1563685735.0,11489988,10000000 +1563686335.0,11458234,10000000 +1563686935.0,11384812,10000000 +1563687535.0,11469464,10000000 +1563688135.0,11486897,10000000 +1563688735.0,11509529,10000000 +1563689335.0,11564387,10000000 +1563689935.0,11571000,10000000 +1563690535.0,11508776,10000000 +1563691135.0,11479812,10000000 +1563691735.0,11433326,10000000 +1563692335.0,11446266,10000000 +1563692935.0,11463783,10000000 +1563693535.0,11506637,10000000 +1563694135.0,11535212,10000000 +1563694735.0,11536585,10000000 +1563695335.0,11566332,10000000 +1563695935.0,11551069,10000000 +1563696535.0,11560548,10000000 +1563697135.0,11545198,10000000 +1563697735.0,11537103,10000000 +1563698335.0,11511490,10000000 +1563698935.0,11406687,10000000 +1563699535.0,11481499,10000000 +1563700135.0,11473513,10000000 +1563700735.0,11474145,10000000 +1563701335.0,11509988,10000000 +1563701935.0,11584937,10000000 +1563702535.0,11584634,10000000 +1563703135.0,11594072,10000000 +1563703735.0,11591865,10000000 +1563704335.0,11589745,10000000 +1563704935.0,11553279,10000000 +1563705535.0,11549939,10000000 +1563706135.0,11491766,10000000 +1563706735.0,11448992,10000000 +1563707335.0,11399176,10000000 +1563707935.0,11309695,10000000 +1563708535.0,11261494,10000000 +1563709135.0,11248598,10000000 +1563709735.0,11182616,10000000 +1563710335.0,11134958,10000000 +1563710935.0,11156792,10000000 +1563711535.0,11181600,10000000 +1563712135.0,11211997,10000000 +1563712735.0,11216085,10000000 +1563713335.0,11202534,10000000 +1563713935.0,11188627,10000000 +1563714535.0,11183836,10000000 +1563715135.0,11170518,10000000 +1563715735.0,11249263,10000000 +1563716335.0,11257368,10000000 +1563716935.0,11279869,10000000 +1563717535.0,11329465,10000000 +1563718135.0,11343006,10000000 +1563718735.0,11299190,10000000 +1563719335.0,11202289,10000000 +1563719935.0,11214286,10000000 +1563720535.0,11196173,10000000 +1563721135.0,11171301,10000000 +1563721735.0,11186638,10000000 +1563722335.0,11183217,10000000 +1563722935.0,11127459,10000000 +1563723535.0,11100302,10000000 +1563724135.0,11137390,10000000 +1563724735.0,11174316,10000000 +1563725335.0,11240816,10000000 +1563725935.0,11361523,10000000 +1563726535.0,11350612,10000000 +1563727135.0,11391286,10000000 +1563727735.0,11297759,10000000 +1563728335.0,11281445,10000000 +1563728935.0,11350422,10000000 +1563729535.0,11326460,10000000 +1563730135.0,11268524,10000000 +1563730735.0,11240741,10000000 +1563731335.0,11239689,10000000 +1563731935.0,11317795,10000000 +1563732535.0,11281048,10000000 +1563733135.0,11219200,10000000 +1563733735.0,11200148,10000000 +1563734335.0,11232407,10000000 +1563734935.0,11254641,10000000 +1563735535.0,11234060,10000000 +1563736135.0,11229048,10000000 +1563736735.0,11274627,10000000 +1563737335.0,11239865,10000000 +1563737935.0,11192383,10000000 +1563738535.0,11215300,10000000 +1563739135.0,11198021,10000000 +1563739735.0,11180121,10000000 +1563740335.0,11105397,10000000 +1563740935.0,11096235,10000000 +1563741535.0,10993361,10000000 +1563742135.0,11026167,10000000 +1563742735.0,10954187,10000000 +1563743335.0,10925507,10000000 +1563743935.0,10894496,10000000 +1563744535.0,10841824,10000000 +1563745135.0,10899545,10000000 +1563745735.0,10929836,10000000 +1563746335.0,10925324,10000000 +1563746935.0,10889254,10000000 +1563747535.0,10828027,10000000 +1563748135.0,10801615,10000000 +1563748735.0,10877750,10000000 +1563749335.0,10837946,10000000 +1563749935.0,10838646,10000000 +1563750535.0,10876677,10000000 +1563751135.0,10860134,10000000 +1563751735.0,10869328,10000000 +1563752335.0,10842313,10000000 +1563752935.0,10890297,10000000 +1563753535.0,10935128,10000000 +1563754135.0,10986345,10000000 +1563754735.0,10965962,10000000 +1563755335.0,10976883,10000000 +1563755935.0,10986278,10000000 +1563756535.0,11029185,10000000 +1563757135.0,10997643,10000000 +1563757735.0,10960207,10000000 +1563758335.0,10975128,10000000 +1563758935.0,10937236,10000000 +1563759535.0,10965137,10000000 +1563760135.0,10992135,10000000 +1563760735.0,11029625,10000000 +1563761335.0,11003166,10000000 +1563761935.0,11021283,10000000 +1563762535.0,11043172,10000000 +1563763135.0,10997489,10000000 +1563763735.0,11038485,10000000 +1563764335.0,10971301,10000000 +1563764935.0,10965419,10000000 +1563765535.0,10911344,10000000 +1563766135.0,10850748,10000000 +1563766735.0,10840027,10000000 +1563767335.0,10800602,10000000 +1563767935.0,10826215,10000000 +1563768535.0,10837872,10000000 +1563769135.0,10793813,10000000 +1563769735.0,10678385,10000000 +1563770335.0,10602315,10000000 +1563770935.0,10633206,10000000 +1563771535.0,10637317,10000000 +1563772135.0,10680568,10000000 +1563772735.0,10724363,10000000 +1563773335.0,10758400,10000000 +1563773935.0,10744264,10000000 +1563774535.0,10716445,10000000 +1563775135.0,10679927,10000000 +1563775735.0,10735240,10000000 +1563776335.0,10731277,10000000 +1563776935.0,10714766,10000000 +1563777535.0,10764639,10000000 +1563778135.0,10762528,10000000 +1563778735.0,10690752,10000000 +1563779335.0,10744142,10000000 +1563779935.0,10706184,10000000 +1563780535.0,10701088,10000000 +1563781135.0,10661136,10000000 +1563781735.0,10680338,10000000 +1563782335.0,10669421,10000000 +1563782935.0,10726329,10000000 +1563783535.0,10782442,10000000 +1563784135.0,10851825,10000000 +1563784735.0,10911213,10000000 +1563785335.0,10952674,10000000 +1563785935.0,10976650,10000000 +1563786535.0,11041834,10000000 +1563787135.0,11044541,10000000 +1563787735.0,11028907,10000000 +1563788335.0,11113236,10000000 +1563788935.0,11192872,10000000 +1563789535.0,11139276,10000000 +1563790135.0,11143063,10000000 +1563790735.0,11183888,10000000 +1563791335.0,11177254,10000000 +1563791935.0,11170486,10000000 +1563792535.0,11166906,10000000 +1563793135.0,11129852,10000000 +1563793735.0,11121675,10000000 +1563794335.0,11112700,10000000 +1563794935.0,11191571,10000000 +1563795535.0,11194391,10000000 +1563796135.0,11285934,10000000 +1563796735.0,11317107,10000000 +1563797335.0,11268064,10000000 +1563797935.0,11174550,10000000 +1563798535.0,11283858,10000000 +1563799135.0,11232710,10000000 +1563799735.0,11184516,10000000 +1563800335.0,11234931,10000000 +1563800935.0,11242591,10000000 +1563801535.0,11160549,10000000 +1563802135.0,11037687,10000000 +1563802735.0,11004529,10000000 +1563803335.0,11053180,10000000 +1563803935.0,11040847,10000000 +1563804535.0,11046999,10000000 +1563805135.0,11025492,10000000 +1563805735.0,11139284,10000000 +1563806335.0,11151109,10000000 +1563806935.0,11219714,10000000 +1563807535.0,11145036,10000000 +1563808135.0,11091035,10000000 +1563808735.0,11077421,10000000 +1563809335.0,11092483,10000000 +1563809935.0,11181851,10000000 +1563810535.0,11249179,10000000 +1563811135.0,11257296,10000000 +1563811735.0,11398115,10000000 +1563812335.0,11353679,10000000 +1563812935.0,11376099,10000000 +1563813535.0,11394432,10000000 +1563814135.0,11383881,10000000 +1563814735.0,11373521,10000000 +1563815335.0,11325800,10000000 +1563815935.0,11301853,10000000 +1563816535.0,11343060,10000000 +1563817135.0,11388591,10000000 +1563817735.0,11311437,10000000 +1563818335.0,11287432,10000000 +1563818935.0,11241539,10000000 +1563819535.0,11131656,10000000 +1563820135.0,11074368,10000000 +1563820735.0,11059238,10000000 +1563821335.0,11101153,10000000 +1563821935.0,11122260,10000000 +1563822535.0,11173098,10000000 +1563823135.0,11217784,10000000 +1563823735.0,11249501,10000000 +1563824335.0,11199587,10000000 +1563824935.0,11176147,10000000 +1563825535.0,11159413,10000000 +1563826135.0,11209056,10000000 +1563826735.0,11177407,10000000 +1563827335.0,11100382,10000000 +1563827935.0,11087475,10000000 +1563828535.0,11038427,10000000 +1563829135.0,11033486,10000000 +1563829735.0,10965256,10000000 +1563830335.0,11046548,10000000 +1563830935.0,11064726,10000000 +1563831535.0,11033178,10000000 +1563832135.0,11106701,10000000 +1563832735.0,11107640,10000000 +1563833335.0,11040848,10000000 +1563833935.0,11027914,10000000 +1563834535.0,11013892,10000000 +1563835135.0,10964831,10000000 +1563835735.0,11007804,10000000 +1563836335.0,11017049,10000000 +1563836935.0,11017230,10000000 +1563837535.0,11025500,10000000 +1563838135.0,11067214,10000000 +1563838735.0,11068144,10000000 +1563839335.0,11085531,10000000 +1563839935.0,11043365,10000000 +1563840535.0,11050931,10000000 +1563841135.0,11028140,10000000 +1563841735.0,11047876,10000000 +1563842335.0,11046044,10000000 +1563842935.0,11086019,10000000 +1563843535.0,11148701,10000000 +1563844135.0,11081573,10000000 +1563844735.0,11048628,10000000 +1563845335.0,11051824,10000000 +1563845935.0,11013206,10000000 +1563846535.0,10956579,10000000 +1563847135.0,10944581,10000000 +1563847735.0,10879609,10000000 +1563848335.0,10922719,10000000 +1563848935.0,10896149,10000000 +1563849535.0,10887834,10000000 +1563850135.0,10863456,10000000 +1563850735.0,10874522,10000000 +1563851335.0,10867103,10000000 +1563851935.0,10815636,10000000 +1563852535.0,10792887,10000000 +1563853135.0,10869791,10000000 +1563853735.0,10820452,10000000 +1563854335.0,10804433,10000000 +1563854935.0,10792303,10000000 +1563855535.0,10762235,10000000 +1563856135.0,10754613,10000000 +1563856735.0,10769873,10000000 +1563857335.0,10801093,10000000 +1563857935.0,10823924,10000000 +1563858535.0,10825733,10000000 +1563859135.0,10846357,10000000 +1563859735.0,10857845,10000000 +1563860335.0,10859271,10000000 +1563860935.0,10922888,10000000 +1563861535.0,10884314,10000000 +1563862135.0,10854606,10000000 +1563862735.0,10801185,10000000 +1563863335.0,10821043,10000000 +1563863935.0,10950313,10000000 +1563864535.0,10919388,10000000 +1563865135.0,10955846,10000000 +1563865735.0,10984484,10000000 +1563866335.0,10968433,10000000 +1563866935.0,10979079,10000000 +1563867535.0,10982339,10000000 +1563868135.0,11005745,10000000 +1563868735.0,11015408,10000000 +1563869335.0,11076616,10000000 +1563869935.0,11086806,10000000 +1563870535.0,11136764,10000000 +1563871135.0,11077860,10000000 +1563871735.0,11133408,10000000 +1563872335.0,11067005,10000000 +1563872935.0,11022448,10000000 +1563873535.0,11061719,10000000 +1563874135.0,11015580,10000000 +1563874735.0,11018959,10000000 +1563875335.0,11038265,10000000 +1563875935.0,11092094,10000000 +1563876535.0,11121714,10000000 +1563877135.0,11141239,10000000 +1563877735.0,11121518,10000000 +1563878335.0,11127106,10000000 +1563878935.0,11097015,10000000 +1563879535.0,11139226,10000000 +1563880135.0,11082754,10000000 +1563880735.0,11085281,10000000 +1563881335.0,11177613,10000000 +1563881935.0,11160859,10000000 +1563882535.0,11160947,10000000 +1563883135.0,11127018,10000000 +1563883735.0,11167671,10000000 +1563884335.0,11154970,10000000 +1563884935.0,11153854,10000000 +1563885535.0,11023379,10000000 +1563886135.0,11032056,10000000 +1563886735.0,11049107,10000000 +1563887335.0,11090956,10000000 +1563887935.0,11120168,10000000 +1563888535.0,11021018,10000000 +1563889135.0,11023722,10000000 +1563889735.0,10953806,10000000 +1563890335.0,10976224,10000000 +1563890935.0,11010148,10000000 +1563891535.0,10992123,10000000 +1563892135.0,11061676,10000000 +1563892735.0,11078809,10000000 +1563893335.0,10993828,10000000 +1563893935.0,11003690,10000000 +1563894535.0,11015500,10000000 +1563895135.0,11022307,10000000 +1563895735.0,10995280,10000000 +1563896335.0,10949940,10000000 +1563896935.0,11010876,10000000 +1563897535.0,11001329,10000000 +1563898135.0,10923792,10000000 +1563898735.0,10972367,10000000 +1563899335.0,11028614,10000000 +1563899935.0,10983567,10000000 +1563900535.0,11106777,10000000 +1563901135.0,11062665,10000000 +1563901735.0,11056276,10000000 +1563902335.0,11143712,10000000 +1563902935.0,11073833,10000000 +1563903535.0,11058890,10000000 +1563904135.0,11062097,10000000 +1563904735.0,11054111,10000000 +1563905335.0,11033808,10000000 +1563905935.0,11016893,10000000 +1563906535.0,11064487,10000000 +1563907135.0,11081912,10000000 +1563907735.0,11171999,10000000 +1563908335.0,11081380,10000000 +1563908935.0,11088056,10000000 +1563909535.0,11116061,10000000 +1563910135.0,11108746,10000000 +1563910735.0,11103279,10000000 +1563911335.0,11174528,10000000 +1563911935.0,11187151,10000000 +1563912535.0,11269718,10000000 +1563913135.0,11278861,10000000 +1563913735.0,11299538,10000000 +1563914335.0,11249303,10000000 +1563914935.0,11202998,10000000 +1563915535.0,11187312,10000000 +1563916135.0,11170176,10000000 +1563916735.0,11115490,10000000 +1563917335.0,11098247,10000000 +1563917935.0,11117583,10000000 +1563918535.0,11110149,10000000 +1563919135.0,11140962,10000000 +1563919735.0,11147784,10000000 +1563920335.0,11145567,10000000 +1563920935.0,11304752,10000000 +1563921535.0,11294760,10000000 +1563922135.0,11267820,10000000 +1563922735.0,11229726,10000000 +1563923335.0,11256319,10000000 +1563923935.0,11188058,10000000 +1563924535.0,11189567,10000000 +1563925135.0,11184977,10000000 +1563925735.0,11158510,10000000 +1563926335.0,11203834,10000000 +1563926935.0,11308965,10000000 +1563927535.0,11283544,10000000 +1563928135.0,11268218,10000000 +1563928735.0,11281861,10000000 +1563929335.0,11292010,10000000 +1563929935.0,11326146,10000000 +1563930535.0,11344549,10000000 +1563931135.0,11323780,10000000 +1563931735.0,11375561,10000000 +1563932335.0,11423302,10000000 +1563932935.0,11371713,10000000 +1563933535.0,11407330,10000000 +1563934135.0,11415269,10000000 +1563934735.0,11386746,10000000 +1563935335.0,11339525,10000000 +1563935935.0,11308243,10000000 +1563936535.0,11237334,10000000 +1563937135.0,11178925,10000000 +1563937735.0,11163148,10000000 +1563938335.0,11179708,10000000 +1563938935.0,11161182,10000000 +1563939535.0,11200425,10000000 +1563940135.0,11246807,10000000 +1563940735.0,11289279,10000000 +1563941335.0,11380387,10000000 +1563941935.0,11336618,10000000 +1563942535.0,11367638,10000000 +1563943135.0,11453270,10000000 +1563943735.0,11520536,10000000 +1563944335.0,11546502,10000000 +1563944935.0,11538082,10000000 +1563945535.0,11590078,10000000 +1563946135.0,11551036,10000000 +1563946735.0,11590683,10000000 +1563947335.0,11553131,10000000 +1563947935.0,11621247,10000000 +1563948535.0,11609502,10000000 +1563949135.0,11562346,10000000 +1563949735.0,11600471,10000000 +1563950335.0,11563233,10000000 +1563950935.0,11618207,10000000 +1563951535.0,11674201,10000000 +1563952135.0,11693471,10000000 +1563952735.0,11632472,10000000 +1563953335.0,11685845,10000000 +1563953935.0,11700223,10000000 +1563954535.0,11666467,10000000 +1563955135.0,11688022,10000000 +1563955735.0,11750981,10000000 +1563956335.0,11740984,10000000 +1563956935.0,11775156,10000000 +1563957535.0,11769677,10000000 +1563958135.0,11735947,10000000 +1563958735.0,11733430,10000000 +1563959335.0,11687588,10000000 +1563959935.0,11746612,10000000 +1563960535.0,11775746,10000000 +1563961135.0,11758115,10000000 +1563961735.0,11759782,10000000 +1563962335.0,11686045,10000000 +1563962935.0,11832575,10000000 +1563963535.0,11816510,10000000 +1563964135.0,11854522,10000000 +1563964735.0,11901256,10000000 +1563965335.0,11879166,10000000 +1563965935.0,11850186,10000000 +1563966535.0,11889504,10000000 +1563967135.0,11900829,10000000 +1563967735.0,11853832,10000000 +1563968335.0,11776631,10000000 +1563968935.0,11703070,10000000 +1563969535.0,11803304,10000000 +1563970135.0,11749249,10000000 +1563970735.0,11803674,10000000 +1563971335.0,11831787,10000000 +1563971935.0,11782187,10000000 +1563972535.0,11784378,10000000 +1563973135.0,11749486,10000000 +1563973735.0,11719209,10000000 +1563974335.0,11768137,10000000 +1563974935.0,11781728,10000000 +1563975535.0,11731236,10000000 +1563976135.0,11830110,10000000 +1563976735.0,11884304,10000000 +1563977335.0,11938638,10000000 +1563977935.0,11955894,10000000 +1563978535.0,12007962,10000000 +1563979135.0,11949719,10000000 +1563979735.0,11943318,10000000 +1563980335.0,11907335,10000000 +1563980935.0,11852736,10000000 +1563981535.0,11788997,10000000 +1563982135.0,11804735,10000000 +1563982735.0,11702476,10000000 +1563983335.0,11816086,10000000 +1563983935.0,11825093,10000000 +1563984535.0,11788883,10000000 +1563985135.0,11726960,10000000 +1563985735.0,11687026,10000000 +1563986335.0,11606519,10000000 +1563986935.0,11619473,10000000 +1563987535.0,11538119,10000000 +1563988135.0,11561635,10000000 +1563988735.0,11593961,10000000 +1563989335.0,11515748,10000000 +1563989935.0,11520019,10000000 +1563990535.0,11523519,10000000 +1563991135.0,11541369,10000000 +1563991735.0,11656305,10000000 +1563992335.0,11594145,10000000 +1563992935.0,11592943,10000000 +1563993535.0,11663349,10000000 +1563994135.0,11682011,10000000 +1563994735.0,11655548,10000000 +1563995335.0,11663512,10000000 +1563995935.0,11601871,10000000 +1563996535.0,11636017,10000000 +1563997135.0,11616267,10000000 +1563997735.0,11642267,10000000 +1563998335.0,11732835,10000000 +1563998935.0,11626286,10000000 +1563999535.0,11658637,10000000 +1564000135.0,11708584,10000000 +1564000735.0,11727421,10000000 +1564001335.0,11725100,10000000 +1564001935.0,11732515,10000000 +1564002535.0,11659263,10000000 +1564003135.0,11623494,10000000 +1564003735.0,11632333,10000000 +1564004335.0,11570919,10000000 +1564004935.0,11519294,10000000 +1564005535.0,11489541,10000000 +1564006135.0,11522401,10000000 +1564006735.0,11536196,10000000 +1564007335.0,11459639,10000000 +1564007935.0,11468438,10000000 +1564008535.0,11408260,10000000 +1564009135.0,11451690,10000000 +1564009735.0,11458405,10000000 +1564010335.0,11440386,10000000 +1564010935.0,11493156,10000000 +1564011535.0,11558346,10000000 +1564012135.0,11564808,10000000 +1564012735.0,11553606,10000000 +1564013335.0,11520677,10000000 +1564013935.0,11526184,10000000 +1564014535.0,11448500,10000000 +1564015135.0,11473296,10000000 +1564015735.0,11496282,10000000 +1564016335.0,11469201,10000000 +1564016935.0,11446182,10000000 +1564017535.0,11494808,10000000 +1564018135.0,11478127,10000000 +1564018735.0,11406732,10000000 +1564019335.0,11395595,10000000 +1564019935.0,11398391,10000000 +1564020535.0,11369921,10000000 +1564021135.0,11392034,10000000 +1564021735.0,11388398,10000000 +1564022335.0,11441201,10000000 +1564022935.0,11398234,10000000 +1564023535.0,11483755,10000000 +1564024135.0,11486865,10000000 +1564024735.0,11610503,10000000 +1564025335.0,11555348,10000000 +1564025935.0,11573612,10000000 +1564026535.0,11601088,10000000 +1564027135.0,11599702,10000000 +1564027735.0,11613198,10000000 +1564028335.0,11604339,10000000 +1564028935.0,11594202,10000000 +1564029535.0,11464951,10000000 +1564030135.0,11538316,10000000 +1564030735.0,11584358,10000000 +1564031335.0,11650043,10000000 +1564031935.0,11700894,10000000 +1564032535.0,11707983,10000000 +1564033135.0,11691463,10000000 +1564033735.0,11762971,10000000 +1564034335.0,11747004,10000000 +1564034935.0,11747493,10000000 +1564035535.0,11727826,10000000 +1564036135.0,11785394,10000000 +1564036735.0,11778282,10000000 +1564037335.0,11775438,10000000 +1564037935.0,11754664,10000000 +1564038535.0,11727525,10000000 +1564039135.0,11598969,10000000 +1564039735.0,11658902,10000000 +1564040335.0,11694329,10000000 +1564040935.0,11739273,10000000 +1564041535.0,11721383,10000000 +1564042135.0,11717703,10000000 +1564042735.0,11698762,10000000 +1564043335.0,11650087,10000000 +1564043935.0,11627864,10000000 +1564044535.0,11613174,10000000 +1564045135.0,11594713,10000000 +1564045735.0,11692102,10000000 +1564046335.0,11714384,10000000 +1564046935.0,11783482,10000000 +1564047535.0,11751297,10000000 +1564048135.0,11791624,10000000 +1564048735.0,11749599,10000000 +1564049335.0,11758867,10000000 +1564049935.0,11783942,10000000 +1564050535.0,11786616,10000000 +1564051135.0,11681115,10000000 +1564051735.0,11630385,10000000 +1564052335.0,11650097,10000000 +1564052935.0,11664414,10000000 +1564053535.0,11662816,10000000 +1564054135.0,11680905,10000000 +1564054735.0,11673442,10000000 +1564055335.0,11678939,10000000 +1564055935.0,11604508,10000000 +1564056535.0,11690830,10000000 +1564057135.0,11749479,10000000 +1564057735.0,11776849,10000000 +1564058335.0,11741207,10000000 +1564058935.0,11722462,10000000 +1564059535.0,11825701,10000000 +1564060135.0,11842222,10000000 +1564060735.0,11901738,10000000 +1564061335.0,11932494,10000000 +1564061935.0,11885608,10000000 +1564062535.0,11920187,10000000 +1564063135.0,11916405,10000000 +1564063735.0,11985609,10000000 +1564064335.0,12028472,10000000 +1564064935.0,12085414,10000000 +1564065535.0,12126112,10000000 +1564066135.0,12018284,10000000 +1564066735.0,12017723,10000000 +1564067335.0,12004594,10000000 +1564067935.0,12063324,10000000 +1564068535.0,12152958,10000000 +1564069135.0,12160701,10000000 +1564069735.0,12237200,10000000 +1564070335.0,12195454,10000000 +1564070935.0,12178770,10000000 +1564071535.0,12277473,10000000 +1564072135.0,12346921,10000000 +1564072735.0,12275658,10000000 +1564073335.0,12230264,10000000 +1564073935.0,12226889,10000000 +1564074535.0,12266029,10000000 +1564075135.0,12334454,10000000 +1564075735.0,12360020,10000000 +1564076335.0,12411855,10000000 +1564076935.0,12368084,10000000 +1564077535.0,12366922,10000000 +1564078135.0,12367626,10000000 +1564078735.0,12383425,10000000 +1564079335.0,12352946,10000000 +1564079935.0,12304019,10000000 +1564080535.0,12310754,10000000 +1564081135.0,12302531,10000000 +1564081735.0,12295645,10000000 +1564082335.0,12309681,10000000 +1564082935.0,12331057,10000000 +1564083535.0,12297955,10000000 +1564084135.0,12232165,10000000 +1564084735.0,12287368,10000000 +1564085335.0,12315481,10000000 +1564085935.0,12405226,10000000 +1564086535.0,12453357,10000000 +1564087135.0,12465333,10000000 +1564087735.0,12484875,10000000 +1564088335.0,12502536,10000000 +1564088935.0,12515053,10000000 +1564089535.0,12480335,10000000 +1564090135.0,12491480,10000000 +1564090735.0,12550539,10000000 +1564091335.0,12568503,10000000 +1564091935.0,12615205,10000000 +1564092535.0,12665473,10000000 +1564093135.0,12594782,10000000 +1564093735.0,12597339,10000000 +1564094335.0,12552548,10000000 +1564094935.0,12563153,10000000 +1564095535.0,12525078,10000000 +1564096135.0,12517213,10000000 +1564096735.0,12483342,10000000 +1564097335.0,12505550,10000000 +1564097935.0,12491353,10000000 +1564098535.0,12492086,10000000 +1564099135.0,12475684,10000000 +1564099735.0,12514181,10000000 +1564100335.0,12523725,10000000 +1564100935.0,12581699,10000000 +1564101535.0,12541590,10000000 +1564102135.0,12533923,10000000 +1564102735.0,12477449,10000000 +1564103335.0,12467224,10000000 +1564103935.0,12449804,10000000 +1564104535.0,12524035,10000000 +1564105135.0,12561953,10000000 +1564105735.0,12526996,10000000 +1564106335.0,12503798,10000000 +1564106935.0,12527703,10000000 +1564107535.0,12509367,10000000 +1564108135.0,12475398,10000000 +1564108735.0,12549952,10000000 +1564109335.0,12524114,10000000 +1564109935.0,12480870,10000000 +1564110535.0,12518003,10000000 +1564111135.0,12569471,10000000 +1564111735.0,12545291,10000000 +1564112335.0,12583982,10000000 +1564112935.0,12636330,10000000 +1564113535.0,12684129,10000000 +1564114135.0,12691163,10000000 +1564114735.0,12661810,10000000 +1564115335.0,12633353,10000000 +1564115935.0,12596126,10000000 +1564116535.0,12680797,10000000 +1564117135.0,12787026,10000000 +1564117735.0,12772355,10000000 +1564118335.0,12768403,10000000 +1564118935.0,12698846,10000000 +1564119535.0,12772867,10000000 +1564120135.0,12731169,10000000 +1564120735.0,12714305,10000000 +1564121335.0,12809998,10000000 +1564121935.0,12835047,10000000 +1564122535.0,12791919,10000000 +1564123135.0,12780375,10000000 +1564123735.0,12848741,10000000 +1564124335.0,12819469,10000000 +1564124935.0,12796799,10000000 +1564125535.0,12751135,10000000 +1564126135.0,12715293,10000000 +1564126735.0,12707154,10000000 +1564127335.0,12802249,10000000 +1564127935.0,12875838,10000000 +1564128535.0,12820274,10000000 +1564129135.0,12763734,10000000 +1564129735.0,12801452,10000000 +1564130335.0,12792102,10000000 +1564130935.0,12782651,10000000 +1564131535.0,12837731,10000000 +1564132135.0,12867355,10000000 +1564132735.0,12893218,10000000 +1564133335.0,12950337,10000000 +1564133935.0,12968731,10000000 +1564134535.0,13064698,10000000 +1564135135.0,13078364,10000000 +1564135735.0,13122549,10000000 +1564136335.0,13123925,10000000 +1564136935.0,13212391,10000000 +1564137535.0,13212480,10000000 +1564138135.0,13251608,10000000 +1564138735.0,13211048,10000000 +1564139335.0,13073562,10000000 +1564139935.0,13065884,10000000 +1564140535.0,12993101,10000000 +1564141135.0,13004790,10000000 +1564141735.0,12910824,10000000 +1564142335.0,12962552,10000000 +1564142935.0,12917140,10000000 +1564143535.0,12939262,10000000 +1564144135.0,12933274,10000000 +1564144735.0,12972479,10000000 +1564145335.0,12921546,10000000 +1564145935.0,12912603,10000000 +1564146535.0,12891209,10000000 +1564147135.0,12893302,10000000 +1564147735.0,12891971,10000000 +1564148335.0,12941249,10000000 +1564148935.0,12856647,10000000 +1564149535.0,12860560,10000000 +1564150135.0,12789194,10000000 +1564150735.0,12820609,10000000 +1564151335.0,12806866,10000000 +1564151935.0,12823851,10000000 +1564152535.0,12883588,10000000 +1564153135.0,12921743,10000000 +1564153735.0,12922874,10000000 +1564154335.0,12878126,10000000 +1564154935.0,12946319,10000000 +1564155535.0,12958586,10000000 +1564156135.0,13065551,10000000 +1564156735.0,12990356,10000000 +1564157335.0,12959807,10000000 +1564157935.0,12995925,10000000 +1564158535.0,12962308,10000000 +1564159135.0,12893616,10000000 +1564159735.0,12898964,10000000 +1564160335.0,12955432,10000000 +1564160935.0,12952912,10000000 +1564161535.0,12949881,10000000 +1564162135.0,12916092,10000000 +1564162735.0,12938892,10000000 +1564163335.0,12827834,10000000 +1564163935.0,12652826,10000000 +1564164535.0,12645385,10000000 +1564165135.0,12614643,10000000 +1564165735.0,12677132,10000000 +1564166335.0,12679949,10000000 +1564166935.0,12642906,10000000 +1564167535.0,12676472,10000000 +1564168135.0,12726427,10000000 +1564168735.0,12779296,10000000 +1564169335.0,12710607,10000000 +1564169935.0,12803341,10000000 +1564170535.0,12838270,10000000 +1564171135.0,12886238,10000000 +1564171735.0,12877024,10000000 +1564172335.0,12892404,10000000 +1564172935.0,12778035,10000000 +1564173535.0,12844820,10000000 +1564174135.0,12841771,10000000 +1564174735.0,12844366,10000000 +1564175335.0,12872605,10000000 +1564175935.0,12858121,10000000 +1564176535.0,12883335,10000000 +1564177135.0,12796598,10000000 +1564177735.0,12800628,10000000 +1564178335.0,12778831,10000000 +1564178935.0,12951656,10000000 +1564179535.0,12930710,10000000 +1564180135.0,12902819,10000000 +1564180735.0,12781767,10000000 +1564181335.0,12826939,10000000 +1564181935.0,12914211,10000000 +1564182535.0,12898775,10000000 +1564183135.0,12800353,10000000 +1564183735.0,12797527,10000000 +1564184335.0,12729073,10000000 +1564184935.0,12705208,10000000 +1564185535.0,12673487,10000000 +1564186135.0,12636929,10000000 +1564186735.0,12638801,10000000 +1564187335.0,12702209,10000000 +1564187935.0,12710705,10000000 +1564188535.0,12688607,10000000 +1564189135.0,12720791,10000000 +1564189735.0,12783680,10000000 +1564190335.0,12727093,10000000 +1564190935.0,12766940,10000000 +1564191535.0,12802105,10000000 +1564192135.0,12953934,10000000 +1564192735.0,12988225,10000000 +1564193335.0,13073375,10000000 +1564193935.0,13140354,10000000 +1564194535.0,13124235,10000000 +1564195135.0,13191731,10000000 +1564195735.0,13153920,10000000 +1564196335.0,13162542,10000000 +1564196935.0,12995261,10000000 +1564197535.0,12999493,10000000 +1564198135.0,13057259,10000000 +1564198735.0,13114271,10000000 +1564199335.0,13086284,10000000 +1564199935.0,13165713,10000000 +1564200535.0,13161161,10000000 +1564201135.0,13219728,10000000 +1564201735.0,13237361,10000000 +1564202335.0,13375961,10000000 +1564202935.0,13329938,10000000 +1564203535.0,13323532,10000000 +1564204135.0,13401032,10000000 +1564204735.0,13438806,10000000 +1564205335.0,13351369,10000000 +1564205935.0,13329362,10000000 +1564206535.0,13318689,10000000 +1564207135.0,13249217,10000000 +1564207735.0,13205293,10000000 +1564208335.0,13267543,10000000 +1564208935.0,13167224,10000000 +1564209535.0,13056929,10000000 +1564210135.0,13017856,10000000 +1564210735.0,13012622,10000000 +1564211335.0,12957235,10000000 +1564211935.0,12982915,10000000 +1564212535.0,12988696,10000000 +1564213135.0,13102865,10000000 +1564213735.0,13144564,10000000 +1564214335.0,13163416,10000000 +1564214935.0,13087766,10000000 +1564215535.0,13090390,10000000 +1564216135.0,13095290,10000000 +1564216735.0,13135819,10000000 +1564217335.0,13018894,10000000 +1564217935.0,12981126,10000000 +1564218535.0,12964801,10000000 +1564219135.0,13008253,10000000 +1564219735.0,13051469,10000000 +1564220335.0,13016867,10000000 +1564220935.0,12953346,10000000 +1564221535.0,12920507,10000000 +1564222135.0,13014273,10000000 +1564222735.0,13060895,10000000 +1564223335.0,13071073,10000000 +1564223935.0,13051935,10000000 +1564224535.0,13043224,10000000 +1564225135.0,13094055,10000000 +1564225735.0,13070197,10000000 +1564226335.0,13052196,10000000 +1564226935.0,13032300,10000000 +1564227535.0,13067189,10000000 +1564228135.0,13051548,10000000 +1564228735.0,13073946,10000000 +1564229335.0,13171817,10000000 +1564229935.0,13246803,10000000 +1564230535.0,13341562,10000000 +1564231135.0,13327781,10000000 +1564231735.0,13373945,10000000 +1564232335.0,13430878,10000000 +1564232935.0,13469618,10000000 +1564233535.0,13571151,10000000 +1564234135.0,13566247,10000000 +1564234735.0,13532025,10000000 +1564235335.0,13555627,10000000 +1564235935.0,13548301,10000000 +1564236535.0,13633073,10000000 +1564237135.0,13619104,10000000 +1564237735.0,13586876,10000000 +1564238335.0,13605331,10000000 +1564238935.0,13590044,10000000 +1564239535.0,13515991,10000000 +1564240135.0,13523208,10000000 +1564240735.0,13637873,10000000 +1564241335.0,13550134,10000000 +1564241935.0,13529142,10000000 +1564242535.0,13504849,10000000 +1564243135.0,13451906,10000000 +1564243735.0,13508296,10000000 +1564244335.0,13529692,10000000 +1564244935.0,13582924,10000000 +1564245535.0,13652190,10000000 +1564246135.0,13673586,10000000 +1564246735.0,13783015,10000000 +1564247335.0,13865501,10000000 +1564247935.0,13804028,10000000 +1564248535.0,13813295,10000000 +1564249135.0,13827450,10000000 +1564249735.0,13805587,10000000 +1564250335.0,13814293,10000000 +1564250935.0,13784804,10000000 +1564251535.0,13796543,10000000 +1564252135.0,13696645,10000000 +1564252735.0,13640536,10000000 +1564253335.0,13680953,10000000 +1564253935.0,13734344,10000000 +1564254535.0,13822027,10000000 +1564255135.0,13872811,10000000 +1564255735.0,13947626,10000000 +1564256335.0,13913469,10000000 +1564256935.0,13826811,10000000 +1564257535.0,13907352,10000000 +1564258135.0,13971235,10000000 +1564258735.0,13946051,10000000 +1564259335.0,13976649,10000000 +1564259935.0,13971738,10000000 +1564260535.0,13944718,10000000 +1564261135.0,14069987,10000000 +1564261735.0,14144620,10000000 +1564262335.0,14215939,10000000 +1564262935.0,14272366,10000000 +1564263535.0,14356562,10000000 +1564264135.0,14474067,10000000 +1564264735.0,14486773,10000000 +1564265335.0,14475208,10000000 +1564265935.0,14505550,10000000 +1564266535.0,14516184,10000000 +1564267135.0,14448364,10000000 +1564267735.0,14554523,10000000 +1564268335.0,14511276,10000000 +1564268935.0,14515533,10000000 +1564269535.0,14550662,10000000 +1564270135.0,14476042,10000000 +1564270735.0,14488589,10000000 +1564271335.0,14401711,10000000 +1564271935.0,14370361,10000000 +1564272535.0,14302126,10000000 +1564273135.0,14316457,10000000 +1564273735.0,14294893,10000000 +1564274335.0,14275821,10000000 +1564274935.0,14283728,10000000 +1564275535.0,14329345,10000000 +1564276135.0,14461757,10000000 +1564276735.0,14525646,10000000 +1564277335.0,14513860,10000000 +1564277935.0,14582419,10000000 +1564278535.0,14581319,10000000 +1564279135.0,14543086,10000000 +1564279735.0,14549983,10000000 +1564280335.0,14576019,10000000 +1564280935.0,14510335,10000000 +1564281535.0,14481267,10000000 +1564282135.0,14447419,10000000 +1564282735.0,14412997,10000000 +1564283335.0,14427318,10000000 +1564283935.0,14265844,10000000 +1564284535.0,14232045,10000000 +1564285135.0,14289112,10000000 +1564285735.0,14395177,10000000 +1564286335.0,14372662,10000000 +1564286935.0,14320124,10000000 +1564287535.0,14344336,10000000 +1564288135.0,14369070,10000000 +1564288735.0,14308407,10000000 +1564289335.0,14355630,10000000 +1564289935.0,14335798,10000000 +1564290535.0,14350913,10000000 +1564291135.0,14380731,10000000 +1564291735.0,14411982,10000000 +1564292335.0,14402213,10000000 +1564292935.0,14416741,10000000 +1564293535.0,14437957,10000000 +1564294135.0,14547848,10000000 +1564294735.0,14523566,10000000 +1564295335.0,14542915,10000000 +1564295935.0,14561716,10000000 +1564296535.0,14609868,10000000 +1564297135.0,14609956,10000000 +1564297735.0,14694501,10000000 +1564298335.0,14718846,10000000 +1564298935.0,14672463,10000000 +1564299535.0,14829770,10000000 +1564300135.0,14731982,10000000 +1564300735.0,14741766,10000000 +1564301335.0,14841957,10000000 +1564301935.0,14919334,10000000 +1564302535.0,14921497,10000000 +1564303135.0,14904700,10000000 +1564303735.0,14966070,10000000 +1564304335.0,14747756,10000000 +1564304935.0,14708143,10000000 +1564305535.0,14772666,10000000 +1564306135.0,14890329,10000000 +1564306735.0,14884080,10000000 +1564307335.0,14902180,10000000 +1564307935.0,14822807,10000000 +1564308535.0,14736744,10000000 +1564309135.0,14772062,10000000 +1564309735.0,14744493,10000000 +1564310335.0,14682191,10000000 +1564310935.0,14581897,10000000 +1564311535.0,14530811,10000000 +1564312135.0,14450587,10000000 +1564312735.0,14510079,10000000 +1564313335.0,14440869,10000000 +1564313935.0,14417710,10000000 +1564314535.0,14479531,10000000 +1564315135.0,14455039,10000000 +1564315735.0,14576720,10000000 +1564316335.0,14687741,10000000 +1564316935.0,14692228,10000000 +1564317535.0,14625211,10000000 +1564318135.0,14706178,10000000 +1564318735.0,14636907,10000000 +1564319335.0,14597261,10000000 +1564319935.0,14651154,10000000 +1564320535.0,14687011,10000000 +1564321135.0,14737518,10000000 +1564321735.0,14728626,10000000 +1564322335.0,14877803,10000000 +1564322935.0,14968272,10000000 +1564323535.0,14965528,10000000 +1564324135.0,14935962,10000000 +1564324735.0,14982312,10000000 +1564325335.0,14835251,10000000 +1564325935.0,14900379,10000000 +1564326535.0,14904009,10000000 +1564327135.0,14854879,10000000 +1564327735.0,14670710,10000000 +1564328335.0,14595292,10000000 +1564328935.0,14661090,10000000 +1564329535.0,14724902,10000000 +1564330135.0,14706427,10000000 +1564330735.0,14748226,10000000 +1564331335.0,14801983,10000000 +1564331935.0,14835818,10000000 +1564332535.0,14806467,10000000 +1564333135.0,14785992,10000000 +1564333735.0,14769941,10000000 +1564334335.0,14807881,10000000 +1564334935.0,14863690,10000000 +1564335535.0,14880508,10000000 +1564336135.0,14877797,10000000 +1564336735.0,14852100,10000000 +1564337335.0,14846726,10000000 +1564337935.0,14885056,10000000 +1564338535.0,14888774,10000000 +1564339135.0,14962870,10000000 +1564339735.0,14865587,10000000 +1564340335.0,14902758,10000000 +1564340935.0,14891807,10000000 +1564341535.0,14878034,10000000 +1564342135.0,14800079,10000000 +1564342735.0,14749814,10000000 +1564343335.0,14676963,10000000 +1564343935.0,14678768,10000000 +1564344535.0,14689050,10000000 +1564345135.0,14603331,10000000 +1564345735.0,14687985,10000000 +1564346335.0,14656916,10000000 +1564346935.0,14709093,10000000 +1564347535.0,14792211,10000000 +1564348135.0,14778652,10000000 +1564348735.0,14734428,10000000 +1564349335.0,14628864,10000000 +1564349935.0,14604774,10000000 +1564350535.0,14627945,10000000 +1564351135.0,14783488,10000000 +1564351735.0,14792334,10000000 +1564352335.0,14725272,10000000 +1564352935.0,14811826,10000000 +1564353535.0,14863379,10000000 +1564354135.0,14824521,10000000 +1564354735.0,14896176,10000000 +1564355335.0,14809910,10000000 +1564355935.0,14876894,10000000 +1564356535.0,14908363,10000000 +1564357135.0,15154223,10000000 +1564357735.0,15135581,10000000 +1564358335.0,15143928,10000000 +1564358935.0,15227039,10000000 +1564359535.0,15294179,10000000 +1564360135.0,15250358,10000000 +1564360735.0,15244550,10000000 +1564361335.0,15257619,10000000 +1564361935.0,15314477,10000000 +1564362535.0,15250519,10000000 +1564363135.0,15271935,10000000 +1564363735.0,15315393,10000000 +1564364335.0,15445006,10000000 +1564364935.0,15540681,10000000 +1564365535.0,15657652,10000000 +1564366135.0,15607351,10000000 +1564366735.0,15555635,10000000 +1564367335.0,15602481,10000000 +1564367935.0,15472098,10000000 +1564368535.0,15423407,10000000 +1564369135.0,15439292,10000000 +1564369735.0,15399623,10000000 +1564370335.0,15282442,10000000 +1564370935.0,15305595,10000000 +1564371535.0,15237638,10000000 +1564372135.0,15305377,10000000 +1564372735.0,15275960,10000000 +1564373335.0,15215172,10000000 +1564373935.0,15229011,10000000 +1564374535.0,15150550,10000000 +1564375135.0,15143741,10000000 +1564375735.0,15072847,10000000 +1564376335.0,15053058,10000000 +1564376935.0,15039393,10000000 +1564377535.0,15065648,10000000 +1564378135.0,14954966,10000000 +1564378735.0,14980129,10000000 +1564379335.0,14892407,10000000 +1564379935.0,14901042,10000000 +1564380535.0,14917539,10000000 +1564381135.0,14772203,10000000 +1564381735.0,14717198,10000000 +1564382335.0,14708529,10000000 +1564382935.0,14752397,10000000 +1564383535.0,14739108,10000000 +1564384135.0,14809693,10000000 +1564384735.0,14930943,10000000 +1564385335.0,14807057,10000000 +1564385935.0,14763073,10000000 +1564386535.0,14756281,10000000 +1564387135.0,14747965,10000000 +1564387735.0,14732963,10000000 +1564388335.0,14815371,10000000 +1564388935.0,14884742,10000000 +1564389535.0,14895508,10000000 +1564390135.0,14820810,10000000 +1564390735.0,14763841,10000000 +1564391335.0,14734133,10000000 +1564391935.0,14679430,10000000 +1564392535.0,14772494,10000000 +1564393135.0,14826273,10000000 +1564393735.0,14819157,10000000 +1564394335.0,14779959,10000000 +1564394935.0,14834176,10000000 +1564395535.0,14716455,10000000 +1564396135.0,14654139,10000000 +1564396735.0,14750219,10000000 +1564397335.0,14727409,10000000 +1564397935.0,14676381,10000000 +1564398535.0,14653170,10000000 +1564399135.0,14629085,10000000 +1564399735.0,14615227,10000000 +1564400335.0,14614498,10000000 +1564400935.0,14768233,10000000 +1564401535.0,14695202,10000000 +1564402135.0,14684883,10000000 +1564402735.0,14817340,10000000 +1564403335.0,14752160,10000000 +1564403935.0,14759230,10000000 +1564404535.0,14792198,10000000 +1564405135.0,14689408,10000000 +1564405735.0,14748199,10000000 +1564406335.0,14659208,10000000 +1564406935.0,14682657,10000000 +1564407535.0,14578285,10000000 +1564408135.0,14565208,10000000 +1564408735.0,14571473,10000000 +1564409335.0,14521367,10000000 +1564409935.0,14660301,10000000 +1564410535.0,14673824,10000000 +1564411135.0,14753994,10000000 +1564411735.0,14743903,10000000 +1564412335.0,14735903,10000000 +1564412935.0,14652258,10000000 +1564413535.0,14619507,10000000 +1564414135.0,14631697,10000000 +1564414735.0,14660373,10000000 +1564415335.0,14706286,10000000 +1564415935.0,14715151,10000000 +1564416535.0,14653716,10000000 +1564417135.0,14694720,10000000 +1564417735.0,14743329,10000000 +1564418335.0,14708897,10000000 +1564418935.0,14688436,10000000 +1564419535.0,14620300,10000000 +1564420135.0,14629278,10000000 +1564420735.0,14629708,10000000 +1564421335.0,14728147,10000000 +1564421935.0,14713487,10000000 +1564422535.0,14658655,10000000 +1564423135.0,14647129,10000000 +1564423735.0,14628449,10000000 +1564424335.0,14577432,10000000 +1564424935.0,14596648,10000000 +1564425535.0,14664882,10000000 +1564426135.0,14669421,10000000 +1564426735.0,14690242,10000000 +1564427335.0,14740671,10000000 +1564427935.0,14740379,10000000 +1564428535.0,14820753,10000000 +1564429135.0,14782996,10000000 +1564429735.0,14807063,10000000 +1564430335.0,14807949,10000000 +1564430935.0,14752380,10000000 +1564431535.0,14764448,10000000 +1564432135.0,14769162,10000000 +1564432735.0,14761797,10000000 +1564433335.0,14798031,10000000 +1564433935.0,14843148,10000000 +1564434535.0,14870990,10000000 +1564435135.0,14867836,10000000 +1564435735.0,14841562,10000000 +1564436335.0,14822433,10000000 +1564436935.0,14798665,10000000 +1564437535.0,14765980,10000000 +1564438135.0,14659420,10000000 +1564438735.0,14536241,10000000 +1564439335.0,14463531,10000000 +1564439935.0,14401976,10000000 +1564440535.0,14481812,10000000 +1564441135.0,14404524,10000000 +1564441735.0,14304071,10000000 +1564442335.0,14300972,10000000 +1564442935.0,14345492,10000000 +1564443535.0,14402971,10000000 +1564444135.0,14412868,10000000 +1564444735.0,14426384,10000000 +1564445335.0,14510735,10000000 +1564445935.0,14464699,10000000 +1564446535.0,14451922,10000000 +1564447135.0,14405597,10000000 +1564447735.0,14451160,10000000 +1564448335.0,14414278,10000000 +1564448935.0,14398534,10000000 +1564449535.0,14414668,10000000 +1564450135.0,14376373,10000000 +1564450735.0,14241971,10000000 +1564451335.0,14283613,10000000 +1564451935.0,14292545,10000000 +1564452535.0,14326074,10000000 +1564453135.0,14271368,10000000 +1564453735.0,14226233,10000000 +1564454335.0,14228991,10000000 +1564454935.0,14261121,10000000 +1564455535.0,14324016,10000000 +1564456135.0,14283258,10000000 +1564456735.0,14198806,10000000 +1564457335.0,14171502,10000000 +1564457935.0,14219104,10000000 +1564458535.0,14137324,10000000 +1564459135.0,14209358,10000000 +1564459735.0,14185342,10000000 +1564460335.0,14179755,10000000 +1564460935.0,14184518,10000000 +1564461535.0,14220797,10000000 +1564462135.0,14254451,10000000 +1564462735.0,14249790,10000000 +1564463335.0,14230231,10000000 +1564463935.0,14261621,10000000 +1564464535.0,14271654,10000000 +1564465135.0,14165069,10000000 +1564465735.0,14247247,10000000 +1564466335.0,14315495,10000000 +1564466935.0,14300662,10000000 +1564467535.0,14433288,10000000 +1564468135.0,14413448,10000000 +1564468735.0,14408256,10000000 +1564469335.0,14372777,10000000 +1564469935.0,14383083,10000000 +1564470535.0,14324168,10000000 +1564471135.0,14275582,10000000 +1564471735.0,14321151,10000000 +1564472335.0,14208623,10000000 +1564472935.0,14171180,10000000 +1564473535.0,14123033,10000000 +1564474135.0,14115374,10000000 +1564474735.0,14054624,10000000 +1564475335.0,14090969,10000000 +1564475935.0,14068826,10000000 +1564476535.0,14001860,10000000 +1564477135.0,14027247,10000000 +1564477735.0,14190118,10000000 +1564478335.0,14247681,10000000 +1564478935.0,14253216,10000000 +1564479535.0,14327529,10000000 +1564480135.0,14399954,10000000 +1564480735.0,14286208,10000000 +1564481335.0,14343356,10000000 +1564481935.0,14297397,10000000 +1564482535.0,14429945,10000000 +1564483135.0,14387306,10000000 +1564483735.0,14351310,10000000 +1564484335.0,14407520,10000000 +1564484935.0,14395439,10000000 +1564485535.0,14477621,10000000 +1564486135.0,14416213,10000000 +1564486735.0,14446176,10000000 +1564487335.0,14488669,10000000 +1564487935.0,14484333,10000000 +1564488535.0,14504626,10000000 +1564489135.0,14494917,10000000 +1564489735.0,14428763,10000000 +1564490335.0,14434173,10000000 +1564490935.0,14582072,10000000 +1564491535.0,14605738,10000000 +1564492135.0,14637556,10000000 +1564492735.0,14610148,10000000 +1564493335.0,14530144,10000000 +1564493935.0,14565241,10000000 +1564494535.0,14437220,10000000 +1564495135.0,14397959,10000000 +1564495735.0,14371684,10000000 +1564496335.0,14439208,10000000 +1564496935.0,14531208,10000000 +1564497535.0,14587783,10000000 +1564498135.0,14543332,10000000 +1564498735.0,14445233,10000000 +1564499335.0,14474281,10000000 +1564499935.0,14405262,10000000 +1564500535.0,14405129,10000000 +1564501135.0,14360249,10000000 +1564501735.0,14353689,10000000 +1564502335.0,14359847,10000000 +1564502935.0,14237416,10000000 +1564503535.0,14213322,10000000 +1564504135.0,14224075,10000000 +1564504735.0,14257883,10000000 +1564505335.0,14289085,10000000 +1564505935.0,14293036,10000000 +1564506535.0,14280685,10000000 +1564507135.0,14213758,10000000 +1564507735.0,14356776,10000000 +1564508335.0,14382072,10000000 +1564508935.0,14367904,10000000 +1564509535.0,14352270,10000000 +1564510135.0,14331417,10000000 +1564510735.0,14298183,10000000 +1564511335.0,14393132,10000000 +1564511935.0,14344114,10000000 +1564512535.0,14414474,10000000 +1564513135.0,14453250,10000000 +1564513735.0,14457574,10000000 +1564514335.0,14323785,10000000 +1564514935.0,14334515,10000000 +1564515535.0,14384938,10000000 +1564516135.0,14399861,10000000 +1564516735.0,14289743,10000000 +1564517335.0,14354314,10000000 +1564517935.0,14308783,10000000 +1564518535.0,14265619,10000000 +1564519135.0,14309096,10000000 +1564519735.0,14292163,10000000 +1564520335.0,14266788,10000000 +1564520935.0,14330318,10000000 +1564521535.0,14344364,10000000 +1564522135.0,14347215,10000000 +1564522735.0,14336895,10000000 +1564523335.0,14376137,10000000 +1564523935.0,14417382,10000000 +1564524535.0,14549251,10000000 +1564525135.0,14620713,10000000 +1564525735.0,14663492,10000000 +1564526335.0,14555531,10000000 +1564526935.0,14594241,10000000 +1564527535.0,14595680,10000000 +1564528135.0,14498435,10000000 +1564528735.0,14491638,10000000 +1564529335.0,14558042,10000000 +1564529935.0,14500258,10000000 +1564530535.0,14501363,10000000 +1564531135.0,14498387,10000000 +1564531735.0,14537477,10000000 +1564532335.0,14668779,10000000 +1564532935.0,14550096,10000000 +1564533535.0,14590304,10000000 +1564534135.0,14556827,10000000 +1564534735.0,14519768,10000000 +1564535335.0,14588108,10000000 +1564535935.0,14639871,10000000 +1564536535.0,14774117,10000000 +1564537135.0,14594117,10000000 +1564537735.0,14605996,10000000 +1564538335.0,14604670,10000000 +1564538935.0,14540226,10000000 +1564539535.0,14469103,10000000 +1564540135.0,14527330,10000000 +1564540735.0,14447874,10000000 +1564541335.0,14510229,10000000 +1564541935.0,14510507,10000000 +1564542535.0,14523874,10000000 +1564543135.0,14473353,10000000 +1564543735.0,14466997,10000000 +1564544335.0,14423835,10000000 +1564544935.0,14339846,10000000 +1564545535.0,14323433,10000000 +1564546135.0,14339572,10000000 +1564546735.0,14372554,10000000 +1564547335.0,14293914,10000000 +1564547935.0,14229001,10000000 +1564548535.0,14203976,10000000 +1564549135.0,14294468,10000000 +1564549735.0,14298252,10000000 +1564550335.0,14380415,10000000 +1564550935.0,14367170,10000000 +1564551535.0,14375300,10000000 +1564552135.0,14355584,10000000 +1564552735.0,14509847,10000000 +1564553335.0,14423889,10000000 +1564553935.0,14436375,10000000 +1564554535.0,14452180,10000000 +1564555135.0,14549649,10000000 +1564555735.0,14613200,10000000 +1564556335.0,14623380,10000000 +1564556935.0,14693478,10000000 +1564557535.0,14650021,10000000 +1564558135.0,14742082,10000000 +1564558735.0,14745422,10000000 +1564559335.0,14726034,10000000 +1564559935.0,14786610,10000000 +1564560535.0,14818483,10000000 +1564561135.0,14830412,10000000 +1564561735.0,14788822,10000000 +1564562335.0,14855606,10000000 +1564562935.0,14911658,10000000 +1564563535.0,14922702,10000000 +1564564135.0,15047238,10000000 +1564564735.0,15061485,10000000 +1564565335.0,15017571,10000000 +1564565935.0,15040477,10000000 +1564566535.0,15044606,10000000 +1564567135.0,14910593,10000000 +1564567735.0,14921315,10000000 +1564568335.0,14861741,10000000 +1564568935.0,14858919,10000000 +1564569535.0,14855496,10000000 +1564570135.0,14860211,10000000 +1564570735.0,14786007,10000000 +1564571335.0,14855949,10000000 +1564571935.0,14737454,10000000 +1564572535.0,14641248,10000000 +1564573135.0,14515062,10000000 +1564573735.0,14568381,10000000 +1564574335.0,14577412,10000000 +1564574935.0,14587587,10000000 +1564575535.0,14528765,10000000 +1564576135.0,14535429,10000000 +1564576735.0,14512999,10000000 +1564577335.0,14554534,10000000 +1564577935.0,14625693,10000000 +1564578535.0,14587850,10000000 +1564579135.0,14638017,10000000 +1564579735.0,14685095,10000000 +1564580335.0,14683581,10000000 +1564580935.0,14628415,10000000 +1564581535.0,14637760,10000000 +1564582135.0,14633309,10000000 +1564582735.0,14626442,10000000 +1564583335.0,14542149,10000000 +1564583935.0,14487764,10000000 +1564584535.0,14545767,10000000 +1564585135.0,14643110,10000000 +1564585735.0,14619646,10000000 +1564586335.0,14722740,10000000 +1564586935.0,14754224,10000000 +1564587535.0,14720482,10000000 +1564588135.0,14778668,10000000 +1564588735.0,14785129,10000000 +1564589335.0,14729401,10000000 +1564589935.0,14793378,10000000 +1564590535.0,14756572,10000000 +1564591135.0,14785679,10000000 +1564591735.0,14861474,10000000 +1564592335.0,14853839,10000000 +1564592935.0,14764847,10000000 +1564593535.0,14726564,10000000 +1564594135.0,14681452,10000000 +1564594735.0,14613012,10000000 +1564595335.0,14619875,10000000 +1564595935.0,14635948,10000000 +1564596535.0,14654481,10000000 +1564597135.0,14590007,10000000 +1564597735.0,14577332,10000000 +1564598335.0,14674922,10000000 +1564598935.0,14564131,10000000 +1564599535.0,14584736,10000000 +1564600135.0,14659876,10000000 +1564600735.0,14645686,10000000 +1564601335.0,14710718,10000000 +1564601935.0,14688006,10000000 +1564602535.0,14757775,10000000 +1564603135.0,14687944,10000000 +1564603735.0,14697588,10000000 +1564604335.0,14858791,10000000 +1564604935.0,14862463,10000000 +1564605535.0,14934142,10000000 +1564606135.0,14812539,10000000 +1564606735.0,14768252,10000000 +1564607335.0,14824639,10000000 +1564607935.0,14893752,10000000 +1564608535.0,14846151,10000000 +1564609135.0,14917747,10000000 +1564609735.0,14973979,10000000 +1564610335.0,14937181,10000000 +1564610935.0,14922321,10000000 +1564611535.0,14906615,10000000 +1564612135.0,14929768,10000000 +1564612735.0,14911065,10000000 +1564613335.0,14825032,10000000 +1564613935.0,14735500,10000000 +1564614535.0,14746237,10000000 +1564615135.0,14786997,10000000 +1564615735.0,14739674,10000000 +1564616335.0,14658949,10000000 +1564616935.0,14638086,10000000 +1564617535.0,14673147,10000000 +1564618135.0,14615560,10000000 +1564618735.0,14620065,10000000 +1564619335.0,14619351,10000000 +1564619935.0,14615696,10000000 +1564620535.0,14577455,10000000 +1564621135.0,14612279,10000000 +1564621735.0,14632674,10000000 +1564622335.0,14730526,10000000 +1564622935.0,14593463,10000000 +1564623535.0,14605545,10000000 +1564624135.0,14597227,10000000 +1564624735.0,14686656,10000000 +1564625335.0,14670350,10000000 +1564625935.0,14665804,10000000 +1564626535.0,14655934,10000000 +1564627135.0,14629706,10000000 +1564627735.0,14611042,10000000 +1564628335.0,14574343,10000000 +1564628935.0,14556887,10000000 +1564629535.0,14493143,10000000 +1564630135.0,14461676,10000000 +1564630735.0,14564560,10000000 +1564631335.0,14396931,10000000 +1564631935.0,14453479,10000000 +1564632535.0,14402017,10000000 +1564633135.0,14330904,10000000 +1564633735.0,14366106,10000000 +1564634335.0,14433308,10000000 +1564634935.0,14464085,10000000 +1564635535.0,14533634,10000000 +1564636135.0,14485395,10000000 +1564636735.0,14454983,10000000 +1564637335.0,14490459,10000000 +1564637935.0,14548894,10000000 +1564638535.0,14540376,10000000 +1564639135.0,14537583,10000000 +1564639735.0,14536514,10000000 +1564640335.0,14606471,10000000 +1564640935.0,14549138,10000000 +1564641535.0,14561000,10000000 +1564642135.0,14549312,10000000 +1564642735.0,14512334,10000000 +1564643335.0,14456393,10000000 +1564643935.0,14320055,10000000 +1564644535.0,14286729,10000000 +1564645135.0,14212977,10000000 +1564645735.0,14232739,10000000 +1564646335.0,14211162,10000000 +1564646935.0,14174000,10000000 +1564647535.0,14180490,10000000 +1564648135.0,14210690,10000000 +1564648735.0,14272974,10000000 +1564649335.0,14280454,10000000 +1564649935.0,14364752,10000000 +1564650535.0,14239399,10000000 +1564651135.0,14273819,10000000 +1564651735.0,14250533,10000000 +1564652335.0,14236961,10000000 +1564652935.0,14256047,10000000 +1564653535.0,14215339,10000000 +1564654135.0,14234179,10000000 +1564654735.0,14184574,10000000 +1564655335.0,14133808,10000000 +1564655935.0,14077670,10000000 +1564656535.0,14084844,10000000 +1564657135.0,14127077,10000000 +1564657735.0,14045546,10000000 +1564658335.0,14000333,10000000 +1564658935.0,13966163,10000000 +1564659535.0,13930152,10000000 +1564660135.0,13850857,10000000 +1564660735.0,13903549,10000000 +1564661335.0,13906169,10000000 +1564661935.0,13917789,10000000 +1564662535.0,13959961,10000000 +1564663135.0,13979844,10000000 +1564663735.0,13980157,10000000 +1564664335.0,13870409,10000000 +1564664935.0,13819213,10000000 +1564665535.0,13759301,10000000 +1564666135.0,13716438,10000000 +1564666735.0,13653630,10000000 +1564667335.0,13675157,10000000 +1564667935.0,13686756,10000000 +1564668535.0,13737577,10000000 +1564669135.0,13732946,10000000 +1564669735.0,13755924,10000000 +1564670335.0,13792482,10000000 +1564670935.0,13776099,10000000 +1564671535.0,13741772,10000000 +1564672135.0,13824908,10000000 +1564672735.0,13908057,10000000 +1564673335.0,13937567,10000000 +1564673935.0,13923423,10000000 +1564674535.0,13951200,10000000 +1564675135.0,13981442,10000000 +1564675735.0,13932400,10000000 +1564676335.0,13922489,10000000 +1564676935.0,13921855,10000000 +1564677535.0,14049659,10000000 +1564678135.0,14164227,10000000 +1564678735.0,14243394,10000000 +1564679335.0,14263867,10000000 +1564679935.0,14360077,10000000 +1564680535.0,14402348,10000000 +1564681135.0,14364170,10000000 +1564681735.0,14324567,10000000 +1564682335.0,14417322,10000000 +1564682935.0,14237636,10000000 +1564683535.0,14188282,10000000 +1564684135.0,14150045,10000000 +1564684735.0,14132991,10000000 +1564685335.0,14062276,10000000 +1564685935.0,14019751,10000000 +1564686535.0,13971148,10000000 +1564687135.0,13943024,10000000 +1564687735.0,13997058,10000000 +1564688335.0,14058697,10000000 +1564688935.0,14049216,10000000 +1564689535.0,14014882,10000000 +1564690135.0,13950873,10000000 +1564690735.0,13948756,10000000 +1564691335.0,13879501,10000000 +1564691935.0,13831186,10000000 +1564692535.0,13796766,10000000 +1564693135.0,13843334,10000000 +1564693735.0,13779415,10000000 +1564694335.0,13767454,10000000 +1564694935.0,13800074,10000000 +1564695535.0,13726346,10000000 +1564696135.0,13714379,10000000 +1564696735.0,13636546,10000000 +1564697335.0,13599226,10000000 +1564697935.0,13678126,10000000 +1564698535.0,13670376,10000000 +1564699135.0,13723406,10000000 +1564699735.0,13813177,10000000 +1564700335.0,13763994,10000000 +1564700935.0,13808937,10000000 +1564701535.0,13824971,10000000 +1564702135.0,13908164,10000000 +1564702735.0,13881853,10000000 +1564703335.0,13863806,10000000 +1564703935.0,13911900,10000000 +1564704535.0,13959692,10000000 +1564705135.0,13952246,10000000 +1564705735.0,13891855,10000000 +1564706335.0,13840130,10000000 +1564706935.0,13841420,10000000 +1564707535.0,13872212,10000000 +1564708135.0,13834397,10000000 +1564708735.0,13841955,10000000 +1564709335.0,13805086,10000000 +1564709935.0,13809451,10000000 +1564710535.0,13769887,10000000 +1564711135.0,13804505,10000000 +1564711735.0,13844580,10000000 +1564712335.0,13845809,10000000 +1564712935.0,13874708,10000000 +1564713535.0,13977282,10000000 +1564714135.0,13958113,10000000 +1564714735.0,13991831,10000000 +1564715335.0,14002144,10000000 +1564715935.0,13949797,10000000 +1564716535.0,13931494,10000000 +1564717135.0,13873265,10000000 +1564717735.0,14034407,10000000 +1564718335.0,14012063,10000000 +1564718935.0,14037800,10000000 +1564719535.0,14036363,10000000 +1564720135.0,14148070,10000000 +1564720735.0,14242598,10000000 +1564721335.0,14125535,10000000 +1564721935.0,14113643,10000000 +1564722535.0,14085851,10000000 +1564723135.0,14137356,10000000 +1564723735.0,14172737,10000000 +1564724335.0,14138028,10000000 +1564724935.0,14090250,10000000 +1564725535.0,14154491,10000000 +1564726135.0,14151785,10000000 +1564726735.0,14189494,10000000 +1564727335.0,14207355,10000000 +1564727935.0,14176828,10000000 +1564728535.0,14214091,10000000 +1564729135.0,14179858,10000000 +1564729735.0,14175071,10000000 +1564730335.0,14127068,10000000 +1564730935.0,14162576,10000000 +1564731535.0,14228384,10000000 +1564732135.0,14258369,10000000 +1564732735.0,14233735,10000000 +1564733335.0,14193632,10000000 +1564733935.0,14270416,10000000 +1564734535.0,14219519,10000000 +1564735135.0,14178995,10000000 +1564735735.0,14285004,10000000 +1564736335.0,14220956,10000000 +1564736935.0,14171971,10000000 +1564737535.0,14168915,10000000 +1564738135.0,14134200,10000000 +1564738735.0,14152665,10000000 +1564739335.0,14227165,10000000 +1564739935.0,14254266,10000000 +1564740535.0,14443227,10000000 +1564741135.0,14317181,10000000 +1564741735.0,14284052,10000000 +1564742335.0,14288803,10000000 +1564742935.0,14287561,10000000 +1564743535.0,14217259,10000000 +1564744135.0,14228139,10000000 +1564744735.0,14315599,10000000 +1564745335.0,14267637,10000000 +1564745935.0,14201225,10000000 +1564746535.0,14102436,10000000 +1564747135.0,14122860,10000000 +1564747735.0,14182089,10000000 +1564748335.0,14229198,10000000 +1564748935.0,14337522,10000000 +1564749535.0,14357190,10000000 +1564750135.0,14338327,10000000 +1564750735.0,14357931,10000000 +1564751335.0,14229456,10000000 +1564751935.0,14245182,10000000 +1564752535.0,14215637,10000000 +1564753135.0,14175610,10000000 +1564753735.0,14272614,10000000 +1564754335.0,14241263,10000000 +1564754935.0,14295850,10000000 +1564755535.0,14270997,10000000 +1564756135.0,14235506,10000000 +1564756735.0,14214454,10000000 +1564757335.0,14131040,10000000 +1564757935.0,14135721,10000000 +1564758535.0,14090760,10000000 +1564759135.0,14045295,10000000 +1564759735.0,14098346,10000000 +1564760335.0,14084918,10000000 +1564760935.0,14047589,10000000 +1564761535.0,14054136,10000000 +1564762135.0,14025337,10000000 +1564762735.0,13957673,10000000 +1564763335.0,14049572,10000000 +1564763935.0,14046540,10000000 +1564764535.0,14015697,10000000 +1564765135.0,14021722,10000000 +1564765735.0,13966977,10000000 +1564766335.0,13933314,10000000 +1564766935.0,13928612,10000000 +1564767535.0,13901125,10000000 +1564768135.0,13780603,10000000 +1564768735.0,13769800,10000000 +1564769335.0,13824893,10000000 +1564769935.0,13842420,10000000 +1564770535.0,13790741,10000000 +1564771135.0,13606116,10000000 +1564771735.0,13654759,10000000 +1564772335.0,13624278,10000000 +1564772935.0,13638809,10000000 +1564773535.0,13645992,10000000 +1564774135.0,13614154,10000000 +1564774735.0,13710418,10000000 +1564775335.0,13655277,10000000 +1564775935.0,13719798,10000000 +1564776535.0,13751207,10000000 +1564777135.0,13758425,10000000 +1564777735.0,13808063,10000000 +1564778335.0,13792663,10000000 +1564778935.0,13756643,10000000 +1564779535.0,13790671,10000000 +1564780135.0,13870565,10000000 +1564780735.0,13925578,10000000 +1564781335.0,13977541,10000000 +1564781935.0,14034048,10000000 +1564782535.0,14095974,10000000 +1564783135.0,14008794,10000000 +1564783735.0,13997081,10000000 +1564784335.0,13865086,10000000 +1564784935.0,13854775,10000000 +1564785535.0,13901995,10000000 +1564786135.0,13842630,10000000 +1564786735.0,13847242,10000000 +1564787335.0,13770850,10000000 +1564787935.0,13754181,10000000 +1564788535.0,13829679,10000000 +1564789135.0,13839484,10000000 +1564789735.0,13865260,10000000 +1564790335.0,13826052,10000000 +1564790935.0,13759847,10000000 +1564791535.0,13815955,10000000 +1564792135.0,13823989,10000000 +1564792735.0,13842315,10000000 +1564793335.0,13789231,10000000 +1564793935.0,13735267,10000000 +1564794535.0,13753687,10000000 +1564795135.0,13819510,10000000 +1564795735.0,13859294,10000000 +1564796335.0,13926306,10000000 +1564796935.0,13905603,10000000 +1564797535.0,13836743,10000000 +1564798135.0,13825595,10000000 +1564798735.0,13880243,10000000 +1564799335.0,13842996,10000000 +1564799935.0,13920115,10000000 +1564800535.0,13936163,10000000 +1564801135.0,13995605,10000000 +1564801735.0,14109109,10000000 +1564802335.0,14052665,10000000 +1564802935.0,14142884,10000000 +1564803535.0,14205118,10000000 +1564804135.0,14148757,10000000 +1564804735.0,14192235,10000000 +1564805335.0,14185140,10000000 +1564805935.0,14235665,10000000 +1564806535.0,14288795,10000000 +1564807135.0,14356593,10000000 +1564807735.0,14372294,10000000 +1564808335.0,14386502,10000000 +1564808935.0,14306990,10000000 +1564809535.0,14321326,10000000 +1564810135.0,14459898,10000000 +1564810735.0,14297524,10000000 +1564811335.0,14253663,10000000 +1564811935.0,14241102,10000000 +1564812535.0,14189159,10000000 +1564813135.0,14193532,10000000 +1564813735.0,14194276,10000000 +1564814335.0,14161804,10000000 +1564814935.0,14141893,10000000 +1564815535.0,14005023,10000000 +1564816135.0,14050750,10000000 +1564816735.0,14079773,10000000 +1564817335.0,14089122,10000000 +1564817935.0,14116944,10000000 +1564818535.0,14144214,10000000 +1564819135.0,14229468,10000000 +1564819735.0,14220130,10000000 +1564820335.0,14193117,10000000 +1564820935.0,14240167,10000000 +1564821535.0,14156184,10000000 +1564822135.0,14267068,10000000 +1564822735.0,14340070,10000000 +1564823335.0,14312662,10000000 +1564823935.0,14322766,10000000 +1564824535.0,14340357,10000000 +1564825135.0,14462388,10000000 +1564825735.0,14502673,10000000 +1564826335.0,14438867,10000000 +1564826935.0,14411323,10000000 +1564827535.0,14316346,10000000 +1564828135.0,14367343,10000000 +1564828735.0,14431323,10000000 +1564829335.0,14394776,10000000 +1564829935.0,14396570,10000000 +1564830535.0,14439926,10000000 +1564831135.0,14455258,10000000 +1564831735.0,14479728,10000000 +1564832335.0,14460287,10000000 +1564832935.0,14455616,10000000 +1564833535.0,14396862,10000000 +1564834135.0,14413101,10000000 +1564834735.0,14421510,10000000 +1564835335.0,14411685,10000000 +1564835935.0,14392329,10000000 +1564836535.0,14520207,10000000 +1564837135.0,14505524,10000000 +1564837735.0,14486453,10000000 +1564838335.0,14532338,10000000 +1564838935.0,14492709,10000000 +1564839535.0,14519760,10000000 +1564840135.0,14539503,10000000 +1564840735.0,14517712,10000000 +1564841335.0,14499941,10000000 +1564841935.0,14619735,10000000 +1564842535.0,14768912,10000000 +1564843135.0,14829052,10000000 +1564843735.0,14838120,10000000 +1564844335.0,14758516,10000000 +1564844935.0,14787029,10000000 +1564845535.0,14731614,10000000 +1564846135.0,14631526,10000000 +1564846735.0,14635465,10000000 +1564847335.0,14560416,10000000 +1564847935.0,14451593,10000000 +1564848535.0,14462252,10000000 +1564849135.0,14480889,10000000 +1564849735.0,14549640,10000000 +1564850335.0,14425931,10000000 +1564850935.0,14389657,10000000 +1564851535.0,14311793,10000000 +1564852135.0,14246504,10000000 +1564852735.0,14296531,10000000 +1564853335.0,14448917,10000000 +1564853935.0,14491739,10000000 +1564854535.0,14560789,10000000 +1564855135.0,14613804,10000000 +1564855735.0,14721603,10000000 +1564856335.0,14761496,10000000 +1564856935.0,14788581,10000000 +1564857535.0,14769255,10000000 +1564858135.0,14758867,10000000 +1564858735.0,14796054,10000000 +1564859335.0,14781535,10000000 +1564859935.0,14814848,10000000 +1564860535.0,14718769,10000000 +1564861135.0,14768647,10000000 +1564861735.0,14745533,10000000 +1564862335.0,14724746,10000000 +1564862935.0,14745262,10000000 +1564863535.0,14739645,10000000 +1564864135.0,14725856,10000000 +1564864735.0,14786257,10000000 +1564865335.0,14722069,10000000 +1564865935.0,14762742,10000000 +1564866535.0,14661886,10000000 +1564867135.0,14672936,10000000 +1564867735.0,14646232,10000000 +1564868335.0,14653838,10000000 +1564868935.0,14693757,10000000 +1564869535.0,14621854,10000000 +1564870135.0,14529923,10000000 +1564870735.0,14523748,10000000 +1564871335.0,14515672,10000000 +1564871935.0,14403583,10000000 +1564872535.0,14400199,10000000 +1564873135.0,14378830,10000000 +1564873735.0,14450403,10000000 +1564874335.0,14517249,10000000 +1564874935.0,14563054,10000000 +1564875535.0,14495483,10000000 +1564876135.0,14543626,10000000 +1564876735.0,14509190,10000000 +1564877335.0,14453832,10000000 +1564877935.0,14461823,10000000 +1564878535.0,14471695,10000000 +1564879135.0,14411618,10000000 +1564879735.0,14426548,10000000 +1564880335.0,14488928,10000000 +1564880935.0,14563355,10000000 +1564881535.0,14559845,10000000 +1564882135.0,14490401,10000000 +1564882735.0,14476919,10000000 +1564883335.0,14456297,10000000 +1564883935.0,14472343,10000000 +1564884535.0,14377982,10000000 +1564885135.0,14371017,10000000 +1564885735.0,14368279,10000000 +1564886335.0,14319743,10000000 +1564886935.0,14290899,10000000 +1564887535.0,14348655,10000000 +1564888135.0,14383634,10000000 +1564888735.0,14344417,10000000 +1564889335.0,14379438,10000000 +1564889935.0,14403606,10000000 +1564890535.0,14363728,10000000 +1564891135.0,14341224,10000000 +1564891735.0,14364961,10000000 +1564892335.0,14372763,10000000 +1564892935.0,14353257,10000000 +1564893535.0,14246652,10000000 +1564894135.0,14222481,10000000 +1564894735.0,14267837,10000000 +1564895335.0,14263466,10000000 +1564895935.0,14237242,10000000 +1564896535.0,14146540,10000000 +1564897135.0,14215915,10000000 +1564897735.0,14267150,10000000 +1564898335.0,14326402,10000000 +1564898935.0,14349454,10000000 +1564899535.0,14336881,10000000 +1564900135.0,14399722,10000000 +1564900735.0,14395256,10000000 +1564901335.0,14356979,10000000 +1564901935.0,14276854,10000000 +1564902535.0,14216332,10000000 +1564903135.0,14231236,10000000 +1564903735.0,14244371,10000000 +1564904335.0,14174686,10000000 +1564904935.0,14198194,10000000 +1564905535.0,14110814,10000000 +1564906135.0,14132986,10000000 +1564906735.0,14128968,10000000 +1564907335.0,14030698,10000000 +1564907935.0,14074083,10000000 +1564908535.0,14075960,10000000 +1564909135.0,14147157,10000000 +1564909735.0,14192048,10000000 +1564910335.0,14192422,10000000 +1564910935.0,14060119,10000000 +1564911535.0,14107655,10000000 +1564912135.0,14182782,10000000 +1564912735.0,14183767,10000000 +1564913335.0,14051339,10000000 +1564913935.0,14142959,10000000 +1564914535.0,14100643,10000000 +1564915135.0,14110849,10000000 +1564915735.0,14163593,10000000 +1564916335.0,14261364,10000000 +1564916935.0,14231216,10000000 +1564917535.0,14089336,10000000 +1564918135.0,14079495,10000000 +1564918735.0,14056875,10000000 +1564919335.0,14099846,10000000 +1564919935.0,14111362,10000000 +1564920535.0,14082103,10000000 +1564921135.0,14132077,10000000 +1564921735.0,14131226,10000000 +1564922335.0,14023518,10000000 +1564922935.0,14047448,10000000 +1564923535.0,14196235,10000000 +1564924135.0,14089061,10000000 +1564924735.0,14077284,10000000 +1564925335.0,14102110,10000000 +1564925935.0,14228173,10000000 +1564926535.0,14248597,10000000 +1564927135.0,14210750,10000000 +1564927735.0,14118441,10000000 +1564928335.0,14070053,10000000 +1564928935.0,14081110,10000000 +1564929535.0,13990288,10000000 +1564930135.0,13986621,10000000 +1564930735.0,14074934,10000000 +1564931335.0,14162427,10000000 +1564931935.0,14126580,10000000 +1564932535.0,14175395,10000000 +1564933135.0,14254055,10000000 +1564933735.0,14268669,10000000 +1564934335.0,14200606,10000000 +1564934935.0,14263110,10000000 +1564935535.0,14266333,10000000 +1564936135.0,14285754,10000000 +1564936735.0,14297346,10000000 +1564937335.0,14311658,10000000 +1564937935.0,14336203,10000000 +1564938535.0,14386080,10000000 +1564939135.0,14354204,10000000 +1564939735.0,14441277,10000000 +1564940335.0,14509967,10000000 +1564940935.0,14576459,10000000 +1564941535.0,14495979,10000000 +1564942135.0,14570125,10000000 +1564942735.0,14630422,10000000 +1564943335.0,14699633,10000000 +1564943935.0,14778954,10000000 +1564944535.0,14855497,10000000 +1564945135.0,14737815,10000000 +1564945735.0,14785646,10000000 +1564946335.0,14829698,10000000 +1564946935.0,14874470,10000000 +1564947535.0,15003077,10000000 +1564948135.0,14972517,10000000 +1564948735.0,15031572,10000000 +1564949335.0,15031486,10000000 +1564949935.0,14953354,10000000 +1564950535.0,14947533,10000000 +1564951135.0,14904553,10000000 +1564951735.0,14906574,10000000 +1564952335.0,14809188,10000000 +1564952935.0,14796514,10000000 +1564953535.0,14735347,10000000 +1564954135.0,14821774,10000000 +1564954735.0,14777927,10000000 +1564955335.0,14829347,10000000 +1564955935.0,14853068,10000000 +1564956535.0,14886685,10000000 +1564957135.0,15000000,10000000 From b369e5d51e342b65afc0d6a614fa7f5d0f72fccf Mon Sep 17 00:00:00 2001 From: Audrey Penven Date: Fri, 25 Oct 2019 16:23:28 +0200 Subject: [PATCH 31/40] go back to numerator + denominator for report command. add a command to get reported rates --- packages/cli/src/commands/oracle/rates.ts | 34 +++++++++++++++++++ packages/cli/src/commands/oracle/report.ts | 33 +++++++++++++----- .../docs/command-line-interface/oracle.md | 30 +++++++++++++--- 3 files changed, 85 insertions(+), 12 deletions(-) create mode 100644 packages/cli/src/commands/oracle/rates.ts diff --git a/packages/cli/src/commands/oracle/rates.ts b/packages/cli/src/commands/oracle/rates.ts new file mode 100644 index 00000000000..3e2d78e03ea --- /dev/null +++ b/packages/cli/src/commands/oracle/rates.ts @@ -0,0 +1,34 @@ +import { CeloContract, CeloToken } from '@celo/contractkit' +import { BaseCommand } from '../../base' +import { failWith } from '../../utils/cli' + +export default class GetRates extends BaseCommand { + static description = 'Get the current set oracle-reported rates for the given token' + + static flags = { + ...BaseCommand.flags, + } + + static args = [{ name: 'token', required: true, description: 'Token to get the rates for' }] + + static example = ['rates StableToken'] + + async run() { + const supportedTokens: CeloToken[] = [CeloContract.StableToken] + const res = this.parse(GetRates) + if (!supportedTokens.includes(res.args.token)) { + return failWith(`${res.args.token} is not in the set of supported tokens: ${supportedTokens}`) + } + const sortedOracles = await this.kit.contracts.getSortedOracles() + + const rates = await sortedOracles.getRates(res.args.token) + console.log( + rates.map((r) => { + return { + address: r.address, + rate: r.rate.toNumber(), + } + }) + ) + } +} diff --git a/packages/cli/src/commands/oracle/report.ts b/packages/cli/src/commands/oracle/report.ts index 6fec547e391..c54c389caec 100644 --- a/packages/cli/src/commands/oracle/report.ts +++ b/packages/cli/src/commands/oracle/report.ts @@ -16,14 +16,19 @@ export default class ReportPrice extends BaseCommand { required: true, description: 'The token to report on', }), - price: flags.string({ + numerator: flags.string({ required: true, - description: 'The amount of the specified token equal to 1 cGLD', + description: 'Amount of the specified token equal to the amount of cGLD in the denominator', + }), + denominator: flags.string({ + required: false, + description: 'Amount of cGLD equal to the numerator. Defaults to 1 if left blank', }), } static example = [ - 'report --token StableToken --price 1.02 --from 0x8c349AAc7065a35B7166f2659d6C35D75A3893C1', + 'report --token StableToken --numerator 1.02 --from 0x8c349AAc7065a35B7166f2659d6C35D75A3893C1', + 'report --token StableToken --numerator 102 --denominator 100 --from 0x8c349AAc7065a35B7166f2659d6C35D75A3893C1', ] async run() { @@ -36,14 +41,26 @@ export default class ReportPrice extends BaseCommand { } const sortedOracles = await this.kit.contracts.getSortedOracles() - const price = new BigNumber(res.flags.price) - const denominator = new BigNumber(10).pow(price.decimalPlaces()).toNumber() - const numerator = price.multipliedBy(denominator).toNumber() + let numerator = new BigNumber(res.flags.numerator) + let denominator = new BigNumber(res.flags.denominator || 1) + if (numerator.decimalPlaces() > 0) { + const multiplier = new BigNumber(10).pow(numerator.decimalPlaces()).toNumber() + numerator = numerator.multipliedBy(multiplier) + denominator = denominator.multipliedBy(multiplier) + } + // const numerator = price.multipliedBy(denominator).toNumber() await displaySendTx( 'sortedOracles.report', - await sortedOracles.report(token, numerator, denominator, res.flags.from) + await sortedOracles.report( + token, + numerator.toNumber(), + denominator.toNumber(), + res.flags.from + ) + ) + this.log( + `Reported oracle value of ${numerator.div(denominator).toNumber()} ${token} for 1 CeloGold` ) - this.log(`Reported oracle value of ${price} ${token} for 1 CeloGold`) } } diff --git a/packages/docs/command-line-interface/oracle.md b/packages/docs/command-line-interface/oracle.md index b5bdc70b5b7..49cf0c58a9c 100644 --- a/packages/docs/command-line-interface/oracle.md +++ b/packages/docs/command-line-interface/oracle.md @@ -1,9 +1,26 @@ --- -description: Report the price of Celo Gold in a specified token (currently just Celo Dollar, aka: "StableToken") +description: Get the current set oracle-reported rates for the given token --- ## Commands +### Rates + +Get the current set oracle-reported rates for the given token + +``` +USAGE + $ celocli oracle:rates TOKEN + +ARGUMENTS + TOKEN Token to get the rates for + +EXAMPLE + rates StableToken +``` + +_See code: [packages/cli/src/commands/oracle/rates.ts](https://github.com/celo-org/celo-monorepo/tree/master/packages/cli/src/commands/oracle/rates.ts)_ + ### Report Report the price of Celo Gold in a specified token (currently just Celo Dollar, aka: "StableToken") @@ -13,12 +30,17 @@ USAGE $ celocli oracle:report OPTIONS + --denominator=denominator Amount of cGLD equal to the numerator. Defaults to 1 if left blank --from=0xc1912fEE45d61C87Cc5EA59DaE31190FFFFf232d (required) Address of the oracle account - --price=price (required) The amount of the specified token equal to 1 cGLD + + --numerator=numerator (required) Amount of the specified token equal to the amount of + cGLD in the denominator + --token=token (required) The token to report on -EXAMPLE - report --token StableToken --price 1.02 --from 0x8c349AAc7065a35B7166f2659d6C35D75A3893C1 +EXAMPLES + report --token StableToken --numerator 1.02 --from 0x8c349AAc7065a35B7166f2659d6C35D75A3893C1 + report --token StableToken --numerator 102 --denominator 100 --from 0x8c349AAc7065a35B7166f2659d6C35D75A3893C1 ``` _See code: [packages/cli/src/commands/oracle/report.ts](https://github.com/celo-org/celo-monorepo/tree/master/packages/cli/src/commands/oracle/report.ts)_ From 9e4a35ce90f89078990786cade2f154ed1b43786 Mon Sep 17 00:00:00 2001 From: Audrey Penven Date: Fri, 25 Oct 2019 19:02:26 +0200 Subject: [PATCH 32/40] add bash script to report exchange rates from a csv --- packages/celotool/src/lib/generate_utils.ts | 4 +- scripts/oracle-report-from-csv.sh | 47 +++++++++++++++++++++ 2 files changed, 49 insertions(+), 2 deletions(-) create mode 100755 scripts/oracle-report-from-csv.sh diff --git a/packages/celotool/src/lib/generate_utils.ts b/packages/celotool/src/lib/generate_utils.ts index 8f4be8b33d6..1572f4ce20f 100644 --- a/packages/celotool/src/lib/generate_utils.ts +++ b/packages/celotool/src/lib/generate_utils.ts @@ -143,13 +143,13 @@ export const generateGenesisFromEnv = (enablePetersburg: boolean = true) => { // Assing DEFAULT ammount of gold to 2 faucet accounts const faucetAddresses = getStrippedAddressesFor(AccountType.FAUCET, mnemonic, 2) - const priceOracleAddress = getStrippedAddressesFor(AccountType.PRICE_ORACLE, mnemonic, 1) + const oracleAddress = getStrippedAddressesFor(AccountType.PRICE_ORACLE, mnemonic, 1) return generateGenesis({ validators, consensusType, blockTime, - initialAccounts: faucetAddresses.concat(priceOracleAddress), + initialAccounts: faucetAddresses.concat(oracleAddress), epoch, chainId, requestTimeout, diff --git a/scripts/oracle-report-from-csv.sh b/scripts/oracle-report-from-csv.sh new file mode 100755 index 00000000000..9d735e5e3ba --- /dev/null +++ b/scripts/oracle-report-from-csv.sh @@ -0,0 +1,47 @@ +#!/bin/bash + +# Expects 2 arguments: +# $1 = path to the csv file +# $2 = address of the oracle to report from +# +# The purpose of this script is to report to a testnet simulated exchange rates +# between Celo Dollar (aka: StableToken) and Celo Gold. +# +# Given a csv in the expected format, it will find the most recent timestamp +# relative to the current time. Then it will pass the arguments to the celocli +# command to report the exchange rate. +# +# It expects a csv with three columns, in this order: +# 1. timestamp: MUST be an integer representing seconds from the unix epoch +# 2. stableValue: can be integer or float +# 3. goldValue: can be integer or float +# +# Important usage notes: +# +# - This script does nothing to parse the headers of the CSV. It uses the position +# of values in a comma-separated line. +# - If there are more than three columns, the extra ones will be ignored + +now=`date +%s` +foundCurrent=false + +while IFS=',' read -r -a line && ! $foundCurrent; do + if (( ${line[0]} > 0 )); then + timestamp=${line[0]} + if [[ $timestamp -gt $now ]]; then + foundCurrent=true + else + stableValue=${line[1]} + goldValue=${line[2]} + fi + fi +done < "$1" + +if ! $foundCurrent; then + echo 'Failed to find current timestamp. exiting' + exit 1 +fi + +echo `pwd` + +celocli oracle:report --token StableToken --numerator $stableValue --denominator $goldValue --from $2 \ No newline at end of file From 5b0c40514483155154bf29f221752f9325a0aa83 Mon Sep 17 00:00:00 2001 From: Audrey Penven Date: Mon, 28 Oct 2019 15:12:11 +0100 Subject: [PATCH 33/40] report script in python because it's faster, especially for later timestamps --- scripts/oracle-report-from-csv.sh | 47 ------------------------------- scripts/oracle-reporting.py | 25 ++++++++++++++++ 2 files changed, 25 insertions(+), 47 deletions(-) delete mode 100755 scripts/oracle-report-from-csv.sh create mode 100644 scripts/oracle-reporting.py diff --git a/scripts/oracle-report-from-csv.sh b/scripts/oracle-report-from-csv.sh deleted file mode 100755 index 9d735e5e3ba..00000000000 --- a/scripts/oracle-report-from-csv.sh +++ /dev/null @@ -1,47 +0,0 @@ -#!/bin/bash - -# Expects 2 arguments: -# $1 = path to the csv file -# $2 = address of the oracle to report from -# -# The purpose of this script is to report to a testnet simulated exchange rates -# between Celo Dollar (aka: StableToken) and Celo Gold. -# -# Given a csv in the expected format, it will find the most recent timestamp -# relative to the current time. Then it will pass the arguments to the celocli -# command to report the exchange rate. -# -# It expects a csv with three columns, in this order: -# 1. timestamp: MUST be an integer representing seconds from the unix epoch -# 2. stableValue: can be integer or float -# 3. goldValue: can be integer or float -# -# Important usage notes: -# -# - This script does nothing to parse the headers of the CSV. It uses the position -# of values in a comma-separated line. -# - If there are more than three columns, the extra ones will be ignored - -now=`date +%s` -foundCurrent=false - -while IFS=',' read -r -a line && ! $foundCurrent; do - if (( ${line[0]} > 0 )); then - timestamp=${line[0]} - if [[ $timestamp -gt $now ]]; then - foundCurrent=true - else - stableValue=${line[1]} - goldValue=${line[2]} - fi - fi -done < "$1" - -if ! $foundCurrent; then - echo 'Failed to find current timestamp. exiting' - exit 1 -fi - -echo `pwd` - -celocli oracle:report --token StableToken --numerator $stableValue --denominator $goldValue --from $2 \ No newline at end of file diff --git a/scripts/oracle-reporting.py b/scripts/oracle-reporting.py new file mode 100644 index 00000000000..6961700e9ab --- /dev/null +++ b/scripts/oracle-reporting.py @@ -0,0 +1,25 @@ +import csv +import time +import os +import sys + +# Expects a csv file with three columns: +# timestamp: integer, seconds from unix epoch +# stableValue: integer or float, the amount of StableToken equal to the next column's +# amount of GoldToken +# goldValue: integer or float, the amount of GoldToken equal to the previous column's +# amount of StableToken +with open(sys.argv[1]) as rates: + data = list(csv.reader(rates)) + +# Derive the index of the row to fetch for the current time +firstTimestamp = int(data[1][0]) +interval = int(data[2][0]) - firstTimestamp +now = int(time.time()) +currentIndex = ((now - firstTimestamp) // interval) + 1 + +timestamp, numerator, denominator = data[currentIndex] + +reportCmd = f'yarn celocli oracle:report --token StableToken --numerator {numerator}'\ + f' --denominator {denominator} --from {sys.argv[2]}' +os.system(reportCmd) \ No newline at end of file From 8655b66d3d14221f2d16a479d7314dedea4b5674 Mon Sep 17 00:00:00 2001 From: Audrey Penven Date: Fri, 1 Nov 2019 12:21:01 +0100 Subject: [PATCH 34/40] this shouldn't live here --- scripts/oracle-reporting.py | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 scripts/oracle-reporting.py diff --git a/scripts/oracle-reporting.py b/scripts/oracle-reporting.py deleted file mode 100644 index 6961700e9ab..00000000000 --- a/scripts/oracle-reporting.py +++ /dev/null @@ -1,25 +0,0 @@ -import csv -import time -import os -import sys - -# Expects a csv file with three columns: -# timestamp: integer, seconds from unix epoch -# stableValue: integer or float, the amount of StableToken equal to the next column's -# amount of GoldToken -# goldValue: integer or float, the amount of GoldToken equal to the previous column's -# amount of StableToken -with open(sys.argv[1]) as rates: - data = list(csv.reader(rates)) - -# Derive the index of the row to fetch for the current time -firstTimestamp = int(data[1][0]) -interval = int(data[2][0]) - firstTimestamp -now = int(time.time()) -currentIndex = ((now - firstTimestamp) // interval) + 1 - -timestamp, numerator, denominator = data[currentIndex] - -reportCmd = f'yarn celocli oracle:report --token StableToken --numerator {numerator}'\ - f' --denominator {denominator} --from {sys.argv[2]}' -os.system(reportCmd) \ No newline at end of file From 99d2bd109a9fa726ed146443a0315aa9ea25ca4c Mon Sep 17 00:00:00 2001 From: Audrey Penven Date: Thu, 7 Nov 2019 16:19:04 +0100 Subject: [PATCH 35/40] fix issues in cli commands. add celotool command because cli hangs forever when you try to locally sign things --- .../celotool/src/cmds/report_oracle_value.ts | 82 +++++++++++++++++++ packages/cli/src/commands/oracle/rates.ts | 29 ++++--- packages/cli/src/commands/oracle/report.ts | 30 ++++--- 3 files changed, 110 insertions(+), 31 deletions(-) create mode 100644 packages/celotool/src/cmds/report_oracle_value.ts diff --git a/packages/celotool/src/cmds/report_oracle_value.ts b/packages/celotool/src/cmds/report_oracle_value.ts new file mode 100644 index 00000000000..5086b001e23 --- /dev/null +++ b/packages/celotool/src/cmds/report_oracle_value.ts @@ -0,0 +1,82 @@ +import { CeloContract, CeloToken, newKit } from '@celo/contractkit' +import BigNumber from 'bignumber.js' +import { switchToClusterFromEnv } from 'src/lib/cluster' +import { addCeloEnvMiddleware, CeloEnvArgv, envVar, fetchEnv } from 'src/lib/env-utils' +import { AccountType, generatePrivateKey, privateKeyToAddress } from 'src/lib/generate_utils' +import { portForwardAnd } from 'src/lib/port_forward' +import * as yargs from 'yargs' + +export const command = 'report-oracle-value' + +interface ReportOracleValueArgv extends CeloEnvArgv { + token: string + price: number + // oracleAccount: string +} + +export const builder = (argv: yargs.Argv) => { + return addCeloEnvMiddleware(argv) + .option('token', { + type: 'string', + description: 'Celo Token in which to report the price of 1 Celo Gold', + default: 'StableToken', + }) + .option('price', { + type: 'number', + description: 'The price of 1 Celo Gold in the specified token (float values allowed)', + demand: 'Please specify the price of 1 Celo Gold', + }) +} + +export const handler = async (argv: ReportOracleValueArgv) => { + await switchToClusterFromEnv(false) + + try { + await portForwardAnd(argv.celoEnv, reportCmd.bind(null, argv)) + console.info('finished with the portforwarding???') + } catch (error) { + console.error(`Unable to report value of ${argv.token}`) + console.error(error.error) + process.exit(1) + } + process.exit() +} + +async function reportCmd(argv: ReportOracleValueArgv) { + let token: CeloToken + if (argv.token === CeloContract.StableToken) { + token = CeloContract.StableToken + } else { + console.error(`${argv.token} is not a valid token to report upon`) + process.exit(1) + return + } + + let numerator = new BigNumber(argv.price) + let denominator = new BigNumber(1) + + if (numerator.decimalPlaces() > 0) { + denominator = new BigNumber(10).pow(numerator.decimalPlaces()) + numerator = numerator.multipliedBy(denominator) + } + + const kit = newKit('http://localhost:8545') + const mnemonic = fetchEnv(envVar.MNEMONIC) + // TODO: switch this to the right account type after deploying testnet + // Or, don't hardcode this at all. + const oracleKey = generatePrivateKey(mnemonic, AccountType.ATTESTATION, 0) + kit.addAccount(oracleKey) + const oracleAddress = privateKeyToAddress(oracleKey) + + const sortedOracles = await kit.contracts.getSortedOracles() + const tx = await sortedOracles.report( + token, + numerator.toNumber(), + denominator.toNumber(), + oracleAddress + // '0xF4314cb9046bECe6AA54bb9533155434d0c76909' + ) + + await tx.sendAndWaitForReceipt() + console.info(`Reported the price of ${argv.price} ${argv.token} for 1 Celo Gold`) +} diff --git a/packages/cli/src/commands/oracle/rates.ts b/packages/cli/src/commands/oracle/rates.ts index 3e2d78e03ea..c290824844b 100644 --- a/packages/cli/src/commands/oracle/rates.ts +++ b/packages/cli/src/commands/oracle/rates.ts @@ -1,6 +1,6 @@ -import { CeloContract, CeloToken } from '@celo/contractkit' +import { CeloContract } from '@celo/contractkit' +import { cli } from 'cli-ux' import { BaseCommand } from '../../base' -import { failWith } from '../../utils/cli' export default class GetRates extends BaseCommand { static description = 'Get the current set oracle-reported rates for the given token' @@ -9,26 +9,25 @@ export default class GetRates extends BaseCommand { ...BaseCommand.flags, } - static args = [{ name: 'token', required: true, description: 'Token to get the rates for' }] + static args = [ + { + name: 'token', + required: true, + description: 'Token to get the rates for', + options: [CeloContract.StableToken], + }, + ] static example = ['rates StableToken'] async run() { - const supportedTokens: CeloToken[] = [CeloContract.StableToken] const res = this.parse(GetRates) - if (!supportedTokens.includes(res.args.token)) { - return failWith(`${res.args.token} is not in the set of supported tokens: ${supportedTokens}`) - } const sortedOracles = await this.kit.contracts.getSortedOracles() const rates = await sortedOracles.getRates(res.args.token) - console.log( - rates.map((r) => { - return { - address: r.address, - rate: r.rate.toNumber(), - } - }) - ) + cli.table(rates, { + address: {}, + rate: { get: (r) => r.rate.toNumber() }, + }) } } diff --git a/packages/cli/src/commands/oracle/report.ts b/packages/cli/src/commands/oracle/report.ts index c54c389caec..1fc2846987b 100644 --- a/packages/cli/src/commands/oracle/report.ts +++ b/packages/cli/src/commands/oracle/report.ts @@ -1,21 +1,25 @@ -import { CeloContract, CeloToken } from '@celo/contractkit' +import { CeloContract } from '@celo/contractkit' import { flags } from '@oclif/command' import BigNumber from 'bignumber.js' import { BaseCommand } from '../../base' -import { displaySendTx, failWith } from '../../utils/cli' +import { displaySendTx } from '../../utils/cli' import { Flags } from '../../utils/command' export default class ReportPrice extends BaseCommand { static description = 'Report the price of Celo Gold in a specified token (currently just Celo Dollar, aka: "StableToken")' + static args = [ + { + name: 'token', + required: true, + description: 'Token to report on', + options: [CeloContract.StableToken], + }, + ] static flags = { ...BaseCommand.flags, from: Flags.address({ required: true, description: 'Address of the oracle account' }), - token: flags.string({ - required: true, - description: 'The token to report on', - }), numerator: flags.string({ required: true, description: 'Amount of the specified token equal to the amount of cGLD in the denominator', @@ -33,13 +37,6 @@ export default class ReportPrice extends BaseCommand { async run() { const res = this.parse(ReportPrice) - let token: CeloToken - if (res.flags.token === CeloContract.StableToken) { - token = CeloContract.StableToken - } else { - return failWith(`${res.flags.token} is not a valid token to report on`) - } - const sortedOracles = await this.kit.contracts.getSortedOracles() let numerator = new BigNumber(res.flags.numerator) let denominator = new BigNumber(res.flags.denominator || 1) @@ -48,19 +45,20 @@ export default class ReportPrice extends BaseCommand { numerator = numerator.multipliedBy(multiplier) denominator = denominator.multipliedBy(multiplier) } - // const numerator = price.multipliedBy(denominator).toNumber() await displaySendTx( 'sortedOracles.report', await sortedOracles.report( - token, + res.args.token, numerator.toNumber(), denominator.toNumber(), res.flags.from ) ) this.log( - `Reported oracle value of ${numerator.div(denominator).toNumber()} ${token} for 1 CeloGold` + `Reported oracle value of ${numerator.div(denominator).toNumber()} ${ + res.args.token + } for 1 CeloGold` ) } } From 3e77289fab97be0a8ed90cd12c83f123bf95e693 Mon Sep 17 00:00:00 2001 From: Audrey Penven Date: Tue, 12 Nov 2019 17:06:14 +0100 Subject: [PATCH 36/40] run command within cluster --- .../celotool/src/cmds/report_oracle_value.ts | 36 +++++++++++++------ 1 file changed, 26 insertions(+), 10 deletions(-) diff --git a/packages/celotool/src/cmds/report_oracle_value.ts b/packages/celotool/src/cmds/report_oracle_value.ts index 5086b001e23..d0506a65355 100644 --- a/packages/celotool/src/cmds/report_oracle_value.ts +++ b/packages/celotool/src/cmds/report_oracle_value.ts @@ -12,6 +12,7 @@ interface ReportOracleValueArgv extends CeloEnvArgv { token: string price: number // oracleAccount: string + runWithPortForward: boolean } export const builder = (argv: yargs.Argv) => { @@ -26,18 +27,34 @@ export const builder = (argv: yargs.Argv) => { description: 'The price of 1 Celo Gold in the specified token (float values allowed)', demand: 'Please specify the price of 1 Celo Gold', }) + .option('runWithPortForward', { + type: 'boolean', + description: + 'Specify whether this command should be run port-forwarded, or is running within the cluster. Default is true', + default: true, + }) } export const handler = async (argv: ReportOracleValueArgv) => { - await switchToClusterFromEnv(false) + if (argv.runWithPortForward) { + await switchToClusterFromEnv(false) - try { - await portForwardAnd(argv.celoEnv, reportCmd.bind(null, argv)) - console.info('finished with the portforwarding???') - } catch (error) { - console.error(`Unable to report value of ${argv.token}`) - console.error(error.error) - process.exit(1) + try { + await portForwardAnd(argv.celoEnv, reportCmd.bind(null, argv)) + console.info('finished with the portforwarding???') + } catch (error) { + console.error(`Unable to report value of ${argv.token}`) + console.error(error.error) + process.exit(1) + } + } else { + try { + await reportCmd(argv) + } catch (error) { + console.error(`Unable to report value of ${argv.token}`) + console.error(error.error) + process.exit(1) + } } process.exit() } @@ -60,7 +77,7 @@ async function reportCmd(argv: ReportOracleValueArgv) { numerator = numerator.multipliedBy(denominator) } - const kit = newKit('http://localhost:8545') + const kit = newKit('http://35.197.1.183:8545') const mnemonic = fetchEnv(envVar.MNEMONIC) // TODO: switch this to the right account type after deploying testnet // Or, don't hardcode this at all. @@ -74,7 +91,6 @@ async function reportCmd(argv: ReportOracleValueArgv) { numerator.toNumber(), denominator.toNumber(), oracleAddress - // '0xF4314cb9046bECe6AA54bb9533155434d0c76909' ) await tx.sendAndWaitForReceipt() From 8189da8a150aaa80e325316f45009218765d6e43 Mon Sep 17 00:00:00 2001 From: Audrey Penven Date: Tue, 12 Nov 2019 17:17:42 +0100 Subject: [PATCH 37/40] get host ip dynamically --- packages/celotool/src/cmds/report_oracle_value.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/celotool/src/cmds/report_oracle_value.ts b/packages/celotool/src/cmds/report_oracle_value.ts index d0506a65355..513afb7bd86 100644 --- a/packages/celotool/src/cmds/report_oracle_value.ts +++ b/packages/celotool/src/cmds/report_oracle_value.ts @@ -77,7 +77,8 @@ async function reportCmd(argv: ReportOracleValueArgv) { numerator = numerator.multipliedBy(denominator) } - const kit = newKit('http://35.197.1.183:8545') + const hostEnvVar = `${argv.celoEnv.toUpperCase()}_SERVICE_0_TCP_SERVICE_HOST` + const kit = newKit(`http://${fetchEnv(hostEnvVar)}:8545`) const mnemonic = fetchEnv(envVar.MNEMONIC) // TODO: switch this to the right account type after deploying testnet // Or, don't hardcode this at all. From d3790ac21febdcf2742ca070402981de1a3cdaaf Mon Sep 17 00:00:00 2001 From: Audrey Penven Date: Thu, 14 Nov 2019 14:40:36 +0100 Subject: [PATCH 38/40] close the web3 connection in cli, even if local accounts have been added --- packages/cli/src/base.ts | 12 ++++++++++-- packages/contractkit/src/index.ts | 1 + 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/packages/cli/src/base.ts b/packages/cli/src/base.ts index a3085dc2847..5a4f5fe760c 100644 --- a/packages/cli/src/base.ts +++ b/packages/cli/src/base.ts @@ -1,4 +1,4 @@ -import { ContractKit, newKitFromWeb3 } from '@celo/contractkit' +import { CeloProvider, ContractKit, newKitFromWeb3 } from '@celo/contractkit' import { Command, flags } from '@oclif/command' import Web3 from 'web3' import { getNodeUrl } from './utils/config' @@ -59,8 +59,16 @@ export abstract class BaseCommand extends Command { finally(arg: Error | undefined): Promise { try { - // Close the web3 connection or the CLI hangs forever. + // If local-signing accounts are added, the debug wrapper is itself wrapped + // with a CeloProvider. This class has a stop() function that handles closing + // the connection for underlying providers + if (this.web3.currentProvider instanceof CeloProvider) { + const celoProvider = this.web3.currentProvider as CeloProvider + celoProvider.stop() + } + if (this._originalProvider && this._originalProvider.hasOwnProperty('connection')) { + // Close the web3 connection or the CLI hangs forever. const connection = this._originalProvider.connection if (connection.hasOwnProperty('_connection')) { connection._connection.close() diff --git a/packages/contractkit/src/index.ts b/packages/contractkit/src/index.ts index 7ca7df24dff..476548c3a85 100644 --- a/packages/contractkit/src/index.ts +++ b/packages/contractkit/src/index.ts @@ -3,6 +3,7 @@ import Web3 from 'web3' export { Address, AllContracts, CeloContract, CeloToken, NULL_ADDRESS } from './base' export { IdentityMetadataWrapper } from './identity' export * from './kit' +export { CeloProvider } from './providers/celo-provider' export { CeloTransactionObject } from './wrappers/BaseWrapper' /** From f31a60455ee49d7a906828f1876387e0c46c67d1 Mon Sep 17 00:00:00 2001 From: Audrey Penven Date: Thu, 14 Nov 2019 16:44:15 +0100 Subject: [PATCH 39/40] command to add local-signing accounts to the cli --- packages/cli/src/base.ts | 2 + .../cli/src/commands/localaccounts/add.ts | 31 ++++++++++++++ packages/cli/src/utils/local_accounts.ts | 42 +++++++++++++++++++ 3 files changed, 75 insertions(+) create mode 100644 packages/cli/src/commands/localaccounts/add.ts create mode 100644 packages/cli/src/utils/local_accounts.ts diff --git a/packages/cli/src/base.ts b/packages/cli/src/base.ts index 5a4f5fe760c..9d66f8e6623 100644 --- a/packages/cli/src/base.ts +++ b/packages/cli/src/base.ts @@ -4,6 +4,7 @@ import Web3 from 'web3' import { getNodeUrl } from './utils/config' import { injectDebugProvider } from './utils/eth-debug-provider' import { requireNodeIsSynced } from './utils/helpers' +import { addKeysToKit } from './utils/local_accounts' export abstract class BaseCommand extends Command { static flags = { @@ -46,6 +47,7 @@ export abstract class BaseCommand extends Command { if (this.requireSynced) { await requireNodeIsSynced(this.web3) } + addKeysToKit(this.kit, this.config.configDir) } // TODO(yorke): implement log(msg) switch on logLevel with chalk colored output diff --git a/packages/cli/src/commands/localaccounts/add.ts b/packages/cli/src/commands/localaccounts/add.ts new file mode 100644 index 00000000000..acf290f186e --- /dev/null +++ b/packages/cli/src/commands/localaccounts/add.ts @@ -0,0 +1,31 @@ +import { cli } from 'cli-ux' +import * as fs from 'fs-extra' +// import * as path from 'path' +import { BaseCommand } from '../../base' +import { addPrivateKeyToConfig } from '../../utils/local_accounts' + +export default class AddLocalAccount extends BaseCommand { + static description = 'Add a private key to locally sign transactions from an account' + + static args = [ + { + name: 'keyPath', + required: true, + description: 'Private key to add', + }, + ] + + async run() { + const res = this.parse(AddLocalAccount) + try { + const absolutePath = fs.realpathSync(res.args.keyPath) + const key = fs.readFileSync(absolutePath).toString() + this.kit.addAccount(key) + + addPrivateKeyToConfig(this.config.configDir, absolutePath) + } catch (error) { + cli.info('Failed to add private key') + cli.error(error) + } + } +} diff --git a/packages/cli/src/utils/local_accounts.ts b/packages/cli/src/utils/local_accounts.ts new file mode 100644 index 00000000000..cf252c52f5a --- /dev/null +++ b/packages/cli/src/utils/local_accounts.ts @@ -0,0 +1,42 @@ +import { ContractKit } from '@celo/contractkit' +import * as fs from 'fs-extra' +import * as path from 'path' + +export interface CeloLocalKeys { + files: string[] +} + +const keyFileList = 'keys.json' + +export const defaultKeyList: CeloLocalKeys = { + files: [], +} + +export function keyListPath(configDir: string) { + return path.join(configDir, keyFileList) +} + +export function addKeysToKit(kit: ContractKit, configDir: string) { + const keyPaths = readKeyList(configDir) + + for (const kp of keyPaths.files) { + if (fs.pathExistsSync(kp)) { + kit.addAccount(fs.readFileSync(kp).toString()) + } else { + console.error(`no key found at ${kp}, skipping...`) + } + } +} + +export function readKeyList(configDir: string): CeloLocalKeys { + if (fs.pathExistsSync(keyListPath(configDir))) { + return fs.readJSONSync(keyListPath(configDir)) + } else { + return defaultKeyList + } +} + +export function addPrivateKeyToConfig(configDir: string, keyPath: string) { + const existingFiles = readKeyList(configDir).files + fs.writeJSONSync(keyListPath(configDir), { files: existingFiles.concat(keyPath) }) +} From 94d7bb2e3146f342246f12076aea68b449446b6d Mon Sep 17 00:00:00 2001 From: Audrey Penven Date: Thu, 14 Nov 2019 16:50:52 +0100 Subject: [PATCH 40/40] update cli docs --- .../command-line-interface/localaccounts.md | 19 +++++++++++++++++++ .../docs/command-line-interface/oracle.md | 9 +++++---- 2 files changed, 24 insertions(+), 4 deletions(-) create mode 100644 packages/docs/command-line-interface/localaccounts.md diff --git a/packages/docs/command-line-interface/localaccounts.md b/packages/docs/command-line-interface/localaccounts.md new file mode 100644 index 00000000000..35a202371a2 --- /dev/null +++ b/packages/docs/command-line-interface/localaccounts.md @@ -0,0 +1,19 @@ +--- +description: Add a private key to locally sign transactions from an account +--- + +## Commands + +### Add + +Add a private key to locally sign transactions from an account + +``` +USAGE + $ celocli localaccounts:add KEYPATH + +ARGUMENTS + KEYPATH Private key to add +``` + +_See code: [packages/cli/src/commands/localaccounts/add.ts](https://github.com/celo-org/celo-monorepo/tree/master/packages/cli/src/commands/localaccounts/add.ts)_ diff --git a/packages/docs/command-line-interface/oracle.md b/packages/docs/command-line-interface/oracle.md index 49cf0c58a9c..4d28ba34ee9 100644 --- a/packages/docs/command-line-interface/oracle.md +++ b/packages/docs/command-line-interface/oracle.md @@ -13,7 +13,7 @@ USAGE $ celocli oracle:rates TOKEN ARGUMENTS - TOKEN Token to get the rates for + TOKEN (StableToken) Token to get the rates for EXAMPLE rates StableToken @@ -27,7 +27,10 @@ Report the price of Celo Gold in a specified token (currently just Celo Dollar, ``` USAGE - $ celocli oracle:report + $ celocli oracle:report TOKEN + +ARGUMENTS + TOKEN (StableToken) Token to report on OPTIONS --denominator=denominator Amount of cGLD equal to the numerator. Defaults to 1 if left blank @@ -36,8 +39,6 @@ OPTIONS --numerator=numerator (required) Amount of the specified token equal to the amount of cGLD in the denominator - --token=token (required) The token to report on - EXAMPLES report --token StableToken --numerator 1.02 --from 0x8c349AAc7065a35B7166f2659d6C35D75A3893C1 report --token StableToken --numerator 102 --denominator 100 --from 0x8c349AAc7065a35B7166f2659d6C35D75A3893C1