From 7cee8cc1206f2b828d22690c33ecdbe5b82de751 Mon Sep 17 00:00:00 2001 From: Cujowolf Date: Wed, 13 Dec 2023 13:36:08 -0600 Subject: [PATCH 01/14] Refactor silo entity helpers --- .../subgraph-beanstalk/src/FarmHandler.ts | 2 +- .../subgraph-beanstalk/src/SeasonHandler.ts | 9 +- .../subgraph-beanstalk/src/SiloHandler.ts | 290 +++++++++++++---- .../subgraph-beanstalk/src/YieldHandler.ts | 11 +- projects/subgraph-beanstalk/src/utils/Silo.ts | 86 ----- .../subgraph-beanstalk/src/utils/SiloAsset.ts | 70 ---- .../src/utils/SiloDeposit.ts | 51 --- .../src/utils/SiloEntities.ts | 299 ++++++++++++++++++ .../src/utils/SiloWithdraw.ts | 21 -- .../subgraph-beanstalk/src/utils/SiloYield.ts | 27 -- 10 files changed, 543 insertions(+), 323 deletions(-) delete mode 100644 projects/subgraph-beanstalk/src/utils/Silo.ts delete mode 100644 projects/subgraph-beanstalk/src/utils/SiloAsset.ts delete mode 100644 projects/subgraph-beanstalk/src/utils/SiloDeposit.ts create mode 100644 projects/subgraph-beanstalk/src/utils/SiloEntities.ts delete mode 100644 projects/subgraph-beanstalk/src/utils/SiloWithdraw.ts delete mode 100644 projects/subgraph-beanstalk/src/utils/SiloYield.ts diff --git a/projects/subgraph-beanstalk/src/FarmHandler.ts b/projects/subgraph-beanstalk/src/FarmHandler.ts index 1d07b793ac..003f893fca 100644 --- a/projects/subgraph-beanstalk/src/FarmHandler.ts +++ b/projects/subgraph-beanstalk/src/FarmHandler.ts @@ -2,7 +2,7 @@ import { Address, BigInt } from "@graphprotocol/graph-ts"; import { InternalBalanceChanged } from "../generated/Farm/Beanstalk"; import { loadBeanstalk } from "./utils/Beanstalk"; import { BEANSTALK } from "../../subgraph-core/utils/Constants"; -import { loadSiloAsset, loadSiloAssetDailySnapshot, loadSiloAssetHourlySnapshot } from "./utils/SiloAsset"; +import { loadSiloAsset, loadSiloAssetDailySnapshot, loadSiloAssetHourlySnapshot } from "./utils/SiloEntities"; import { loadFarmer } from "./utils/Farmer"; export function handleInternalBalanceChanged(event: InternalBalanceChanged): void { diff --git a/projects/subgraph-beanstalk/src/SeasonHandler.ts b/projects/subgraph-beanstalk/src/SeasonHandler.ts index 911d4dc8fb..f111690587 100644 --- a/projects/subgraph-beanstalk/src/SeasonHandler.ts +++ b/projects/subgraph-beanstalk/src/SeasonHandler.ts @@ -12,10 +12,15 @@ import { loadField, loadFieldDaily, loadFieldHourly } from "./utils/Field"; import { expirePodListing, loadPodListing } from "./utils/PodListing"; import { loadPodMarketplace, loadPodMarketplaceDailySnapshot, loadPodMarketplaceHourlySnapshot } from "./utils/PodMarketplace"; import { loadSeason } from "./utils/Season"; -import { loadSilo, loadSiloDailySnapshot, loadSiloHourlySnapshot } from "./utils/Silo"; import { addDepositToSiloAsset, updateStalkWithCalls } from "./SiloHandler"; import { updateBeanEMA } from "./YieldHandler"; -import { loadSiloAssetDailySnapshot, loadSiloAssetHourlySnapshot } from "./utils/SiloAsset"; +import { + loadSilo, + loadSiloDailySnapshot, + loadSiloHourlySnapshot, + loadSiloAssetDailySnapshot, + loadSiloAssetHourlySnapshot +} from "./utils/SiloEntities"; import { BeanstalkPrice } from "../generated/Season-Replanted/BeanstalkPrice"; export function handleSunrise(event: Sunrise): void { diff --git a/projects/subgraph-beanstalk/src/SiloHandler.ts b/projects/subgraph-beanstalk/src/SiloHandler.ts index 0e88e18fb4..e9feec1b50 100644 --- a/projects/subgraph-beanstalk/src/SiloHandler.ts +++ b/projects/subgraph-beanstalk/src/SiloHandler.ts @@ -15,15 +15,24 @@ import { AddDeposit as AddDeposit_V3, RemoveDeposit as RemoveDeposit_V3, RemoveDeposits as RemoveDeposits_V3, + UpdatedStalkPerBdvPerSeason, WhitelistToken as WhitelistToken_V3 } from "../generated/Silo-V3/Beanstalk"; import { Beanstalk, TransferDepositCall, TransferDepositsCall } from "../generated/Silo-Calls/Beanstalk"; import { ZERO_BI } from "../../subgraph-core/utils/Decimals"; import { loadFarmer } from "./utils/Farmer"; -import { loadSilo, loadSiloDailySnapshot, loadSiloHourlySnapshot } from "./utils/Silo"; -import { loadSiloAsset as loadSiloAsset, loadSiloAssetDailySnapshot, loadSiloAssetHourlySnapshot } from "./utils/SiloAsset"; -import { loadSiloDeposit, loadSiloDepositV3 } from "./utils/SiloDeposit"; -import { loadSiloWithdraw } from "./utils/SiloWithdraw"; +import { + loadSilo, + loadSiloDailySnapshot, + loadSiloHourlySnapshot, + loadSiloAsset, + loadSiloAssetDailySnapshot, + loadSiloAssetHourlySnapshot, + loadSiloWithdraw, + loadSiloDeposit, + loadSiloDepositV3, + loadWhitelistTokenSetting +} from "./utils/SiloEntities"; import { AddDeposit as AddDepositEntity, RemoveDeposit as RemoveDepositEntity, @@ -56,13 +65,19 @@ export function handleAddDeposit(event: AddDeposit): void { let beanstalk = loadBeanstalk(event.address); // Update overall silo totals - addDepositToSilo(event.address, beanstalk.lastSeason, event.params.bdv, event.block.timestamp, event.block.number); - addDepositToSiloAsset( + addDepositToSilo( event.address, - event.params.token, beanstalk.lastSeason, event.params.bdv, - event.params.amount, + addDepositToSiloAsset( + event.address, + event.params.token, + beanstalk.lastSeason, + event.params.bdv, + event.params.amount, + event.block.timestamp, + event.block.number + ), event.block.timestamp, event.block.number ); @@ -71,13 +86,19 @@ export function handleAddDeposit(event: AddDeposit): void { loadFarmer(event.params.account); // Update farmer silo totals - addDepositToSilo(event.params.account, beanstalk.lastSeason, event.params.bdv, event.block.timestamp, event.block.number); - addDepositToSiloAsset( + addDepositToSilo( event.params.account, - event.params.token, beanstalk.lastSeason, event.params.bdv, - event.params.amount, + addDepositToSiloAsset( + event.params.account, + event.params.token, + beanstalk.lastSeason, + event.params.bdv, + event.params.amount, + event.block.timestamp, + event.block.number + ), event.block.timestamp, event.block.number ); @@ -111,25 +132,37 @@ export function handleRemoveDeposit(event: RemoveDeposit): void { deposit.save(); // Update protocol totals - removeDepositFromSilo(event.address, beanstalk.lastSeason, withdrawnBDV, event.block.timestamp, event.block.number); - removeDepositFromSiloAsset( + removeDepositFromSilo( event.address, - event.params.token, beanstalk.lastSeason, withdrawnBDV, - event.params.amount, + removeDepositFromSiloAsset( + event.address, + event.params.token, + beanstalk.lastSeason, + withdrawnBDV, + event.params.amount, + event.block.timestamp, + event.block.number + ), event.block.timestamp, event.block.number ); // Update farmer totals - removeDepositFromSilo(event.params.account, beanstalk.lastSeason, withdrawnBDV, event.block.timestamp, event.block.number); - removeDepositFromSiloAsset( + removeDepositFromSilo( event.params.account, - event.params.token, beanstalk.lastSeason, withdrawnBDV, - event.params.amount, + removeDepositFromSiloAsset( + event.params.account, + event.params.token, + beanstalk.lastSeason, + withdrawnBDV, + event.params.amount, + event.block.timestamp, + event.block.number + ), event.block.timestamp, event.block.number ); @@ -164,25 +197,37 @@ export function handleRemoveDeposits(event: RemoveDeposits): void { deposit.save(); // Update protocol totals - removeDepositFromSilo(event.address, beanstalk.lastSeason, withdrawnBDV, event.block.timestamp, event.block.number); - removeDepositFromSiloAsset( + removeDepositFromSilo( event.address, - event.params.token, beanstalk.lastSeason, withdrawnBDV, - event.params.amounts[i], + removeDepositFromSiloAsset( + event.address, + event.params.token, + beanstalk.lastSeason, + withdrawnBDV, + event.params.amounts[i], + event.block.timestamp, + event.block.number + ), event.block.timestamp, event.block.number ); // Update farmer totals - removeDepositFromSilo(event.params.account, beanstalk.lastSeason, withdrawnBDV, event.block.timestamp, event.block.number); - removeDepositFromSiloAsset( + removeDepositFromSilo( event.params.account, - event.params.token, beanstalk.lastSeason, withdrawnBDV, - event.params.amounts[i], + removeDepositFromSiloAsset( + event.params.account, + event.params.token, + beanstalk.lastSeason, + withdrawnBDV, + event.params.amounts[i], + event.block.timestamp, + event.block.number + ), event.block.timestamp, event.block.number ); @@ -223,13 +268,19 @@ export function handleAddDeposit_V3(event: AddDeposit_V3): void { let beanstalk = loadBeanstalk(event.address); // Update overall silo totals - addDepositToSilo(event.address, beanstalk.lastSeason, event.params.bdv, event.block.timestamp, event.block.number); - addDepositToSiloAsset( + addDepositToSilo( event.address, - event.params.token, beanstalk.lastSeason, event.params.bdv, - event.params.amount, + addDepositToSiloAsset( + event.address, + event.params.token, + beanstalk.lastSeason, + event.params.bdv, + event.params.amount, + event.block.timestamp, + event.block.number + ), event.block.timestamp, event.block.number ); @@ -238,13 +289,19 @@ export function handleAddDeposit_V3(event: AddDeposit_V3): void { loadFarmer(event.params.account); // Update farmer silo totals - addDepositToSilo(event.params.account, beanstalk.lastSeason, event.params.bdv, event.block.timestamp, event.block.number); - addDepositToSiloAsset( + addDepositToSilo( event.params.account, - event.params.token, beanstalk.lastSeason, event.params.bdv, - event.params.amount, + addDepositToSiloAsset( + event.params.account, + event.params.token, + beanstalk.lastSeason, + event.params.bdv, + event.params.amount, + event.block.timestamp, + event.block.number + ), event.block.timestamp, event.block.number ); @@ -277,25 +334,37 @@ export function handleRemoveDeposit_V3(event: RemoveDeposit_V3): void { deposit.save(); // Update protocol totals - removeDepositFromSilo(event.address, beanstalk.lastSeason, event.params.bdv, event.block.timestamp, event.block.number); - removeDepositFromSiloAsset( + removeDepositFromSilo( event.address, - event.params.token, beanstalk.lastSeason, event.params.bdv, - event.params.amount, + removeDepositFromSiloAsset( + event.address, + event.params.token, + beanstalk.lastSeason, + event.params.bdv, + event.params.amount, + event.block.timestamp, + event.block.number + ), event.block.timestamp, event.block.number ); // Update farmer totals - removeDepositFromSilo(event.params.account, beanstalk.lastSeason, event.params.bdv, event.block.timestamp, event.block.number); - removeDepositFromSiloAsset( + removeDepositFromSilo( event.params.account, - event.params.token, beanstalk.lastSeason, event.params.bdv, - event.params.amount, + removeDepositFromSiloAsset( + event.params.account, + event.params.token, + beanstalk.lastSeason, + event.params.bdv, + event.params.amount, + event.block.timestamp, + event.block.number + ), event.block.timestamp, event.block.number ); @@ -330,25 +399,37 @@ export function handleRemoveDeposits_V3(event: RemoveDeposits_V3): void { deposit.save(); // Update protocol totals - removeDepositFromSilo(event.address, beanstalk.lastSeason, event.params.bdvs[i], event.block.timestamp, event.block.number); - removeDepositFromSiloAsset( + removeDepositFromSilo( event.address, - event.params.token, beanstalk.lastSeason, event.params.bdvs[i], - event.params.amounts[i], + removeDepositFromSiloAsset( + event.address, + event.params.token, + beanstalk.lastSeason, + event.params.bdvs[i], + event.params.amounts[i], + event.block.timestamp, + event.block.number + ), event.block.timestamp, event.block.number ); // Update farmer totals - removeDepositFromSilo(event.params.account, beanstalk.lastSeason, event.params.bdvs[i], event.block.timestamp, event.block.number); - removeDepositFromSiloAsset( + removeDepositFromSilo( event.params.account, - event.params.token, beanstalk.lastSeason, event.params.bdvs[i], - event.params.amounts[i], + removeDepositFromSiloAsset( + event.params.account, + event.params.token, + beanstalk.lastSeason, + event.params.bdvs[i], + event.params.amounts[i], + event.block.timestamp, + event.block.number + ), event.block.timestamp, event.block.number ); @@ -520,42 +601,62 @@ export function handleTransferDepositsCall(call: TransferDepositsCall): void { beanstalk.save(); } -function addDepositToSilo(account: Address, season: i32, bdv: BigInt, timestamp: BigInt, blockNumber: BigInt): void { +function addDepositToSilo( + account: Address, + season: i32, + bdv: BigInt, + grownStalkPerBDV: BigInt, + timestamp: BigInt, + blockNumber: BigInt +): void { let silo = loadSilo(account); let siloHourly = loadSiloHourlySnapshot(account, season, timestamp); let siloDaily = loadSiloDailySnapshot(account, timestamp); silo.depositedBDV = silo.depositedBDV.plus(bdv); + silo.grownStalkPerBdvPerSeason = silo.grownStalkPerBdvPerSeason.plus(grownStalkPerBDV); silo.save(); siloHourly.deltaDepositedBDV = siloHourly.deltaDepositedBDV.plus(bdv); siloHourly.depositedBDV = silo.depositedBDV; + siloHourly.grownStalkPerBdvPerSeason = silo.grownStalkPerBdvPerSeason; siloHourly.updatedAt = timestamp; siloHourly.save(); siloDaily.season = season; siloDaily.deltaDepositedBDV = siloDaily.deltaDepositedBDV.plus(bdv); siloDaily.depositedBDV = silo.depositedBDV; + siloDaily.grownStalkPerBdvPerSeason = silo.grownStalkPerBdvPerSeason; siloDaily.updatedAt = timestamp; siloDaily.save(); } -function removeDepositFromSilo(account: Address, season: i32, bdv: BigInt, timestamp: BigInt, blockNumber: BigInt): void { +function removeDepositFromSilo( + account: Address, + season: i32, + bdv: BigInt, + grownStalkPerBDV: BigInt, + timestamp: BigInt, + blockNumber: BigInt +): void { let silo = loadSilo(account); let siloHourly = loadSiloHourlySnapshot(account, season, timestamp); let siloDaily = loadSiloDailySnapshot(account, timestamp); silo.depositedBDV = silo.depositedBDV.minus(bdv); + silo.grownStalkPerBdvPerSeason = silo.grownStalkPerBdvPerSeason.minus(grownStalkPerBDV); silo.save(); siloHourly.deltaDepositedBDV = siloHourly.deltaDepositedBDV.minus(bdv); siloHourly.depositedBDV = silo.depositedBDV; + siloHourly.grownStalkPerBdvPerSeason = silo.grownStalkPerBdvPerSeason; siloHourly.updatedAt = timestamp; siloHourly.save(); siloDaily.season = season; siloDaily.deltaDepositedBDV = siloDaily.deltaDepositedBDV.minus(bdv); siloDaily.depositedBDV = silo.depositedBDV; + siloDaily.grownStalkPerBdvPerSeason = silo.grownStalkPerBdvPerSeason; siloDaily.updatedAt = timestamp; siloDaily.save(); } @@ -568,11 +669,14 @@ export function addDepositToSiloAsset( amount: BigInt, timestamp: BigInt, blockNumber: BigInt -): void { +): BigInt { let asset = loadSiloAsset(account, token); let assetHourly = loadSiloAssetHourlySnapshot(account, token, season, timestamp); let assetDaily = loadSiloAssetDailySnapshot(account, token, timestamp); + let tokenSettings = loadWhitelistTokenSetting(token); + let newGrownStalk = bdv.div(BigInt.fromI32(1000000)).times(tokenSettings.stalkEarnedPerSeason); + asset.depositedBDV = asset.depositedBDV.plus(bdv); asset.depositedAmount = asset.depositedAmount.plus(amount); asset.save(); @@ -591,6 +695,8 @@ export function addDepositToSiloAsset( assetDaily.depositedAmount = asset.depositedAmount; assetDaily.updatedAt = timestamp; assetDaily.save(); + + return newGrownStalk; } function removeDepositFromSiloAsset( @@ -601,11 +707,14 @@ function removeDepositFromSiloAsset( amount: BigInt, timestamp: BigInt, blockNumber: BigInt -): void { +): BigInt { let asset = loadSiloAsset(account, token); let assetHourly = loadSiloAssetHourlySnapshot(account, token, season, timestamp); let assetDaily = loadSiloAssetDailySnapshot(account, token, timestamp); + let tokenSettings = loadWhitelistTokenSetting(token); + let removedGrownStalk = bdv.div(BigInt.fromI32(1000000)).times(tokenSettings.stalkEarnedPerSeason); + asset.depositedBDV = asset.depositedBDV.minus(bdv); asset.depositedAmount = asset.depositedAmount.minus(amount); asset.save(); @@ -624,6 +733,8 @@ function removeDepositFromSiloAsset( assetDaily.depositedAmount = asset.depositedAmount; assetDaily.updatedAt = timestamp; assetDaily.save(); + + return removedGrownStalk; } function addWithdrawToSiloAsset( @@ -777,12 +888,31 @@ export function handleWhitelistToken(event: WhitelistToken): void { if (currentList.length == 0) { // Push unripe bean and unripe bean:3crv upon the initial whitelisting. currentList.push(UNRIPE_BEAN.toHexString()); + + let setting = loadWhitelistTokenSetting(UNRIPE_BEAN); + setting.selector = event.params.selector; + setting.stalkIssuedPerBdv = BigInt.fromString("10000000000"); + setting.stalkEarnedPerSeason = BigInt.fromI32(2000000); + setting.save(); + currentList.push(UNRIPE_BEAN_3CRV.toHexString()); + + setting = loadWhitelistTokenSetting(UNRIPE_BEAN_3CRV); + setting.selector = event.params.selector; + setting.stalkIssuedPerBdv = BigInt.fromString("10000000000"); + setting.stalkEarnedPerSeason = BigInt.fromI32(4000000); + setting.save(); } currentList.push(event.params.token.toHexString()); silo.whitelistedTokens = currentList; silo.save(); + let setting = loadWhitelistTokenSetting(event.params.token); + setting.selector = event.params.selector; + setting.stalkIssuedPerBdv = BigInt.fromString("10000000000"); + setting.stalkEarnedPerSeason = event.params.stalk.times(BigInt.fromI32(1000000)); + setting.save(); + let id = "whitelistToken-" + event.transaction.hash.toHexString() + "-" + event.logIndex.toString(); let rawEvent = new WhitelistTokenEntity(id); rawEvent.hash = event.transaction.hash.toHexString(); @@ -797,6 +927,54 @@ export function handleWhitelistToken(event: WhitelistToken): void { rawEvent.save(); } +export function handleUpdatedStalkPerBdvPerSeason(event: UpdatedStalkPerBdvPerSeason): void { + let siloSettings = loadWhitelistTokenSetting(event.params.token); + + siloSettings.milestoneSeason = event.params.season.toI32(); + siloSettings.stalkEarnedPerSeason; + siloSettings.updatedAt = event.block.timestamp; + siloSettings.save(); + + /// Capture deltas due to new stalk amount. + + let beanstalk = loadBeanstalk(BEANSTALK); + let beanstalkSilo = loadSilo(BEANSTALK); + + // Update protocol level metrics + let newGrownStalkAmount = ZERO_BI; + + for (let i = 0; i < beanstalkSilo.whitelistedTokens.length; i++) { + let asset = loadSiloAsset(BEANSTALK, Address.fromString(beanstalkSilo.whitelistedTokens[i])); + + newGrownStalkAmount = newGrownStalkAmount.plus( + asset.depositedBDV.div(BigInt.fromI32(1000000)).times(siloSettings.stalkEarnedPerSeason) + ); + } + + beanstalkSilo.grownStalkPerBdvPerSeason = newGrownStalkAmount; + beanstalkSilo.save(); + + // Update farmer level metrics + + for (let i = 0; i < beanstalk.activeFarmers.length; i++) { + newGrownStalkAmount = ZERO_BI; + + let account = Address.fromString(beanstalk.activeFarmers[i]); + let farmerSilo = loadSilo(account); + + for (let i = 0; i < beanstalkSilo.whitelistedTokens.length; i++) { + let asset = loadSiloAsset(account, Address.fromString(beanstalkSilo.whitelistedTokens[i])); + + newGrownStalkAmount = newGrownStalkAmount.plus( + asset.depositedBDV.div(BigInt.fromI32(1000000)).times(siloSettings.stalkEarnedPerSeason) + ); + } + + farmerSilo.grownStalkPerBdvPerSeason = newGrownStalkAmount; + farmerSilo.save(); + } +} + export function handleWhitelistToken_V3(event: WhitelistToken_V3): void { let silo = loadSilo(event.address); let currentList = silo.whitelistedTokens; diff --git a/projects/subgraph-beanstalk/src/YieldHandler.ts b/projects/subgraph-beanstalk/src/YieldHandler.ts index 401b53cec4..b724b5dab2 100644 --- a/projects/subgraph-beanstalk/src/YieldHandler.ts +++ b/projects/subgraph-beanstalk/src/YieldHandler.ts @@ -4,15 +4,8 @@ import { BEANSTALK, FERTILIZER } from "../../subgraph-core/utils/Constants"; import { toDecimal, ZERO_BD } from "../../subgraph-core/utils/Decimals"; import { loadFertilizer } from "./utils/Fertilizer"; import { loadFertilizerYield } from "./utils/FertilizerYield"; -import { loadSilo, loadSiloHourlySnapshot } from "./utils/Silo"; -import { loadSiloYield } from "./utils/SiloYield"; -import { - HISTORIC_VAPY_8_000, - HISTORIC_VAPY_10_000, - HISTORIC_VAPY_12_000, - HISTORIC_VAPY_14_000, - HISTORIC_VAPY_16_000 -} from "./utils/HistoricYield"; +import { loadSilo, loadSiloHourlySnapshot, loadSiloYield, loadTokenYield, loadWhitelistTokenSetting } from "./utils/SiloEntities"; +// import { // import { HISTORIC_VAPY } from "./utils/HistoricYield"; const MAX_WINDOW = 720; diff --git a/projects/subgraph-beanstalk/src/utils/Silo.ts b/projects/subgraph-beanstalk/src/utils/Silo.ts deleted file mode 100644 index 1f8366e53a..0000000000 --- a/projects/subgraph-beanstalk/src/utils/Silo.ts +++ /dev/null @@ -1,86 +0,0 @@ -import { Address, BigInt } from "@graphprotocol/graph-ts"; -import { Silo, SiloHourlySnapshot, SiloDailySnapshot } from "../../generated/schema"; -import { BEANSTALK } from "../../../subgraph-core/utils/Constants"; -import { dayFromTimestamp, hourFromTimestamp } from "./Dates"; -import { ZERO_BD, ZERO_BI } from "../../../subgraph-core/utils/Decimals"; - -export function loadSilo(account: Address): Silo { - let silo = Silo.load(account.toHexString()); - if (silo == null) { - silo = new Silo(account.toHexString()); - silo.beanstalk = BEANSTALK.toHexString(); - if (account !== BEANSTALK) { - silo.farmer = account.toHexString(); - } - silo.whitelistedTokens = []; - silo.depositedBDV = ZERO_BI; - silo.stalk = ZERO_BI; - silo.plantableStalk = ZERO_BI; - silo.seeds = ZERO_BI; - silo.roots = ZERO_BI; - silo.beanMints = ZERO_BI; - silo.activeFarmers = 0; - silo.save(); - } - return silo as Silo; -} - -export function loadSiloHourlySnapshot(account: Address, season: i32, timestamp: BigInt): SiloHourlySnapshot { - let hour = hourFromTimestamp(timestamp); - let id = account.toHexString() + "-" + season.toString(); - let snapshot = SiloHourlySnapshot.load(id); - if (snapshot == null) { - snapshot = new SiloHourlySnapshot(id); - let silo = loadSilo(account); - snapshot.season = season; - snapshot.silo = account.toHexString(); - snapshot.depositedBDV = silo.depositedBDV; - snapshot.stalk = silo.stalk; - snapshot.plantableStalk = silo.plantableStalk; - snapshot.seeds = silo.seeds; - snapshot.roots = silo.roots; - snapshot.beanMints = silo.beanMints; - snapshot.activeFarmers = silo.activeFarmers; - snapshot.deltaDepositedBDV = ZERO_BI; - snapshot.deltaStalk = ZERO_BI; - snapshot.deltaPlantableStalk = ZERO_BI; - snapshot.deltaSeeds = ZERO_BI; - snapshot.deltaRoots = ZERO_BI; - snapshot.deltaBeanMints = ZERO_BI; - snapshot.deltaActiveFarmers = 0; - snapshot.createdAt = BigInt.fromString(hour); - snapshot.updatedAt = timestamp; - snapshot.save(); - } - return snapshot as SiloHourlySnapshot; -} - -export function loadSiloDailySnapshot(account: Address, timestamp: BigInt): SiloDailySnapshot { - let day = dayFromTimestamp(timestamp); - let id = account.toHexString() + "-" + day.toString(); - let snapshot = SiloDailySnapshot.load(id); - if (snapshot == null) { - snapshot = new SiloDailySnapshot(id); - let silo = loadSilo(account); - snapshot.season = 0; - snapshot.silo = account.toHexString(); - snapshot.depositedBDV = silo.depositedBDV; - snapshot.stalk = silo.stalk; - snapshot.plantableStalk = silo.plantableStalk; - snapshot.seeds = silo.seeds; - snapshot.roots = silo.roots; - snapshot.beanMints = silo.beanMints; - snapshot.activeFarmers = silo.activeFarmers; - snapshot.deltaDepositedBDV = ZERO_BI; - snapshot.deltaStalk = ZERO_BI; - snapshot.deltaPlantableStalk = ZERO_BI; - snapshot.deltaSeeds = ZERO_BI; - snapshot.deltaRoots = ZERO_BI; - snapshot.deltaBeanMints = ZERO_BI; - snapshot.deltaActiveFarmers = 0; - snapshot.createdAt = BigInt.fromString(day); - snapshot.updatedAt = timestamp; - snapshot.save(); - } - return snapshot as SiloDailySnapshot; -} diff --git a/projects/subgraph-beanstalk/src/utils/SiloAsset.ts b/projects/subgraph-beanstalk/src/utils/SiloAsset.ts deleted file mode 100644 index 08614192bc..0000000000 --- a/projects/subgraph-beanstalk/src/utils/SiloAsset.ts +++ /dev/null @@ -1,70 +0,0 @@ -import { Address, BigInt } from "@graphprotocol/graph-ts"; -import { SiloAsset, SiloAssetHourlySnapshot, SiloAssetDailySnapshot } from "../../generated/schema"; -import { dayFromTimestamp, hourFromTimestamp } from "./Dates"; -import { ZERO_BD, ZERO_BI } from "../../../subgraph-core/utils/Decimals"; - -export function loadSiloAsset(account: Address, token: Address): SiloAsset { - let id = account.toHexString() + "-" + token.toHexString(); - let asset = SiloAsset.load(id); - - if (asset == null) { - //let tokenEntity = loadToken(token) - asset = new SiloAsset(id); - asset.silo = account.toHexString(); - asset.token = token.toHexString(); - asset.depositedBDV = ZERO_BI; - asset.depositedAmount = ZERO_BI; - asset.withdrawnAmount = ZERO_BI; - asset.farmAmount = ZERO_BI; - asset.save(); - } - return asset as SiloAsset; -} - -export function loadSiloAssetHourlySnapshot(account: Address, token: Address, season: i32, timestamp: BigInt): SiloAssetHourlySnapshot { - let hour = hourFromTimestamp(timestamp); - let id = account.toHexString() + "-" + token.toHexString() + "-" + season.toString(); - let snapshot = SiloAssetHourlySnapshot.load(id); - if (snapshot == null) { - let asset = loadSiloAsset(account, token); - snapshot = new SiloAssetHourlySnapshot(id); - snapshot.season = season; - snapshot.siloAsset = asset.id; - snapshot.depositedBDV = asset.depositedBDV; - snapshot.depositedAmount = asset.depositedAmount; - snapshot.withdrawnAmount = asset.withdrawnAmount; - snapshot.farmAmount = asset.farmAmount; - snapshot.deltaDepositedBDV = ZERO_BI; - snapshot.deltaDepositedAmount = ZERO_BI; - snapshot.deltaWithdrawnAmount = ZERO_BI; - snapshot.deltaFarmAmount = ZERO_BI; - snapshot.createdAt = BigInt.fromString(hour); - snapshot.updatedAt = ZERO_BI; - snapshot.save(); - } - return snapshot as SiloAssetHourlySnapshot; -} - -export function loadSiloAssetDailySnapshot(account: Address, token: Address, timestamp: BigInt): SiloAssetDailySnapshot { - let day = dayFromTimestamp(timestamp); - let id = account.toHexString() + "-" + token.toHexString() + "-" + day.toString(); - let snapshot = SiloAssetDailySnapshot.load(id); - if (snapshot == null) { - let asset = loadSiloAsset(account, token); - snapshot = new SiloAssetDailySnapshot(id); - snapshot.season = 0; - snapshot.siloAsset = asset.id; - snapshot.depositedBDV = asset.depositedBDV; - snapshot.depositedAmount = asset.depositedAmount; - snapshot.withdrawnAmount = asset.withdrawnAmount; - snapshot.farmAmount = asset.farmAmount; - snapshot.deltaDepositedBDV = ZERO_BI; - snapshot.deltaDepositedAmount = ZERO_BI; - snapshot.deltaWithdrawnAmount = ZERO_BI; - snapshot.deltaFarmAmount = ZERO_BI; - snapshot.createdAt = BigInt.fromString(day); - snapshot.updatedAt = ZERO_BI; - snapshot.save(); - } - return snapshot as SiloAssetDailySnapshot; -} diff --git a/projects/subgraph-beanstalk/src/utils/SiloDeposit.ts b/projects/subgraph-beanstalk/src/utils/SiloDeposit.ts deleted file mode 100644 index 5f72348d8d..0000000000 --- a/projects/subgraph-beanstalk/src/utils/SiloDeposit.ts +++ /dev/null @@ -1,51 +0,0 @@ -import { Address, BigInt } from "@graphprotocol/graph-ts"; -import { SiloDeposit } from "../../generated/schema"; -import { ZERO_BI } from "../../../subgraph-core/utils/Decimals"; -import { loadBeanstalk } from "./Beanstalk"; -import { BEANSTALK } from "../../../subgraph-core/utils/Constants"; - -export function loadSiloDeposit(account: Address, token: Address, season: BigInt): SiloDeposit { - let id = account.toHexString() + "-" + token.toHexString() + "-" + season.toString(); - let deposit = SiloDeposit.load(id); - if (deposit == null) { - deposit = new SiloDeposit(id); - deposit.farmer = account.toHexString(); - deposit.token = token.toHexString(); - deposit.season = season.toI32(); - deposit.amount = ZERO_BI; - deposit.depositedAmount = ZERO_BI; - deposit.withdrawnAmount = ZERO_BI; - deposit.bdv = ZERO_BI; - deposit.depositedBDV = ZERO_BI; - deposit.withdrawnBDV = ZERO_BI; - deposit.hashes = []; - deposit.createdAt = ZERO_BI; - deposit.updatedAt = ZERO_BI; - deposit.save(); - } - return deposit; -} - -export function loadSiloDepositV3(account: Address, token: Address, stem: BigInt): SiloDeposit { - let id = account.toHexString() + "-" + token.toHexString() + "-" + stem.toString(); - let deposit = SiloDeposit.load(id); - if (deposit == null) { - let beanstalk = loadBeanstalk(BEANSTALK); - deposit = new SiloDeposit(id); - deposit.farmer = account.toHexString(); - deposit.token = token.toHexString(); - deposit.season = beanstalk.lastSeason; - deposit.stem = stem; - deposit.amount = ZERO_BI; - deposit.depositedAmount = ZERO_BI; - deposit.withdrawnAmount = ZERO_BI; - deposit.bdv = ZERO_BI; - deposit.depositedBDV = ZERO_BI; - deposit.withdrawnBDV = ZERO_BI; - deposit.hashes = []; - deposit.createdAt = ZERO_BI; - deposit.updatedAt = ZERO_BI; - deposit.save(); - } - return deposit; -} diff --git a/projects/subgraph-beanstalk/src/utils/SiloEntities.ts b/projects/subgraph-beanstalk/src/utils/SiloEntities.ts new file mode 100644 index 0000000000..e556957340 --- /dev/null +++ b/projects/subgraph-beanstalk/src/utils/SiloEntities.ts @@ -0,0 +1,299 @@ +import { Address, BigInt, Bytes } from "@graphprotocol/graph-ts"; +import { + Silo, + SiloHourlySnapshot, + SiloDailySnapshot, + SiloDeposit, + SiloWithdraw, + SiloYield, + SiloAssetDailySnapshot, + SiloAssetHourlySnapshot, + SiloAsset, + WhitelistTokenSetting, + TokenYield +} from "../../generated/schema"; +import { BEANSTALK } from "../../../subgraph-core/utils/Constants"; +import { dayFromTimestamp, hourFromTimestamp } from "./Dates"; +import { ZERO_BD, ZERO_BI } from "../../../subgraph-core/utils/Decimals"; +import { loadBeanstalk } from "./Beanstalk"; + +/* ===== Base Silo Entities ===== */ + +export function loadSilo(account: Address): Silo { + let silo = Silo.load(account.toHexString()); + if (silo == null) { + silo = new Silo(account.toHexString()); + silo.beanstalk = BEANSTALK.toHexString(); + if (account !== BEANSTALK) { + silo.farmer = account.toHexString(); + } + silo.whitelistedTokens = []; + silo.depositedBDV = ZERO_BI; + silo.stalk = ZERO_BI; + silo.plantableStalk = ZERO_BI; + silo.seeds = ZERO_BI; + silo.grownStalkPerBdvPerSeason = ZERO_BI; + silo.roots = ZERO_BI; + silo.beanMints = ZERO_BI; + silo.activeFarmers = 0; + silo.save(); + } + return silo as Silo; +} + +export function loadSiloHourlySnapshot(account: Address, season: i32, timestamp: BigInt): SiloHourlySnapshot { + let hour = hourFromTimestamp(timestamp); + let id = account.toHexString() + "-" + season.toString(); + let snapshot = SiloHourlySnapshot.load(id); + if (snapshot == null) { + snapshot = new SiloHourlySnapshot(id); + let silo = loadSilo(account); + snapshot.season = season; + snapshot.silo = account.toHexString(); + snapshot.depositedBDV = silo.depositedBDV; + snapshot.stalk = silo.stalk; + snapshot.plantableStalk = silo.plantableStalk; + snapshot.seeds = silo.seeds; + snapshot.grownStalkPerBdvPerSeason = silo.grownStalkPerBdvPerSeason; + snapshot.roots = silo.roots; + snapshot.beanMints = silo.beanMints; + snapshot.activeFarmers = silo.activeFarmers; + snapshot.deltaDepositedBDV = ZERO_BI; + snapshot.deltaStalk = ZERO_BI; + snapshot.deltaPlantableStalk = ZERO_BI; + snapshot.deltaSeeds = ZERO_BI; + snapshot.deltaRoots = ZERO_BI; + snapshot.deltaBeanMints = ZERO_BI; + snapshot.deltaActiveFarmers = 0; + snapshot.createdAt = BigInt.fromString(hour); + snapshot.updatedAt = timestamp; + snapshot.save(); + } + return snapshot as SiloHourlySnapshot; +} + +export function loadSiloDailySnapshot(account: Address, timestamp: BigInt): SiloDailySnapshot { + let day = dayFromTimestamp(timestamp); + let id = account.toHexString() + "-" + day.toString(); + let snapshot = SiloDailySnapshot.load(id); + if (snapshot == null) { + snapshot = new SiloDailySnapshot(id); + let silo = loadSilo(account); + snapshot.season = 0; + snapshot.silo = account.toHexString(); + snapshot.depositedBDV = silo.depositedBDV; + snapshot.stalk = silo.stalk; + snapshot.plantableStalk = silo.plantableStalk; + snapshot.seeds = silo.seeds; + snapshot.grownStalkPerBdvPerSeason = silo.grownStalkPerBdvPerSeason; + snapshot.roots = silo.roots; + snapshot.beanMints = silo.beanMints; + snapshot.activeFarmers = silo.activeFarmers; + snapshot.deltaDepositedBDV = ZERO_BI; + snapshot.deltaStalk = ZERO_BI; + snapshot.deltaPlantableStalk = ZERO_BI; + snapshot.deltaSeeds = ZERO_BI; + snapshot.deltaRoots = ZERO_BI; + snapshot.deltaBeanMints = ZERO_BI; + snapshot.deltaActiveFarmers = 0; + snapshot.createdAt = BigInt.fromString(day); + snapshot.updatedAt = timestamp; + snapshot.save(); + } + return snapshot as SiloDailySnapshot; +} + +/* ===== Asset Entities ===== */ + +export function loadSiloAsset(account: Address, token: Address): SiloAsset { + let id = account.toHexString() + "-" + token.toHexString(); + let asset = SiloAsset.load(id); + + if (asset == null) { + //let tokenEntity = loadToken(token) + asset = new SiloAsset(id); + asset.silo = account.toHexString(); + asset.token = token.toHexString(); + asset.depositedBDV = ZERO_BI; + asset.depositedAmount = ZERO_BI; + asset.withdrawnAmount = ZERO_BI; + asset.farmAmount = ZERO_BI; + asset.save(); + } + return asset as SiloAsset; +} + +export function loadSiloAssetHourlySnapshot(account: Address, token: Address, season: i32, timestamp: BigInt): SiloAssetHourlySnapshot { + let hour = hourFromTimestamp(timestamp); + let id = account.toHexString() + "-" + token.toHexString() + "-" + season.toString(); + let snapshot = SiloAssetHourlySnapshot.load(id); + if (snapshot == null) { + let asset = loadSiloAsset(account, token); + snapshot = new SiloAssetHourlySnapshot(id); + snapshot.season = season; + snapshot.siloAsset = asset.id; + snapshot.depositedBDV = asset.depositedBDV; + snapshot.depositedAmount = asset.depositedAmount; + snapshot.withdrawnAmount = asset.withdrawnAmount; + snapshot.farmAmount = asset.farmAmount; + snapshot.deltaDepositedBDV = ZERO_BI; + snapshot.deltaDepositedAmount = ZERO_BI; + snapshot.deltaWithdrawnAmount = ZERO_BI; + snapshot.deltaFarmAmount = ZERO_BI; + snapshot.createdAt = BigInt.fromString(hour); + snapshot.updatedAt = ZERO_BI; + snapshot.save(); + } + return snapshot as SiloAssetHourlySnapshot; +} + +export function loadSiloAssetDailySnapshot(account: Address, token: Address, timestamp: BigInt): SiloAssetDailySnapshot { + let day = dayFromTimestamp(timestamp); + let id = account.toHexString() + "-" + token.toHexString() + "-" + day.toString(); + let snapshot = SiloAssetDailySnapshot.load(id); + if (snapshot == null) { + let asset = loadSiloAsset(account, token); + snapshot = new SiloAssetDailySnapshot(id); + snapshot.season = 0; + snapshot.siloAsset = asset.id; + snapshot.depositedBDV = asset.depositedBDV; + snapshot.depositedAmount = asset.depositedAmount; + snapshot.withdrawnAmount = asset.withdrawnAmount; + snapshot.farmAmount = asset.farmAmount; + snapshot.deltaDepositedBDV = ZERO_BI; + snapshot.deltaDepositedAmount = ZERO_BI; + snapshot.deltaWithdrawnAmount = ZERO_BI; + snapshot.deltaFarmAmount = ZERO_BI; + snapshot.createdAt = BigInt.fromString(day); + snapshot.updatedAt = ZERO_BI; + snapshot.save(); + } + return snapshot as SiloAssetDailySnapshot; +} + +/* ===== Whitelist Token Settings Entities ===== */ + +export function loadWhitelistTokenSetting(token: Address): WhitelistTokenSetting { + let setting = WhitelistTokenSetting.load(token); + if (setting == null) { + setting = new WhitelistTokenSetting(token); + setting.selector = Bytes.empty(); + setting.stalkEarnedPerSeason = ZERO_BI; + setting.stalkIssuedPerBdv = ZERO_BI; + setting.milestoneSeason = 0; + setting.updatedAt = ZERO_BI; + setting.save(); + } + return setting as WhitelistTokenSetting; +} + +/* ===== Deposit Entities ===== */ + +export function loadSiloDeposit(account: Address, token: Address, season: BigInt): SiloDeposit { + let id = account.toHexString() + "-" + token.toHexString() + "-" + season.toString(); + let deposit = SiloDeposit.load(id); + if (deposit == null) { + deposit = new SiloDeposit(id); + deposit.farmer = account.toHexString(); + deposit.token = token.toHexString(); + deposit.season = season.toI32(); + deposit.amount = ZERO_BI; + deposit.depositedAmount = ZERO_BI; + deposit.withdrawnAmount = ZERO_BI; + deposit.bdv = ZERO_BI; + deposit.depositedBDV = ZERO_BI; + deposit.withdrawnBDV = ZERO_BI; + deposit.hashes = []; + deposit.createdAt = ZERO_BI; + deposit.updatedAt = ZERO_BI; + deposit.save(); + } + return deposit; +} + +export function loadSiloDepositV3(account: Address, token: Address, stem: BigInt): SiloDeposit { + let id = account.toHexString() + "-" + token.toHexString() + "-" + stem.toString(); + let deposit = SiloDeposit.load(id); + if (deposit == null) { + let beanstalk = loadBeanstalk(BEANSTALK); + deposit = new SiloDeposit(id); + deposit.farmer = account.toHexString(); + deposit.token = token.toHexString(); + deposit.season = beanstalk.lastSeason; + deposit.stem = stem; + deposit.amount = ZERO_BI; + deposit.depositedAmount = ZERO_BI; + deposit.withdrawnAmount = ZERO_BI; + deposit.bdv = ZERO_BI; + deposit.depositedBDV = ZERO_BI; + deposit.withdrawnBDV = ZERO_BI; + deposit.hashes = []; + deposit.createdAt = ZERO_BI; + deposit.updatedAt = ZERO_BI; + deposit.save(); + } + return deposit; +} + +/* ===== Withdraw Entities ===== */ + +export function loadSiloWithdraw(account: Address, token: Address, season: i32): SiloWithdraw { + let id = account.toHexString() + "-" + token.toHexString() + "-" + season.toString(); + let withdraw = SiloWithdraw.load(id); + if (withdraw == null) { + withdraw = new SiloWithdraw(id); + withdraw.farmer = account.toHexString(); + withdraw.token = token.toHexString(); + withdraw.withdrawSeason = season; + withdraw.claimableSeason = season + 1; + withdraw.claimed = false; + withdraw.amount = ZERO_BI; + withdraw.hashes = []; + withdraw.createdAt = ZERO_BI; + withdraw.save(); + } + return withdraw as SiloWithdraw; +} + +/* ===== Yield Entities ===== */ + +export function loadSiloYield(season: i32): SiloYield { + let siloYield = SiloYield.load(season.toString()); + if (siloYield == null) { + siloYield = new SiloYield(season.toString()); + siloYield.season = season; + siloYield.beta = ZERO_BD; + siloYield.u = 0; + siloYield.beansPerSeasonEMA = ZERO_BD; + siloYield.zeroSeedBeanAPY = ZERO_BD; + siloYield.twoSeedBeanAPY = ZERO_BD; + siloYield.twoSeedStalkAPY = ZERO_BD; + siloYield.threeSeedBeanAPY = ZERO_BD; + siloYield.threeSeedStalkAPY = ZERO_BD; + siloYield.threePointTwoFiveSeedBeanAPY = ZERO_BD; + siloYield.threePointTwoFiveSeedStalkAPY = ZERO_BD; + siloYield.fourSeedBeanAPY = ZERO_BD; + siloYield.fourSeedStalkAPY = ZERO_BD; + siloYield.fourPointFiveSeedBeanAPY = ZERO_BD; + siloYield.fourPointFiveSeedStalkAPY = ZERO_BD; + siloYield.whitelistedTokens = []; + siloYield.tokenAPYS = []; + siloYield.createdAt = ZERO_BI; + siloYield.save(); + } + return siloYield as SiloYield; +} + +export function loadTokenYield(token: Address, season: i32): TokenYield { + let id = token.concatI32(season); + let tokenYield = TokenYield.load(id); + if (tokenYield == null) { + tokenYield = new TokenYield(id); + tokenYield.token = token; + tokenYield.season = season; + tokenYield.beanAPY = ZERO_BD; + tokenYield.stalkAPY = ZERO_BD; + tokenYield.save(); + } + return tokenYield as TokenYield; +} diff --git a/projects/subgraph-beanstalk/src/utils/SiloWithdraw.ts b/projects/subgraph-beanstalk/src/utils/SiloWithdraw.ts deleted file mode 100644 index 4a0b809931..0000000000 --- a/projects/subgraph-beanstalk/src/utils/SiloWithdraw.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { Address } from "@graphprotocol/graph-ts"; -import { SiloWithdraw } from "../../generated/schema"; -import { ZERO_BI } from "../../../subgraph-core/utils/Decimals"; - -export function loadSiloWithdraw(account: Address, token: Address, season: i32): SiloWithdraw { - let id = account.toHexString() + "-" + token.toHexString() + "-" + season.toString(); - let withdraw = SiloWithdraw.load(id); - if (withdraw == null) { - withdraw = new SiloWithdraw(id); - withdraw.farmer = account.toHexString(); - withdraw.token = token.toHexString(); - withdraw.withdrawSeason = season; - withdraw.claimableSeason = season + 1; - withdraw.claimed = false; - withdraw.amount = ZERO_BI; - withdraw.hashes = []; - withdraw.createdAt = ZERO_BI; - withdraw.save(); - } - return withdraw as SiloWithdraw; -} diff --git a/projects/subgraph-beanstalk/src/utils/SiloYield.ts b/projects/subgraph-beanstalk/src/utils/SiloYield.ts deleted file mode 100644 index c99ebfa9b5..0000000000 --- a/projects/subgraph-beanstalk/src/utils/SiloYield.ts +++ /dev/null @@ -1,27 +0,0 @@ -import { SiloYield } from "../../generated/schema"; -import { ZERO_BD, ZERO_BI } from "../../../subgraph-core/utils/Decimals"; - -export function loadSiloYield(season: i32): SiloYield { - let siloYield = SiloYield.load(season.toString()); - if (siloYield == null) { - siloYield = new SiloYield(season.toString()); - siloYield.season = season; - siloYield.beta = ZERO_BD; - siloYield.u = 0; - siloYield.beansPerSeasonEMA = ZERO_BD; - siloYield.zeroSeedBeanAPY = ZERO_BD; - siloYield.twoSeedBeanAPY = ZERO_BD; - siloYield.twoSeedStalkAPY = ZERO_BD; - siloYield.threeSeedBeanAPY = ZERO_BD; - siloYield.threeSeedStalkAPY = ZERO_BD; - siloYield.threePointTwoFiveSeedBeanAPY = ZERO_BD; - siloYield.threePointTwoFiveSeedStalkAPY = ZERO_BD; - siloYield.fourSeedBeanAPY = ZERO_BD; - siloYield.fourSeedStalkAPY = ZERO_BD; - siloYield.fourPointFiveSeedBeanAPY = ZERO_BD; - siloYield.fourPointFiveSeedStalkAPY = ZERO_BD; - siloYield.createdAt = ZERO_BI; - siloYield.save(); - } - return siloYield as SiloYield; -} From 153e59777bbd452862c8aa356dd2e22ae2b31280 Mon Sep 17 00:00:00 2001 From: Cujowolf Date: Wed, 13 Dec 2023 13:37:35 -0600 Subject: [PATCH 02/14] Stalk per BDV tracking and vAPY calc updates --- projects/subgraph-beanstalk/schema.graphql | 38 +++ .../subgraph-beanstalk/src/YieldHandler.ts | 240 ++++++++++-------- projects/subgraph-beanstalk/subgraph.yaml | 2 + 3 files changed, 181 insertions(+), 99 deletions(-) diff --git a/projects/subgraph-beanstalk/schema.graphql b/projects/subgraph-beanstalk/schema.graphql index f86ed29f66..b5c02f2c4c 100644 --- a/projects/subgraph-beanstalk/schema.graphql +++ b/projects/subgraph-beanstalk/schema.graphql @@ -114,6 +114,8 @@ type Silo @entity { plantableStalk: BigInt! "Current seeds balance" seeds: BigInt! + "Current average grown stalk per bdv per season" + grownStalkPerBdvPerSeason: BigInt! "Current roots balance" roots: BigInt! "Cumulative total for bean mints sent to the silo" @@ -141,6 +143,8 @@ type SiloHourlySnapshot @entity { plantableStalk: BigInt! "Point in time current seeds balance" seeds: BigInt! + "Point in time average grown stalk per bdv per season" + grownStalkPerBdvPerSeason: BigInt! "Point in time current roots balance" roots: BigInt! "Point in time cumulative total for bean mints sent to the silo" @@ -182,6 +186,8 @@ type SiloDailySnapshot @entity { plantableStalk: BigInt! "Point in time current seeds balance" seeds: BigInt! + "Point in time average grown stalk per bdv per season" + grownStalkPerBdvPerSeason: BigInt! "Point in time current roots balance" roots: BigInt! "Point in time cumulative total for bean mints sent to the silo" @@ -320,10 +326,42 @@ type SiloYield @entity { fourPointFiveSeedBeanAPY: BigDecimal! "Stalk APY for 4.5 seeds per BDV" fourPointFiveSeedStalkAPY: BigDecimal! + "Current whitelisted silo tokens" + whitelistedTokens: [String!]! + "Current Bean (0) and Stalk (1) APY for each token." + tokenAPYS: [TokenYield!]! "Unix timestamp of update" createdAt: BigInt! } +type TokenYield @entity { + "Token address - season" + id: Bytes! + "Token being calculated" + token: Bytes! + "Season for APY calculation" + season: Int! + "Bean APY for season" + beanAPY: BigDecimal! + "Stalk APY for season" + stalkAPY: BigDecimal! +} + +type WhitelistTokenSetting @entity { + " Contract address for the whitelisted token " + id: Bytes! + " Encoded BDV selector " + selector: Bytes! + "Represents how much Stalk one BDV of the underlying deposited token grows each season." + stalkEarnedPerSeason: BigInt! + "The stalk per BDV that the silo grants in exchange for depositing this token." + stalkIssuedPerBdv: BigInt! + "The last season in which the stalkEarnedPerSeason for this token was updated." + milestoneSeason: Int! + "Last timestamp entity was updated" + updatedAt: BigInt! +} + type Field @entity { " Contract address for this field or farmer " id: ID! diff --git a/projects/subgraph-beanstalk/src/YieldHandler.ts b/projects/subgraph-beanstalk/src/YieldHandler.ts index b724b5dab2..412ed80d90 100644 --- a/projects/subgraph-beanstalk/src/YieldHandler.ts +++ b/projects/subgraph-beanstalk/src/YieldHandler.ts @@ -1,22 +1,30 @@ -import { BigDecimal, BigInt } from "@graphprotocol/graph-ts"; +import { Address, BigDecimal, BigInt } from "@graphprotocol/graph-ts"; import { Beanstalk } from "../generated/Season-Replanted/Beanstalk"; -import { BEANSTALK, FERTILIZER } from "../../subgraph-core/utils/Constants"; +import { BEANSTALK, BEAN_ERC20, FERTILIZER } from "../../subgraph-core/utils/Constants"; import { toDecimal, ZERO_BD } from "../../subgraph-core/utils/Decimals"; import { loadFertilizer } from "./utils/Fertilizer"; import { loadFertilizerYield } from "./utils/FertilizerYield"; import { loadSilo, loadSiloHourlySnapshot, loadSiloYield, loadTokenYield, loadWhitelistTokenSetting } from "./utils/SiloEntities"; // import { +// HISTORIC_VAPY_8_000, +// HISTORIC_VAPY_10_000, +// HISTORIC_VAPY_12_000, +// HISTORIC_VAPY_14_000, +// HISTORIC_VAPY_16_000 +// } from "./utils/HistoricYield"; // import { HISTORIC_VAPY } from "./utils/HistoricYield"; const MAX_WINDOW = 720; // Note: minimum value of `t` is 6075 export function updateBeanEMA(t: i32, timestamp: BigInt): void { + let silo = loadSilo(BEANSTALK); let siloYield = loadSiloYield(t); // When less then MAX_WINDOW data points are available, // smooth over whatever is available. Otherwise use MAX_WINDOW. siloYield.u = t - 6074 < MAX_WINDOW ? t - 6074 : MAX_WINDOW; + siloYield.whitelistedTokens = silo.whitelistedTokens; // Calculate the current beta value siloYield.beta = BigDecimal.fromString("2").div(BigDecimal.fromString((siloYield.u + 1).toString())); @@ -45,104 +53,132 @@ export function updateBeanEMA(t: i32, timestamp: BigInt): void { siloYield.createdAt = timestamp; siloYield.save(); - // This iterates through 8760 times to calculate the silo APY - let silo = loadSilo(BEANSTALK); + // Step through the whitelisted tokens and calculate the silo APY - // Pull from historically calculated values prior to season 15457 rather than iterating + let beanGrownStalk = loadWhitelistTokenSetting(BEAN_ERC20).stalkEarnedPerSeason; + let tokenIds = siloYield.tokenAPYS; - let cacheIndex = -1; - if (t <= 8000) { - cacheIndex = t - 6075; - - siloYield.twoSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_8_000[cacheIndex][1]); - siloYield.twoSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_8_000[cacheIndex][2]); - siloYield.threeSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_8_000[cacheIndex][3]); - siloYield.threeSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_8_000[cacheIndex][4]); - siloYield.threePointTwoFiveSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_8_000[cacheIndex][5]); - siloYield.threePointTwoFiveSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_8_000[cacheIndex][6]); - siloYield.fourSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_8_000[cacheIndex][7]); - siloYield.fourSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_8_000[cacheIndex][8]); - siloYield.fourPointFiveSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_8_000[cacheIndex][9]); - siloYield.fourPointFiveSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_8_000[cacheIndex][10]); - siloYield.zeroSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_8_000[cacheIndex][11]); - } else if (t <= 10000) { - cacheIndex = t - 8001; - - siloYield.twoSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_10_000[cacheIndex][1]); - siloYield.twoSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_10_000[cacheIndex][2]); - siloYield.threeSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_10_000[cacheIndex][3]); - siloYield.threeSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_10_000[cacheIndex][4]); - siloYield.threePointTwoFiveSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_10_000[cacheIndex][5]); - siloYield.threePointTwoFiveSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_10_000[cacheIndex][6]); - siloYield.fourSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_10_000[cacheIndex][7]); - siloYield.fourSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_10_000[cacheIndex][8]); - siloYield.fourPointFiveSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_10_000[cacheIndex][9]); - siloYield.fourPointFiveSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_10_000[cacheIndex][10]); - siloYield.zeroSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_10_000[cacheIndex][11]); - } else if (t <= 12000) { - cacheIndex = t - 10001; - - siloYield.twoSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_12_000[cacheIndex][1]); - siloYield.twoSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_12_000[cacheIndex][2]); - siloYield.threeSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_12_000[cacheIndex][3]); - siloYield.threeSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_12_000[cacheIndex][4]); - siloYield.threePointTwoFiveSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_12_000[cacheIndex][5]); - siloYield.threePointTwoFiveSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_12_000[cacheIndex][6]); - siloYield.fourSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_12_000[cacheIndex][7]); - siloYield.fourSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_12_000[cacheIndex][8]); - siloYield.fourPointFiveSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_12_000[cacheIndex][9]); - siloYield.fourPointFiveSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_12_000[cacheIndex][10]); - siloYield.zeroSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_12_000[cacheIndex][11]); - } else if (t <= 14000) { - cacheIndex = t - 12001; - - siloYield.twoSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_14_000[cacheIndex][1]); - siloYield.twoSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_14_000[cacheIndex][2]); - siloYield.threeSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_14_000[cacheIndex][3]); - siloYield.threeSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_14_000[cacheIndex][4]); - siloYield.threePointTwoFiveSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_14_000[cacheIndex][5]); - siloYield.threePointTwoFiveSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_14_000[cacheIndex][6]); - siloYield.fourSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_14_000[cacheIndex][7]); - siloYield.fourSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_14_000[cacheIndex][8]); - siloYield.fourPointFiveSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_14_000[cacheIndex][9]); - siloYield.fourPointFiveSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_14_000[cacheIndex][10]); - siloYield.zeroSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_14_000[cacheIndex][11]); - } else if (t <= 15457) { - cacheIndex = t - 14001; - - siloYield.twoSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_16_000[cacheIndex][1]); - siloYield.twoSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_16_000[cacheIndex][2]); - siloYield.threeSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_16_000[cacheIndex][3]); - siloYield.threeSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_16_000[cacheIndex][4]); - siloYield.threePointTwoFiveSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_16_000[cacheIndex][5]); - siloYield.threePointTwoFiveSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_16_000[cacheIndex][6]); - siloYield.fourSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_16_000[cacheIndex][7]); - siloYield.fourSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_16_000[cacheIndex][8]); - siloYield.fourPointFiveSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_16_000[cacheIndex][9]); - siloYield.fourPointFiveSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_16_000[cacheIndex][10]); - siloYield.zeroSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_16_000[cacheIndex][11]); - } else { - let twoSeedAPY = calculateAPY(currentEMA, BigDecimal.fromString("2"), silo.stalk, silo.seeds); - siloYield.twoSeedBeanAPY = twoSeedAPY[0]; - siloYield.twoSeedStalkAPY = twoSeedAPY[1]; - let fourSeedAPY = calculateAPY(currentEMA, BigDecimal.fromString("4"), silo.stalk, silo.seeds); - siloYield.fourSeedBeanAPY = fourSeedAPY[0]; - siloYield.fourSeedStalkAPY = fourSeedAPY[1]; - siloYield.zeroSeedBeanAPY = calculateAPY(currentEMA, ZERO_BD, silo.stalk, silo.seeds)[0]; - - // BIP-37 Seed changes - let threeSeedAPY = calculateAPY(currentEMA, BigDecimal.fromString("3"), silo.stalk, silo.seeds); - siloYield.threeSeedBeanAPY = threeSeedAPY[0]; - siloYield.threeSeedStalkAPY = threeSeedAPY[1]; - let threePointTwoFiveSeedAPY = calculateAPY(currentEMA, BigDecimal.fromString("3.25"), silo.stalk, silo.seeds); - siloYield.threePointTwoFiveSeedBeanAPY = threePointTwoFiveSeedAPY[0]; - siloYield.threePointTwoFiveSeedStalkAPY = threePointTwoFiveSeedAPY[1]; - let fourPointFiveSeedAPY = calculateAPY(currentEMA, BigDecimal.fromString("4.5"), silo.stalk, silo.seeds); - siloYield.fourPointFiveSeedBeanAPY = fourPointFiveSeedAPY[0]; - siloYield.fourPointFiveSeedStalkAPY = fourPointFiveSeedAPY[1]; + for (let i = 0; i < siloYield.whitelistedTokens.length; i++) { + let token = Address.fromString(siloYield.whitelistedTokens[i]); + let siloSettings = loadWhitelistTokenSetting(token); + let tokenYield = loadTokenYield(token, t); + + let tokenAPY = calculateAPY( + currentEMA, + toDecimal(siloSettings.stalkEarnedPerSeason), // old seeds + toDecimal(beanGrownStalk), // old seeds per bean + silo.stalk, + silo.seeds + ); + tokenYield.beanAPY = tokenAPY[0]; + tokenYield.stalkAPY = tokenAPY[1]; + tokenYield.save(); + + tokenIds.push(tokenYield.id); } + + siloYield.tokenAPYS = tokenIds; siloYield.save(); + // This iterates through 8760 times to calculate the silo APY + // let silo = loadSilo(BEANSTALK); + + // Pull from historically calculated values prior to season 15457 rather than iterating + + // let cacheIndex = -1; + // if (t <= 8000) { + // cacheIndex = t - 6075; + + // siloYield.twoSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_8_000[cacheIndex][1]); + // siloYield.twoSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_8_000[cacheIndex][2]); + // siloYield.threeSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_8_000[cacheIndex][3]); + // siloYield.threeSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_8_000[cacheIndex][4]); + // siloYield.threePointTwoFiveSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_8_000[cacheIndex][5]); + // siloYield.threePointTwoFiveSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_8_000[cacheIndex][6]); + // siloYield.fourSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_8_000[cacheIndex][7]); + // siloYield.fourSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_8_000[cacheIndex][8]); + // siloYield.fourPointFiveSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_8_000[cacheIndex][9]); + // siloYield.fourPointFiveSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_8_000[cacheIndex][10]); + // siloYield.zeroSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_8_000[cacheIndex][11]); + // } + // } else if (t <= 10000) { + // cacheIndex = t - 8001; + + // siloYield.twoSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_10_000[cacheIndex][1]); + // siloYield.twoSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_10_000[cacheIndex][2]); + // siloYield.threeSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_10_000[cacheIndex][3]); + // siloYield.threeSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_10_000[cacheIndex][4]); + // siloYield.threePointTwoFiveSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_10_000[cacheIndex][5]); + // siloYield.threePointTwoFiveSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_10_000[cacheIndex][6]); + // siloYield.fourSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_10_000[cacheIndex][7]); + // siloYield.fourSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_10_000[cacheIndex][8]); + // siloYield.fourPointFiveSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_10_000[cacheIndex][9]); + // siloYield.fourPointFiveSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_10_000[cacheIndex][10]); + // siloYield.zeroSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_10_000[cacheIndex][11]); + // } else if (t <= 12000) { + // cacheIndex = t - 10001; + + // siloYield.twoSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_12_000[cacheIndex][1]); + // siloYield.twoSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_12_000[cacheIndex][2]); + // siloYield.threeSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_12_000[cacheIndex][3]); + // siloYield.threeSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_12_000[cacheIndex][4]); + // siloYield.threePointTwoFiveSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_12_000[cacheIndex][5]); + // siloYield.threePointTwoFiveSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_12_000[cacheIndex][6]); + // siloYield.fourSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_12_000[cacheIndex][7]); + // siloYield.fourSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_12_000[cacheIndex][8]); + // siloYield.fourPointFiveSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_12_000[cacheIndex][9]); + // siloYield.fourPointFiveSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_12_000[cacheIndex][10]); + // siloYield.zeroSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_12_000[cacheIndex][11]); + // } else if (t <= 14000) { + // cacheIndex = t - 12001; + + // siloYield.twoSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_14_000[cacheIndex][1]); + // siloYield.twoSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_14_000[cacheIndex][2]); + // siloYield.threeSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_14_000[cacheIndex][3]); + // siloYield.threeSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_14_000[cacheIndex][4]); + // siloYield.threePointTwoFiveSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_14_000[cacheIndex][5]); + // siloYield.threePointTwoFiveSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_14_000[cacheIndex][6]); + // siloYield.fourSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_14_000[cacheIndex][7]); + // siloYield.fourSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_14_000[cacheIndex][8]); + // siloYield.fourPointFiveSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_14_000[cacheIndex][9]); + // siloYield.fourPointFiveSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_14_000[cacheIndex][10]); + // siloYield.zeroSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_14_000[cacheIndex][11]); + // } else if (t <= 15457) { + // cacheIndex = t - 14001; + + // siloYield.twoSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_16_000[cacheIndex][1]); + // siloYield.twoSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_16_000[cacheIndex][2]); + // siloYield.threeSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_16_000[cacheIndex][3]); + // siloYield.threeSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_16_000[cacheIndex][4]); + // siloYield.threePointTwoFiveSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_16_000[cacheIndex][5]); + // siloYield.threePointTwoFiveSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_16_000[cacheIndex][6]); + // siloYield.fourSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_16_000[cacheIndex][7]); + // siloYield.fourSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_16_000[cacheIndex][8]); + // siloYield.fourPointFiveSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_16_000[cacheIndex][9]); + // siloYield.fourPointFiveSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_16_000[cacheIndex][10]); + // siloYield.zeroSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_16_000[cacheIndex][11]); + // } else { + // let twoSeedAPY = calculateAPY(currentEMA, BigDecimal.fromString("2"), silo.stalk, silo.seeds); + // siloYield.twoSeedBeanAPY = twoSeedAPY[0]; + // siloYield.twoSeedStalkAPY = twoSeedAPY[1]; + // let fourSeedAPY = calculateAPY(currentEMA, BigDecimal.fromString("4"), silo.stalk, silo.seeds); + // siloYield.fourSeedBeanAPY = fourSeedAPY[0]; + // siloYield.fourSeedStalkAPY = fourSeedAPY[1]; + // siloYield.zeroSeedBeanAPY = calculateAPY(currentEMA, ZERO_BD, silo.stalk, silo.seeds)[0]; + + // BIP-37 Seed changes + // let threeSeedAPY = calculateAPY(currentEMA, BigDecimal.fromString("3"), silo.stalk, silo.seeds); + // siloYield.threeSeedBeanAPY = threeSeedAPY[0]; + // siloYield.threeSeedStalkAPY = threeSeedAPY[1]; + // let threePointTwoFiveSeedAPY = calculateAPY(currentEMA, BigDecimal.fromString("3.25"), silo.stalk, silo.seeds); + // siloYield.threePointTwoFiveSeedBeanAPY = threePointTwoFiveSeedAPY[0]; + // siloYield.threePointTwoFiveSeedStalkAPY = threePointTwoFiveSeedAPY[1]; + // let fourPointFiveSeedAPY = calculateAPY(currentEMA, BigDecimal.fromString("4.5"), silo.stalk, silo.seeds); + // siloYield.fourPointFiveSeedBeanAPY = fourPointFiveSeedAPY[0]; + // siloYield.fourPointFiveSeedStalkAPY = fourPointFiveSeedAPY[1]; + // } + // siloYield.save(); + updateFertAPY(t, timestamp); } @@ -154,11 +190,17 @@ export function updateBeanEMA(t: i32, timestamp: BigInt): void { * @returns */ -export function calculateAPY(n: BigDecimal, seedsPerBDV: BigDecimal, stalk: BigInt, seeds: BigInt): StaticArray { +export function calculateAPY( + n: BigDecimal, + seedsPerBDV: BigDecimal, + seedsPerBeanBDV: BigDecimal, + stalk: BigInt, + seeds: BigInt +): StaticArray { // Initialize sequence let C = toDecimal(seeds); // Init: Total Seeds let K = toDecimal(stalk, 10); // Init: Total Stalk - let b = seedsPerBDV.div(BigDecimal.fromString("3")); // Init: User BDV + let b = seedsPerBDV.div(seedsPerBeanBDV); // Init: User BDV let k = BigDecimal.fromString("1"); // Init: User Stalk // Farmer initial values @@ -173,7 +215,7 @@ export function calculateAPY(n: BigDecimal, seedsPerBDV: BigDecimal, stalk: BigI // Stalk and Seeds per Deposited Bean. let STALK_PER_SEED = BigDecimal.fromString("0.0001"); // 1/10,000 Stalk per Seed - let STALK_PER_BEAN = BigDecimal.fromString("0.0003"); // 3 Seeds per Bean * 1/10,000 Stalk per Seed + let STALK_PER_BEAN = seedsPerBeanBDV.div(BigDecimal.fromString("10000")); // 3 Seeds per Bean * 1/10,000 Stalk per Seed for (let i = 0; i < 8760; i++) { // Each Season, Farmer's ownership = `current Stalk / total Stalk` @@ -181,7 +223,7 @@ export function calculateAPY(n: BigDecimal, seedsPerBDV: BigDecimal, stalk: BigI let newBDV = n.times(ownership); // Total Seeds: each seignorage Bean => 3 Seeds - C_i = C.plus(n.times(BigDecimal.fromString("3"))); + C_i = C.plus(n.times(seedsPerBeanBDV)); // Total Stalk: each seignorage Bean => 1 Stalk, each outstanding Bean => 1/10_000 Stalk K_i = K.plus(n).plus(STALK_PER_SEED.times(C)); // Farmer BDV: each seignorage Bean => 1 BDV diff --git a/projects/subgraph-beanstalk/subgraph.yaml b/projects/subgraph-beanstalk/subgraph.yaml index 9700690be2..3dafd0e48b 100644 --- a/projects/subgraph-beanstalk/subgraph.yaml +++ b/projects/subgraph-beanstalk/subgraph.yaml @@ -32,6 +32,8 @@ dataSources: handler: handleRemoveDeposits_V3 - event: WhitelistToken(indexed address,bytes4,uint32,uint256) handler: handleWhitelistToken_V3 + - event: UpdatedStalkPerBdvPerSeason(indexed address,uint32,uint32) + handler: handleUpdatedStalkPerBdvPerSeason file: ./src/SiloHandler.ts # Silo V2 / Replanted - kind: ethereum/contract From 837fb202946ed908234a769be9a85894948a3fdd Mon Sep 17 00:00:00 2001 From: Cujowolf Date: Wed, 13 Dec 2023 16:00:17 -0600 Subject: [PATCH 03/14] Add timestamp to TokenYield --- projects/subgraph-beanstalk/src/YieldHandler.ts | 1 + projects/subgraph-beanstalk/src/utils/SiloEntities.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/projects/subgraph-beanstalk/src/YieldHandler.ts b/projects/subgraph-beanstalk/src/YieldHandler.ts index 412ed80d90..709730137f 100644 --- a/projects/subgraph-beanstalk/src/YieldHandler.ts +++ b/projects/subgraph-beanstalk/src/YieldHandler.ts @@ -72,6 +72,7 @@ export function updateBeanEMA(t: i32, timestamp: BigInt): void { ); tokenYield.beanAPY = tokenAPY[0]; tokenYield.stalkAPY = tokenAPY[1]; + tokenYield.createdAt = timestamp; tokenYield.save(); tokenIds.push(tokenYield.id); diff --git a/projects/subgraph-beanstalk/src/utils/SiloEntities.ts b/projects/subgraph-beanstalk/src/utils/SiloEntities.ts index e556957340..f417245378 100644 --- a/projects/subgraph-beanstalk/src/utils/SiloEntities.ts +++ b/projects/subgraph-beanstalk/src/utils/SiloEntities.ts @@ -293,6 +293,7 @@ export function loadTokenYield(token: Address, season: i32): TokenYield { tokenYield.season = season; tokenYield.beanAPY = ZERO_BD; tokenYield.stalkAPY = ZERO_BD; + tokenYield.createdAt = ZERO_BI; tokenYield.save(); } return tokenYield as TokenYield; From 31074923beda78b4930e86ff9ab952efe5f0b8bb Mon Sep 17 00:00:00 2001 From: Cujowolf Date: Wed, 13 Dec 2023 16:10:04 -0600 Subject: [PATCH 04/14] Initial vAPY changes related to subgraph schema update --- .../src/components/Analytics/Silo/APY.graphql | 30 ++++--------- .../ui/src/components/Analytics/Silo/APY.tsx | 28 +++++++----- .../src/components/Analytics/Silo/index.tsx | 27 ++++++----- .../src/components/Silo/SiloAssetApyChip.tsx | 13 +----- .../ui/src/graph/queries/LatestAPY.graphql | 20 +++------ projects/ui/src/hooks/beanstalk/useAPY.ts | 45 ++++++++----------- 6 files changed, 66 insertions(+), 97 deletions(-) diff --git a/projects/ui/src/components/Analytics/Silo/APY.graphql b/projects/ui/src/components/Analytics/Silo/APY.graphql index 189c694327..f3674325df 100644 --- a/projects/ui/src/components/Analytics/Silo/APY.graphql +++ b/projects/ui/src/components/Analytics/Silo/APY.graphql @@ -1,31 +1,17 @@ query SeasonalAPY( - $season_lte: Int, - $season_gt: Int, + $season_lte: Int + $season_gt: Int $first: Int + $token: Bytes ) { - seasons: siloYields( - where: { - season_lte: $season_lte, - season_gt: $season_gt, - } - first: $first, - orderBy: season, + seasons: tokenYields( + where: { season_lte: $season_lte, season_gt: $season_gt, token: $token } + first: $first + orderBy: season orderDirection: desc ) { - id season - zeroSeedBeanAPY - twoSeedBeanAPY - twoSeedStalkAPY - fourSeedBeanAPY - fourSeedStalkAPY - threeSeedBeanAPY - threeSeedStalkAPY - threePointTwoFiveSeedBeanAPY - threePointTwoFiveSeedStalkAPY - fourPointFiveSeedBeanAPY - fourPointFiveSeedStalkAPY - beansPerSeasonEMA + beanAPY createdAt } } diff --git a/projects/ui/src/components/Analytics/Silo/APY.tsx b/projects/ui/src/components/Analytics/Silo/APY.tsx index 988fe6b80c..04e8bcd25b 100644 --- a/projects/ui/src/components/Analytics/Silo/APY.tsx +++ b/projects/ui/src/components/Analytics/Silo/APY.tsx @@ -5,6 +5,7 @@ import { LineChartProps } from '~/components/Common/Charts/LineChart'; import SeasonPlot, { SeasonPlotBaseProps, } from '~/components/Common/Charts/SeasonPlot'; +import { SILO_WHITELIST } from '~/constants/tokens'; import { SeasonalApyDocument, SeasonalApyQuery } from '~/generated/graphql'; import { SnapshotData } from '~/hooks/beanstalk/useSeasonsQuery'; @@ -14,25 +15,30 @@ const formatValue = (value: number) => `${value.toFixed(2)}%`; const queryConfig = { variables: { season_gt: 6074, + token: SILO_WHITELIST[0][1].address, }, }; const lineChartProps: Partial = { yTickFormat: tickFormatPercentage, }; const metricToKey = { - ZeroSeeds: 'zeroSeedBeanAPY', - ThreeSeeds: 'threeSeedBeanAPY', - ThreePointTwoFiveSeeds: 'threePointTwoFiveSeedBeanAPY', - FourPointFiveSeeds: 'fourPointFiveSeedBeanAPY', + Bean: SILO_WHITELIST[0][1].address, + Bean3Curve: SILO_WHITELIST[1][1].address, + BeanETHWell: SILO_WHITELIST[2][1].address, + UnripeBean: SILO_WHITELIST[3][1].address, + UnripeBeanETH: SILO_WHITELIST[4][1].address, }; const metricTitles = { - ZeroSeeds: '0 Seeds Bean vAPY', - ThreeSeeds: '3 Seeds Bean vAPY', - ThreePointTwoFiveSeeds: '3.25 Seeds Bean vAPY', - FourPointFiveSeeds: '4.5 Seeds Bean vAPY', + Bean: 'Bean vAPY', + Bean3Curve: 'BEAN3CRV vAPY', + BeanETHWell: 'BEANETH Well vAPY', + UnripeBean: 'urBEAN vAPY', + UnripeBeanETH: 'urBEANETH Well vAPY', }; +console.log(SILO_WHITELIST); + const APY: FC<{ height?: SeasonPlotBaseProps['height']; metric: keyof typeof metricToKey; @@ -42,10 +48,8 @@ const APY: FC<{ document={SeasonalApyDocument} getValue={useCallback( (season: SnapshotData) => - new BigNumber(season[metricToKey[metric] as keyof typeof season]) - .times(100) - .toNumber(), - [metric] + new BigNumber(season.beanAPY).times(100).toNumber(), + [] )} formatValue={formatValue} StatProps={useMemo( diff --git a/projects/ui/src/components/Analytics/Silo/index.tsx b/projects/ui/src/components/Analytics/Silo/index.tsx index ff1adafa36..fa9f3ee60e 100644 --- a/projects/ui/src/components/Analytics/Silo/index.tsx +++ b/projects/ui/src/components/Analytics/Silo/index.tsx @@ -22,10 +22,11 @@ const SLUGS = [ 'deposited_urlp', 'stalk', // 'seeds', - '0_seeds_bean_vAPY', - '3_seeds_bean_vAPY', - '3.25_seeds_bean_vAPY', - '4.5_seeds_bean_vAPY', + 'bean_vAPY', + 'bean_3crv_vAPY', + 'bean_eth_well_vAPY', + 'ur_bean_vAPY', + 'ur_bean_eth_vAPY', ]; const SiloAnalytics: FC<{}> = () => { @@ -44,10 +45,11 @@ const SiloAnalytics: FC<{}> = () => { {/* */} - - - - + + + + + {tab === 0 && ( = () => { )} {tab === 5 && } {/* {tab === 5 && } */} - {tab === 6 && } - {tab === 7 && } - {tab === 8 && } - {tab === 9 && } + {tab === 6 && } + {tab === 7 && } + {tab === 8 && } + {tab === 9 && } + {tab === 10 && } ); }; diff --git a/projects/ui/src/components/Silo/SiloAssetApyChip.tsx b/projects/ui/src/components/Silo/SiloAssetApyChip.tsx index 3f05d7f6b9..1d1238a97e 100644 --- a/projects/ui/src/components/Silo/SiloAssetApyChip.tsx +++ b/projects/ui/src/components/Silo/SiloAssetApyChip.tsx @@ -37,18 +37,7 @@ const SiloAssetApyChip: FC = ({ const Bean = useChainConstant(BEAN); const isBean = metric === 'bean'; - const seeds = token.getSeeds(); - const apys = latestYield - ? seeds.eq(0) - ? latestYield.bySeeds['0'] - : seeds.eq(3) - ? latestYield.bySeeds['3'] - : seeds.eq(3.25) - ? latestYield.bySeeds['3.25'] - : seeds.eq(4.5) - ? latestYield.bySeeds['4.5'] - : null - : null; + const apys = latestYield ? latestYield.byToken[token.address] : null; const tokenProps = isBean ? Bean diff --git a/projects/ui/src/graph/queries/LatestAPY.graphql b/projects/ui/src/graph/queries/LatestAPY.graphql index cbcc724fe5..7f775a3c70 100644 --- a/projects/ui/src/graph/queries/LatestAPY.graphql +++ b/projects/ui/src/graph/queries/LatestAPY.graphql @@ -1,18 +1,12 @@ query LatestAPY { - siloYields(first: 1, orderBy: season, orderDirection:desc) { + siloYields(first: 1, orderBy: season, orderDirection: desc) { id season - zeroSeedBeanAPY - twoSeedBeanAPY - twoSeedStalkAPY - fourSeedBeanAPY - fourSeedStalkAPY - threeSeedBeanAPY - threeSeedStalkAPY - threePointTwoFiveSeedBeanAPY - threePointTwoFiveSeedStalkAPY - fourPointFiveSeedBeanAPY - fourPointFiveSeedStalkAPY beansPerSeasonEMA + tokenAPYS { + token + beanAPY + stalkAPY + } } -} \ No newline at end of file +} diff --git a/projects/ui/src/hooks/beanstalk/useAPY.ts b/projects/ui/src/hooks/beanstalk/useAPY.ts index e9657a3281..cdf94117be 100644 --- a/projects/ui/src/hooks/beanstalk/useAPY.ts +++ b/projects/ui/src/hooks/beanstalk/useAPY.ts @@ -9,11 +9,8 @@ type APY = { type APYs = { beansPerSeasonEMA: BigNumber; - bySeeds: { - '0': APY; - '3': APY; - '3.25': APY; - '4.5': APY; + byToken: { + [token: string]: APY; }; }; @@ -25,32 +22,28 @@ export default function useAPY() { return useMemo(() => { if (query.data?.siloYields?.[0]) { const siloYield = query.data.siloYields[0]; + + const apys: APYs = { + beansPerSeasonEMA: new BigNumber(siloYield.beansPerSeasonEMA), + byToken: {}, + }; + + siloYield.tokenAPYS.forEach((tokenAPY) => { + const apy: APY = { + bean: new BigNumber(tokenAPY.beanAPY), + stalk: new BigNumber(tokenAPY.stalkAPY), + }; + + apys.byToken[tokenAPY.token] = apy; + }); + return { loading: query.loading, error: undefined, - data: { - beansPerSeasonEMA: new BigNumber(siloYield.beansPerSeasonEMA), - bySeeds: { - 0: { - bean: new BigNumber(siloYield.zeroSeedBeanAPY), - stalk: new BigNumber(0), - }, - 3: { - bean: new BigNumber(siloYield.threeSeedBeanAPY), - stalk: new BigNumber(siloYield.threeSeedStalkAPY), - }, - 3.25: { - bean: new BigNumber(siloYield.threePointTwoFiveSeedBeanAPY), - stalk: new BigNumber(siloYield.threePointTwoFiveSeedStalkAPY), - }, - 4.5: { - bean: new BigNumber(siloYield.fourPointFiveSeedBeanAPY), - stalk: new BigNumber(siloYield.fourPointFiveSeedStalkAPY), - }, - }, - } as APYs, + data: apys as APYs, }; } + return { loading: query.loading, error: query.error, From a5bc75d38e0ff3c734b23661443d8fcf6bf5a28a Mon Sep 17 00:00:00 2001 From: Cujowolf Date: Wed, 13 Dec 2023 16:11:23 -0600 Subject: [PATCH 05/14] Use testing endpoint for subgraph --- projects/ui/codegen.yml | 2 +- projects/ui/src/graph/graphql.schema.json | 3655 ++++++++++++++++++++- 2 files changed, 3500 insertions(+), 157 deletions(-) diff --git a/projects/ui/codegen.yml b/projects/ui/codegen.yml index 6bff34c530..8cb73dfea4 100644 --- a/projects/ui/codegen.yml +++ b/projects/ui/codegen.yml @@ -1,7 +1,7 @@ overwrite: true schema: [ - "https://graph.node.bean.money/subgraphs/name/beanstalk-dev", + "https://graph.node.bean.money/subgraphs/name/beanstalk-testing", "https://graph.node.bean.money/subgraphs/name/bean-dev", "https://hub.snapshot.org/graphql", "https://api.thegraph.com/subgraphs/name/snapshot-labs/snapshot", diff --git a/projects/ui/src/graph/graphql.schema.json b/projects/ui/src/graph/graphql.schema.json index 9de27bcc7c..3717eda735 100644 --- a/projects/ui/src/graph/graphql.schema.json +++ b/projects/ui/src/graph/graphql.schema.json @@ -15393,6 +15393,12 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "silo__grownStalkPerBdvPerSeason", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "silo__id", "description": null, @@ -22181,6 +22187,12 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "silo__grownStalkPerBdvPerSeason", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "silo__id", "description": null, @@ -106516,7 +106528,64 @@ "deprecationReason": null }, { - "name": "tokens", + "name": "tokenYield", + "description": null, + "args": [ + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny", + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "TokenYield", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenYields", "description": null, "args": [ { @@ -106548,7 +106617,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "Token_orderBy", + "name": "TokenYield_orderBy", "ofType": null }, "defaultValue": null, @@ -106600,7 +106669,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "Token_filter", + "name": "TokenYield_filter", "ofType": null }, "defaultValue": null, @@ -106619,7 +106688,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Token", + "name": "TokenYield", "ofType": null } } @@ -106629,34 +106698,21 @@ "deprecationReason": null }, { - "name": "user", + "name": "tokens", "description": null, "args": [ { - "name": "id", - "description": null, + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "Block_height", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "users", - "description": null, - "args": [ + }, { "name": "first", "description": null, @@ -106665,7 +106721,7 @@ "name": "Int", "ofType": null }, - "defaultValue": null, + "defaultValue": "100", "isDeprecated": false, "deprecationReason": null }, @@ -106673,8 +106729,8 @@ "name": "orderBy", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "Token_orderBy", "ofType": null }, "defaultValue": null, @@ -106701,7 +106757,23 @@ "name": "Int", "ofType": null }, - "defaultValue": null, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny", "isDeprecated": false, "deprecationReason": null }, @@ -106710,7 +106782,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UsersWhere", + "name": "Token_filter", "ofType": null }, "defaultValue": null, @@ -106719,35 +106791,27 @@ } ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "validations", - "description": null, - "args": [], - "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Item", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Token", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "vote", + "name": "user", "description": null, "args": [ { @@ -106765,14 +106829,14 @@ ], "type": { "kind": "OBJECT", - "name": "Vote", + "name": "User", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "votes", + "name": "users", "description": null, "args": [ { @@ -106828,7 +106892,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "VoteWhere", + "name": "UsersWhere", "ofType": null }, "defaultValue": null, @@ -106841,7 +106905,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Vote", + "name": "User", "ofType": null } }, @@ -106849,135 +106913,50 @@ "deprecationReason": null }, { - "name": "vp", + "name": "validations", "description": null, - "args": [ - { - "name": "proposal", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "space", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "voter", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { - "kind": "OBJECT", - "name": "Vp", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Item", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "wellOracle", + "name": "vote", "description": null, "args": [ - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "id", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny", - "isDeprecated": false, - "deprecationReason": null } ], "type": { "kind": "OBJECT", - "name": "WellOracle", + "name": "Vote", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "wellOracles", + "name": "votes", "description": null, "args": [ - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "first", "description": null, @@ -106986,7 +106965,7 @@ "name": "Int", "ofType": null }, - "defaultValue": "100", + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, @@ -106994,8 +106973,211 @@ "name": "orderBy", "description": null, "type": { - "kind": "ENUM", - "name": "WellOracle_orderBy", + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "VoteWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Vote", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "vp", + "description": null, + "args": [ + { + "name": "proposal", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "space", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "voter", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Vp", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "wellOracle", + "description": null, + "args": [ + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny", + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "WellOracle", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "wellOracles", + "description": null, + "args": [ + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "WellOracle_orderBy", "ofType": null }, "defaultValue": null, @@ -107132,6 +107314,176 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "whitelistTokenSetting", + "description": null, + "args": [ + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny", + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "WhitelistTokenSetting", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "whitelistTokenSettings", + "description": null, + "args": [ + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "WhitelistTokenSetting_orderBy", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "WhitelistTokenSetting_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "WhitelistTokenSetting", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "whitelistTokens", "description": null, @@ -116219,6 +116571,22 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "grownStalkPerBdvPerSeason", + "description": "Current average grown stalk per bdv per season", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "hourlySnapshots", "description": "Link to hourly snapshot data", @@ -121960,6 +122328,12 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "silo__grownStalkPerBdvPerSeason", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "silo__id", "description": null, @@ -122186,6 +122560,22 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "grownStalkPerBdvPerSeason", + "description": "Point in time average grown stalk per bdv per season", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "id", "description": "ID of silo-Unix Hour Timestamp", @@ -123586,6 +123976,118 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "grownStalkPerBdvPerSeason", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "grownStalkPerBdvPerSeason_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "grownStalkPerBdvPerSeason_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "grownStalkPerBdvPerSeason_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "grownStalkPerBdvPerSeason_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "grownStalkPerBdvPerSeason_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "grownStalkPerBdvPerSeason_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "grownStalkPerBdvPerSeason_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "id", "description": null, @@ -124733,6 +125235,12 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "grownStalkPerBdvPerSeason", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "id", "description": null, @@ -124787,6 +125295,12 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "silo__grownStalkPerBdvPerSeason", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "silo__id", "description": null, @@ -128569,6 +129083,22 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "grownStalkPerBdvPerSeason", + "description": "Point in time average grown stalk per bdv per season", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "id", "description": "ID of silo-Unix Hour Timestamp", @@ -129969,6 +130499,118 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "grownStalkPerBdvPerSeason", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "grownStalkPerBdvPerSeason_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "grownStalkPerBdvPerSeason_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "grownStalkPerBdvPerSeason_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "grownStalkPerBdvPerSeason_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "grownStalkPerBdvPerSeason_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "grownStalkPerBdvPerSeason_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "grownStalkPerBdvPerSeason_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "id", "description": null, @@ -131116,6 +131758,12 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "grownStalkPerBdvPerSeason", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "id", "description": null, @@ -131170,6 +131818,12 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "silo__grownStalkPerBdvPerSeason", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "silo__id", "description": null, @@ -132985,6 +133639,91 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "tokenAPYS", + "description": "Current Bean (0) and Stalk (1) APY for each token.", + "args": [ + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "TokenYield_orderBy", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TokenYield_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TokenYield", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "twoSeedBeanAPY", "description": "Bean APY for 2 seeds per BDV", @@ -133033,6 +133772,30 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "whitelistedTokens", + "description": "Current whitelisted silo tokens", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "zeroSeedBeanAPY", "description": "Bean APY for 0 seeds per BDV", @@ -134561,6 +135324,138 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "tokenAPYS", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenAPYS_", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TokenYield_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenAPYS_contains", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenAPYS_contains_nocase", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenAPYS_not", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenAPYS_not_contains", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenAPYS_not_contains_nocase", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "twoSeedBeanAPY", "description": null, @@ -134897,6 +135792,126 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "whitelistedTokens", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "whitelistedTokens_contains", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "whitelistedTokens_contains_nocase", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "whitelistedTokens_not", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "whitelistedTokens_not_contains", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "whitelistedTokens_not_contains_nocase", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "zeroSeedBeanAPY", "description": null, @@ -135100,6 +136115,12 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "tokenAPYS", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "twoSeedBeanAPY", "description": null, @@ -135118,6 +136139,12 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "whitelistedTokens", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "zeroSeedBeanAPY", "description": null, @@ -136057,6 +137084,118 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "grownStalkPerBdvPerSeason", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "grownStalkPerBdvPerSeason_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "grownStalkPerBdvPerSeason_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "grownStalkPerBdvPerSeason_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "grownStalkPerBdvPerSeason_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "grownStalkPerBdvPerSeason_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "grownStalkPerBdvPerSeason_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "grownStalkPerBdvPerSeason_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "hourlySnapshots_", "description": null, @@ -136874,6 +138013,12 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "grownStalkPerBdvPerSeason", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "hourlySnapshots", "description": null, @@ -150227,6 +151372,176 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "tokenYield", + "description": null, + "args": [ + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny", + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "TokenYield", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenYields", + "description": null, + "args": [ + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "TokenYield_orderBy", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TokenYield_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TokenYield", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "tokens", "description": null, @@ -150567,6 +151882,176 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "whitelistTokenSetting", + "description": null, + "args": [ + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny", + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "WhitelistTokenSetting", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "whitelistTokenSettings", + "description": null, + "args": [ + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "WhitelistTokenSetting_orderBy", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "WhitelistTokenSetting_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "WhitelistTokenSetting", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "whitelistTokens", "description": null, @@ -150944,6 +152429,935 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "OBJECT", + "name": "TokenYield", + "description": null, + "fields": [ + { + "name": "beanAPY", + "description": "Bean APY for season", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "Unix timestamp of update", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": "Token address - season", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "season", + "description": "Season for APY calculation", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stalkAPY", + "description": "Stalk APY for season", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token", + "description": "Token being calculated", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TokenYield_filter", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "_change_block", + "description": "Filter for the block changed event.", + "type": { + "kind": "INPUT_OBJECT", + "name": "BlockChangedFilter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "and", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TokenYield_filter", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "beanAPY", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "beanAPY_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "beanAPY_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "beanAPY_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "beanAPY_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "beanAPY_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "beanAPY_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "beanAPY_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "or", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TokenYield_filter", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "season", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "season_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "season_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "season_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "season_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "season_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "season_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "season_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stalkAPY", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stalkAPY_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stalkAPY_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stalkAPY_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stalkAPY_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stalkAPY_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stalkAPY_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stalkAPY_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "TokenYield_orderBy", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "beanAPY", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "season", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stalkAPY", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, { "kind": "INPUT_OBJECT", "name": "Token_filter", @@ -154219,6 +156633,935 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "OBJECT", + "name": "WhitelistTokenSetting", + "description": null, + "fields": [ + { + "name": "id", + "description": " Contract address for the whitelisted token ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "milestoneSeason", + "description": "The last season in which the stalkEarnedPerSeason for this token was updated.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "selector", + "description": " Encoded BDV selector ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stalkEarnedPerSeason", + "description": "Represents how much Stalk one BDV of the underlying deposited token grows each season.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stalkIssuedPerBdv", + "description": "The stalk per BDV that the silo grants in exchange for depositing this token.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "Last timestamp entity was updated", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "WhitelistTokenSetting_filter", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "_change_block", + "description": "Filter for the block changed event.", + "type": { + "kind": "INPUT_OBJECT", + "name": "BlockChangedFilter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "and", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WhitelistTokenSetting_filter", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "milestoneSeason", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "milestoneSeason_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "milestoneSeason_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "milestoneSeason_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "milestoneSeason_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "milestoneSeason_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "milestoneSeason_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "milestoneSeason_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "or", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WhitelistTokenSetting_filter", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "selector", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "selector_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "selector_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "selector_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "selector_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "selector_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "selector_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "selector_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "selector_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "selector_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stalkEarnedPerSeason", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stalkEarnedPerSeason_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stalkEarnedPerSeason_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stalkEarnedPerSeason_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stalkEarnedPerSeason_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stalkEarnedPerSeason_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stalkEarnedPerSeason_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stalkEarnedPerSeason_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stalkIssuedPerBdv", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stalkIssuedPerBdv_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stalkIssuedPerBdv_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stalkIssuedPerBdv_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stalkIssuedPerBdv_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stalkIssuedPerBdv_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stalkIssuedPerBdv_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stalkIssuedPerBdv_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "WhitelistTokenSetting_orderBy", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "milestoneSeason", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "selector", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stalkEarnedPerSeason", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stalkIssuedPerBdv", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, { "kind": "INPUT_OBJECT", "name": "WhitelistToken_filter", From 00a7937a31e3776cbdaea3779f5d5cf7058cd69d Mon Sep 17 00:00:00 2001 From: Cujowolf Date: Wed, 13 Dec 2023 16:18:27 -0600 Subject: [PATCH 06/14] Schema update for token yield timestamp --- projects/subgraph-beanstalk/schema.graphql | 2 ++ 1 file changed, 2 insertions(+) diff --git a/projects/subgraph-beanstalk/schema.graphql b/projects/subgraph-beanstalk/schema.graphql index b5c02f2c4c..5985a38e18 100644 --- a/projects/subgraph-beanstalk/schema.graphql +++ b/projects/subgraph-beanstalk/schema.graphql @@ -345,6 +345,8 @@ type TokenYield @entity { beanAPY: BigDecimal! "Stalk APY for season" stalkAPY: BigDecimal! + "Unix timestamp of update" + createdAt: BigInt! } type WhitelistTokenSetting @entity { From a389a2173a0289fe58bd9c25b4dc4c21c3a05ae0 Mon Sep 17 00:00:00 2001 From: Cujowolf Date: Wed, 13 Dec 2023 16:56:54 -0600 Subject: [PATCH 07/14] Update query config for different APY charts --- projects/ui/src/components/Analytics/Silo/APY.tsx | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/projects/ui/src/components/Analytics/Silo/APY.tsx b/projects/ui/src/components/Analytics/Silo/APY.tsx index 04e8bcd25b..b9d10f97d2 100644 --- a/projects/ui/src/components/Analytics/Silo/APY.tsx +++ b/projects/ui/src/components/Analytics/Silo/APY.tsx @@ -15,7 +15,7 @@ const formatValue = (value: number) => `${value.toFixed(2)}%`; const queryConfig = { variables: { season_gt: 6074, - token: SILO_WHITELIST[0][1].address, + token: '', }, }; const lineChartProps: Partial = { @@ -37,8 +37,6 @@ const metricTitles = { UnripeBeanETH: 'urBEANETH Well vAPY', }; -console.log(SILO_WHITELIST); - const APY: FC<{ height?: SeasonPlotBaseProps['height']; metric: keyof typeof metricToKey; @@ -63,7 +61,16 @@ const APY: FC<{ [metric] )} LineChartProps={lineChartProps} - queryConfig={queryConfig} + queryConfig={useMemo(() => { + const tokenAddress = metricToKey[metric]; + return { + ...queryConfig, + variables: { + ...queryConfig.variables, + token: tokenAddress, + }, + }; + }, [metric])} /> ); From 880b682646941d82f3a500db87cad0b8295ed35d Mon Sep 17 00:00:00 2001 From: Cujowolf Date: Thu, 14 Dec 2023 13:14:10 -0600 Subject: [PATCH 08/14] Remove old fields and historical vAPY cache --- projects/subgraph-beanstalk/schema.graphql | 26 +- .../subgraph-beanstalk/src/DiamondHandler.ts | 15 + .../subgraph-beanstalk/src/SiloHandler.ts | 12 +- .../subgraph-beanstalk/src/YieldHandler.ts | 129 +- .../src/utils/HistoricYield.ts | 39636 ++++++++++++++++ .../src/utils/SiloEntities.ts | 13 +- 6 files changed, 39678 insertions(+), 153 deletions(-) diff --git a/projects/subgraph-beanstalk/schema.graphql b/projects/subgraph-beanstalk/schema.graphql index 5985a38e18..da5ad56382 100644 --- a/projects/subgraph-beanstalk/schema.graphql +++ b/projects/subgraph-beanstalk/schema.graphql @@ -304,32 +304,10 @@ type SiloYield @entity { u: Int! "Bean EMA for season" beansPerSeasonEMA: BigDecimal! - "Bean APY for 0 seeds per BDV" - zeroSeedBeanAPY: BigDecimal! - "Bean APY for 2 seeds per BDV" - twoSeedBeanAPY: BigDecimal! - "Stalk APY for 2 seeds per BDV" - twoSeedStalkAPY: BigDecimal! - "Bean APY for 3 seeds per BDV" - threeSeedBeanAPY: BigDecimal! - "Stalk APY for 3 seeds per BDV" - threeSeedStalkAPY: BigDecimal! - "Bean APY for 3.25 seeds per BDV" - threePointTwoFiveSeedBeanAPY: BigDecimal! - "Stalk APY for 3.25 seeds per BDV" - threePointTwoFiveSeedStalkAPY: BigDecimal! - "Bean APY for 4 seeds per BDV" - fourSeedBeanAPY: BigDecimal! - "Stalk APY for 4 seeds per BDV" - fourSeedStalkAPY: BigDecimal! - "Bean APY for 4.5 seeds per BDV" - fourPointFiveSeedBeanAPY: BigDecimal! - "Stalk APY for 4.5 seeds per BDV" - fourPointFiveSeedStalkAPY: BigDecimal! "Current whitelisted silo tokens" whitelistedTokens: [String!]! "Current Bean (0) and Stalk (1) APY for each token." - tokenAPYS: [TokenYield!]! + tokenAPYS: [TokenYield!]! @derivedFrom(field: "siloYield") "Unix timestamp of update" createdAt: BigInt! } @@ -341,6 +319,8 @@ type TokenYield @entity { token: Bytes! "Season for APY calculation" season: Int! + "Related silo yield entity" + siloYield: SiloYield! "Bean APY for season" beanAPY: BigDecimal! "Stalk APY for season" diff --git a/projects/subgraph-beanstalk/src/DiamondHandler.ts b/projects/subgraph-beanstalk/src/DiamondHandler.ts index 374d3ad7b1..3b344fede3 100644 --- a/projects/subgraph-beanstalk/src/DiamondHandler.ts +++ b/projects/subgraph-beanstalk/src/DiamondHandler.ts @@ -1,9 +1,24 @@ +import { Address, BigDecimal, BigInt } from "@graphprotocol/graph-ts"; +import { ZERO_BI } from "../../subgraph-core/utils/Decimals"; import { DiamondCut } from "../generated/Diamond/Beanstalk"; import { loadBeanstalk } from "./utils/Beanstalk"; +import { TOKEN_YIELD_14_000 } from "./utils/HistoricYield"; +import { loadTokenYield } from "./utils/SiloEntities"; export function handleDiamondCut(event: DiamondCut): void { let beanstalk = loadBeanstalk(event.address); + // Load the historical vAPY figures in bulk at start + if (beanstalk.lastUpgrade == ZERO_BI) { + for (let i = 0; i < TOKEN_YIELD_14_000.length; i++) { + let tokenYield = loadTokenYield(Address.fromString(TOKEN_YIELD_14_000[i][0]), parseInt(TOKEN_YIELD_14_000[i][1])); + tokenYield.beanAPY = BigDecimal.fromString(TOKEN_YIELD_14_000[i][2]); + tokenYield.stalkAPY = BigDecimal.fromString(TOKEN_YIELD_14_000[i][3]); + tokenYield.createdAt = BigInt.fromString(TOKEN_YIELD_14_000[i][4]); + tokenYield.save(); + } + } + beanstalk.lastUpgrade = event.block.timestamp; beanstalk.save(); } diff --git a/projects/subgraph-beanstalk/src/SiloHandler.ts b/projects/subgraph-beanstalk/src/SiloHandler.ts index e9feec1b50..c48415b819 100644 --- a/projects/subgraph-beanstalk/src/SiloHandler.ts +++ b/projects/subgraph-beanstalk/src/SiloHandler.ts @@ -978,15 +978,17 @@ export function handleUpdatedStalkPerBdvPerSeason(event: UpdatedStalkPerBdvPerSe export function handleWhitelistToken_V3(event: WhitelistToken_V3): void { let silo = loadSilo(event.address); let currentList = silo.whitelistedTokens; - if (currentList.length == 0) { - // Push unripe bean and unripe bean:3crv upon the initial whitelisting. - currentList.push(UNRIPE_BEAN.toHexString()); - currentList.push(UNRIPE_BEAN_3CRV.toHexString()); - } + currentList.push(event.params.token.toHexString()); silo.whitelistedTokens = currentList; silo.save(); + let setting = loadWhitelistTokenSetting(event.params.token); + setting.selector = event.params.selector; + setting.stalkIssuedPerBdv = event.params.stalk.times(BigInt.fromI32(1_000_000)); + setting.stalkEarnedPerSeason = event.params.stalkEarnedPerSeason; + setting.save(); + let id = "whitelistToken-" + event.transaction.hash.toHexString() + "-" + event.logIndex.toString(); let rawEvent = new WhitelistTokenEntity(id); rawEvent.hash = event.transaction.hash.toHexString(); diff --git a/projects/subgraph-beanstalk/src/YieldHandler.ts b/projects/subgraph-beanstalk/src/YieldHandler.ts index 709730137f..54c920b7e9 100644 --- a/projects/subgraph-beanstalk/src/YieldHandler.ts +++ b/projects/subgraph-beanstalk/src/YieldHandler.ts @@ -5,14 +5,7 @@ import { toDecimal, ZERO_BD } from "../../subgraph-core/utils/Decimals"; import { loadFertilizer } from "./utils/Fertilizer"; import { loadFertilizerYield } from "./utils/FertilizerYield"; import { loadSilo, loadSiloHourlySnapshot, loadSiloYield, loadTokenYield, loadWhitelistTokenSetting } from "./utils/SiloEntities"; -// import { -// HISTORIC_VAPY_8_000, -// HISTORIC_VAPY_10_000, -// HISTORIC_VAPY_12_000, -// HISTORIC_VAPY_14_000, -// HISTORIC_VAPY_16_000 -// } from "./utils/HistoricYield"; -// import { HISTORIC_VAPY } from "./utils/HistoricYield"; +import { SILO_YIELD_14_000 } from "./utils/HistoricYield"; const MAX_WINDOW = 720; @@ -21,6 +14,21 @@ export function updateBeanEMA(t: i32, timestamp: BigInt): void { let silo = loadSilo(BEANSTALK); let siloYield = loadSiloYield(t); + // Check for cached info + if (t <= 14_000) { + let cacheIndex = t - 6075; + siloYield.beta = BigDecimal.fromString(SILO_YIELD_14_000[cacheIndex][1]); + siloYield.u = parseInt(SILO_YIELD_14_000[cacheIndex][2]); + siloYield.beansPerSeasonEMA = BigDecimal.fromString(SILO_YIELD_14_000[cacheIndex][3]); + siloYield.whitelistedTokens = silo.whitelistedTokens; + siloYield.createdAt = BigInt.fromString(SILO_YIELD_14_000[cacheIndex][4]); + siloYield.save(); + + updateFertAPY(t, timestamp); + + return; + } + // When less then MAX_WINDOW data points are available, // smooth over whatever is available. Otherwise use MAX_WINDOW. siloYield.u = t - 6074 < MAX_WINDOW ? t - 6074 : MAX_WINDOW; @@ -56,7 +64,6 @@ export function updateBeanEMA(t: i32, timestamp: BigInt): void { // Step through the whitelisted tokens and calculate the silo APY let beanGrownStalk = loadWhitelistTokenSetting(BEAN_ERC20).stalkEarnedPerSeason; - let tokenIds = siloYield.tokenAPYS; for (let i = 0; i < siloYield.whitelistedTokens.length; i++) { let token = Address.fromString(siloYield.whitelistedTokens[i]); @@ -74,112 +81,8 @@ export function updateBeanEMA(t: i32, timestamp: BigInt): void { tokenYield.stalkAPY = tokenAPY[1]; tokenYield.createdAt = timestamp; tokenYield.save(); - - tokenIds.push(tokenYield.id); } - siloYield.tokenAPYS = tokenIds; - siloYield.save(); - - // This iterates through 8760 times to calculate the silo APY - // let silo = loadSilo(BEANSTALK); - - // Pull from historically calculated values prior to season 15457 rather than iterating - - // let cacheIndex = -1; - // if (t <= 8000) { - // cacheIndex = t - 6075; - - // siloYield.twoSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_8_000[cacheIndex][1]); - // siloYield.twoSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_8_000[cacheIndex][2]); - // siloYield.threeSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_8_000[cacheIndex][3]); - // siloYield.threeSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_8_000[cacheIndex][4]); - // siloYield.threePointTwoFiveSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_8_000[cacheIndex][5]); - // siloYield.threePointTwoFiveSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_8_000[cacheIndex][6]); - // siloYield.fourSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_8_000[cacheIndex][7]); - // siloYield.fourSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_8_000[cacheIndex][8]); - // siloYield.fourPointFiveSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_8_000[cacheIndex][9]); - // siloYield.fourPointFiveSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_8_000[cacheIndex][10]); - // siloYield.zeroSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_8_000[cacheIndex][11]); - // } - // } else if (t <= 10000) { - // cacheIndex = t - 8001; - - // siloYield.twoSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_10_000[cacheIndex][1]); - // siloYield.twoSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_10_000[cacheIndex][2]); - // siloYield.threeSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_10_000[cacheIndex][3]); - // siloYield.threeSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_10_000[cacheIndex][4]); - // siloYield.threePointTwoFiveSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_10_000[cacheIndex][5]); - // siloYield.threePointTwoFiveSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_10_000[cacheIndex][6]); - // siloYield.fourSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_10_000[cacheIndex][7]); - // siloYield.fourSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_10_000[cacheIndex][8]); - // siloYield.fourPointFiveSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_10_000[cacheIndex][9]); - // siloYield.fourPointFiveSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_10_000[cacheIndex][10]); - // siloYield.zeroSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_10_000[cacheIndex][11]); - // } else if (t <= 12000) { - // cacheIndex = t - 10001; - - // siloYield.twoSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_12_000[cacheIndex][1]); - // siloYield.twoSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_12_000[cacheIndex][2]); - // siloYield.threeSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_12_000[cacheIndex][3]); - // siloYield.threeSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_12_000[cacheIndex][4]); - // siloYield.threePointTwoFiveSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_12_000[cacheIndex][5]); - // siloYield.threePointTwoFiveSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_12_000[cacheIndex][6]); - // siloYield.fourSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_12_000[cacheIndex][7]); - // siloYield.fourSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_12_000[cacheIndex][8]); - // siloYield.fourPointFiveSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_12_000[cacheIndex][9]); - // siloYield.fourPointFiveSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_12_000[cacheIndex][10]); - // siloYield.zeroSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_12_000[cacheIndex][11]); - // } else if (t <= 14000) { - // cacheIndex = t - 12001; - - // siloYield.twoSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_14_000[cacheIndex][1]); - // siloYield.twoSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_14_000[cacheIndex][2]); - // siloYield.threeSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_14_000[cacheIndex][3]); - // siloYield.threeSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_14_000[cacheIndex][4]); - // siloYield.threePointTwoFiveSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_14_000[cacheIndex][5]); - // siloYield.threePointTwoFiveSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_14_000[cacheIndex][6]); - // siloYield.fourSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_14_000[cacheIndex][7]); - // siloYield.fourSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_14_000[cacheIndex][8]); - // siloYield.fourPointFiveSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_14_000[cacheIndex][9]); - // siloYield.fourPointFiveSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_14_000[cacheIndex][10]); - // siloYield.zeroSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_14_000[cacheIndex][11]); - // } else if (t <= 15457) { - // cacheIndex = t - 14001; - - // siloYield.twoSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_16_000[cacheIndex][1]); - // siloYield.twoSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_16_000[cacheIndex][2]); - // siloYield.threeSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_16_000[cacheIndex][3]); - // siloYield.threeSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_16_000[cacheIndex][4]); - // siloYield.threePointTwoFiveSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_16_000[cacheIndex][5]); - // siloYield.threePointTwoFiveSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_16_000[cacheIndex][6]); - // siloYield.fourSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_16_000[cacheIndex][7]); - // siloYield.fourSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_16_000[cacheIndex][8]); - // siloYield.fourPointFiveSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_16_000[cacheIndex][9]); - // siloYield.fourPointFiveSeedStalkAPY = BigDecimal.fromString(HISTORIC_VAPY_16_000[cacheIndex][10]); - // siloYield.zeroSeedBeanAPY = BigDecimal.fromString(HISTORIC_VAPY_16_000[cacheIndex][11]); - // } else { - // let twoSeedAPY = calculateAPY(currentEMA, BigDecimal.fromString("2"), silo.stalk, silo.seeds); - // siloYield.twoSeedBeanAPY = twoSeedAPY[0]; - // siloYield.twoSeedStalkAPY = twoSeedAPY[1]; - // let fourSeedAPY = calculateAPY(currentEMA, BigDecimal.fromString("4"), silo.stalk, silo.seeds); - // siloYield.fourSeedBeanAPY = fourSeedAPY[0]; - // siloYield.fourSeedStalkAPY = fourSeedAPY[1]; - // siloYield.zeroSeedBeanAPY = calculateAPY(currentEMA, ZERO_BD, silo.stalk, silo.seeds)[0]; - - // BIP-37 Seed changes - // let threeSeedAPY = calculateAPY(currentEMA, BigDecimal.fromString("3"), silo.stalk, silo.seeds); - // siloYield.threeSeedBeanAPY = threeSeedAPY[0]; - // siloYield.threeSeedStalkAPY = threeSeedAPY[1]; - // let threePointTwoFiveSeedAPY = calculateAPY(currentEMA, BigDecimal.fromString("3.25"), silo.stalk, silo.seeds); - // siloYield.threePointTwoFiveSeedBeanAPY = threePointTwoFiveSeedAPY[0]; - // siloYield.threePointTwoFiveSeedStalkAPY = threePointTwoFiveSeedAPY[1]; - // let fourPointFiveSeedAPY = calculateAPY(currentEMA, BigDecimal.fromString("4.5"), silo.stalk, silo.seeds); - // siloYield.fourPointFiveSeedBeanAPY = fourPointFiveSeedAPY[0]; - // siloYield.fourPointFiveSeedStalkAPY = fourPointFiveSeedAPY[1]; - // } - // siloYield.save(); - updateFertAPY(t, timestamp); } diff --git a/projects/subgraph-beanstalk/src/utils/HistoricYield.ts b/projects/subgraph-beanstalk/src/utils/HistoricYield.ts index 2fc4672bc6..073b89d989 100644 --- a/projects/subgraph-beanstalk/src/utils/HistoricYield.ts +++ b/projects/subgraph-beanstalk/src/utils/HistoricYield.ts @@ -69685,3 +69685,39639 @@ export const HISTORIC_VAPY_16_000 = [ "0.006743949555672823" ] ]; + +export const TOKEN_YIELD_14_000 = [ + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6075", "0.0", "1.752", "1659805214"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6075", "0.0", "3.504", "1659805214"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6075", "0.0", "1.752", "1659805214"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6075", "0.0", "3.504", "1659805214"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6076", "0.27424239112625226", "2.2749383182289202", "1659808931"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6076", "0.3811350103508757", "4.209024053776117", "1659808931"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6076", "0.27424239112625226", "2.2749383182289202", "1659808931"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6076", "0.3811350103508757", "4.209024053776117", "1659808931"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6077", "0.5171022739728166", "2.737045566152222", "1659812464"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6077", "0.7106235607779896", "4.819485905468503", "1659812464"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6077", "0.5171022739728166", "2.737045566152222", "1659812464"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6077", "0.7106235607779896", "4.819485905468503", "1659812464"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6078", "0.7646693980433001", "3.207347522260841", "1659816002"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6078", "1.0401770561927184", "5.430782096614851", "1659816002"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6078", "0.7646693980433001", "3.207347522260841", "1659816002"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6078", "1.0401770561927184", "5.430782096614851", "1659816002"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6079", "1.0166468090366558", "3.685422831691553", "1659819600"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6079", "1.370081686301043", "6.043371686186665", "1659819600"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6079", "1.0166468090366558", "3.685422831691553", "1659819600"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6079", "1.370081686301043", "6.043371686186665", "1659819600"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6080", "1.3480915942916019", "4.313693434015722", "1659823204"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6080", "1.7968186756498494", "6.83678539748505", "1659823204"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6080", "1.3480915942916019", "4.313693434015722", "1659823204"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6080", "1.7968186756498494", "6.83678539748505", "1659823204"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6081", "1.7043110374174266", "4.98797423988805", "1659826833"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6081", "2.2479430459068466", "7.676126309824097", "1659826833"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6081", "1.7043110374174266", "4.98797423988805", "1659826833"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6081", "2.2479430459068466", "7.676126309824097", "1659826833"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6082", "2.057575750559328", "5.656010003736882", "1659830403"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6082", "2.6888081956595578", "8.497030712182685", "1659830403"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6082", "2.057575750559328", "5.656010003736882", "1659830403"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6082", "2.6888081956595578", "8.497030712182685", "1659830403"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6083", "2.403050854835827", "6.308794139652817", "1659834008"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6083", "3.114599889942562", "9.29037694715371", "1659834008"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6083", "2.403050854835827", "6.308794139652817", "1659834008"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6083", "3.114599889942562", "9.29037694715371", "1659834008"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6084", "2.73154670259935", "6.929484008359138", "1659837606"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6084", "3.5150149332096077", "10.03731884133391", "1659837606"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6084", "2.73154670259935", "6.929484008359138", "1659837606"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6084", "3.5150149332096077", "10.03731884133391", "1659837606"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6085", "3.059974539093891", "7.549356896938624", "1659841200"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6085", "3.9118528282882425", "10.777474980793578", "1659841200"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6085", "3.059974539093891", "7.549356896938624", "1659841200"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6085", "3.9118528282882425", "10.777474980793578", "1659841200"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6086", "3.3806732580778656", "8.15438960550353", "1659844806"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6086", "4.296187050187646", "11.494617716173789", "1659844806"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6086", "3.3806732580778656", "8.15438960550353", "1659844806"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6086", "4.296187050187646", "11.494617716173789", "1659844806"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6087", "3.7182639935768775", "8.791009713799857", "1659848402"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6087", "4.69775425263644", "12.244146763851111", "1659848402"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6087", "3.7182639935768775", "8.791009713799857", "1659848402"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6087", "4.69775425263644", "12.244146763851111", "1659848402"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6088", "4.072244579788177", "9.458317656096915", "1659852006"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6088", "5.115801038119264", "13.024722883084909", "1659852006"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6088", "4.072244579788177", "9.458317656096915", "1659852006"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6088", "5.115801038119264", "13.024722883084909", "1659852006"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6089", "4.422398732356199", "10.118188941838442", "1659855633"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6089", "5.526594733745346", "13.791977353825157", "1659855633"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6089", "4.422398732356199", "10.118188941838442", "1659855633"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6089", "5.526594733745346", "13.791977353825157", "1659855633"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6090", "4.660033980163443", "10.566258302190146", "1659859220"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6090", "5.803787215830424", "14.310245730555446", "1659859220"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6090", "4.660033980163443", "10.566258302190146", "1659859220"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6090", "5.803787215830424", "14.310245730555446", "1659859220"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6091", "4.909355491002567", "11.036000771920472", "1659862810"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6091", "6.093596442451045", "14.851862016590081", "1659862810"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6091", "4.909355491002567", "11.036000771920472", "1659862810"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6091", "6.093596442451045", "14.851862016590081", "1659862810"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6092", "5.124721134962777", "11.442069221180775", "1659866402"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6092", "6.342859692527212", "15.31822127992331", "1659866402"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6092", "5.124721134962777", "11.442069221180775", "1659866402"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6092", "6.342859692527212", "15.31822127992331", "1659866402"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6093", "6.200798392002116", "13.47222768969977", "1659870001"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6093", "7.576279438033836", "17.629170698571773", "1659870001"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6093", "6.200798392002116", "13.47222768969977", "1659870001"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6093", "7.576279438033836", "17.629170698571773", "1659870001"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6094", "7.765037520480549", "16.41761451598825", "1659873611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6094", "9.344341139093864", "20.93911157526735", "1659873611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6094", "7.765037520480549", "16.41761451598825", "1659873611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6094", "9.344341139093864", "20.93911157526735", "1659873611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6095", "9.442160386324698", "19.57182835848517", "1659877212"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6095", "11.214004432204634", "24.43874543531256", "1659877212"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6095", "9.442160386324698", "19.57182835848517", "1659877212"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6095", "11.214004432204634", "24.43874543531256", "1659877212"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6096", "10.963383556482732", "22.431614756229614", "1659880812"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6096", "12.89128416535479", "27.579347973985367", "1659880812"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6096", "10.963383556482732", "22.431614756229614", "1659880812"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6096", "12.89128416535479", "27.579347973985367", "1659880812"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6097", "11.808552465523068", "24.020972675181387", "1659884415"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6097", "13.816441313709621", "29.31303093393536", "1659884415"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6097", "11.808552465523068", "24.020972675181387", "1659884415"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6097", "13.816441313709621", "29.31303093393536", "1659884415"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6098", "11.987553022425706", "24.358270556254432", "1659888008"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6098", "14.011525207288765", "29.67946145924244", "1659888008"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6098", "11.987553022425706", "24.358270556254432", "1659888008"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6098", "14.011525207288765", "29.67946145924244", "1659888008"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6099", "12.301947392182605", "24.949119494296518", "1659891619"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6099", "14.354505634610959", "30.321906575803034", "1659891619"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6099", "12.301947392182605", "24.949119494296518", "1659891619"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6099", "14.354505634610959", "30.321906575803034", "1659891619"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6100", "12.586897301060262", "25.48502222293112", "1659895235"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6100", "14.664726584496815", "30.903492513647976", "1659895235"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6100", "12.586897301060262", "25.48502222293112", "1659895235"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6100", "14.664726584496815", "30.903492513647976", "1659895235"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6101", "12.553691398740334", "25.423126725543273", "1659898860"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6101", "14.628331383887767", "30.835900342333833", "1659898860"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6101", "12.553691398740334", "25.423126725543273", "1659898860"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6101", "14.628331383887767", "30.835900342333833", "1659898860"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6102", "12.258575187585473", "24.86896411606075", "1659902401"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6102", "14.306570042463452", "30.233683623092357", "1659902401"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6102", "12.258575187585473", "24.86896411606075", "1659902401"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6102", "14.306570042463452", "30.233683623092357", "1659902401"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6103", "11.85889580582127", "24.117972502302347", "1659906025"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6103", "13.870296327218693", "29.416670798477828", "1659906025"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6103", "11.85889580582127", "24.117972502302347", "1659906025"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6103", "13.870296327218693", "29.416670798477828", "1659906025"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6104", "11.37777638191188", "23.213551959760434", "1659909604"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6104", "13.344135828951321", "28.43099789827127", "1659909604"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6104", "11.37777638191188", "23.213551959760434", "1659909604"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6104", "13.344135828951321", "28.43099789827127", "1659909604"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6105", "11.117581497261606", "22.72373892597225", "1659913232"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6105", "13.05935167042955", "27.89676477032474", "1659913232"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6105", "11.117581497261606", "22.72373892597225", "1659913232"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6105", "13.05935167042955", "27.89676477032474", "1659913232"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6106", "10.693311580784384", "21.926415644257293", "1659916800"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6106", "12.5934326094241", "27.024432389226472", "1659916800"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6106", "10.693311580784384", "21.926415644257293", "1659916800"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6106", "12.5934326094241", "27.024432389226472", "1659916800"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6107", "10.115596687499998", "20.840214308373465", "1659920405"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6107", "11.957361538053496", "25.83316510171279", "1659920405"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6107", "10.115596687499998", "20.840214308373465", "1659920405"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6107", "11.957361538053496", "25.83316510171279", "1659920405"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6108", "9.428710692534588", "19.54897643181873", "1659924000"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6108", "11.19790873535026", "24.411476440463815", "1659924000"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6108", "9.428710692534588", "19.54897643181873", "1659924000"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6108", "11.19790873535026", "24.411476440463815", "1659924000"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6109", "8.759813377391575", "18.290521920762014", "1659927627"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6109", "10.455322622454199", "23.020607017797655", "1659927627"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6109", "8.759813377391575", "18.290521920762014", "1659927627"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6109", "10.455322622454199", "23.020607017797655", "1659927627"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6110", "8.146858017596369", "17.13727676334364", "1659931211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6110", "9.771476665121225", "21.74016626030392", "1659931211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6110", "8.146858017596369", "17.13727676334364", "1659931211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6110", "9.771476665121225", "21.74016626030392", "1659931211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6111", "7.62190475254565", "16.149761355507184", "1659934839"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6111", "9.182892030333173", "20.638674193470397", "1659934839"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6111", "7.62190475254565", "16.149761355507184", "1659934839"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6111", "9.182892030333173", "20.638674193470397", "1659934839"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6112", "7.152424327321423", "15.266382331641791", "1659938419"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6112", "8.654174978025308", "19.649307676501316", "1659938419"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6112", "7.152424327321423", "15.266382331641791", "1659938419"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6112", "8.654174978025308", "19.649307676501316", "1659938419"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6113", "6.732988166849364", "14.476920616152375", "1659942010"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6113", "8.179818501871623", "18.761676854084765", "1659942010"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6113", "6.732988166849364", "14.476920616152375", "1659942010"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6113", "8.179818501871623", "18.761676854084765", "1659942010"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6114", "6.357172049289699", "13.769436049610512", "1659945605"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6114", "7.753013241023476", "17.96314926535523", "1659945605"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6114", "6.357172049289699", "13.769436049610512", "1659945605"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6114", "7.753013241023476", "17.96314926535523", "1659945605"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6115", "6.023149393494945", "13.140553201183122", "1659949200"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6115", "7.372133740735352", "17.250693468279852", "1659949200"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6115", "6.023149393494945", "13.140553201183122", "1659949200"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6115", "7.372133740735352", "17.250693468279852", "1659949200"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6116", "5.705116719218581", "12.541666873098807", "1659952822"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6116", "7.00806098094048", "16.569772853896225", "1659952822"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6116", "5.705116719218581", "12.541666873098807", "1659952822"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6116", "7.00806098094048", "16.569772853896225", "1659952822"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6117", "5.419445814586676", "12.003111325128378", "1659956411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6117", "6.6800190156491706", "15.955709717587052", "1659956411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6117", "5.419445814586676", "12.003111325128378", "1659956411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6117", "6.6800190156491706", "15.955709717587052", "1659956411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6118", "5.154644333782125", "11.504271998203977", "1659960010"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6118", "6.374568454544709", "15.38457704208834", "1659960010"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6118", "5.154644333782125", "11.504271998203977", "1659960010"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6118", "6.374568454544709", "15.38457704208834", "1659960010"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6119", "4.912503735880933", "11.048045819385516", "1659963602"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6119", "6.0942297753486026", "14.860479398908215", "1659963602"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6119", "4.912503735880933", "11.048045819385516", "1659963602"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6119", "6.0942297753486026", "14.860479398908215", "1659963602"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6120", "4.664332185910726", "10.579977568429415", "1659967203"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6120", "5.806022368254175", "14.321272820614464", "1659967203"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6120", "4.664332185910726", "10.579977568429415", "1659967203"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6120", "5.806022368254175", "14.321272820614464", "1659967203"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6121", "4.440691324961162", "10.158319027196315", "1659970819"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6121", "5.545198379760828", "13.833645820045762", "1659970819"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6121", "4.440691324961162", "10.158319027196315", "1659970819"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6121", "5.545198379760828", "13.833645820045762", "1659970819"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6122", "4.255573236015083", "9.80936596995957", "1659974408"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6122", "5.328480970270222", "13.428702485648165", "1659974408"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6122", "4.255573236015083", "9.80936596995957", "1659974408"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6122", "5.328480970270222", "13.428702485648165", "1659974408"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6123", "4.073736985265742", "9.46641888448366", "1659978038"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6123", "5.114964449402182", "13.02964493845697", "1659978038"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6123", "4.073736985265742", "9.46641888448366", "1659978038"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6123", "5.114964449402182", "13.02964493845697", "1659978038"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6124", "3.907589733779543", "9.153193903960528", "1659981609"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6124", "4.919141178144831", "12.663934349307777", "1659981609"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6124", "3.907589733779543", "9.153193903960528", "1659981609"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6124", "4.919141178144831", "12.663934349307777", "1659981609"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6125", "3.7699924119584027", "8.893696689861791", "1659985202"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6125", "4.7565110586940635", "12.360185626567247", "1659985202"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6125", "3.7699924119584027", "8.893696689861791", "1659985202"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6125", "4.7565110586940635", "12.360185626567247", "1659985202"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6126", "3.634135013702478", "8.637441341645445", "1659988808"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6126", "4.595490094694088", "12.0594772410755", "1659988808"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6126", "3.634135013702478", "8.637441341645445", "1659988808"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6126", "4.595490094694088", "12.0594772410755", "1659988808"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6127", "3.5036883317459044", "8.391355914783437", "1659992408"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6127", "4.440445150428017", "11.769967132257289", "1659992408"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6127", "3.5036883317459044", "8.391355914783437", "1659992408"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6127", "4.440445150428017", "11.769967132257289", "1659992408"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6128", "3.3788989577736452", "8.155899997212822", "1659996039"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6128", "4.291711537865106", "11.492268206137071", "1659996039"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6128", "3.3788989577736452", "8.155899997212822", "1659996039"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6128", "4.291711537865106", "11.492268206137071", "1659996039"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6129", "3.2620594522915405", "7.935403743627776", "1659999611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6129", "4.152073056997932", "11.23157456313216", "1659999611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6129", "3.2620594522915405", "7.935403743627776", "1659999611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6129", "4.152073056997932", "11.23157456313216", "1659999611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6130", "3.152844810278226", "7.729267323488148", "1660003208"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6130", "4.021198604456701", "10.987273649612666", "1660003208"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6130", "3.152844810278226", "7.729267323488148", "1660003208"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6130", "4.021198604456701", "10.987273649612666", "1660003208"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6131", "3.050450464759227", "7.535943869704928", "1660006818"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6131", "3.8981956853601187", "10.75765414810388", "1660006818"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6131", "3.050450464759227", "7.535943869704928", "1660006818"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6131", "3.8981956853601187", "10.75765414810388", "1660006818"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6132", "2.952046724052301", "7.350039806033262", "1660010408"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6132", "3.7797298907504207", "10.536420808037661", "1660010408"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6132", "2.952046724052301", "7.350039806033262", "1660010408"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6132", "3.7797298907504207", "10.536420808037661", "1660010408"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6133", "2.872184891034236", "7.1992396405315695", "1660014002"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6133", "3.683318160260804", "10.35651036487982", "1660014002"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6133", "2.872184891034236", "7.1992396405315695", "1660014002"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6133", "3.683318160260804", "10.35651036487982", "1660014002"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6134", "2.7839168286909093", "7.032540213047249", "1660017609"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6134", "3.5765210711977953", "10.157235856686711", "1660017609"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6134", "2.7839168286909093", "7.032540213047249", "1660017609"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6134", "3.5765210711977953", "10.157235856686711", "1660017609"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6135", "2.7006581795381708", "6.875248353443051", "1660021205"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6135", "3.4755627846479498", "9.968838121731018", "1660021205"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6135", "2.7006581795381708", "6.875248353443051", "1660021205"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6135", "3.4755627846479498", "9.968838121731018", "1660021205"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6136", "2.6243987469252317", "6.7311748903612125", "1660024832"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6136", "3.38287647226618", "9.79591363867083", "1660024832"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6136", "2.6243987469252317", "6.7311748903612125", "1660024832"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6136", "3.38287647226618", "9.79591363867083", "1660024832"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6137", "2.5500088711130044", "6.590610855274405", "1660028400"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6137", "3.2922671504293364", "9.62687657023789", "1660028400"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6137", "2.5500088711130044", "6.590610855274405", "1660028400"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6137", "3.2922671504293364", "9.62687657023789", "1660028400"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6138", "2.4781928954270542", "6.454924137992266", "1660032019"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6138", "3.204587846549767", "9.463362320688555", "1660032019"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6138", "2.4781928954270542", "6.454924137992266", "1660032019"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6138", "3.204587846549767", "9.463362320688555", "1660032019"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6139", "2.4096842451864986", "6.325404053889475", "1660035604"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6139", "3.120798503133121", "9.307037129332318", "1660035604"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6139", "2.4096842451864986", "6.325404053889475", "1660035604"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6139", "3.120798503133121", "9.307037129332318", "1660035604"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6140", "2.3459712163088127", "6.204979351695489", "1660039200"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6140", "3.042692562131715", "9.161385576918587", "1660039200"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6140", "2.3459712163088127", "6.204979351695489", "1660039200"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6140", "3.042692562131715", "9.161385576918587", "1660039200"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6141", "2.284335773839325", "6.088479453455549", "1660042815"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6141", "2.9669763384568055", "9.02021984733141", "1660042815"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6141", "2.284335773839325", "6.088479453455549", "1660042815"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6141", "2.9669763384568055", "9.02021984733141", "1660042815"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6142", "2.2270625208744965", "5.9801926114750215", "1660046440"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6142", "2.8964910862088296", "8.888795629337432", "1660046440"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6142", "2.2270625208744965", "5.9801926114750215", "1660046440"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6142", "2.8964910862088296", "8.888795629337432", "1660046440"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6143", "2.236692584169603", "5.997276007333169", "1660050021"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6143", "2.9088808375818473", "8.910484302222704", "1660050021"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6143", "2.236692584169603", "5.997276007333169", "1660050021"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6143", "2.9088808375818473", "8.910484302222704", "1660050021"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6144", "2.1969234933196655", "5.921338050199739", "1660053621"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6144", "2.8602207861196742", "8.818829781560334", "1660053621"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6144", "2.1969234933196655", "5.921338050199739", "1660053621"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6144", "2.8602207861196742", "8.818829781560334", "1660053621"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6145", "2.151653939739252", "5.835910598784561", "1660057206"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6145", "2.804270688439616", "8.714744387536642", "1660057206"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6145", "2.151653939739252", "5.835910598784561", "1660057206"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6145", "2.804270688439616", "8.714744387536642", "1660057206"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6146", "2.1060149601498472", "5.749208747078242", "1660060821"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6146", "2.7480420313050185", "8.609434680437609", "1660060821"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6146", "2.1060149601498472", "5.749208747078242", "1660060821"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6146", "2.7480420313050185", "8.609434680437609", "1660060821"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6147", "2.063888694298649", "5.66966029375272", "1660064425"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6147", "2.6958329303112576", "8.512276977341303", "1660064425"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6147", "2.063888694298649", "5.66966029375272", "1660064425"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6147", "2.6958329303112576", "8.512276977341303", "1660064425"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6148", "2.018225577869845", "5.583200324314921", "1660068021"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6148", "2.6392566543070277", "8.40671861335346", "1660068021"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6148", "2.018225577869845", "5.583200324314921", "1660068021"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6148", "2.6392566543070277", "8.40671861335346", "1660068021"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6149", "1.9738463716638406", "5.499270831374981", "1660071600"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6149", "2.5841309090436257", "8.304011799877546", "1660071600"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6149", "1.9738463716638406", "5.499270831374981", "1660071600"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6149", "2.5841309090436257", "8.304011799877546", "1660071600"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6150", "1.93283342135623", "5.4215435769491505", "1660075226"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6150", "2.5331787714530494", "8.20889182764818", "1660075226"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6150", "1.93283342135623", "5.4215435769491505", "1660075226"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6150", "2.5331787714530494", "8.20889182764818", "1660075226"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6151", "1.8916547988230759", "5.343661517289458", "1660078805"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6151", "2.4818643757743843", "8.1133142465217", "1660078805"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6151", "1.8916547988230759", "5.343661517289458", "1660078805"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6151", "2.4818643757743843", "8.1133142465217", "1660078805"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6152", "1.8520121518361323", "5.268665973804176", "1660082409"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6152", "2.43239303727441", "8.021163062794905", "1660082409"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6152", "1.8520121518361323", "5.268665973804176", "1660082409"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6152", "2.43239303727441", "8.021163062794905", "1660082409"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6153", "1.8141954014192054", "5.197128061389346", "1660086000"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6153", "2.3851246759548874", "7.933135540906162", "1660086000"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6153", "1.8141954014192054", "5.197128061389346", "1660086000"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6153", "2.3851246759548874", "7.933135540906162", "1660086000"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6154", "1.7784915043437497", "5.1294601043909465", "1660089624"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6154", "2.3404880975292564", "7.849863186555433", "1660089624"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6154", "1.7784915043437497", "5.1294601043909465", "1660089624"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6154", "2.3404880975292564", "7.849863186555433", "1660089624"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6155", "1.743065705395803", "5.062403973946014", "1660093205"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6155", "2.2960942039628773", "7.767165151594887", "1660093205"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6155", "1.743065705395803", "5.062403973946014", "1660093205"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6155", "2.2960942039628773", "7.767165151594887", "1660093205"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6156", "1.709421859996416", "4.998708359485489", "1660096811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6156", "2.2538772719784776", "7.688519985791404", "1660096811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6156", "1.709421859996416", "4.998708359485489", "1660096811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6156", "2.2538772719784776", "7.688519985791404", "1660096811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6157", "1.6802562000372991", "4.94350814341114", "1660100417"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6157", "2.217222316942326", "7.6202685981353415", "1660100417"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6157", "1.6802562000372991", "4.94350814341114", "1660100417"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6157", "2.217222316942326", "7.6202685981353415", "1660100417"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6158", "1.6516225944234244", "4.8893142657614055", "1660104003"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6158", "2.181191001149976", "7.553187476533927", "1660104003"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6158", "1.6516225944234244", "4.8893142657614055", "1660104003"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6158", "2.181191001149976", "7.553187476533927", "1660104003"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6159", "1.6230116619796362", "4.835160008392503", "1660107627"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6159", "2.1451442314188216", "7.486083354393813", "1660107627"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6159", "1.6230116619796362", "4.835160008392503", "1660107627"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6159", "2.1451442314188216", "7.486083354393813", "1660107627"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6160", "1.595497884814758", "4.783076843873133", "1660111213"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6160", "2.1104388260532545", "7.421478753350773", "1660111213"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6160", "1.595497884814758", "4.783076843873133", "1660111213"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6160", "2.1104388260532545", "7.421478753350773", "1660111213"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6161", "1.5712199863505845", "4.7371074432869715", "1660114807"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6161", "2.07978454776274", "7.364408426454441", "1660114807"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6161", "1.5712199863505845", "4.7371074432869715", "1660114807"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6161", "2.07978454776274", "7.364408426454441", "1660114807"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6162", "1.5498996420801794", "4.69673330724564", "1660118402"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6162", "2.052838683279687", "7.314242352227156", "1660118402"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6162", "1.5498996420801794", "4.69673330724564", "1660118402"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6162", "2.052838683279687", "7.314242352227156", "1660118402"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6163", "1.5292131923016685", "4.657575750795867", "1660122000"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6163", "2.026661269595089", "7.265533088531233", "1660122000"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6163", "1.5292131923016685", "4.657575750795867", "1660122000"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6163", "2.026661269595089", "7.265533088531233", "1660122000"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6164", "1.5107665628955889", "4.622658352969926", "1660125611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6164", "2.0032967613110495", "7.2220631068650425", "1660125611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6164", "1.5107665628955889", "4.622658352969926", "1660125611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6164", "2.0032967613110495", "7.2220631068650425", "1660125611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6165", "1.488330739150196", "4.580176695480863", "1660129213"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6165", "1.9748581722978238", "7.169142086348401", "1660129213"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6165", "1.488330739150196", "4.580176695480863", "1660129213"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6165", "1.9748581722978238", "7.169142086348401", "1660129213"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6166", "1.471329002971606", "4.547970806225727", "1660132828"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6166", "1.9532935118050827", "7.128999970208047", "1660132828"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6166", "1.471329002971606", "4.547970806225727", "1660132828"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6166", "1.9532935118050827", "7.128999970208047", "1660132828"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6167", "1.4563528564699189", "4.5195586278840505", "1660136422"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6167", "1.9343030256706877", "7.093597818599246", "1660136422"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6167", "1.4563528564699189", "4.5195586278840505", "1660136422"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6167", "1.9343030256706877", "7.093597818599246", "1660136422"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6168", "1.4379078315594367", "4.484616941546291", "1660140015"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6168", "1.9108717117861804", "7.049986875870951", "1660140015"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6168", "1.4379078315594367", "4.484616941546291", "1660140015"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6168", "1.9108717117861804", "7.049986875870951", "1660140015"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6169", "1.419919440330867", "4.450556447332277", "1660143603"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6169", "1.8879929559625601", "7.007429469989241", "1660143603"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6169", "1.419919440330867", "4.450556447332277", "1660143603"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6169", "1.8879929559625601", "7.007429469989241", "1660143603"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6170", "1.402053996160504", "4.416720371438499", "1660147207"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6170", "1.8652543656104033", "6.965126623491731", "1660147207"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6170", "1.402053996160504", "4.416720371438499", "1660147207"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6170", "1.8652543656104033", "6.965126623491731", "1660147207"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6171", "1.3882325936506255", "4.390542237768488", "1660150815"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6171", "1.8476496843075474", "6.932376435848011", "1660150815"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6171", "1.3882325936506255", "4.390542237768488", "1660150815"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6171", "1.8476496843075474", "6.932376435848011", "1660150815"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6172", "1.3753501839260946", "4.366141204839272", "1660154422"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6172", "1.8312307359929547", "6.901832788457856", "1660154422"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6172", "1.3753501839260946", "4.366141204839272", "1660154422"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6172", "1.8312307359929547", "6.901832788457856", "1660154422"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6173", "1.361321025730094", "4.339557940520178", "1660158007"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6173", "1.8133427085830933", "6.8685460853374884", "1660158007"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6173", "1.361321025730094", "4.339557940520178", "1660158007"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6173", "1.8133427085830933", "6.8685460853374884", "1660158007"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6174", "1.3446413842735836", "4.30793949282133", "1660161627"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6174", "1.7920644250296032", "6.828937982613185", "1660161627"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6174", "1.3446413842735836", "4.30793949282133", "1660161627"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6174", "1.7920644250296032", "6.828937982613185", "1660161627"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6175", "1.3227533430770297", "4.2664312843943", "1660165217"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6175", "1.7641216991202637", "6.776909600789825", "1660165217"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6175", "1.3227533430770297", "4.2664312843943", "1660165217"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6175", "1.7641216991202637", "6.776909600789825", "1660165217"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6176", "1.3023804220417616", "4.227830593083733", "1660168808"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6176", "1.7380696404875375", "6.728451718879269", "1660168808"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6176", "1.3023804220417616", "4.227830593083733", "1660168808"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6176", "1.7380696404875375", "6.728451718879269", "1660168808"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6177", "1.2826383030100326", "4.190424838495293", "1660172422"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6177", "1.712798053654343", "6.6814512336191125", "1660172422"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6177", "1.2826383030100326", "4.190424838495293", "1660172422"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6177", "1.712798053654343", "6.6814512336191125", "1660172422"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6178", "1.2631110803018437", "4.153401500816642", "1660176014"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6178", "1.6877868171128496", "6.634909276498851", "1660176014"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6178", "1.2631110803018437", "4.153401500816642", "1660176014"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6178", "1.6877868171128496", "6.634909276498851", "1660176014"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6179", "1.2446520374295258", "4.118421286439424", "1660179605"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6179", "1.6641120322371343", "6.590882514231302", "1660179605"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6179", "1.2446520374295258", "4.118421286439424", "1660179605"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6179", "1.6641120322371343", "6.590882514231302", "1660179605"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6180", "1.226697955033824", "4.084395516212926", "1660183201"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6180", "1.6410635899722745", "6.548022536206471", "1660183201"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6180", "1.226697955033824", "4.084395516212926", "1660183201"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6180", "1.6410635899722745", "6.548022536206471", "1660183201"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6181", "1.2090951746608027", "4.051024289679879", "1660186805"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6181", "1.6184494407386545", "6.505960814014384", "1660186805"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6181", "1.2090951746608027", "4.051024289679879", "1660186805"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6181", "1.6184494407386545", "6.505960814014384", "1660186805"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6182", "1.1915589772322628", "4.017765439981402", "1660190400"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6182", "1.5959054029253998", "6.464016788235606", "1660190400"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6182", "1.1915589772322628", "4.017765439981402", "1660190400"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6182", "1.5959054029253998", "6.464016788235606", "1660190400"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6183", "1.178913576970865", "3.993713653984123", "1660194027"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6183", "1.5796656536496925", "6.433717413981169", "1660194027"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6183", "1.178913576970865", "3.993713653984123", "1660194027"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6183", "1.5796656536496925", "6.433717413981169", "1660194027"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6184", "1.1617160112800755", "3.960879565037402", "1660197606"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6184", "1.5576159870982642", "6.3924236229694325", "1660197606"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6184", "1.1617160112800755", "3.960879565037402", "1660197606"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6184", "1.5576159870982642", "6.3924236229694325", "1660197606"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6185", "1.1458449774700024", "3.9307910945019016", "1660201210"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6185", "1.5371544593411952", "6.354381974664264", "1660201210"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6185", "1.1458449774700024", "3.9307910945019016", "1660201210"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6185", "1.5371544593411952", "6.354381974664264", "1660201210"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6186", "1.1310950281722585", "3.9028304611294358", "1660204829"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6186", "1.5181208397688732", "6.319002040264331", "1660204829"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6186", "1.1310950281722585", "3.9028304611294358", "1660204829"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6186", "1.5181208397688732", "6.319002040264331", "1660204829"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6187", "1.117403250791789", "3.876874762366637", "1660208417"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6187", "1.5004389227331068", "6.286136734754947", "1660208417"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6187", "1.117403250791789", "3.876874762366637", "1660208417"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6187", "1.5004389227331068", "6.286136734754947", "1660208417"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6188", "1.1039977027540522", "3.8514587799971296", "1660212003"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6188", "1.4831145511363657", "6.253935426912096", "1660212003"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6188", "1.1039977027540522", "3.8514587799971296", "1660212003"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6188", "1.4831145511363657", "6.253935426912096", "1660212003"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6189", "1.0906939859082567", "3.8262317471385674", "1660215609"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6189", "1.4659104006049677", "6.221955403412264", "1660215609"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6189", "1.0906939859082567", "3.8262317471385674", "1660215609"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6189", "1.4659104006049677", "6.221955403412264", "1660215609"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6190", "1.0766831184199015", "3.799662144391168", "1660219218"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6190", "1.4477781840783448", "6.188251500192683", "1660219218"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6190", "1.0766831184199015", "3.799662144391168", "1660219218"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6190", "1.4477781840783448", "6.188251500192683", "1660219218"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6191", "1.0630650693391128", "3.773840571974527", "1660222802"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6191", "1.4301388020733479", "6.155470987445436", "1660222802"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6191", "1.0630650693391128", "3.773840571974527", "1660222802"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6191", "1.4301388020733479", "6.155470987445436", "1660222802"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6192", "1.0497270247559665", "3.7485460401897663", "1660226438"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6192", "1.4128501456672964", "6.12334050180658", "1660226438"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6192", "1.0497270247559665", "3.7485460401897663", "1660226438"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6192", "1.4128501456672964", "6.12334050180658", "1660226438"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6193", "1.0403878817364476", "3.7308337777343645", "1660230002"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6193", "1.4007373056663024", "6.100829342445608", "1660230002"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6193", "1.0403878817364476", "3.7308337777343645", "1660230002"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6193", "1.4007373056663024", "6.100829342445608", "1660230002"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6194", "1.0277464794826852", "3.706798910089274", "1660233610"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6194", "1.3843566547525779", "6.070312749944018", "1660233610"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6194", "1.0277464794826852", "3.706798910089274", "1660233610"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6194", "1.3843566547525779", "6.070312749944018", "1660233610"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6195", "1.0152637142071148", "3.683126409095802", "1660237271"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6195", "1.3681429837079626", "6.040188105645969", "1660237271"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6195", "1.0152637142071148", "3.683126409095802", "1660237271"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6195", "1.3681429837079626", "6.040188105645969", "1660237271"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6196", "1.0031207796661787", "3.6600931823341636", "1660240803"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6196", "1.3523612789464274", "6.010862174813081", "1660240803"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6196", "1.0031207796661787", "3.6600931823341636", "1660240803"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6196", "1.3523612789464274", "6.010862174813081", "1660240803"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6197", "0.9912311250104671", "3.637543457710688", "1660244412"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6197", "1.336896175659673", "5.982131173519864", "1660244412"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6197", "0.9912311250104671", "3.637543457710688", "1660244412"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6197", "1.336896175659673", "5.982131173519864", "1660244412"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6198", "0.9796311588930019", "3.615540833541363", "1660248005"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6198", "1.3217980786333037", "5.95408159761654", "1660248005"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6198", "0.9796311588930019", "3.615540833541363", "1660248005"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6198", "1.3217980786333037", "5.95408159761654", "1660248005"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6199", "0.9683141450167974", "3.594072170467551", "1660251606"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6199", "1.3070590913775602", "5.926698144981508", "1660251606"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6199", "0.9683141450167974", "3.594072170467551", "1660251606"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6199", "1.3070590913775602", "5.926698144981508", "1660251606"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6200", "0.9557813371784109", "3.570198889818641", "1660255203"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6200", "1.2907670074913289", "5.896306076669055", "1660255203"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6200", "0.9557813371784109", "3.570198889818641", "1660255203"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6200", "1.2907670074913289", "5.896306076669055", "1660255203"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6201", "0.9452192065901663", "3.550157249530496", "1660258851"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6201", "1.2769932634430197", "5.8707142779024775", "1660258851"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6201", "0.9452192065901663", "3.550157249530496", "1660258851"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6201", "1.2769932634430197", "5.8707142779024775", "1660258851"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6202", "0.934584019568501", "3.5299774643715836", "1660262417"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6202", "1.2631148467137012", "5.844930819126874", "1660262417"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6202", "0.934584019568501", "3.5299774643715836", "1660262417"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6202", "1.2631148467137012", "5.844930819126874", "1660262417"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6203", "0.9241798359786976", "3.5102368483249244", "1660266019"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6203", "1.2495285272780905", "5.819693273924256", "1660266019"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6203", "0.9241798359786976", "3.5102368483249244", "1660266019"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6203", "1.2495285272780905", "5.819693273924256", "1660266019"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6204", "0.9140092754410314", "3.490939813445816", "1660269621"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6204", "1.2362385073499464", "5.795008606803316", "1660269621"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6204", "0.9140092754410314", "3.490939813445816", "1660269621"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6204", "1.2362385073499464", "5.795008606803316", "1660269621"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6205", "0.9040249482666907", "3.471991875197065", "1660273209"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6205", "1.2231852993556245", "5.770760347877166", "1660273209"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6205", "0.9040249482666907", "3.471991875197065", "1660273209"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6205", "1.2231852993556245", "5.770760347877166", "1660273209"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6206", "0.894126566682834", "3.4531930118768592", "1660276800"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6206", "1.2102422258215102", "5.746700648298724", "1660276800"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6206", "0.894126566682834", "3.4531930118768592", "1660276800"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6206", "1.2102422258215102", "5.746700648298724", "1660276800"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6207", "0.8846257782581246", "3.4351661599567884", "1660280405"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6207", "1.1978040404894092", "5.723603089887517", "1660280405"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6207", "0.8846257782581246", "3.4351661599567884", "1660280405"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6207", "1.1978040404894092", "5.723603089887517", "1660280405"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6208", "0.8752627320439995", "3.4173953265195425", "1660284025"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6208", "1.1855409861762425", "5.700825705475943", "1660284025"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6208", "0.8752627320439995", "3.4173953265195425", "1660284025"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6208", "1.1855409861762425", "5.700825705475943", "1660284025"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6209", "0.8673466888070037", "3.4023701720569623", "1660287610"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6209", "1.1751675854292951", "5.68155867859183", "1660287610"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6209", "0.8673466888070037", "3.4023701720569623", "1660287610"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6209", "1.1751675854292951", "5.68155867859183", "1660287610"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6210", "0.8617759636760638", "3.3917975675860097", "1660291207"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6210", "1.1678639174282712", "5.667995266258949", "1660291207"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6210", "0.8617759636760638", "3.3917975675860097", "1660291207"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6210", "1.1678639174282712", "5.667995266258949", "1660291207"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6211", "0.8561407444415672", "3.3811027780947795", "1660294818"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6211", "1.1604728867340965", "5.654270554317504", "1660294818"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6211", "0.8561407444415672", "3.3811027780947795", "1660294818"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6211", "1.1604728867340965", "5.654270554317504", "1660294818"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6212", "0.8501080047694566", "3.36965274772462", "1660298406"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6212", "1.1525577859180602", "5.6395723751091476", "1660298406"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6212", "0.8501080047694566", "3.36965274772462", "1660298406"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6212", "1.1525577859180602", "5.6395723751091476", "1660298406"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6213", "0.8437478014115338", "3.3575687273496606", "1660302012"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6213", "1.1442149407052826", "5.624064683151463", "1660302012"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6213", "0.8437478014115338", "3.3575687273496606", "1660302012"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6213", "1.1442149407052826", "5.624064683151463", "1660302012"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6214", "0.8377791902621763", "3.346235922409559", "1660305602"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6214", "1.136379484421203", "5.609510187178805", "1660305602"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6214", "0.8377791902621763", "3.346235922409559", "1660305602"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6214", "1.136379484421203", "5.609510187178805", "1660305602"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6215", "0.8316438381258714", "3.334582778579506", "1660309213"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6215", "1.128323482508361", "5.594542002005648", "1660309213"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6215", "0.8316438381258714", "3.334582778579506", "1660309213"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6215", "1.128323482508361", "5.594542002005648", "1660309213"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6216", "0.8257543410886532", "3.3234036940612386", "1660312818"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6216", "1.1205841797582081", "5.580172136908528", "1660312818"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6216", "0.8257543410886532", "3.3234036940612386", "1660312818"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6216", "1.1205841797582081", "5.580172136908528", "1660312818"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6217", "0.8184534935265353", "3.309519057978", "1660316407"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6217", "1.110997299636026", "5.562338609383595", "1660316407"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6217", "0.8184534935265353", "3.309519057978", "1660316407"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6217", "1.110997299636026", "5.562338609383595", "1660316407"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6218", "0.8103697602952291", "3.2941751357555717", "1660320010"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6218", "1.1003643344946348", "5.542598617940162", "1660320010"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6218", "0.8103697602952291", "3.2941751357555717", "1660320010"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6218", "1.1003643344946348", "5.542598617940162", "1660320010"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6219", "0.8024615823401879", "3.2791648011316017", "1660323608"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6219", "1.0899565186259033", "5.5232784550982865", "1660323608"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6219", "0.8024615823401879", "3.2791648011316017", "1660323608"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6219", "1.0899565186259033", "5.5232784550982865", "1660323608"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6220", "0.794668426802932", "3.264370806303482", "1660327205"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6220", "1.0796954604673128", "5.5042295098163585", "1660327205"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6220", "0.794668426802932", "3.264370806303482", "1660327205"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6220", "1.0796954604673128", "5.5042295098163585", "1660327205"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6221", "0.7870318482642402", "3.2498715687659914", "1660330819"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6221", "1.0696363253805137", "5.4855535299271505", "1660330819"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6221", "0.7870318482642402", "3.2498715687659914", "1660330819"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6221", "1.0696363253805137", "5.4855535299271505", "1660330819"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6222", "0.7795144816146792", "3.235600339323402", "1660334415"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6222", "1.0597283791866459", "5.467161657604058", "1660334415"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6222", "0.7795144816146792", "3.235600339323402", "1660334415"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6222", "1.0597283791866459", "5.467161657604058", "1660334415"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6223", "0.7721531161316091", "3.2216229291489142", "1660338058"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6223", "1.050022068532025", "5.449142287000797", "1660338058"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6223", "0.7721531161316091", "3.2216229291489142", "1660338058"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6223", "1.050022068532025", "5.449142287000797", "1660338058"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6224", "0.7649327015339141", "3.2079134375141165", "1660341628"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6224", "1.040496692555072", "5.431460366410674", "1660341628"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6224", "0.7649327015339141", "3.2079134375141165", "1660341628"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6224", "1.040496692555072", "5.431460366410674", "1660341628"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6225", "0.7578414476719517", "3.194449654101043", "1660345202"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6225", "1.0311368684356315", "5.414087508872191", "1660345202"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6225", "0.7578414476719517", "3.194449654101043", "1660345202"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6225", "1.0311368684356315", "5.414087508872191", "1660345202"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6226", "0.7508484735317595", "3.181169371118232", "1660348803"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6226", "1.0219035418725955", "5.396946572903995", "1660348803"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6226", "0.7508484735317595", "3.181169371118232", "1660348803"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6226", "1.0219035418725955", "5.396946572903995", "1660348803"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6227", "0.7440240015863735", "3.1682117237209764", "1660352411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6227", "1.0128872372093847", "5.380212992290676", "1660352411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6227", "0.7440240015863735", "3.1682117237209764", "1660352411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6227", "1.0128872372093847", "5.380212992290676", "1660352411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6228", "0.7389589471083275", "3.1585983322839133", "1660356018"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6228", "1.0061911033123816", "5.367790858728157", "1660356018"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6228", "0.7389589471083275", "3.1585983322839133", "1660356018"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6228", "1.0061911033123816", "5.367790858728157", "1660356018"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6229", "0.7350072460369272", "3.151084470155939", "1660359623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6229", "1.0009709052656919", "5.35808966157423", "1660359623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6229", "0.7350072460369272", "3.151084470155939", "1660359623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6229", "1.0009709052656919", "5.35808966157423", "1660359623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6230", "0.7291961348792814", "3.1400374713432577", "1660363226"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6230", "0.9932907658320134", "5.3438206611294214", "1660363226"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6230", "0.7291961348792814", "3.1400374713432577", "1660363226"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6230", "0.9932907658320134", "5.3438206611294214", "1660363226"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6231", "0.7232566927083607", "3.1287504295762036", "1660366807"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6231", "0.9854361004384208", "5.32923327049485", "1660366807"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6231", "0.7232566927083607", "3.1287504295762036", "1660366807"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6231", "0.9854361004384208", "5.32923327049485", "1660366807"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6232", "0.7181622651205426", "3.119075566437468", "1660370435"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6232", "0.9786936224110367", "5.316720239844778", "1660370435"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6232", "0.7181622651205426", "3.119075566437468", "1660370435"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6232", "0.9786936224110367", "5.316720239844778", "1660370435"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6233", "0.7144422891658333", "3.1120131692015947", "1660374013"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6233", "0.9737677485423757", "5.30758182013227", "1660374013"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6233", "0.7144422891658333", "3.1120131692015947", "1660374013"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6233", "0.9737677485423757", "5.30758182013227", "1660374013"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6234", "0.7116504661400268", "3.1067061489762717", "1660377611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6234", "0.9700728619001237", "5.300718657558334", "1660377611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6234", "0.7116504661400268", "3.1067061489762717", "1660377611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6234", "0.9700728619001237", "5.300718657558334", "1660377611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6235", "0.7085326904735539", "3.100746365477994", "1660381206"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6235", "0.9659595856014476", "5.293035804084773", "1660381206"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6235", "0.7085326904735539", "3.100746365477994", "1660381206"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6235", "0.9659595856014476", "5.293035804084773", "1660381206"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6236", "0.7057881064118644", "3.095531080881781", "1660384802"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6236", "0.9623248655847346", "5.286287279487088", "1660384802"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6236", "0.7057881064118644", "3.095531080881781", "1660384802"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6236", "0.9623248655847346", "5.286287279487088", "1660384802"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6237", "0.7029823730407468", "3.090202065779789", "1660388408"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6237", "0.9586073907513173", "5.279388470327021", "1660388408"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6237", "0.7029823730407468", "3.090202065779789", "1660388408"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6237", "0.9586073907513173", "5.279388470327021", "1660388408"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6238", "0.6999968858118931", "3.084521089349064", "1660392021"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6238", "0.9546553342742125", "5.272040934123343", "1660392021"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6238", "0.6999968858118931", "3.084521089349064", "1660392021"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6238", "0.9546553342742125", "5.272040934123343", "1660392021"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6239", "0.6982363575708205", "3.081174386821565", "1660395638"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6239", "0.9523230265559613", "5.2677091982185145", "1660395638"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6239", "0.6982363575708205", "3.081174386821565", "1660395638"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6239", "0.9523230265559613", "5.2677091982185145", "1660395638"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6240", "0.6941517672195582", "3.073420882005945", "1660399230"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6240", "0.946906049052539", "5.2576630643937206", "1660399230"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6240", "0.6941517672195582", "3.073420882005945", "1660399230"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6240", "0.946906049052539", "5.2576630643937206", "1660399230"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6241", "0.6881791171228119", "3.0620681194578014", "1660402814"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6241", "0.9389886259723742", "5.2429607136396035", "1660402814"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6241", "0.6881791171228119", "3.0620681194578014", "1660402814"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6241", "0.9389886259723742", "5.2429607136396035", "1660402814"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6242", "0.6835151009947579", "3.053205873006413", "1660406403"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6242", "0.9328022691089116", "5.231477452957998", "1660406403"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6242", "0.6835151009947579", "3.053205873006413", "1660406403"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6242", "0.9328022691089116", "5.231477452957998", "1660406403"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6243", "0.6803256717742762", "3.047105578159587", "1660410005"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6243", "0.9285872502235397", "5.223602189692184", "1660410005"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6243", "0.6803256717742762", "3.047105578159587", "1660410005"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6243", "0.9285872502235397", "5.223602189692184", "1660410005"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6244", "0.6759037859505433", "3.0387064906183854", "1660413616"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6244", "0.9227174509815894", "5.21271132667827", "1660413616"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6244", "0.6759037859505433", "3.0387064906183854", "1660413616"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6244", "0.9227174509815894", "5.21271132667827", "1660413616"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6245", "0.6704882618291533", "3.028401770331737", "1660417208"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6245", "0.9155336742431343", "5.199359566202231", "1660417208"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6245", "0.6704882618291533", "3.028401770331737", "1660417208"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6245", "0.9155336742431343", "5.199359566202231", "1660417208"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6246", "0.6652287274197289", "3.0184082257264806", "1660420805"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6246", "0.9085481000856036", "5.186395416311509", "1660420805"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6246", "0.6652287274197289", "3.0184082257264806", "1660420805"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6246", "0.9085481000856036", "5.186395416311509", "1660420805"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6247", "0.6597838842002832", "3.0080660564001365", "1660424401"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6247", "0.9013121039068837", "5.172971725007724", "1660424401"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6247", "0.6597838842002832", "3.0080660564001365", "1660424401"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6247", "0.9013121039068837", "5.172971725007724", "1660424401"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6248", "0.6543238691211232", "2.997691880525461", "1660428014"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6248", "0.8940543443162723", "5.159504279219584", "1660428014"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6248", "0.6543238691211232", "2.997691880525461", "1660428014"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6248", "0.8940543443162723", "5.159504279219584", "1660428014"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6249", "0.649130499806385", "2.9878204058596913", "1660431600"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6249", "0.8871499277973994", "5.146688103352015", "1660431600"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6249", "0.649130499806385", "2.9878204058596913", "1660431600"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6249", "0.8871499277973994", "5.146688103352015", "1660431600"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6250", "0.6439904781748774", "2.9780473686326046", "1660435204"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6250", "0.8803150325453811", "5.133997808310465", "1660435204"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6250", "0.6439904781748774", "2.9780473686326046", "1660435204"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6250", "0.8803150325453811", "5.133997808310465", "1660435204"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6251", "0.6388668347746012", "2.9683096705245697", "1660438819"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6251", "0.87349755925008", "5.1213459413922955", "1660438819"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6251", "0.6388668347746012", "2.9683096705245697", "1660438819"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6251", "0.87349755925008", "5.1213459413922955", "1660438819"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6252", "0.6337779343433161", "2.9586336151494357", "1660442401"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6252", "0.8667255383255997", "5.108773412019415", "1660442401"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6252", "0.6337779343433161", "2.9586336151494357", "1660442401"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6252", "0.8667255383255997", "5.108773412019415", "1660442401"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6253", "0.6288863918460402", "2.9493293860310863", "1660446004"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6253", "0.8602151228601025", "5.096682748540069", "1660446004"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6253", "0.6288863918460402", "2.9493293860310863", "1660446004"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6253", "0.8602151228601025", "5.096682748540069", "1660446004"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6254", "0.623904665790081", "2.9398534695296954", "1660449601"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6254", "0.8535822628854615", "5.0843651226897135", "1660449601"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6254", "0.623904665790081", "2.9398534695296954", "1660449601"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6254", "0.8535822628854615", "5.0843651226897135", "1660449601"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6255", "0.61912410968462", "2.930769769748068", "1660453204"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6255", "0.8472109392924946", "5.072546141390025", "1660453204"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6255", "0.61912410968462", "2.930769769748068", "1660453204"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6255", "0.8472109392924946", "5.072546141390025", "1660453204"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6256", "0.6144026844546623", "2.9217986064519623", "1660456811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6256", "0.840916080397529", "5.060869809568675", "1660456811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6256", "0.6144026844546623", "2.9217986064519623", "1660456811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6256", "0.840916080397529", "5.060869809568675", "1660456811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6257", "0.6097523567174313", "2.912962867470588", "1660460425"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6257", "0.8347136648952844", "5.049365938998225", "1660460425"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6257", "0.6097523567174313", "2.912962867470588", "1660460425"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6257", "0.8347136648952844", "5.049365938998225", "1660460425"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6258", "0.6051668157571699", "2.9042507644677378", "1660464010"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6258", "0.8285952819447392", "5.038019169128721", "1660464010"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6258", "0.6051668157571699", "2.9042507644677378", "1660464010"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6258", "0.8285952819447392", "5.038019169128721", "1660464010"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6259", "0.6006416022029497", "2.895651056669924", "1660467601"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6259", "0.8225562035470523", "5.026817135785521", "1660467601"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6259", "0.6006416022029497", "2.895651056669924", "1660467601"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6259", "0.8225562035470523", "5.026817135785521", "1660467601"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6260", "0.5961924651994445", "2.8871975308266555", "1660471206"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6260", "0.8166159454171688", "5.015801000381637", "1660471206"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6260", "0.5961924651994445", "2.8871975308266555", "1660471206"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6260", "0.8166159454171688", "5.015801000381637", "1660471206"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6261", "0.591697105146603", "2.8786509786913284", "1660474811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6261", "0.81061404728223", "5.00466435830704", "1660474811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6261", "0.591697105146603", "2.8786509786913284", "1660474811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6261", "0.81061404728223", "5.00466435830704", "1660474811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6262", "0.5874534073503154", "2.8705857940004345", "1660478403"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6262", "0.8049450416432168", "4.994149650530797", "1660478403"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6262", "0.5874534073503154", "2.8705857940004345", "1660478403"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6262", "0.8049450416432168", "4.994149650530797", "1660478403"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6263", "0.5832606438594704", "2.8626154983031107", "1660482040"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6263", "0.7993430339163501", "4.983757201852171", "1660482040"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6263", "0.5832606438594704", "2.8626154983031107", "1660482040"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6263", "0.7993430339163501", "4.983757201852171", "1660482040"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6264", "0.5790163136456874", "2.854545602834101", "1660485612"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6264", "0.793670914905098", "4.973233126302058", "1660485612"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6264", "0.5790163136456874", "2.854545602834101", "1660485612"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6264", "0.793670914905098", "4.973233126302058", "1660485612"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6265", "0.5748706509708191", "2.84666506855227", "1660489213"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6265", "0.7881281209818504", "4.962951738971691", "1660489213"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6265", "0.5748706509708191", "2.84666506855227", "1660489213"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6265", "0.7881281209818504", "4.962951738971691", "1660489213"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6266", "0.5708052935313617", "2.8389401001099652", "1660492803"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6266", "0.7826897586559777", "4.9528682723878426", "1660492803"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6266", "0.5708052935313617", "2.8389401001099652", "1660492803"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6266", "0.7826897586559777", "4.9528682723878426", "1660492803"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6267", "0.5657878068440244", "2.8293545652482552", "1660496414"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6267", "0.7759963581676916", "4.940392035767188", "1660496414"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6267", "0.5657878068440244", "2.8293545652482552", "1660496414"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6267", "0.7759963581676916", "4.940392035767188", "1660496414"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6268", "0.5618179681604129", "2.821807566791521", "1660500090"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6268", "0.7706834501746198", "4.930537561070417", "1660500090"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6268", "0.5618179681604129", "2.821807566791521", "1660500090"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6268", "0.7706834501746198", "4.930537561070417", "1660500090"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6269", "0.55793755274477", "2.814423624869593", "1660503609"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6269", "0.7654914563727223", "4.9208987880394695", "1660503609"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6269", "0.55793755274477", "2.814423624869593", "1660503609"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6269", "0.7654914563727223", "4.9208987880394695", "1660503609"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6270", "0.5540601099780065", "2.807050134787626", "1660507206"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6270", "0.7602998850777958", "4.911267411920215", "1660507206"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6270", "0.5540601099780065", "2.807050134787626", "1660507206"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6270", "0.7602998850777958", "4.911267411920215", "1660507206"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6271", "0.5502695396161478", "2.7998466275347136", "1660510855"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6271", "0.755221131740206", "4.901851916772237", "1660510855"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6271", "0.5502695396161478", "2.7998466275347136", "1660510855"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6271", "0.755221131740206", "4.901851916772237", "1660510855"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6272", "0.5779315801502026", "2.8516089105492415", "1660514414"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6272", "0.7925797478148896", "4.970077838605861", "1660514414"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6272", "0.5779315801502026", "2.8516089105492415", "1660514414"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6272", "0.7925797478148896", "4.970077838605861", "1660514414"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6273", "0.5819288074533506", "2.857419093010131", "1660518005"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6273", "0.7986558979239755", "4.979033499612163", "1660518005"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6273", "0.5819288074533506", "2.857419093010131", "1660518005"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6273", "0.7986558979239755", "4.979033499612163", "1660518005"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6274", "0.5775889925830707", "2.84915656801391", "1660521645"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6274", "0.7928593381302276", "4.968263936335894", "1660521645"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6274", "0.5775889925830707", "2.84915656801391", "1660521645"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6274", "0.7928593381302276", "4.968263936335894", "1660521645"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6275", "0.5737241106399306", "2.8418238895470713", "1660525257"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6275", "0.7876849967821605", "4.958684081951768", "1660525257"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6275", "0.5737241106399306", "2.8418238895470713", "1660525257"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6275", "0.7876849967821605", "4.958684081951768", "1660525257"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6276", "0.5697360085692315", "2.834252387981668", "1660528801"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6276", "0.7823461159491946", "4.948793480780803", "1660528801"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6276", "0.5697360085692315", "2.834252387981668", "1660528801"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6276", "0.7823461159491946", "4.948793480780803", "1660528801"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6277", "0.566044425028621", "2.8272530912410954", "1660532400"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6277", "0.7773989228589796", "4.939640876779601", "1660532400"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6277", "0.566044425028621", "2.8272530912410954", "1660532400"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6277", "0.7773989228589796", "4.939640876779601", "1660532400"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6278", "0.5623535811289834", "2.8202534245861655", "1660536002"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6278", "0.7724520195170383", "4.930486876731446", "1660536002"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6278", "0.5623535811289834", "2.8202534245861655", "1660536002"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6278", "0.7724520195170383", "4.930486876731446", "1660536002"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6279", "0.5586658446796476", "2.8132587108494462", "1660539602"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6279", "0.7675082373897134", "4.921337798049467", "1660539602"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6279", "0.5586658446796476", "2.8132587108494462", "1660539602"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6279", "0.7675082373897134", "4.921337798049467", "1660539602"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6280", "0.5550712604326077", "2.806441465738073", "1660543287"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6280", "0.7626876393739618", "4.912418050743922", "1660543287"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6280", "0.5550712604326077", "2.806441465738073", "1660543287"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6280", "0.7626876393739618", "4.912418050743922", "1660543287"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6281", "0.551467547799381", "2.7995990166226687", "1660546804"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6281", "0.7578566461884467", "4.903469196453832", "1660546804"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6281", "0.551467547799381", "2.7995990166226687", "1660546804"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6281", "0.7578566461884467", "4.903469196453832", "1660546804"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6282", "0.5481950564398458", "2.793392414077599", "1660550406"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6282", "0.7534656532860161", "4.895344703209106", "1660550406"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6282", "0.5481950564398458", "2.793392414077599", "1660550406"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6282", "0.7534656532860161", "4.895344703209106", "1660550406"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6283", "0.545048551815719", "2.7874225628514764", "1660554008"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6283", "0.7492435308786723", "4.887530094842145", "1660554008"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6283", "0.545048551815719", "2.7874225628514764", "1660554008"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6283", "0.7492435308786723", "4.887530094842145", "1660554008"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6284", "0.541826231247355", "2.781311423394386", "1660557645"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6284", "0.7449175443825218", "4.8795268391871565", "1660557645"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6284", "0.541826231247355", "2.781311423394386", "1660557645"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6284", "0.7449175443825218", "4.8795268391871565", "1660557645"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6285", "0.5393796081713559", "2.77667154344111", "1660561219"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6285", "0.7416321389261519", "4.87344908115018", "1660561219"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6285", "0.5393796081713559", "2.77667154344111", "1660561219"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6285", "0.7416321389261519", "4.87344908115018", "1660561219"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6286", "0.536948525749502", "2.7720481111799753", "1660564800"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6286", "0.7383722623643458", "4.867401838842882", "1660564800"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6286", "0.536948525749502", "2.7720481111799753", "1660564800"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6286", "0.7383722623643458", "4.867401838842882", "1660564800"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6287", "0.5346339229579236", "2.767658167184663", "1660568409"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6287", "0.7352631233649999", "4.8616499029147935", "1660568409"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6287", "0.5346339229579236", "2.767658167184663", "1660568409"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6287", "0.7352631233649999", "4.8616499029147935", "1660568409"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6288", "0.531306002798927", "2.761343300072121", "1660572004"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6288", "0.7307930517598954", "4.853376553225662", "1660572004"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6288", "0.531306002798927", "2.761343300072121", "1660572004"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6288", "0.7307930517598954", "4.853376553225662", "1660572004"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6289", "0.5280949943920334", "2.7552496254014844", "1660575616"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6289", "0.7264791536291682", "4.845391697356531", "1660575616"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6289", "0.5280949943920334", "2.7552496254014844", "1660575616"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6289", "0.7264791536291682", "4.845391697356531", "1660575616"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6290", "0.525042874021419", "2.749458549072464", "1660579201"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6290", "0.7223772542040827", "4.83780089265623", "1660579201"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6290", "0.525042874021419", "2.749458549072464", "1660579201"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6290", "0.7223772542040827", "4.83780089265623", "1660579201"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6291", "0.5220842358149419", "2.7438457676040424", "1660582805"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6291", "0.718399657196681", "4.830441558212312", "1660582805"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6291", "0.5220842358149419", "2.7438457676040424", "1660582805"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6291", "0.718399657196681", "4.830441558212312", "1660582805"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6292", "0.5192201702237071", "2.73841195415714", "1660586402"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6292", "0.7145484826686643", "4.823315785641214", "1660586402"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6292", "0.5192201702237071", "2.73841195415714", "1660586402"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6292", "0.7145484826686643", "4.823315785641214", "1660586402"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6293", "0.5163308622647981", "2.7329311779747716", "1660590029"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6293", "0.7106620898835065", "4.816126283196211", "1660590029"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6293", "0.5163308622647981", "2.7329311779747716", "1660590029"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6293", "0.7106620898835065", "4.816126283196211", "1660590029"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6294", "0.5134886666602175", "2.7275404187435766", "1660593603"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6294", "0.7068379214362749", "4.80905295830742", "1660593603"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6294", "0.5134886666602175", "2.7275404187435766", "1660593603"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6294", "0.7068379214362749", "4.80905295830742", "1660593603"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6295", "0.5106669030765341", "2.7221872363735216", "1660597211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6295", "0.7030408517102846", "4.802028454528433", "1660597211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6295", "0.5106669030765341", "2.7221872363735216", "1660597211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6295", "0.7030408517102846", "4.802028454528433", "1660597211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6296", "0.5078853851252217", "2.716911437775186", "1660600804"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6296", "0.699296670886091", "4.795103352279713", "1660600804"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6296", "0.5078853851252217", "2.716911437775186", "1660600804"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6296", "0.699296670886091", "4.795103352279713", "1660600804"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6297", "0.505132727018246", "2.7116903494835025", "1660604400"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6297", "0.6955905186286706", "4.788248762202104", "1660604400"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6297", "0.505132727018246", "2.7116903494835025", "1660604400"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6297", "0.6955905186286706", "4.788248762202104", "1660604400"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6298", "0.5023942273700968", "2.706495908620064", "1660608007"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6298", "0.691902690853838", "4.781428005938627", "1660608007"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6298", "0.5023942273700968", "2.706495908620064", "1660608007"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6298", "0.691902690853838", "4.781428005938627", "1660608007"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6299", "0.49963991643664984", "2.701270592042194", "1660611601"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6299", "0.6881930989837991", "4.774566062752917", "1660611601"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6299", "0.49963991643664984", "2.701270592042194", "1660611601"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6299", "0.6881930989837991", "4.774566062752917", "1660611601"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6300", "0.49688808325697786", "2.6960478104034458", "1660615253"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6300", "0.6844868863322381", "4.767707776418163", "1660615253"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6300", "0.49688808325697786", "2.6960478104034458", "1660615253"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6300", "0.6844868863322381", "4.767707776418163", "1660615253"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6301", "0.4942225802738322", "2.690989079711823", "1660618819"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6301", "0.6808960674351973", "4.761063491841122", "1660618819"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6301", "0.4942225802738322", "2.690989079711823", "1660618819"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6301", "0.6808960674351973", "4.761063491841122", "1660618819"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6302", "0.4915452586632532", "2.6859075618175363", "1660622404"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6302", "0.6772886817375116", "4.754388292988068", "1660622404"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6302", "0.4915452586632532", "2.6859075618175363", "1660622404"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6302", "0.6772886817375116", "4.754388292988068", "1660622404"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6303", "0.4889114493753422", "2.680907903317172", "1660626003"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6303", "0.6737394431070849", "4.747819948215229", "1660626003"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6303", "0.4889114493753422", "2.680907903317172", "1660626003"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6303", "0.6737394431070849", "4.747819948215229", "1660626003"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6304", "0.4863273853694956", "2.6759978717089195", "1660629641"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6304", "0.6702584275701207", "4.74137182150542", "1660629641"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6304", "0.4863273853694956", "2.6759978717089195", "1660629641"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6304", "0.6702584275701207", "4.74137182150542", "1660629641"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6305", "0.4837989597217994", "2.6712013822849796", "1660633205"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6305", "0.6668484924322065", "4.735065702687739", "1660633205"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6305", "0.4837989597217994", "2.6712013822849796", "1660633205"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6305", "0.6668484924322065", "4.735065702687739", "1660633205"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6306", "0.48094028551925627", "2.6657569043107556", "1660636814"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6306", "0.6630009705012587", "4.72792267524108", "1660636814"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6306", "0.48094028551925627", "2.6657569043107556", "1660636814"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6306", "0.6630009705012587", "4.72792267524108", "1660636814"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6307", "0.4783444740391789", "2.6608320794051474", "1660640425"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6307", "0.6594987894237405", "4.721445712879486", "1660640425"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6307", "0.4783444740391789", "2.6608320794051474", "1660640425"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6307", "0.6594987894237405", "4.721445712879486", "1660640425"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6308", "0.47608594098368895", "2.6565428678723726", "1660644003"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6308", "0.6564527621145724", "4.715806973622979", "1660644003"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6308", "0.47608594098368895", "2.6565428678723726", "1660644003"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6308", "0.6564527621145724", "4.715806973622979", "1660644003"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6309", "0.4736626787443295", "2.6519273983117446", "1660647612"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6309", "0.6531893283345901", "4.709748522801439", "1660647612"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6309", "0.4736626787443295", "2.6519273983117446", "1660647612"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6309", "0.6531893283345901", "4.709748522801439", "1660647612"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6310", "0.4714547469206266", "2.647727688840129", "1660651209"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6310", "0.650213041390745", "4.704230620865348", "1660651209"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6310", "0.4714547469206266", "2.647727688840129", "1660651209"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6310", "0.650213041390745", "4.704230620865348", "1660651209"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6311", "0.4687559059881036", "2.6425834096205656", "1660654820"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6311", "0.6465786056520882", "4.697478686626614", "1660654820"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6311", "0.4687559059881036", "2.6425834096205656", "1660654820"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6311", "0.6465786056520882", "4.697478686626614", "1660654820"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6312", "0.46622763631857456", "2.6377810938014794", "1660658412"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6312", "0.6431663610307675", "4.691161630022589", "1660658412"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6312", "0.46622763631857456", "2.6377810938014794", "1660658412"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6312", "0.6431663610307675", "4.691161630022589", "1660658412"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6313", "0.46366723533282367", "2.6329192933954255", "1660662007"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6313", "0.639709394259416", "4.6847639792547575", "1660662007"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6313", "0.46366723533282367", "2.6329192933954255", "1660662007"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6313", "0.639709394259416", "4.6847639792547575", "1660662007"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6314", "0.46188204266808125", "2.6295280704917006", "1660665600"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6314", "0.637299219521343", "4.68030184664513", "1660665600"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6314", "0.46188204266808125", "2.6295280704917006", "1660665600"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6314", "0.637299219521343", "4.68030184664513", "1660665600"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6315", "0.4610395116930773", "2.62792888801231", "1660669206"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6315", "0.636161068933307", "4.678196455639202", "1660669206"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6315", "0.4610395116930773", "2.62792888801231", "1660669206"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6315", "0.636161068933307", "4.678196455639202", "1660669206"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6316", "0.4587153432884678", "2.623522523677472", "1660672817"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6316", "0.63301896811938", "4.6723907751148985", "1660672817"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6316", "0.4587153432884678", "2.623522523677472", "1660672817"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6316", "0.63301896811938", "4.6723907751148985", "1660672817"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6317", "0.45632333524568486", "2.618981022876443", "1660676403"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6317", "0.6297871289842701", "4.66641099141108", "1660676403"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6317", "0.45632333524568486", "2.618981022876443", "1660676403"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6317", "0.6297871289842701", "4.66641099141108", "1660676403"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6318", "0.4538504800882171", "2.6142867422364", "1660680000"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6318", "0.6264450863358774", "4.6602284103268765", "1660680000"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6318", "0.4538504800882171", "2.6142867422364", "1660680000"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6318", "0.6264450863358774", "4.6602284103268765", "1660680000"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6319", "0.45150067516061704", "2.609827220904276", "1660683608"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6319", "0.6232682315935626", "4.654353103647002", "1660683608"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6319", "0.45150067516061704", "2.609827220904276", "1660683608"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6319", "0.6232682315935626", "4.654353103647002", "1660683608"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6320", "0.4479495548738488", "2.6029853876134896", "1660687208"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6320", "0.6185070359667648", "4.645415031362875", "1660687208"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6320", "0.4479495548738488", "2.6029853876134896", "1660687208"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6320", "0.6185070359667648", "4.645415031362875", "1660687208"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6321", "0.446477513224305", "2.6001911335222707", "1660690820"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6321", "0.6165161888767774", "4.6417326258592855", "1660690820"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6321", "0.446477513224305", "2.6001911335222707", "1660690820"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6321", "0.6165161888767774", "4.6417326258592855", "1660690820"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6322", "0.4443661261861043", "2.596177313986402", "1660694410"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6322", "0.6136626120851155", "4.636446843618541", "1660694410"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6322", "0.4443661261861043", "2.596177313986402", "1660694410"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6322", "0.6136626120851155", "4.636446843618541", "1660694410"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6323", "0.44252495284122856", "2.592684310014346", "1660698000"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6323", "0.6111709650554453", "4.6318408530452695", "1660698000"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6323", "0.44252495284122856", "2.592684310014346", "1660698000"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6323", "0.6111709650554453", "4.6318408530452695", "1660698000"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6324", "0.44028310943933874", "2.5884319557509627", "1660701618"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6324", "0.608136255437069", "4.626232128321752", "1660701618"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6324", "0.44028310943933874", "2.5884319557509627", "1660701618"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6324", "0.608136255437069", "4.626232128321752", "1660701618"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6325", "0.4384389587957868", "2.5849333104018846", "1660705211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6325", "0.6056397124518573", "4.621617321151734", "1660705211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6325", "0.4384389587957868", "2.5849333104018846", "1660705211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6325", "0.6056397124518573", "4.621617321151734", "1660705211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6326", "0.436183596026775", "2.5806481151264755", "1660708811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6326", "0.6025885159278744", "4.615969056811091", "1660708811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6326", "0.436183596026775", "2.5806481151264755", "1660708811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6326", "0.6025885159278744", "4.615969056811091", "1660708811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6327", "0.4339881657036", "2.5764773649035972", "1660712419"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6327", "0.5996176062972778", "4.610470308703584", "1660712419"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6327", "0.4339881657036", "2.5764773649035972", "1660712419"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6327", "0.5996176062972778", "4.610470308703584", "1660712419"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6328", "0.43184181005714634", "2.572403133814991", "1660716005"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6328", "0.5967112537976362", "4.605095462933729", "1660716005"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6328", "0.43184181005714634", "2.572403133814991", "1660716005"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6328", "0.5967112537976362", "4.605095462933729", "1660716005"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6329", "0.42953871101431573", "2.568010539599597", "1660719607"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6329", "0.5936003722496458", "4.599315466445999", "1660719607"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6329", "0.42953871101431573", "2.568010539599597", "1660719607"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6329", "0.5936003722496458", "4.599315466445999", "1660719607"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6330", "0.4274293927986976", "2.5640057549329627", "1660723206"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6330", "0.5907434283898713", "4.5940311597992105", "1660723206"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6330", "0.4274293927986976", "2.5640057549329627", "1660723206"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6330", "0.5907434283898713", "4.5940311597992105", "1660723206"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6331", "0.4253267241668336", "2.560016762870735", "1660726805"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6331", "0.5878937143674562", "4.588764475537358", "1660726805"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6331", "0.4253267241668336", "2.560016762870735", "1660726805"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6331", "0.5878937143674562", "4.588764475537358", "1660726805"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6332", "0.42328501582869266", "2.5561412214039647", "1660730405"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6332", "0.5851270031285227", "4.583648466197547", "1660730405"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6332", "0.42328501582869266", "2.5561412214039647", "1660730405"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6332", "0.5851270031285227", "4.583648466197547", "1660730405"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6333", "0.4212841729328752", "2.5523446850606777", "1660734027"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6333", "0.5824146261452258", "4.578634915186407", "1660734027"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6333", "0.4212841729328752", "2.5523446850606777", "1660734027"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6333", "0.5824146261452258", "4.578634915186407", "1660734027"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6334", "0.4192904662693501", "2.548562245213408", "1660737604"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6334", "0.5797112379585502", "4.5736388220421915", "1660737604"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6334", "0.4192904662693501", "2.548562245213408", "1660737604"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6334", "0.5797112379585502", "4.5736388220421915", "1660737604"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6335", "0.417292525062989", "2.544768805235874", "1660741208"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6335", "0.5770028231201978", "4.568629707485126", "1660741208"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6335", "0.417292525062989", "2.544768805235874", "1660741208"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6335", "0.5770028231201978", "4.568629707485126", "1660741208"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6336", "0.4153187877547597", "2.541021502737979", "1660744805"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6336", "0.5743266879096257", "4.563680649525837", "1660744805"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6336", "0.4153187877547597", "2.541021502737979", "1660744805"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6336", "0.5743266879096257", "4.563680649525837", "1660744805"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6337", "0.4133499994936842", "2.537286192131711", "1660748404"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6337", "0.5716557759134517", "4.558744743251946", "1660748404"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6337", "0.4133499994936842", "2.537286192131711", "1660748404"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6337", "0.5716557759134517", "4.558744743251946", "1660748404"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6338", "0.4113905691970982", "2.533568373375291", "1660752007"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6338", "0.5689972125566052", "4.553831434192803", "1660752007"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6338", "0.4113905691970982", "2.533568373375291", "1660752007"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6338", "0.5689972125566052", "4.553831434192803", "1660752007"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6339", "0.4093996295858722", "2.529789287839898", "1660755605"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6339", "0.5662960240758586", "4.548837545837164", "1660755605"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6339", "0.4093996295858722", "2.529789287839898", "1660755605"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6339", "0.5662960240758586", "4.548837545837164", "1660755605"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6340", "0.4075074404816142", "2.5261940899692785", "1660759214"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6340", "0.563729794065883", "4.544088658757242", "1660759214"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6340", "0.4075074404816142", "2.5261940899692785", "1660759214"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6340", "0.563729794065883", "4.544088658757242", "1660759214"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6341", "0.40565702744627224", "2.5226874184703014", "1660762840"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6341", "0.5612161790881037", "4.539449143574694", "1660762840"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6341", "0.40565702744627224", "2.5226874184703014", "1660762840"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6341", "0.5612161790881037", "4.539449143574694", "1660762840"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6342", "0.40384453162268347", "2.519242659186751", "1660766408"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6342", "0.5587576279143783", "4.534898453118846", "1660766408"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6342", "0.40384453162268347", "2.519242659186751", "1660766408"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6342", "0.5587576279143783", "4.534898453118846", "1660766408"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6343", "0.40196548997006964", "2.5156737096651853", "1660770014"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6343", "0.5562074934637459", "4.530181323822713", "1660770014"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6343", "0.40196548997006964", "2.5156737096651853", "1660770014"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6343", "0.5562074934637459", "4.530181323822713", "1660770014"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6344", "0.4001538789269705", "2.5122367148925324", "1660773608"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6344", "0.5537469366354698", "4.525635040857262", "1660773608"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6344", "0.4001538789269705", "2.5122367148925324", "1660773608"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6344", "0.5537469366354698", "4.525635040857262", "1660773608"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6345", "0.398346920766794", "2.508802117560047", "1660777215"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6345", "0.5512948620719161", "4.521096176398868", "1660777215"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6345", "0.398346920766794", "2.508802117560047", "1660777215"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6345", "0.5512948620719161", "4.521096176398868", "1660777215"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6346", "0.3965844843180998", "2.505456456200504", "1660780818"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6346", "0.5489011209567499", "4.516670994706203", "1660780818"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6346", "0.3965844843180998", "2.505456456200504", "1660780818"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6346", "0.5489011209567499", "4.516670994706203", "1660780818"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6347", "0.3946786339042293", "2.501823295463754", "1660784408"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6347", "0.5463182238896334", "4.5118764096087745", "1660784408"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6347", "0.3946786339042293", "2.501823295463754", "1660784408"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6347", "0.5463182238896334", "4.5118764096087745", "1660784408"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6348", "0.3929407295627987", "2.498523075421107", "1660788002"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6348", "0.5439574914165876", "4.507510979706683", "1660788002"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6348", "0.3929407295627987", "2.498523075421107", "1660788002"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6348", "0.5439574914165876", "4.507510979706683", "1660788002"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6349", "0.39114673548854856", "2.4951184709429715", "1660791620"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6349", "0.5415193472263689", "4.503005267518163", "1660791620"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6349", "0.39114673548854856", "2.4951184709429715", "1660791620"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6349", "0.5415193472263689", "4.503005267518163", "1660791620"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6350", "0.3893702492876739", "2.4917418356173395", "1660795237"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6350", "0.5391066998324026", "4.498539939509199", "1660795237"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6350", "0.3893702492876739", "2.4917418356173395", "1660795237"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6350", "0.5391066998324026", "4.498539939509199", "1660795237"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6351", "0.387575612941313", "2.4883270452862996", "1660798806"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6351", "0.5366704652706498", "4.494026300139931", "1660798806"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6351", "0.387575612941313", "2.4883270452862996", "1660798806"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6351", "0.5366704652706498", "4.494026300139931", "1660798806"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6352", "0.3858216770277496", "2.4849966058966535", "1660802404"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6352", "0.5342863750755736", "4.489618360042519", "1660802404"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6352", "0.3858216770277496", "2.4849966058966535", "1660802404"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6352", "0.5342863750755736", "4.489618360042519", "1660802404"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6353", "0.3841113565957082", "2.4817510252700936", "1660806028"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6353", "0.5319604085038676", "4.485320630951904", "1660806028"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6353", "0.3841113565957082", "2.4817510252700936", "1660806028"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6353", "0.5319604085038676", "4.485320630951904", "1660806028"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6354", "0.38245396426496314", "2.4786031551147576", "1660809618"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6354", "0.5297071658301087", "4.481153816210116", "1660809618"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6354", "0.38245396426496314", "2.4786031551147576", "1660809618"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6354", "0.5297071658301087", "4.481153816210116", "1660809618"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6355", "0.38084014864312005", "2.4755359797947714", "1660813203"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6355", "0.5275136665834587", "4.4770948732180385", "1660813203"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6355", "0.38084014864312005", "2.4755359797947714", "1660813203"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6355", "0.5275136665834587", "4.4770948732180385", "1660813203"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6356", "0.3791304289404108", "2.4722907782258385", "1660816811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6356", "0.5251877939912943", "4.472796596925503", "1660816811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6356", "0.3791304289404108", "2.4722907782258385", "1660816811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6356", "0.5251877939912943", "4.472796596925503", "1660816811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6357", "0.3776419936167864", "2.469465992369826", "1660820450"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6357", "0.5231625088695431", "4.469054407571017", "1660820450"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6357", "0.3776419936167864", "2.469465992369826", "1660820450"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6357", "0.5231625088695431", "4.469054407571017", "1660820450"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6358", "0.3758280552014327", "2.465995830767194", "1660824008"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6358", "0.5207048644420618", "4.4644775026345975", "1660824008"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6358", "0.3758280552014327", "2.465995830767194", "1660824008"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6358", "0.5207048644420618", "4.4644775026345975", "1660824008"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6359", "0.37426928127953335", "2.4630377050333676", "1660827606"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6359", "0.518583180752484", "4.460557553518929", "1660827606"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6359", "0.37426928127953335", "2.4630377050333676", "1660827606"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6359", "0.518583180752484", "4.460557553518929", "1660827606"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6360", "0.37271730513970674", "2.460091525627478", "1660831202"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6360", "0.5164708343345354", "4.456653691892403", "1660831202"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6360", "0.37271730513970674", "2.460091525627478", "1660831202"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6360", "0.5164708343345354", "4.456653691892403", "1660831202"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6361", "0.37116744997083473", "2.4571491767421345", "1660834814"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6361", "0.5143611608500723", "4.45275459215883", "1660834814"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6361", "0.37116744997083473", "2.4571491767421345", "1660834814"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6361", "0.5143611608500723", "4.45275459215883", "1660834814"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6362", "0.36964972150855246", "2.454269402591571", "1660838400"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6362", "0.5122943118853961", "4.4489367744401305", "1660838400"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6362", "0.36964972150855246", "2.454269402591571", "1660838400"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6362", "0.5122943118853961", "4.4489367744401305", "1660838400"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6363", "0.3680594907944105", "2.4512520416049504", "1660842026"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6363", "0.5101284370363846", "4.444936093056196", "1660842026"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6363", "0.3680594907944105", "2.4512520416049504", "1660842026"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6363", "0.5101284370363846", "4.444936093056196", "1660842026"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6364", "0.36648505423521477", "2.448264612179871", "1660845618"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6364", "0.5079837857036232", "4.440974646355561", "1660845618"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6364", "0.36648505423521477", "2.448264612179871", "1660845618"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6364", "0.5079837857036232", "4.440974646355561", "1660845618"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6365", "0.36492426647082365", "2.445303030062871", "1660849217"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6365", "0.5058574489330546", "4.437047041443394", "1660849217"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6365", "0.36492426647082365", "2.445303030062871", "1660849217"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6365", "0.5058574489330546", "4.437047041443394", "1660849217"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6366", "0.3633401653756391", "2.4422894437075184", "1660852809"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6366", "0.5037021071347833", "4.433055839216058", "1660852809"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6366", "0.3633401653756391", "2.4422894437075184", "1660852809"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6366", "0.5037021071347833", "4.433055839216058", "1660852809"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6367", "0.3618226832293092", "2.4394099210939886", "1660856412"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6367", "0.5016342339402515", "4.429236229176865", "1660856412"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6367", "0.3618226832293092", "2.4394099210939886", "1660856412"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6367", "0.5016342339402515", "4.429236229176865", "1660856412"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6368", "0.36033109508393224", "2.436579798072959", "1660860004"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6368", "0.49960126876923255", "4.425481514073623", "1660860004"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6368", "0.36033109508393224", "2.436579798072959", "1660860004"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6368", "0.49960126876923255", "4.425481514073623", "1660860004"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6369", "0.35890610234432113", "2.433875835418583", "1660863638"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6369", "0.49765889376968986", "4.4218939221039495", "1660863638"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6369", "0.35890610234432113", "2.433875835418583", "1660863638"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6369", "0.49765889376968986", "4.4218939221039495", "1660863638"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6370", "0.3574660726297151", "2.43113332986202", "1660867217"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6370", "0.49569970754866177", "4.418262326851665", "1660867217"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6370", "0.3574660726297151", "2.43113332986202", "1660867217"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6370", "0.49569970754866177", "4.418262326851665", "1660867217"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6371", "0.35593811977135664", "2.4282245987933573", "1660870811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6371", "0.4936201395642485", "4.414409255926139", "1660870811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6371", "0.35593811977135664", "2.4282245987933573", "1660870811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6371", "0.4936201395642485", "4.414409255926139", "1660870811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6372", "0.3544580892479017", "2.4254158909883903", "1660874436"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6372", "0.49160206226214087", "4.410681648915278", "1660874436"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6372", "0.3544580892479017", "2.4254158909883903", "1660874436"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6372", "0.49160206226214087", "4.410681648915278", "1660874436"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6373", "0.3530390190933937", "2.4227167242539243", "1660878002"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6373", "0.4896692695619328", "4.407103643813937", "1660878002"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6373", "0.3530390190933937", "2.4227167242539243", "1660878002"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6373", "0.4896692695619328", "4.407103643813937", "1660878002"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6374", "0.3516515100313862", "2.4200828579729046", "1660881607"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6374", "0.48777715262806476", "4.403607864974949", "1660881607"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6374", "0.3516515100313862", "2.4200828579729046", "1660881607"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6374", "0.48777715262806476", "4.403607864974949", "1660881607"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6375", "0.35027175360221546", "2.417462294817533", "1660885211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6375", "0.48589592798628317", "4.400130433200972", "1660885211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6375", "0.35027175360221546", "2.417462294817533", "1660885211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6375", "0.48589592798628317", "4.400130433200972", "1660885211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6376", "0.3488883789997489", "2.4148354216659937", "1660888821"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6376", "0.48400931363046307", "4.39664383241701", "1660888821"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6376", "0.3488883789997489", "2.4148354216659937", "1660888821"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6376", "0.48400931363046307", "4.39664383241701", "1660888821"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6377", "0.34746974425212435", "2.4121400844590344", "1660892420"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6377", "0.48207495930089894", "4.39306710572697", "1660892420"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6377", "0.34746974425212435", "2.4121400844590344", "1660892420"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6377", "0.48207495930089894", "4.39306710572697", "1660892420"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6378", "0.34612712786917693", "2.4095898235270976", "1660896002"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6378", "0.4802437758634831", "4.389682048182796", "1660896002"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6378", "0.34612712786917693", "2.4095898235270976", "1660896002"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6378", "0.4802437758634831", "4.389682048182796", "1660896002"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6379", "0.34481617010086973", "2.4071021576789846", "1660899615"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6379", "0.4784545905532749", "4.386377886715561", "1660899615"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6379", "0.34481617010086973", "2.4071021576789846", "1660899615"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6379", "0.4784545905532749", "4.386377886715561", "1660899615"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6380", "0.3434979261987681", "2.4046006240437134", "1660903216"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6380", "0.47665526321408525", "4.383054998069037", "1660903216"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6380", "0.3434979261987681", "2.4046006240437134", "1660903216"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6380", "0.47665526321408525", "4.383054998069037", "1660903216"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6381", "0.3421958915404985", "2.4021295068187456", "1660906822"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6381", "0.474877983762685", "4.379772436187233", "1660906822"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6381", "0.3421958915404985", "2.4021295068187456", "1660906822"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6381", "0.474877983762685", "4.379772436187233", "1660906822"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6382", "0.340908020070587", "2.399685592281658", "1660910409"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6382", "0.47311970388638375", "4.37652544017713", "1660910409"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6382", "0.340908020070587", "2.399685592281658", "1660910409"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6382", "0.47311970388638375", "4.37652544017713", "1660910409"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6383", "0.3396466503877403", "2.3972915352504027", "1660914003"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6383", "0.4713975762396955", "4.373344695114882", "1660914003"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6383", "0.3396466503877403", "2.3972915352504027", "1660914003"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6383", "0.4713975762396955", "4.373344695114882", "1660914003"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6384", "0.3379362312782224", "2.394001275283942", "1660917617"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6384", "0.46907925945734474", "4.369005730189711", "1660917617"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6384", "0.3379362312782224", "2.394001275283942", "1660917617"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6384", "0.46907925945734474", "4.369005730189711", "1660917617"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6385", "0.3366866780972141", "2.391630164593798", "1660921220"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6385", "0.46737259645816087", "4.365854343656866", "1660921220"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6385", "0.3366866780972141", "2.391630164593798", "1660921220"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6385", "0.46737259645816087", "4.365854343656866", "1660921220"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6386", "0.3354587379076357", "2.3892991473546097", "1660924810"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6386", "0.4656956233013305", "4.362756634716509", "1660924810"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6386", "0.3354587379076357", "2.3892991473546097", "1660924810"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6386", "0.4656956233013305", "4.362756634716509", "1660924810"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6387", "0.33418837800500856", "2.386884936028281", "1660928416"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6387", "0.4639615650616639", "4.359550057605163", "1660928416"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6387", "0.33418837800500856", "2.386884936028281", "1660928416"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6387", "0.4639615650616639", "4.359550057605163", "1660928416"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6388", "0.33290774702265263", "2.3844536030349595", "1660932010"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6388", "0.4622123437923324", "4.356318618518955", "1660932010"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6388", "0.33290774702265263", "2.3844536030349595", "1660932010"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6388", "0.4622123437923324", "4.356318618518955", "1660932010"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6389", "0.3316964835505372", "2.3821541198489253", "1660935643"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6389", "0.46055762366122105", "4.3532620056449245", "1660935643"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6389", "0.3316964835505372", "2.3821541198489253", "1660935643"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6389", "0.46055762366122105", "4.3532620056449245", "1660935643"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6390", "0.32790010584614193", "2.3748431044822294", "1660939208"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6390", "0.45541078266201956", "4.34361974784875", "1660939208"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6390", "0.32790010584614193", "2.3748431044822294", "1660939208"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6390", "0.45541078266201956", "4.34361974784875", "1660939208"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6391", "0.32663624050565493", "2.3724445083926082", "1660942805"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6391", "0.45368310297865505", "4.34042954382551", "1660942805"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6391", "0.32663624050565493", "2.3724445083926082", "1660942805"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6391", "0.45368310297865505", "4.34042954382551", "1660942805"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6392", "0.32545693379134794", "2.3702069151369303", "1660946403"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6392", "0.4520706272743368", "4.33745279877193", "1660946403"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6392", "0.32545693379134794", "2.3702069151369303", "1660946403"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6392", "0.4520706272743368", "4.33745279877193", "1660946403"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6393", "0.32429156143859234", "2.3679957448858735", "1660950006"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6393", "0.4504770387587454", "4.334510945839011", "1660950006"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6393", "0.32429156143859234", "2.3679957448858735", "1660950006"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6393", "0.4504770387587454", "4.334510945839011", "1660950006"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6394", "0.323075697536288", "2.3656884639326536", "1660953636"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6394", "0.4488143440428824", "4.331441165943989", "1660953636"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6394", "0.323075697536288", "2.3656884639326536", "1660953636"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6394", "0.4488143440428824", "4.331441165943989", "1660953636"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6395", "0.32183901785442304", "2.363337083644529", "1660957205"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6395", "0.4471247880925947", "4.328315856991965", "1660957205"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6395", "0.32183901785442304", "2.363337083644529", "1660957205"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6395", "0.4471247880925947", "4.328315856991965", "1660957205"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6396", "0.320919647366509", "2.3615915335757727", "1660960804"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6396", "0.44586763611462155", "4.325993704806508", "1660960804"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6396", "0.320919647366509", "2.3615915335757727", "1660960804"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6396", "0.44586763611462155", "4.325993704806508", "1660960804"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6397", "0.32016664401982053", "2.360162058062998", "1660964411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6397", "0.4448378163922055", "4.324091756763717", "1660964411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6397", "0.32016664401982053", "2.360162058062998", "1660964411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6397", "0.4448378163922055", "4.324091756763717", "1660964411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6398", "0.3191162875774918", "2.358164549013917", "1660968009"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6398", "0.44340259675590343", "4.321436496255649", "1660968009"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6398", "0.3191162875774918", "2.358164549013917", "1660968009"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6398", "0.44340259675590343", "4.321436496255649", "1660968009"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6399", "0.3179610182438071", "2.3559723740812735", "1660971642"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6399", "0.4418219686735094", "4.318518586974115", "1660971642"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6399", "0.3179610182438071", "2.3559723740812735", "1660971642"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6399", "0.4418219686735094", "4.318518586974115", "1660971642"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6400", "0.31679397975980483", "2.353756233744447", "1660975206"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6400", "0.44022570377556125", "4.315569730860686", "1660975206"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6400", "0.31679397975980483", "2.353756233744447", "1660975206"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6400", "0.44022570377556125", "4.315569730860686", "1660975206"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6401", "0.31559852184628934", "2.35148700200817", "1660978826"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6401", "0.4385900467856682", "4.312549291888789", "1660978826"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6401", "0.31559852184628934", "2.35148700200817", "1660978826"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6401", "0.4385900467856682", "4.312549291888789", "1660978826"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6402", "0.31450606756881117", "2.3494141680026446", "1660982414"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6402", "0.43709482265495947", "4.309789360992605", "1660982414"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6402", "0.31450606756881117", "2.3494141680026446", "1660982414"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6402", "0.43709482265495947", "4.309789360992605", "1660982414"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6403", "0.3134019721096491", "2.347316760576699", "1660986001"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6403", "0.43558448041149234", "4.30699832943266", "1660986001"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6403", "0.3134019721096491", "2.347316760576699", "1660986001"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6403", "0.43558448041149234", "4.30699832943266", "1660986001"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6404", "0.31232339401299214", "2.345270170751491", "1660989603"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6404", "0.43410798185540983", "4.3042729321682955", "1660989603"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6404", "0.31232339401299214", "2.345270170751491", "1660989603"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6404", "0.43410798185540983", "4.3042729321682955", "1660989603"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6405", "0.3112342407807955", "2.3432008332993184", "1660993215"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6405", "0.4326179013982481", "4.301519012986692", "1660993215"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6405", "0.3112342407807955", "2.3432008332993184", "1660993215"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6405", "0.4326179013982481", "4.301519012986692", "1660993215"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6406", "0.3100596864269379", "2.3409705757142727", "1660996827"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6406", "0.4310102924959898", "4.29854966989772", "1660996827"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6406", "0.3100596864269379", "2.3409705757142727", "1660996827"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6406", "0.4310102924959898", "4.29854966989772", "1660996827"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6407", "0.3090164131243927", "2.338990740156516", "1661000408"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6407", "0.4295817747916772", "4.295912647807028", "1661000408"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6407", "0.3090164131243927", "2.338990740156516", "1661000408"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6407", "0.4295817747916772", "4.295912647807028", "1661000408"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6408", "0.3079786003355596", "2.3370212480658226", "1661004021"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6408", "0.42816060393872374", "4.293289199731042", "1661004021"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6408", "0.3079786003355596", "2.3370212480658226", "1661004021"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6408", "0.42816060393872374", "4.293289199731042", "1661004021"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6409", "0.3066746064238338", "2.3345006837189524", "1661007609"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6409", "0.42639260694476067", "4.289965748758413", "1661007609"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6409", "0.3066746064238338", "2.3345006837189524", "1661007609"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6409", "0.42639260694476067", "4.289965748758413", "1661007609"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6410", "0.3056253475255019", "2.3325072098529684", "1661011210"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6410", "0.4249563233528454", "4.287311541198889", "1661011210"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6410", "0.3056253475255019", "2.3325072098529684", "1661011210"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6410", "0.4249563233528454", "4.287311541198889", "1661011210"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6411", "0.3046008176867989", "2.3305632500418443", "1661014829"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6411", "0.4235527696192634", "4.284721153192013", "1661014829"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6411", "0.3046008176867989", "2.3305632500418443", "1661014829"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6411", "0.4235527696192634", "4.284721153192013", "1661014829"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6412", "0.3035815183551064", "2.3286289264727245", "1661018480"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6412", "0.4221563604846932", "4.282143611298041", "1661018480"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6412", "0.3035815183551064", "2.3286289264727245", "1661018480"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6412", "0.4221563604846932", "4.282143611298041", "1661018480"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6413", "0.3025030962686902", "2.3265724952015048", "1661022012"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6413", "0.42068266336891713", "4.279410537929325", "1661022012"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6413", "0.3025030962686902", "2.3265724952015048", "1661022012"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6413", "0.42068266336891713", "4.279410537929325", "1661022012"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6414", "0.3014680769688327", "2.32460722862943", "1661025630"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6414", "0.419264870726972", "4.276792152098145", "1661025630"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6414", "0.3014680769688327", "2.32460722862943", "1661025630"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6414", "0.419264870726972", "4.276792152098145", "1661025630"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6415", "0.30050693034646164", "2.3227817287300327", "1661029206"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6415", "0.4179483421240812", "4.274360161473129", "1661029206"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6415", "0.30050693034646164", "2.3227817287300327", "1661029206"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6415", "0.4179483421240812", "4.274360161473129", "1661029206"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6416", "0.2994014261085227", "2.3206786116866374", "1661032820"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6416", "0.41643526961421623", "4.2715606566282736", "1661032820"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6416", "0.2994014261085227", "2.3206786116866374", "1661032820"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6416", "0.41643526961421623", "4.2715606566282736", "1661032820"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6417", "0.29834954898620636", "2.3186785208885015", "1661036438"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6417", "0.41499505793651764", "4.268897310796018", "1661036438"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6417", "0.29834954898620636", "2.3186785208885015", "1661036438"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6417", "0.41499505793651764", "4.268897310796018", "1661036438"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6418", "0.2974050771794475", "2.3168834373700635", "1661040001"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6418", "0.41370147860611167", "4.266506180038888", "1661040001"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6418", "0.2974050771794475", "2.3168834373700635", "1661040001"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6418", "0.41370147860611167", "4.266506180038888", "1661040001"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6419", "0.2965021411424546", "2.3151648731101355", "1661043615"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6419", "0.41246562181817265", "4.26421861466961", "1661043615"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6419", "0.2965021411424546", "2.3151648731101355", "1661043615"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6419", "0.41246562181817265", "4.26421861466961", "1661043615"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6420", "0.29563471774431305", "2.3135178946396575", "1661047201"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6420", "0.41127672148197997", "4.2620232041333", "1661047201"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6420", "0.29563471774431305", "2.3135178946396575", "1661047201"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6420", "0.41127672148197997", "4.2620232041333", "1661047201"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6421", "0.29467356165178926", "2.311694022983062", "1661050814"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6421", "0.4099588187355729", "4.259591013262655", "1661050814"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6421", "0.29467356165178926", "2.311694022983062", "1661050814"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6421", "0.4099588187355729", "4.259591013262655", "1661050814"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6422", "0.2936467232840078", "2.3097409922643624", "1661054413"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6422", "0.40855247792187216", "4.256989754180336", "1661054413"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6422", "0.2936467232840078", "2.3097409922643624", "1661054413"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6422", "0.40855247792187216", "4.256989754180336", "1661054413"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6423", "0.29269186099604755", "2.3079290961993073", "1661058028"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6423", "0.4072429479107675", "4.254573122742714", "1661058028"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6423", "0.29269186099604755", "2.3079290961993073", "1661058028"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6423", "0.4072429479107675", "4.254573122742714", "1661058028"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6424", "0.2917141205294489", "2.306072819527356", "1661061608"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6424", "0.4059022957014011", "4.25209782897787", "1661061608"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6424", "0.2917141205294489", "2.306072819527356", "1661061608"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6424", "0.4059022957014011", "4.25209782897787", "1661061608"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6425", "0.29073893020149205", "2.304219989832604", "1661065218"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6425", "0.40456555792502635", "4.24962797803702", "1661065218"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6425", "0.29073893020149205", "2.304219989832604", "1661065218"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6425", "0.40456555792502635", "4.24962797803702", "1661065218"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6426", "0.28975568681642705", "2.302353001971085", "1661068808"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6426", "0.4032172138134426", "4.247138205202035", "1661068808"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6426", "0.28975568681642705", "2.302353001971085", "1661068808"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6426", "0.4032172138134426", "4.247138205202035", "1661068808"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6427", "0.28880137529191074", "2.3005417793929674", "1661072430"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6427", "0.4019081034684735", "4.244721992059143", "1661072430"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6427", "0.28880137529191074", "2.3005417793929674", "1661072430"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6427", "0.4019081034684735", "4.244721992059143", "1661072430"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6428", "0.2878266962220382", "2.298688962906562", "1661076019"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6428", "0.40057207001758277", "4.242252291764747", "1661076019"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6428", "0.2878266962220382", "2.298688962906562", "1661076019"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6428", "0.40057207001758277", "4.242252291764747", "1661076019"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6429", "0.28684640527328215", "2.296827660782731", "1661079603"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6429", "0.399227373986933", "4.2397694579460845", "1661079603"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6429", "0.28684640527328215", "2.296827660782731", "1661079603"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6429", "0.399227373986933", "4.2397694579460845", "1661079603"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6430", "0.28589640797602456", "2.2950239616628254", "1661083211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6430", "0.39792408131125356", "4.237363211845187", "1661083211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6430", "0.28589640797602456", "2.2950239616628254", "1661083211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6430", "0.39792408131125356", "4.237363211845187", "1661083211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6431", "0.28495303259956234", "2.2932389900220964", "1661086802"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6431", "0.39662737338795917", "4.23497717645925", "1661086802"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6431", "0.28495303259956234", "2.2932389900220964", "1661086802"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6431", "0.39662737338795917", "4.23497717645925", "1661086802"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6432", "0.2841412539218841", "2.2916981343215137", "1661090414"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6432", "0.39551334832977547", "4.232920966440123", "1661090414"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6432", "0.2841412539218841", "2.2916981343215137", "1661090414"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6432", "0.39551334832977547", "4.232920966440123", "1661090414"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6433", "0.2832425550307893", "2.289992286827419", "1661094018"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6433", "0.3942799430506166", "4.230644428775793", "1661094018"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6433", "0.2832425550307893", "2.289992286827419", "1661094018"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6433", "0.3942799430506166", "4.230644428775793", "1661094018"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6434", "0.28231946630324956", "2.2882404164955403", "1661097621"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6434", "0.393012849590026", "4.228306095799008", "1661097621"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6434", "0.28231946630324956", "2.2882404164955403", "1661097621"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6434", "0.393012849590026", "4.228306095799008", "1661097621"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6435", "0.28135304863766686", "2.2864037581000836", "1661101209"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6435", "0.39168715069924726", "4.225856310244465", "1661101209"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6435", "0.28135304863766686", "2.2864037581000836", "1661101209"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6435", "0.39168715069924726", "4.225856310244465", "1661101209"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6436", "0.28075894080337654", "2.2852683068242428", "1661104801"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6436", "0.39087457453018626", "4.224346455108271", "1661104801"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6436", "0.28075894080337654", "2.2852683068242428", "1661104801"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6436", "0.39087457453018626", "4.224346455108271", "1661104801"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6437", "0.2800616847272798", "2.283945224940109", "1661108449"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6437", "0.38991718278382487", "4.222579967029986", "1661108449"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6437", "0.2800616847272798", "2.283945224940109", "1661108449"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6437", "0.38991718278382487", "4.222579967029986", "1661108449"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6438", "0.2791541172065823", "2.2822177590145403", "1661112018"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6438", "0.38867297334648176", "4.220277380380433", "1661112018"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6438", "0.2791541172065823", "2.2822177590145403", "1661112018"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6438", "0.38867297334648176", "4.220277380380433", "1661112018"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6439", "0.2782900302804685", "2.280576458918358", "1661115614"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6439", "0.38748695532490285", "4.218086956652673", "1661115614"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6439", "0.2782900302804685", "2.280576458918358", "1661115614"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6439", "0.38748695532490285", "4.218086956652673", "1661115614"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6440", "0.27750125357386474", "2.2790762506028313", "1661119203"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6440", "0.386404977203029", "4.216086152241096", "1661119203"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6440", "0.27750125357386474", "2.2790762506028313", "1661119203"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6440", "0.386404977203029", "4.216086152241096", "1661119203"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6441", "0.27610546099168404", "2.2763639767678665", "1661122814"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6441", "0.384512391265565", "4.212511308190005", "1661122814"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6441", "0.27610546099168404", "2.2763639767678665", "1661122814"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6441", "0.384512391265565", "4.212511308190005", "1661122814"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6442", "0.27508538795462784", "2.2744123273207353", "1661126448"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6442", "0.38311728109295773", "4.209916490691584", "1661126448"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6442", "0.27508538795462784", "2.2744123273207353", "1661126448"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6442", "0.38311728109295773", "4.209916490691584", "1661126448"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6443", "0.27416294934960894", "2.272658640008884", "1661130006"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6443", "0.38185126923574403", "4.207576436485628", "1661130006"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6443", "0.27416294934960894", "2.272658640008884", "1661130006"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6443", "0.38185126923574403", "4.207576436485628", "1661130006"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6444", "0.2733482636004942", "2.2711104501716415", "1661133612"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6444", "0.38073280229954676", "4.205509964628519", "1661133612"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6444", "0.2733482636004942", "2.2711104501716415", "1661133612"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6444", "0.38073280229954676", "4.205509964628519", "1661133612"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6445", "0.27256836775108956", "2.269616779061058", "1661137216"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6445", "0.37966649310107764", "4.203524754671242", "1661137216"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6445", "0.27256836775108956", "2.269616779061058", "1661137216"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6445", "0.37966649310107764", "4.203524754671242", "1661137216"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6446", "0.2716403291575838", "2.2678498657187074", "1661140804"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6446", "0.3783934827222435", "4.201168480396596", "1661140804"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6446", "0.2716403291575838", "2.2678498657187074", "1661140804"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6446", "0.3783934827222435", "4.201168480396596", "1661140804"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6447", "0.2705777263477578", "2.2658269040589447", "1661144409"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6447", "0.376935689325049", "4.1984704179824055", "1661144409"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6447", "0.2705777263477578", "2.2658269040589447", "1661144409"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6447", "0.376935689325049", "4.1984704179824055", "1661144409"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6448", "0.26971162490834916", "2.264183386442655", "1661148018"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6448", "0.3757453032128469", "4.196274284165671", "1661148018"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6448", "0.26971162490834916", "2.264183386442655", "1661148018"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6448", "0.3757453032128469", "4.196274284165671", "1661148018"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6449", "0.26891198657961746", "2.26266368142986", "1661151605"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6449", "0.3746470682167661", "4.194245173529044", "1661151605"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6449", "0.26891198657961746", "2.26266368142986", "1661151605"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6449", "0.3746470682167661", "4.194245173529044", "1661151605"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6450", "0.26818789135250903", "2.2612898932277194", "1661155219"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6450", "0.3736516067172134", "4.192409031445772", "1661155219"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6450", "0.26818789135250903", "2.2612898932277194", "1661155219"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6450", "0.3736516067172134", "4.192409031445772", "1661155219"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6451", "0.2674684307040072", "2.2599248918331947", "1661158838"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6451", "0.37266245074963994", "4.190584530336307", "1661158838"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6451", "0.2674684307040072", "2.2599248918331947", "1661158838"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6451", "0.37266245074963994", "4.190584530336307", "1661158838"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6452", "0.2667539833425075", "2.2585693958717026", "1661162405"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6452", "0.37168012226662944", "4.188772632744582", "1661162405"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6452", "0.2667539833425075", "2.2585693958717026", "1661162405"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6452", "0.37168012226662944", "4.188772632744582", "1661162405"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6453", "0.2660370891034965", "2.2572084534764625", "1661166006"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6453", "0.37069467191848565", "4.186953946781586", "1661166006"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6453", "0.2660370891034965", "2.2572084534764625", "1661166006"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6453", "0.37069467191848565", "4.186953946781586", "1661166006"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6454", "0.2651947811096066", "2.2556087316467126", "1661169603"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6454", "0.36953700803411055", "4.184816550269427", "1661169603"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6454", "0.2651947811096066", "2.2556087316467126", "1661169603"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6454", "0.36953700803411055", "4.184816550269427", "1661169603"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6455", "0.26435122728173627", "2.2540077592342938", "1661173208"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6455", "0.3683771079432839", "4.182676505468416", "1661173208"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6455", "0.26435122728173627", "2.2540077592342938", "1661173208"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6455", "0.3683771079432839", "4.182676505468416", "1661173208"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6456", "0.2636166646475584", "2.252614027911766", "1661176810"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6456", "0.36736684652552054", "4.180813074020985", "1661176810"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6456", "0.2636166646475584", "2.252614027911766", "1661176810"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6456", "0.36736684652552054", "4.180813074020985", "1661176810"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6457", "0.2628873088105946", "2.2512307752487906", "1661180400"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6457", "0.36636344466748116", "4.1789630956176165", "1661180400"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6457", "0.2628873088105946", "2.2512307752487906", "1661180400"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6457", "0.36636344466748116", "4.1789630956176165", "1661180400"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6458", "0.26211288884235684", "2.2497577944117406", "1661184008"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6458", "0.36529961156031565", "4.176996164366905", "1661184008"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6458", "0.26211288884235684", "2.2497577944117406", "1661184008"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6458", "0.36529961156031565", "4.176996164366905", "1661184008"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6459", "0.26132118100893004", "2.248253873462317", "1661187614"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6459", "0.3642111993114225", "4.1749863463427594", "1661187614"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6459", "0.26132118100893004", "2.248253873462317", "1661187614"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6459", "0.3642111993114225", "4.1749863463427594", "1661187614"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6460", "0.2605544621198511", "2.2467975795206048", "1661191208"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6460", "0.36315700079373214", "4.173039933783469", "1661191208"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6460", "0.2605544621198511", "2.2467975795206048", "1661191208"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6460", "0.36315700079373214", "4.173039933783469", "1661191208"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6461", "0.2597924846956138", "2.245350870864042", "1661194832"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6461", "0.362109021149939", "4.171105780138469", "1661194832"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6461", "0.2597924846956138", "2.245350870864042", "1661194832"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6461", "0.362109021149939", "4.171105780138469", "1661194832"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6462", "0.2590432380530339", "2.243929310826594", "1661198411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6462", "0.3610780992070929", "4.169204403674477", "1661198411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6462", "0.2590432380530339", "2.243929310826594", "1661198411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6462", "0.3610780992070929", "4.169204403674477", "1661198411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6463", "0.2582970927012112", "2.2425134048580944", "1661202006"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6463", "0.3600514590906821", "4.167310644268789", "1661202006"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6463", "0.2582970927012112", "2.2425134048580944", "1661202006"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6463", "0.3600514590906821", "4.167310644268789", "1661202006"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6464", "0.2575411447008086", "2.2410769406406272", "1661205604"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6464", "0.359012008893234", "4.16539072403827", "1661205604"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6464", "0.2575411447008086", "2.2410769406406272", "1661205604"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6464", "0.359012008893234", "4.16539072403827", "1661205604"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6465", "0.2568218822441081", "2.239712773903269", "1661209222"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6465", "0.35802193625435624", "4.163565401994829", "1661209222"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6465", "0.2568218822441081", "2.239712773903269", "1661209222"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6465", "0.35802193625435624", "4.163565401994829", "1661209222"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6466", "0.2560274308174931", "2.238204026794806", "1661212803"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6466", "0.3569290454488044", "4.161547967725261", "1661212803"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6466", "0.2560274308174931", "2.238204026794806", "1661212803"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6466", "0.3569290454488044", "4.161547967725261", "1661212803"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6467", "0.2552318320949006", "2.236694185576567", "1661216421"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6467", "0.3558340748902401", "4.159528132198474", "1661216421"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6467", "0.2552318320949006", "2.236694185576567", "1661216421"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6467", "0.3558340748902401", "4.159528132198474", "1661216421"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6468", "0.2544605425979444", "2.2352279341303807", "1661220001"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6468", "0.3547734583285373", "4.157568372958711", "1661220001"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6468", "0.2544605425979444", "2.2352279341303807", "1661220001"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6468", "0.3547734583285373", "4.157568372958711", "1661220001"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6469", "0.2538951798006434", "2.2341552382809233", "1661223622"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6469", "0.35399516525826763", "4.156133008311864", "1661223622"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6469", "0.2538951798006434", "2.2341552382809233", "1661223622"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6469", "0.35399516525826763", "4.156133008311864", "1661223622"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6470", "0.25310943818960097", "2.232662012555899", "1661227202"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6470", "0.35291434210830896", "4.154136602749371", "1661227202"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6470", "0.25310943818960097", "2.232662012555899", "1661227202"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6470", "0.35291434210830896", "4.154136602749371", "1661227202"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6471", "0.2523464296972159", "2.231213597847527", "1661230802"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6471", "0.3518640919145245", "4.152198790277451", "1661230802"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6471", "0.2523464296972159", "2.231213597847527", "1661230802"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6471", "0.3518640919145245", "4.152198790277451", "1661230802"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6472", "0.25150738841937587", "2.22960490646219", "1661234404"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6472", "0.35071522360447366", "4.150058243037065", "1661234404"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6472", "0.25150738841937587", "2.22960490646219", "1661234404"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6472", "0.35071522360447366", "4.150058243037065", "1661234404"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6473", "0.25077833093866325", "2.228221358453466", "1661238002"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6473", "0.3497113898649638", "4.148206659415321", "1661238002"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6473", "0.25077833093866325", "2.228221358453466", "1661238002"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6473", "0.3497113898649638", "4.148206659415321", "1661238002"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6474", "0.25002511435963765", "2.226788313359695", "1661241600"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6474", "0.348675619309595", "4.146291427333816", "1661241600"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6474", "0.25002511435963765", "2.226788313359695", "1661241600"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6474", "0.348675619309595", "4.146291427333816", "1661241600"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6475", "0.24930697232817559", "2.2254257656767864", "1661245221"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6475", "0.3476865633133469", "4.144467512366245", "1661245221"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6475", "0.24930697232817559", "2.2254257656767864", "1661245221"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6475", "0.3476865633133469", "4.144467512366245", "1661245221"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6476", "0.24859006086999888", "2.2240655466289665", "1661248814"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6476", "0.34669913575536454", "4.142646610881082", "1661248814"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6476", "0.24859006086999888", "2.2240655466289665", "1661248814"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6476", "0.34669913575536454", "4.142646610881082", "1661248814"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6477", "0.24787351289904447", "2.2227050468946046", "1661252448"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6477", "0.34571251279018084", "4.1408259460505255", "1661252448"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6477", "0.24787351289904447", "2.2227050468946046", "1661252448"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6477", "0.34571251279018084", "4.1408259460505255", "1661252448"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6478", "0.24716514481943305", "2.2213609348707206", "1661256016"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6478", "0.34473675628332934", "4.139026469633407", "1661256016"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6478", "0.24716514481943305", "2.2213609348707206", "1661256016"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6478", "0.34473675628332934", "4.139026469633407", "1661256016"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6479", "0.24675946748120348", "2.220582563003371", "1661259605"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6479", "0.3441812219978991", "4.137990740691436", "1661259605"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6479", "0.24675946748120348", "2.220582563003371", "1661259605"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6479", "0.3441812219978991", "4.137990740691436", "1661259605"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6480", "0.24600849425939733", "2.219152365366435", "1661263203"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6480", "0.3431486759268478", "4.136079724885308", "1661263203"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6480", "0.24600849425939733", "2.219152365366435", "1661263203"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6480", "0.3431486759268478", "4.136079724885308", "1661263203"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6481", "0.2453374251748015", "2.217878408078652", "1661266801"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6481", "0.3422243686090511", "4.134374367010151", "1661266801"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6481", "0.2453374251748015", "2.217878408078652", "1661266801"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6481", "0.3422243686090511", "4.134374367010151", "1661266801"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6482", "0.24453325367168455", "2.216341216578666", "1661270428"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6482", "0.34112069983165233", "4.1323243375622924", "1661270428"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6482", "0.24453325367168455", "2.216341216578666", "1661270428"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6482", "0.34112069983165233", "4.1323243375622924", "1661270428"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6483", "0.2438171776972164", "2.2149821500432045", "1661274000"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6483", "0.3401341296302287", "4.130504575478462", "1661274000"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6483", "0.2438171776972164", "2.2149821500432045", "1661274000"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6483", "0.3401341296302287", "4.130504575478462", "1661274000"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6484", "0.24311535515370677", "2.213650587264274", "1661277604"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6484", "0.33916695696006116", "4.128721200091652", "1661277604"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6484", "0.24311535515370677", "2.213650587264274", "1661277604"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6484", "0.33916695696006116", "4.128721200091652", "1661277604"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6485", "0.24241416638506721", "2.2123196742440308", "1661281203"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6485", "0.33820080358550136", "4.126939001038138", "1661281203"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6485", "0.24241416638506721", "2.2123196742440308", "1661281203"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6485", "0.33820080358550136", "4.126939001038138", "1661281203"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6486", "0.2417315440331181", "2.21102324734899", "1661284813"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6486", "0.33726045823592804", "4.125203441119532", "1661284813"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6486", "0.2417315440331181", "2.21102324734899", "1661284813"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6486", "0.33726045823592804", "4.125203441119532", "1661284813"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6487", "0.24130705600838903", "2.2102169551313735", "1661288401"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6487", "0.33667571610447955", "4.1241240690260685", "1661288401"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6487", "0.24130705600838903", "2.2102169551313735", "1661288401"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6487", "0.33667571610447955", "4.1241240690260685", "1661288401"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6488", "0.24053111712123706", "2.208719393592368", "1661292028"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6488", "0.3356158665630968", "4.122136769981822", "1661292028"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6488", "0.24053111712123706", "2.208719393592368", "1661292028"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6488", "0.3356158665630968", "4.122136769981822", "1661292028"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6489", "0.23985184636049575", "2.2074231861709404", "1661295672"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6489", "0.33468231966156375", "4.120405781357119", "1661295672"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6489", "0.23985184636049575", "2.2074231861709404", "1661295672"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6489", "0.33468231966156375", "4.120405781357119", "1661295672"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6490", "0.2392624107058302", "2.2063039789795025", "1661299213"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6490", "0.333870049657025", "4.1189069729459575", "1661299213"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6490", "0.2392624107058302", "2.2063039789795025", "1661299213"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6490", "0.333870049657025", "4.1189069729459575", "1661299213"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6491", "0.23868396835921415", "2.2052060406632092", "1661302812"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6491", "0.3330727320113662", "4.1174362826753015", "1661302812"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6491", "0.23868396835921415", "2.2052060406632092", "1661302812"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6491", "0.3330727320113662", "4.1174362826753015", "1661302812"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6492", "0.23810242167226292", "2.204101959882297", "1661306400"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6492", "0.3322711856891487", "4.115957478287678", "1661306400"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6492", "0.23810242167226292", "2.204101959882297", "1661306400"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6492", "0.3322711856891487", "4.115957478287678", "1661306400"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6493", "0.23744085650235383", "2.2028454202921943", "1661310006"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6493", "0.33135950176877105", "4.1142747846666525", "1661310006"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6493", "0.23744085650235383", "2.2028454202921943", "1661310006"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6493", "0.33135950176877105", "4.1142747846666525", "1661310006"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6494", "0.23681163436875413", "2.2016497482364152", "1661313603"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6494", "0.3304925495206037", "4.112673932090443", "1661313603"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6494", "0.23681163436875413", "2.2016497482364152", "1661313603"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6494", "0.3304925495206037", "4.112673932090443", "1661313603"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6495", "0.23620794021408506", "2.2005032001487193", "1661317210"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6495", "0.3296604843180227", "4.111138315792816", "1661317210"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6495", "0.23620794021408506", "2.2005032001487193", "1661317210"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6495", "0.3296604843180227", "4.111138315792816", "1661317210"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6496", "0.2356092521202784", "2.1993664338106886", "1661320809"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6496", "0.32883516522709805", "4.109615520812661", "1661320809"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6496", "0.2356092521202784", "2.1993664338106886", "1661320809"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6496", "0.32883516522709805", "4.109615520812661", "1661320809"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6497", "0.23500119189835633", "2.1982100461608414", "1661324400"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6497", "0.32799757547756386", "4.108067715379621", "1661324400"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6497", "0.23500119189835633", "2.1982100461608414", "1661324400"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6497", "0.32799757547756386", "4.108067715379621", "1661324400"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6498", "0.23437053574358294", "2.197013324617595", "1661328037"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6498", "0.32712779744822484", "4.1064638893351875", "1661328037"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6498", "0.23437053574358294", "2.197013324617595", "1661328037"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6498", "0.32712779744822484", "4.1064638893351875", "1661328037"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6499", "0.23381850863935863", "2.195963472268186", "1661331615"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6499", "0.3263673114658668", "4.105058556090545", "1661331615"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6499", "0.23381850863935863", "2.195963472268186", "1661331615"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6499", "0.3263673114658668", "4.105058556090545", "1661331615"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6500", "0.2332797412992096", "2.1949402707489485", "1661335220"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6500", "0.325624504044715", "4.103687775066071", "1661335220"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6500", "0.2332797412992096", "2.1949402707489485", "1661335220"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6500", "0.325624504044715", "4.103687775066071", "1661335220"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6501", "0.232745042335333", "2.1939251988650215", "1661338801"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6501", "0.32488711256149533", "4.102327525515788", "1661338801"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6501", "0.232745042335333", "2.1939251988650215", "1661338801"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6501", "0.32488711256149533", "4.102327525515788", "1661338801"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6502", "0.23220590957345488", "2.1929018423579043", "1661342408"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6502", "0.32414351657336704", "4.1009560142105475", "1661342408"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6502", "0.23220590957345488", "2.1929018423579043", "1661342408"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6502", "0.32414351657336704", "4.1009560142105475", "1661342408"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6503", "0.23160751102224536", "2.191766441922322", "1661346013"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6503", "0.32331795964714827", "4.099433933551211", "1661346013"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6503", "0.23160751102224536", "2.191766441922322", "1661346013"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6503", "0.32331795964714827", "4.099433933551211", "1661346013"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6504", "0.2309878605417444", "2.1905871882170818", "1661349612"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6504", "0.3224643821114982", "4.0978555988488194", "1661349612"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6504", "0.2309878605417444", "2.1905871882170818", "1661349612"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6504", "0.3224643821114982", "4.0978555988488194", "1661349612"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6505", "0.23042034506273767", "2.1895102574390948", "1661353246"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6505", "0.3216813879270852", "4.096411849338444", "1661353246"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6505", "0.23042034506273767", "2.1895102574390948", "1661353246"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6505", "0.3216813879270852", "4.096411849338444", "1661353246"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6506", "0.22990417038155125", "2.1885309514902884", "1661356831"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6506", "0.3209691138313761", "4.095098769773085", "1661356831"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6506", "0.22990417038155125", "2.1885309514902884", "1661356831"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6506", "0.3209691138313761", "4.095098769773085", "1661356831"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6507", "0.22939124103181785", "2.187557740546544", "1661360412"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6507", "0.3202613059253889", "4.093793852223107", "1661360412"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6507", "0.22939124103181785", "2.187557740546544", "1661360412"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6507", "0.3202613059253889", "4.093793852223107", "1661360412"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6508", "0.2288402162672769", "2.186508909242112", "1661364025"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6508", "0.3195021656699497", "4.092389950718935", "1661364025"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6508", "0.2288402162672769", "2.186508909242112", "1661364025"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6508", "0.3195021656699497", "4.092389950718935", "1661364025"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6509", "0.22829132451862635", "2.1854675284477545", "1661367611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6509", "0.3187446268680759", "4.090993454008607", "1661367611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6509", "0.22829132451862635", "2.1854675284477545", "1661367611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6509", "0.3187446268680759", "4.090993454008607", "1661367611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6510", "0.22777693042739153", "2.1844908158644576", "1661371211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6510", "0.3180349608591882", "4.089684198449238", "1661371211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6510", "0.22777693042739153", "2.1844908158644576", "1661371211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6510", "0.3180349608591882", "4.089684198449238", "1661371211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6511", "0.2272666458074265", "2.1835219854753403", "1661374802"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6511", "0.31733089841575374", "4.0883853939991495", "1661374802"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6511", "0.2272666458074265", "2.1835219854753403", "1661374802"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6511", "0.31733089841575374", "4.0883853939991495", "1661374802"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6512", "0.226744482797125", "2.182530016522395", "1661378426"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6512", "0.3166106340281849", "4.087055946080418", "1661378426"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6512", "0.226744482797125", "2.182530016522395", "1661378426"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6512", "0.3166106340281849", "4.087055946080418", "1661378426"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6513", "0.22607974353698737", "2.181265060177669", "1661382002"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6513", "0.31569446207762103", "4.085362128106197", "1661382002"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6513", "0.22607974353698737", "2.181265060177669", "1661382002"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6513", "0.31569446207762103", "4.085362128106197", "1661382002"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6514", "0.22555196589898868", "2.18026122709121", "1661385610"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6514", "0.314966824580419", "4.084017529922671", "1661385610"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6514", "0.22555196589898868", "2.18026122709121", "1661385610"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6514", "0.314966824580419", "4.084017529922671", "1661385610"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6515", "0.22499797275700012", "2.179209196738098", "1661389205"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6515", "0.31420236744206503", "4.082607079294533", "1661389205"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6515", "0.22499797275700012", "2.179209196738098", "1661389205"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6515", "0.31420236744206503", "4.082607079294533", "1661389205"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6516", "0.22437764238798705", "2.1780282255308108", "1661392814"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6516", "0.31334745437274114", "4.08102587399045", "1661392814"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6516", "0.22437764238798705", "2.1780282255308108", "1661392814"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6516", "0.31334745437274114", "4.08102587399045", "1661392814"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6517", "0.22370771334042683", "2.1767470632383272", "1661396406"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6517", "0.3124263283625322", "4.079314681321081", "1661396406"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6517", "0.22370771334042683", "2.1767470632383272", "1661396406"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6517", "0.3124263283625322", "4.079314681321081", "1661396406"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6518", "0.22321794093722414", "2.1758169981991102", "1661400049"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6518", "0.3117503638030074", "4.078067548921698", "1661400049"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6518", "0.22321794093722414", "2.1758169981991102", "1661400049"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6518", "0.3117503638030074", "4.078067548921698", "1661400049"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6519", "0.22263244465207319", "2.1746980643766127", "1661403606"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6519", "0.3109449484062329", "4.076572335435432", "1661403606"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6519", "0.22263244465207319", "2.1746980643766127", "1661403606"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6519", "0.3109449484062329", "4.076572335435432", "1661403606"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6520", "0.22215039628183647", "2.1737832549879528", "1661407215"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6520", "0.31027934889683406", "4.075345112948254", "1661407215"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6520", "0.22215039628183647", "2.1737832549879528", "1661407215"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6520", "0.31027934889683406", "4.075345112948254", "1661407215"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6521", "0.22161450517035383", "2.1727663420606866", "1661410815"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6521", "0.3095393381792947", "4.073980802486076", "1661410815"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6521", "0.22161450517035383", "2.1727663420606866", "1661410815"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6521", "0.3095393381792947", "4.073980802486076", "1661410815"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6522", "0.22111407484241558", "2.171815179723238", "1661414410"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6522", "0.30884884730747875", "4.072705787717732", "1661414410"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6522", "0.22111407484241558", "2.171815179723238", "1661414410"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6522", "0.30884884730747875", "4.072705787717732", "1661414410"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6523", "0.22063516691225252", "2.170905826667251", "1661418017"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6523", "0.30818767664262003", "4.071486100754674", "1661418017"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6523", "0.22063516691225252", "2.170905826667251", "1661418017"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6523", "0.30818767664262003", "4.071486100754674", "1661418017"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6524", "0.22011273717444446", "2.1699135249620576", "1661421617"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6524", "0.30746650271451276", "4.070155329430327", "1661421617"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6524", "0.22011273717444446", "2.1699135249620576", "1661421617"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6524", "0.30746650271451276", "4.070155329430327", "1661421617"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6525", "0.21964441318765995", "2.1690245039398315", "1661425205"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6525", "0.3068197903443445", "4.068962638688268", "1661425205"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6525", "0.21964441318765995", "2.1690245039398315", "1661425205"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6525", "0.3068197903443445", "4.068962638688268", "1661425205"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6526", "0.2192914528384374", "2.1683550048309934", "1661428805"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6526", "0.3063321638051718", "4.068064033000276", "1661428805"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6526", "0.2192914528384374", "2.1683550048309934", "1661428805"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6526", "0.3063321638051718", "4.068064033000276", "1661428805"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6527", "0.21886627026015595", "2.1675468529461597", "1661432407"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6527", "0.30574537049601125", "4.066980519776128", "1661432407"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6527", "0.21886627026015595", "2.1675468529461597", "1661432407"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6527", "0.30574537049601125", "4.066980519776128", "1661432407"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6528", "0.21838744426501552", "2.1666358397420407", "1661436019"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6528", "0.30508485753251297", "4.065759715007975", "1661436019"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6528", "0.21838744426501552", "2.1666358397420407", "1661436019"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6528", "0.30508485753251297", "4.065759715007975", "1661436019"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6529", "0.21792514555452866", "2.1657587051637535", "1661439623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6529", "0.30444618512081345", "4.064582467232435", "1661439623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6529", "0.21792514555452866", "2.1657587051637535", "1661439623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6529", "0.30444618512081345", "4.064582467232435", "1661439623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6530", "0.217420087945157", "2.1647949548175567", "1661443205"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6530", "0.3037504990335068", "4.0632929729991165", "1661443205"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6530", "0.217420087945157", "2.1647949548175567", "1661443205"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6530", "0.3037504990335068", "4.0632929729991165", "1661443205"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6531", "0.2169488761561746", "2.1639000510202546", "1661446803"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6531", "0.30309977708463826", "4.062092411364082", "1661446803"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6531", "0.2169488761561746", "2.1639000510202546", "1661446803"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6531", "0.30309977708463826", "4.062092411364082", "1661446803"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6532", "0.2164481754561221", "2.162947714621135", "1661450407"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6532", "0.30240884323900524", "4.06081580324898", "1661450407"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6532", "0.2164481754561221", "2.162947714621135", "1661450407"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6532", "0.30240884323900524", "4.06081580324898", "1661450407"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6533", "0.21583836124261166", "2.1617861077117664", "1661454009"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6533", "0.3015679545531071", "4.059259873924255", "1661454009"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6533", "0.21583836124261166", "2.1617861077117664", "1661454009"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6533", "0.3015679545531071", "4.059259873924255", "1661454009"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6534", "0.21534320084291747", "2.1608435434325", "1661457648"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6534", "0.3008848817142064", "4.057996810039406", "1661457648"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6534", "0.21534320084291747", "2.1608435434325", "1661457648"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6534", "0.3008848817142064", "4.057996810039406", "1661457648"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6535", "0.21478312727154528", "2.1597667646248975", "1661461208"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6535", "0.30011627657628176", "4.056561674179816", "1661461208"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6535", "0.21478312727154528", "2.1597667646248975", "1661461208"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6535", "0.30011627657628176", "4.056561674179816", "1661461208"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6536", "0.2141843333113626", "2.1586244399314967", "1661464807"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6536", "0.29929109657236447", "4.05503261141691", "1661464807"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6536", "0.2141843333113626", "2.1586244399314967", "1661464807"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6536", "0.29929109657236447", "4.05503261141691", "1661464807"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6537", "0.21360418816690038", "2.157518502563167", "1661468443"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6537", "0.298491259457769", "4.05355158365449", "1661468443"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6537", "0.21360418816690038", "2.157518502563167", "1661468443"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6537", "0.298491259457769", "4.05355158365449", "1661468443"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6538", "0.21313666070066895", "2.156631573145737", "1661472005"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6538", "0.2978450063152867", "4.05236060959252", "1661472005"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6538", "0.21313666070066895", "2.156631573145737", "1661472005"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6538", "0.2978450063152867", "4.05236060959252", "1661472005"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6539", "0.21266987769370257", "2.155745682961771", "1661475601"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6539", "0.2971998942191642", "4.051171259472602", "1661475601"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6539", "0.21266987769370257", "2.155745682961771", "1661475601"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6539", "0.2971998942191642", "4.051171259472602", "1661475601"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6540", "0.2121537224102959", "2.1547641755411955", "1661479205"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6540", "0.29648724186239145", "4.0498548981682285", "1661479205"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6540", "0.2121537224102959", "2.1547641755411955", "1661479205"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6540", "0.29648724186239145", "4.0498548981682285", "1661479205"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6541", "0.2116472564184287", "2.153803369573691", "1661482810"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6541", "0.29578706509154123", "4.048564566492906", "1661482810"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6541", "0.2116472564184287", "2.153803369573691", "1661482810"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6541", "0.29578706509154123", "4.048564566492906", "1661482810"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6542", "0.2111282280260284", "2.152818849034995", "1661486405"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6542", "0.29506943978367267", "4.047242242604075", "1661486405"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6542", "0.2111282280260284", "2.152818849034995", "1661486405"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6542", "0.29506943978367267", "4.047242242604075", "1661486405"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6543", "0.2106078148112302", "2.1518312083437876", "1661490012"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6543", "0.2943500502073526", "4.045916033862007", "1661490012"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6543", "0.2106078148112302", "2.1518312083437876", "1661490012"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6543", "0.2943500502073526", "4.045916033862007", "1661490012"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6544", "0.21018326308927232", "2.1510259929550752", "1661493648"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6544", "0.293762956432753", "4.044834374513064", "1661493648"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6544", "0.21018326308927232", "2.1510259929550752", "1661493648"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6544", "0.293762956432753", "4.044834374513064", "1661493648"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6545", "0.20975159122134662", "2.1502065914369184", "1661497210"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6545", "0.2931662504425495", "4.043734122417721", "1661497210"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6545", "0.20975159122134662", "2.1502065914369184", "1661497210"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6545", "0.2931662504425495", "4.043734122417721", "1661497210"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6546", "0.20927842316881792", "2.1493060047633388", "1661500808"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6546", "0.2925130734729191", "4.042526596312453", "1661500808"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6546", "0.20927842316881792", "2.1493060047633388", "1661500808"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6546", "0.2925130734729191", "4.042526596312453", "1661500808"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6547", "0.20887721718859395", "2.148544780568052", "1661504402"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6547", "0.29195829952706226", "4.041504128080303", "1661504402"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6547", "0.20887721718859395", "2.148544780568052", "1661504402"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6547", "0.29195829952706226", "4.041504128080303", "1661504402"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6548", "0.20844880102029256", "2.147730797214241", "1661508000"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6548", "0.29136630628043336", "4.0404115916868415", "1661508000"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6548", "0.20844880102029256", "2.147730797214241", "1661508000"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6548", "0.29136630628043336", "4.0404115916868415", "1661508000"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6549", "0.208054949724412", "2.1469836250819894", "1661511609"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6549", "0.2908216199628326", "4.039407855121275", "1661511609"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6549", "0.208054949724412", "2.1469836250819894", "1661511609"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6549", "0.2908216199628326", "4.039407855121275", "1661511609"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6550", "0.20766309752969603", "2.1462402435641756", "1661515220"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6550", "0.29027967777210234", "4.038409178723437", "1661515220"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6550", "0.20766309752969603", "2.1462402435641756", "1661515220"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6550", "0.29027967777210234", "4.038409178723437", "1661515220"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6551", "0.20718925251518358", "2.1453415720677502", "1661518811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6551", "0.2896242106998052", "4.037201646754604", "1661518811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6551", "0.20718925251518358", "2.1453415720677502", "1661518811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6551", "0.2896242106998052", "4.037201646754604", "1661518811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6552", "0.20673848341604886", "2.144486414058516", "1661522401"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6552", "0.28900073107667373", "4.03605272347198", "1661522401"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6552", "0.20673848341604886", "2.144486414058516", "1661522401"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6552", "0.28900073107667373", "4.03605272347198", "1661522401"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6553", "0.2062900058720711", "2.14363560093293", "1661526015"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6553", "0.28838039402223126", "4.034909595580567", "1661526015"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6553", "0.2062900058720711", "2.14363560093293", "1661526015"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6553", "0.28838039402223126", "4.034909595580567", "1661526015"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6554", "0.20584466118888356", "2.142790728786925", "1661529616"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6554", "0.2877643637136236", "4.033774408293935", "1661529616"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6554", "0.20584466118888356", "2.142790728786925", "1661529616"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6554", "0.2877643637136236", "4.033774408293935", "1661529616"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6555", "0.20539192972559606", "2.1419302895508125", "1661533211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6555", "0.28713867774859986", "4.032619407298735", "1661533211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6555", "0.20539192972559606", "2.1419302895508125", "1661533211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6555", "0.28713867774859986", "4.032619407298735", "1661533211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6556", "0.2049095224508829", "2.141012541298305", "1661536803"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6556", "0.28647229295545945", "4.031388098236982", "1661536803"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6556", "0.2049095224508829", "2.141012541298305", "1661536803"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6556", "0.28647229295545945", "4.031388098236982", "1661536803"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6557", "0.20446388710977917", "2.140166445264408", "1661540412"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6557", "0.2858560306598128", "4.0302516284679015", "1661540412"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6557", "0.20446388710977917", "2.140166445264408", "1661540412"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6557", "0.2858560306598128", "4.0302516284679015", "1661540412"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6558", "0.20401623026429952", "2.139316024079809", "1661544003"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6558", "0.2852371301105097", "4.029109664698538", "1661544003"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6558", "0.20401623026429952", "2.139316024079809", "1661544003"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6558", "0.2852371301105097", "4.029109664698538", "1661544003"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6559", "0.20356338876767943", "2.1384559198262867", "1661547626"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6559", "0.2846109700451934", "4.027954531069683", "1661547626"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6559", "0.20356338876767943", "2.1384559198262867", "1661547626"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6559", "0.2846109700451934", "4.027954531069683", "1661547626"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6560", "0.2030632894242823", "2.137504223868662", "1661551256"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6560", "0.28392012774166014", "4.026677686906563", "1661551256"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6560", "0.2030632894242823", "2.137504223868662", "1661551256"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6560", "0.28392012774166014", "4.026677686906563", "1661551256"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6561", "0.20261798675079515", "2.13665923381035", "1661554818"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6561", "0.2833040308861027", "4.025542172977035", "1661554818"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6561", "0.20261798675079515", "2.13665923381035", "1661554818"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6561", "0.2833040308861027", "4.025542172977035", "1661554818"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6562", "0.2021646666054765", "2.135795611938294", "1661558406"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6562", "0.2826781111848908", "4.024384098343431", "1661558406"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6562", "0.2021646666054765", "2.135795611938294", "1661558406"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6562", "0.2826781111848908", "4.024384098343431", "1661558406"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6563", "0.20173714319780658", "2.1349845405962578", "1661562003"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6563", "0.28208649085788423", "4.023293947829305", "1661562003"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6563", "0.20173714319780658", "2.1349845405962578", "1661562003"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6563", "0.28208649085788423", "4.023293947829305", "1661562003"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6564", "0.20130921579213815", "2.1341725154285713", "1661565625"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6564", "0.2814943571589303", "4.0222026135671305", "1661565625"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6564", "0.20130921579213815", "2.1341725154285713", "1661565625"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6564", "0.2814943571589303", "4.0222026135671305", "1661565625"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6565", "0.20088151370957494", "2.1333608425517", "1661569203"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6565", "0.2809025383567453", "4.021111768288163", "1661569203"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6565", "0.20088151370957494", "2.1333608425517", "1661569203"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6565", "0.2809025383567453", "4.021111768288163", "1661569203"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6566", "0.2004557362575142", "2.132553050811444", "1661572805"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6566", "0.28031327059988026", "4.0200259306641355", "1661572805"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6566", "0.2004557362575142", "2.132553050811444", "1661572805"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6566", "0.28031327059988026", "4.0200259306641355", "1661572805"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6567", "0.20002279855807054", "2.131731659835507", "1661576424"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6567", "0.27971407290177397", "4.018921783081045", "1661576424"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6567", "0.20002279855807054", "2.131731659835507", "1661576424"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6567", "0.27971407290177397", "4.018921783081045", "1661576424"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6568", "0.19893134944265115", "2.129568487881824", "1661580001"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6568", "0.2782384225135745", "4.016081903582207", "1661580001"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6568", "0.19893134944265115", "2.129568487881824", "1661580001"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6568", "0.2782384225135745", "4.016081903582207", "1661580001"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6569", "0.1984468906300353", "2.128648659336152", "1661583600"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6569", "0.2775680708935564", "4.014845766611666", "1661583600"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6569", "0.1984468906300353", "2.128648659336152", "1661583600"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6569", "0.2775680708935564", "4.014845766611666", "1661583600"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6570", "0.19802604631279255", "2.1278493191657724", "1661587211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6570", "0.2769858285702721", "4.013771726418249", "1661587211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6570", "0.19802604631279255", "2.1278493191657724", "1661587211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6570", "0.2769858285702721", "4.013771726418249", "1661587211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6571", "0.19761454674145085", "2.1270687615562207", "1661590811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6571", "0.2764160990118101", "4.012722125349909", "1661590811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6571", "0.19761454674145085", "2.1270687615562207", "1661590811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6571", "0.2764160990118101", "4.012722125349909", "1661590811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6572", "0.19718237066535932", "2.126249049181213", "1661594414"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6572", "0.2758176920730415", "4.011619785267992", "1661594414"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6572", "0.19718237066535932", "2.126249049181213", "1661594414"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6572", "0.2758176920730415", "4.011619785267992", "1661594414"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6573", "0.19673242529957286", "2.125394377742367", "1661598010"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6573", "0.2751951295160556", "4.010471314644811", "1661598010"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6573", "0.19673242529957286", "2.125394377742367", "1661598010"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6573", "0.2751951295160556", "4.010471314644811", "1661598010"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6574", "0.19629207157723175", "2.124559135816258", "1661601603"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6574", "0.2745853521782175", "4.009348018945091", "1661601603"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6574", "0.19629207157723175", "2.124559135816258", "1661601603"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6574", "0.2745853521782175", "4.009348018945091", "1661601603"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6575", "0.19585834195881247", "2.123735739281059", "1661605231"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6575", "0.2739849935249601", "4.008241141957625", "1661605231"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6575", "0.19585834195881247", "2.123735739281059", "1661605231"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6575", "0.2739849935249601", "4.008241141957625", "1661605231"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6576", "0.19543802151358833", "2.1229380757420917", "1661608802"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6576", "0.27340306548753307", "4.007168614058381", "1661608802"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6576", "0.19543802151358833", "2.1229380757420917", "1661608802"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6576", "0.27340306548753307", "4.007168614058381", "1661608802"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6577", "0.19502243952470835", "2.1221498316074707", "1661612410"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6577", "0.27282751167909947", "4.006108398772468", "1661612410"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6577", "0.19502243952470835", "2.1221498316074707", "1661612410"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6577", "0.27282751167909947", "4.006108398772468", "1661612410"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6578", "0.1946077352522752", "2.121363067576815", "1661616066"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6578", "0.2722532193600769", "4.005050272562063", "1661616066"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6578", "0.1946077352522752", "2.121363067576815", "1661616066"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6578", "0.2722532193600769", "4.005050272562063", "1661616066"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6579", "0.19418117667546997", "2.120553624501086", "1661619603"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6579", "0.27166255758137936", "4.003961745197794", "1661619603"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6579", "0.19418117667546997", "2.120553624501086", "1661619603"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6579", "0.27166255758137936", "4.003961745197794", "1661619603"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6580", "0.19375413451624557", "2.1197433298616706", "1661623201"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6580", "0.2710711756207608", "4.0028719839176725", "1661623201"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6580", "0.19375413451624557", "2.1197433298616706", "1661623201"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6580", "0.2710711756207608", "4.0028719839176725", "1661623201"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6581", "0.193326838278826", "2.1189321596213553", "1661626824"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6581", "0.2704795652857098", "4.001781294645798", "1661626824"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6581", "0.193326838278826", "2.1189321596213553", "1661626824"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6581", "0.2704795652857098", "4.001781294645798", "1661626824"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6582", "0.19288052386755075", "2.1180782843787385", "1661630400"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6582", "0.2698640961824209", "4.000637999713987", "1661630400"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6582", "0.19288052386755075", "2.1180782843787385", "1661630400"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6582", "0.2698640961824209", "4.000637999713987", "1661630400"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6583", "0.19244133453903453", "2.117245204302426", "1661634003"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6583", "0.2692557120094128", "3.9995172736628337", "1661634003"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6583", "0.19244133453903453", "2.117245204302426", "1661634003"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6583", "0.2692557120094128", "3.9995172736628337", "1661634003"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6584", "0.1920547779608615", "2.116512016479501", "1661637616"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6584", "0.26872019368798267", "3.9985308548010257", "1661637616"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6584", "0.1920547779608615", "2.116512016479501", "1661637616"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6584", "0.26872019368798267", "3.9985308548010257", "1661637616"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6585", "0.19167188485181566", "2.115785665322737", "1661641224"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6585", "0.26818977229511387", "3.9975536838798873", "1661641224"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6585", "0.19167188485181566", "2.115785665322737", "1661641224"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6585", "0.26818977229511387", "3.9975536838798873", "1661641224"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6586", "0.19128901361188944", "2.1150565455441868", "1661644811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6586", "0.2676604244716081", "3.996574825044522", "1661644811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6586", "0.19128901361188944", "2.1150565455441868", "1661644811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6586", "0.2676604244716081", "3.996574825044522", "1661644811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6587", "0.190896750670074", "2.114304855473002", "1661648405"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6587", "0.2671198438609836", "3.995569067082404", "1661648405"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6587", "0.190896750670074", "2.114304855473002", "1661648405"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6587", "0.2671198438609836", "3.995569067082404", "1661648405"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6588", "0.1904946244611237", "2.113542105175291", "1661652011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6588", "0.2665626800116629", "3.9945427601879713", "1661652011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6588", "0.1904946244611237", "2.113542105175291", "1661652011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6588", "0.2665626800116629", "3.9945427601879713", "1661652011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6589", "0.1900522874842133", "2.1126952764846054", "1661655630"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6589", "0.26595273055019847", "3.993409028868585", "1661655630"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6589", "0.1900522874842133", "2.1126952764846054", "1661655630"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6589", "0.26595273055019847", "3.993409028868585", "1661655630"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6590", "0.18960139440217605", "2.111838209977651", "1661659216"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6590", "0.26532862968861964", "3.992257065542293", "1661659216"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6590", "0.18960139440217605", "2.111838209977651", "1661659216"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6590", "0.26532862968861964", "3.992257065542293", "1661659216"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6591", "0.18916106015066145", "2.111002409477198", "1661662801"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6591", "0.26471866372369623", "3.9911327636635847", "1661662801"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6591", "0.18916106015066145", "2.111002409477198", "1661662801"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6591", "0.26471866372369623", "3.9911327636635847", "1661662801"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6592", "0.18877935436742607", "2.1102784472676355", "1661666420"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6592", "0.2641896797416963", "3.9901584612700067", "1661666420"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6592", "0.18877935436742607", "2.1102784472676355", "1661666420"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6592", "0.2641896797416963", "3.9901584612700067", "1661666420"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6593", "0.18834945731851943", "2.1094571709982466", "1661670023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6593", "0.2635961221110114", "3.9890575073044428", "1661670023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6593", "0.18834945731851943", "2.1094571709982466", "1661670023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6593", "0.2635961221110114", "3.9890575073044428", "1661670023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6594", "0.18791076056825248", "2.1086240608786033", "1661673609"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6594", "0.2629885050148701", "3.9879370098621347", "1661673609"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6594", "0.18791076056825248", "2.1086240608786033", "1661673609"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6594", "0.2629885050148701", "3.9879370098621347", "1661673609"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6595", "0.1874815226744556", "2.1078097806591614", "1661677205"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6595", "0.26239363475514577", "3.986841159329762", "1661677205"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6595", "0.1874815226744556", "2.1078097806591614", "1661677205"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6595", "0.26239363475514577", "3.986841159329762", "1661677205"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6596", "0.18704970616733585", "2.1069899336556315", "1661680800"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6596", "0.26179541996110767", "3.9857382726581716", "1661680800"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6596", "0.18704970616733585", "2.1069899336556315", "1661680800"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6596", "0.26179541996110767", "3.9857382726581716", "1661680800"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6597", "0.1866478298770997", "2.106227755796974", "1661684406"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6597", "0.2612383472613776", "3.984712321231805", "1661684406"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6597", "0.1866478298770997", "2.106227755796974", "1661684406"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6597", "0.2612383472613776", "3.984712321231805", "1661684406"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6598", "0.1862464686116409", "2.105462918282741", "1661688005"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6598", "0.26068334059595755", "3.983685429879998", "1661688005"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6598", "0.1862464686116409", "2.105462918282741", "1661688005"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6598", "0.26068334059595755", "3.983685429879998", "1661688005"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6599", "0.18584484965332954", "2.1046957848500387", "1661691604"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6599", "0.26012863686474197", "3.9826567412685336", "1661691604"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6599", "0.18584484965332954", "2.1046957848500387", "1661691604"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6599", "0.26012863686474197", "3.9826567412685336", "1661691604"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6600", "0.18562794966493384", "2.1042784440590134", "1661695210"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6600", "0.25983020055912204", "3.9820993126534074", "1661695210"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6600", "0.18562794966493384", "2.1042784440590134", "1661695210"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6600", "0.25983020055912204", "3.9820993126534074", "1661695210"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6601", "0.18521036524247353", "2.103486337482383", "1661698818"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6601", "0.259251320899471", "3.98103304279656", "1661698818"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6601", "0.18521036524247353", "2.103486337482383", "1661698818"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6601", "0.259251320899471", "3.98103304279656", "1661698818"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6602", "0.18468162506259328", "2.1024459794882544", "1661702410"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6602", "0.25853244841272316", "3.9796600442041985", "1661702410"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6602", "0.18468162506259328", "2.1024459794882544", "1661702410"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6602", "0.25853244841272316", "3.9796600442041985", "1661702410"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6603", "0.1842503492832348", "2.1016236722143105", "1661706012"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6603", "0.25793612753365824", "3.9785561356312824", "1661706012"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6603", "0.1842503492832348", "2.1016236722143105", "1661706012"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6603", "0.25793612753365824", "3.9785561356312824", "1661706012"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6604", "0.18370943278632904", "2.100580112357963", "1661709625"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6604", "0.25719277870617896", "3.977164068640473", "1661709625"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6604", "0.18370943278632904", "2.100580112357963", "1661709625"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6604", "0.25719277870617896", "3.977164068640473", "1661709625"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6605", "0.1832857833952309", "2.099774733723255", "1661713200"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6605", "0.25660604183269986", "3.9760810463797136", "1661713200"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6605", "0.1832857833952309", "2.099774733723255", "1661713200"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6605", "0.25660604183269986", "3.9760810463797136", "1661713200"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6606", "0.18287824457358284", "2.0990019237356843", "1661716815"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6606", "0.2560408601851477", "3.975040358839396", "1661716815"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6606", "0.18287824457358284", "2.0990019237356843", "1661716815"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6606", "0.2560408601851477", "3.975040358839396", "1661716815"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6607", "0.1824635284759664", "2.098214033722398", "1661720401"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6607", "0.25546625588517774", "3.973980406785676", "1661720401"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6607", "0.1824635284759664", "2.098214033722398", "1661720401"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6607", "0.25546625588517774", "3.973980406785676", "1661720401"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6608", "0.1820356270992408", "2.097398777331058", "1661724022"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6608", "0.254874231903778", "3.97288529790378", "1661724022"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6608", "0.1820356270992408", "2.097398777331058", "1661724022"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6608", "0.254874231903778", "3.97288529790378", "1661724022"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6609", "0.18168476709352785", "2.0967334511722795", "1661727605"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6609", "0.2543875909390951", "3.9719892523867655", "1661727605"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6609", "0.18168476709352785", "2.0967334511722795", "1661727605"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6609", "0.2543875909390951", "3.9719892523867655", "1661727605"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6610", "0.18127225271831818", "2.0959456899306086", "1661731240"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6610", "0.25381749758847266", "3.9709323371558294", "1661731240"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6610", "0.18127225271831818", "2.0959456899306086", "1661731240"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6610", "0.25381749758847266", "3.9709323371558294", "1661731240"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6611", "0.18078953914062196", "2.095017229734647", "1661734845"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6611", "0.25315286483374516", "3.969691447481115", "1661734845"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6611", "0.18078953914062196", "2.095017229734647", "1661734845"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6611", "0.25315286483374516", "3.969691447481115", "1661734845"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6612", "0.1803862893033421", "2.0942514308177325", "1661738401"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6612", "0.25259391164287737", "3.9686608005449764", "1661738401"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6612", "0.1803862893033421", "2.0942514308177325", "1661738401"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6612", "0.25259391164287737", "3.9686608005449764", "1661738401"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6613", "0.17813200136310897", "2.089936194827239", "1661742001"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6613", "0.24948166199751146", "3.9628775536995278", "1661742001"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6613", "0.17813200136310897", "2.089936194827239", "1661742001"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6613", "0.24948166199751146", "3.9628775536995278", "1661742001"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6614", "0.17774386907859882", "2.0892002966456227", "1661745614"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6614", "0.24894306689226367", "3.961886042813038", "1661745614"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6614", "0.17774386907859882", "2.0892002966456227", "1661745614"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6614", "0.24894306689226367", "3.961886042813038", "1661745614"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6615", "0.17735492832893948", "2.0884624527117492", "1661749216"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6615", "0.24840348414965013", "3.9608921799104078", "1661749216"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6615", "0.17735492832893948", "2.0884624527117492", "1661749216"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6615", "0.24840348414965013", "3.9608921799104078", "1661749216"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6616", "0.17693728727907532", "2.0876655098211527", "1661752807"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6616", "0.24782581497999304", "3.9598220882894926", "1661752807"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6616", "0.17693728727907532", "2.0876655098211527", "1661752807"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6616", "0.24782581497999304", "3.9598220882894926", "1661752807"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6617", "0.17653659974491698", "2.086903187055952", "1661756404"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6617", "0.24727071644285148", "3.958796789915666", "1661756404"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6617", "0.17653659974491698", "2.086903187055952", "1661756404"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6617", "0.24727071644285148", "3.958796789915666", "1661756404"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6618", "0.17617039042515664", "2.0862083146973", "1661760015"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6618", "0.2467626639018685", "3.95786082187019", "1661760015"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6618", "0.17617039042515664", "2.0862083146973", "1661760015"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6618", "0.2467626639018685", "3.95786082187019", "1661760015"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6619", "0.17584345516738686", "2.0855878301953803", "1661763603"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6619", "0.246309131615835", "3.957025124317925", "1661763603"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6619", "0.17584345516738686", "2.0855878301953803", "1661763603"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6619", "0.246309131615835", "3.957025124317925", "1661763603"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6620", "0.17548895892888997", "2.084915714201109", "1661767209"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6620", "0.2458170941876223", "3.9561193643778076", "1661767209"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6620", "0.17548895892888997", "2.084915714201109", "1661767209"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6620", "0.2458170941876223", "3.9561193643778076", "1661767209"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6621", "0.1751310753136052", "2.0842367222533458", "1661770802"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6621", "0.2453205078962606", "3.955204642777017", "1661770802"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6621", "0.1751310753136052", "2.0842367222533458", "1661770802"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6621", "0.2453205078962606", "3.955204642777017", "1661770802"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6622", "0.174714573546884", "2.083438206926743", "1661774401"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6622", "0.24474569292549733", "3.9541349613422803", "1661774401"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6622", "0.174714573546884", "2.083438206926743", "1661774401"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6622", "0.24474569292549733", "3.9541349613422803", "1661774401"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6623", "0.1743888183024517", "2.082820595337639", "1661778003"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6623", "0.2442934912757779", "3.95330256245848", "1661778003"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6623", "0.1743888183024517", "2.082820595337639", "1661778003"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6623", "0.2442934912757779", "3.95330256245848", "1661778003"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6624", "0.17406451671046652", "2.082205738551545", "1661781605"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6624", "0.24384329301380545", "3.9524738538355995", "1661781605"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6624", "0.17406451671046652", "2.082205738551545", "1661781605"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6624", "0.24384329301380545", "3.9524738538355995", "1661781605"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6625", "0.17372851570006034", "2.0815681083701327", "1661785201"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6625", "0.24337706069439694", "3.951614860748534", "1661785201"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6625", "0.17372851570006034", "2.0815681083701327", "1661785201"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6625", "0.24337706069439694", "3.951614860748534", "1661785201"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6626", "0.1733793609748111", "2.08090610968465", "1661788810"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6626", "0.24289233589207992", "3.9507225775276282", "1661788810"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6626", "0.1733793609748111", "2.08090610968465", "1661788810"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6626", "0.24289233589207992", "3.9507225775276282", "1661788810"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6627", "0.1729974964400352", "2.0801772905385407", "1661792401"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6627", "0.24236398918324287", "3.949743722059779", "1661792401"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6627", "0.1729974964400352", "2.0801772905385407", "1661792401"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6627", "0.24236398918324287", "3.949743722059779", "1661792401"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6628", "0.17255822007196644", "2.0793331477736654", "1661796008"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6628", "0.24175834567211854", "3.9486141266640855", "1661796008"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6628", "0.17255822007196644", "2.0793331477736654", "1661796008"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6628", "0.24175834567211854", "3.9486141266640855", "1661796008"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6629", "0.1721939695103028", "2.0786425387454117", "1661799614"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6629", "0.24125259770896565", "3.947683175358777", "1661799614"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6629", "0.1721939695103028", "2.0786425387454117", "1661799614"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6629", "0.24125259770896565", "3.947683175358777", "1661799614"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6630", "0.17172667763739005", "2.077754348422311", "1661803206"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6630", "0.24060458792634443", "3.9464874648757973", "1661803206"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6630", "0.17172667763739005", "2.077754348422311", "1661803206"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6630", "0.24060458792634443", "3.9464874648757973", "1661803206"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6631", "0.17136515102587702", "2.0770685983393933", "1661806809"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6631", "0.2401026942453827", "3.945563220450222", "1661806809"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6631", "0.17136515102587702", "2.0770685983393933", "1661806809"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6631", "0.2401026942453827", "3.945563220450222", "1661806809"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6632", "0.1709982018532581", "2.076371423624099", "1661810400"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6632", "0.23959368219744698", "3.9446243831709897", "1661810400"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6632", "0.1709982018532581", "2.076371423624099", "1661810400"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6632", "0.23959368219744698", "3.9446243831709897", "1661810400"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6633", "0.1705923685830855", "2.0755955549573724", "1661814040"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6633", "0.23903252235560674", "3.9435830641681755", "1661814040"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6633", "0.1705923685830855", "2.0755955549573724", "1661814040"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6633", "0.23903252235560674", "3.9435830641681755", "1661814040"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6634", "0.16936790920664194", "2.0732550876200424", "1661817620"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6634", "0.23733910681672826", "3.940441291265561", "1661817620"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6634", "0.16936790920664194", "2.0732550876200424", "1661817620"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6634", "0.23733910681672826", "3.940441291265561", "1661817620"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6635", "0.1690246902278136", "2.072604381188238", "1661821207"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6635", "0.23686239358162497", "3.9395638633132783", "1661821207"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6635", "0.1690246902278136", "2.072604381188238", "1661821207"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6635", "0.23686239358162497", "3.9395638633132783", "1661821207"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6636", "0.168681895670355", "2.0719541926949163", "1661824814"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6636", "0.23638636087615775", "3.9386873176288466", "1661824814"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6636", "0.168681895670355", "2.0719541926949163", "1661824814"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6636", "0.23638636087615775", "3.9386873176288466", "1661824814"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6637", "0.16834165728151115", "2.071309120614368", "1661828402"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6637", "0.23591376046575166", "3.9378174471404166", "1661828402"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6637", "0.16834165728151115", "2.071309120614368", "1661828402"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6637", "0.23591376046575166", "3.9378174471404166", "1661828402"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6638", "0.16799207533409527", "2.070646400237847", "1661832013"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6638", "0.23542813934691634", "3.9369237024035044", "1661832013"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6638", "0.16799207533409527", "2.070646400237847", "1661832013"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6638", "0.23542813934691634", "3.9369237024035044", "1661832013"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6639", "0.16769959991168", "2.070091938530818", "1661835601"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6639", "0.23502183464412016", "3.936175935091295", "1661835601"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6639", "0.16769959991168", "2.070091938530818", "1661835601"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6639", "0.23502183464412016", "3.936175935091295", "1661835601"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6640", "0.16740564363560517", "2.069534263524356", "1661839213"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6640", "0.23461361304621192", "3.9354241124734193", "1661839213"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6640", "0.16740564363560517", "2.069534263524356", "1661839213"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6640", "0.23461361304621192", "3.9354241124734193", "1661839213"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6641", "0.1671134254714477", "2.0689802153523456", "1661842806"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6641", "0.23420766909856164", "3.9346769188281385", "1661842806"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6641", "0.1671134254714477", "2.0689802153523456", "1661842806"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6641", "0.23420766909856164", "3.9346769188281385", "1661842806"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6642", "0.16680136575969143", "2.0683854900466083", "1661846405"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6642", "0.23377529736289984", "3.933877087099169", "1661846405"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6642", "0.16680136575969143", "2.0683854900466083", "1661846405"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6642", "0.23377529736289984", "3.933877087099169", "1661846405"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6643", "0.16652834466696356", "2.0678679396289406", "1661850005"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6643", "0.2333959607529648", "3.933179004803514", "1661850005"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6643", "0.16652834466696356", "2.0678679396289406", "1661850005"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6643", "0.2333959607529648", "3.933179004803514", "1661850005"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6644", "0.1662582734808972", "2.0673559518224183", "1661853604"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6644", "0.23302072329610438", "3.9324884305485837", "1661853604"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6644", "0.1662582734808972", "2.0673559518224183", "1661853604"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6644", "0.23302072329610438", "3.9324884305485837", "1661853604"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6645", "0.16598708204767065", "2.066841474828576", "1661857201"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6645", "0.23264405620727113", "3.9317947502385504", "1661857201"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6645", "0.16598708204767065", "2.066841474828576", "1661857201"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6645", "0.23264405620727113", "3.9317947502385504", "1661857201"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6646", "0.16567186225782138", "2.0662438883689633", "1661860808"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6646", "0.23220606679043546", "3.930988685744354", "1661860808"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6646", "0.16567186225782138", "2.0662438883689633", "1661860808"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6646", "0.23220606679043546", "3.930988685744354", "1661860808"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6647", "0.1653864825544637", "2.06570287716063", "1661864454"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6647", "0.23180952518274944", "3.9302589107628294", "1661864454"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6647", "0.1653864825544637", "2.06570287716063", "1661864454"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6647", "0.23180952518274944", "3.9302589107628294", "1661864454"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6648", "0.16508263457875436", "2.065125305579241", "1661868008"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6648", "0.23138789063937842", "3.929480934102665", "1661868008"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6648", "0.16508263457875436", "2.065125305579241", "1661868008"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6648", "0.23138789063937842", "3.929480934102665", "1661868008"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6649", "0.16480095919457136", "2.064591317458105", "1661871622"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6649", "0.23099647230459117", "3.9287605949787348", "1661871622"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6649", "0.16480095919457136", "2.064591317458105", "1661871622"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6649", "0.23099647230459117", "3.9287605949787348", "1661871622"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6650", "0.16450173327800718", "2.0639978372073076", "1661875200"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6650", "0.23059050240483703", "3.927979191810959", "1661875200"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6650", "0.16450173327800718", "2.0639978372073076", "1661875200"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6650", "0.23059050240483703", "3.927979191810959", "1661875200"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6651", "0.1641656962984573", "2.0633601938750594", "1661878814"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6651", "0.23012373757240367", "3.927119414833066", "1661878814"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6651", "0.1641656962984573", "2.0633601938750594", "1661878814"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6651", "0.23012373757240367", "3.927119414833066", "1661878814"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6652", "0.1638291903281744", "2.0627216450237773", "1661882401"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6652", "0.22965631088992694", "3.9262584027902987", "1661882401"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6652", "0.1638291903281744", "2.0627216450237773", "1661882401"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6652", "0.22965631088992694", "3.9262584027902987", "1661882401"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6653", "0.1635454082521444", "2.062183270705892", "1661886027"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6653", "0.22926206068093677", "3.9255323526010244", "1661886027"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6653", "0.1635454082521444", "2.062183270705892", "1661886027"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6653", "0.22926206068093677", "3.9255323526010244", "1661886027"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6654", "0.1632153965325929", "2.0615576961094235", "1661889601"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6654", "0.2288033812361128", "3.924688312813307", "1661889601"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6654", "0.1632153965325929", "2.0615576961094235", "1661889601"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6654", "0.2288033812361128", "3.924688312813307", "1661889601"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6655", "0.16298397050055946", "2.061108487824642", "1661893200"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6655", "0.22848566302195816", "3.924089916039923", "1661893200"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6655", "0.16298397050055946", "2.061108487824642", "1661893200"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6655", "0.22848566302195816", "3.924089916039923", "1661893200"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6656", "0.16259312083712557", "2.06036614092654", "1661896803"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6656", "0.22794293528668944", "3.923089331126319", "1661896803"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6656", "0.16259312083712557", "2.06036614092654", "1661896803"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6656", "0.22794293528668944", "3.923089331126319", "1661896803"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6657", "0.16226465173193452", "2.059743365798514", "1661900414"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6657", "0.2274864015053105", "3.9222490887162627", "1661900414"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6657", "0.16226465173193452", "2.059743365798514", "1661900414"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6657", "0.2274864015053105", "3.9222490887162627", "1661900414"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6658", "0.16194496325859456", "2.0591373039527094", "1661904038"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6658", "0.227042032397551", "3.9214313246161954", "1661904038"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6658", "0.16194496325859456", "2.0591373039527094", "1661904038"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6658", "0.227042032397551", "3.9214313246161954", "1661904038"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6659", "0.1616224571579883", "2.058525974173077", "1661907605"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6659", "0.22659370423356778", "3.9206063751965283", "1661907605"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6659", "0.1616224571579883", "2.058525974173077", "1661907605"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6659", "0.22659370423356778", "3.9206063751965283", "1661907605"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6660", "0.16128640284156243", "2.057886154845121", "1661911200"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6660", "0.22612758006934838", "3.9197450120669064", "1661911200"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6660", "0.16128640284156243", "2.057886154845121", "1661911200"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6660", "0.22612758006934838", "3.9197450120669064", "1661911200"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6661", "0.16097083822294722", "2.0572880837219816", "1661914800"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6661", "0.22568883396973283", "3.918937833945306", "1661914800"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6661", "0.16097083822294722", "2.0572880837219816", "1661914800"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6661", "0.22568883396973283", "3.918937833945306", "1661914800"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6662", "0.1606549919701365", "2.0566886714827097", "1661918419"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6662", "0.2252499848967815", "3.918129414527207", "1661918419"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6662", "0.1606549919701365", "2.0566886714827097", "1661918419"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6662", "0.2252499848967815", "3.918129414527207", "1661918419"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6663", "0.16033619787501704", "2.0560841210060943", "1661922000"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6663", "0.22480685424270128", "3.9173137088109766", "1661922000"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6663", "0.16033619787501704", "2.0560841210060943", "1661922000"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6663", "0.22480685424270128", "3.9173137088109766", "1661922000"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6664", "0.16001442412016012", "2.055453945274444", "1661925612"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6664", "0.22436705999524278", "3.9164780184550594", "1661925612"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6664", "0.16001442412016012", "2.055453945274444", "1661925612"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6664", "0.22436705999524278", "3.9164780184550594", "1661925612"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6665", "0.15972749482535986", "2.054910087985135", "1661929245"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6665", "0.22396809603857357", "3.915743968521028", "1661929245"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6665", "0.15972749482535986", "2.054910087985135", "1661929245"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6665", "0.22396809603857357", "3.915743968521028", "1661929245"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6666", "0.1594370607291159", "2.054358589474982", "1661932804"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6666", "0.22356462105702726", "3.9150003167135474", "1661932804"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6666", "0.1594370607291159", "2.054358589474982", "1661932804"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6666", "0.22356462105702726", "3.9150003167135474", "1661932804"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6667", "0.1591387994091149", "2.053792058352555", "1661936408"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6667", "0.22315032332953413", "3.9142364986598666", "1661936408"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6667", "0.1591387994091149", "2.053792058352555", "1661936408"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6667", "0.22315032332953413", "3.9142364986598666", "1661936408"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6668", "0.15884275768572984", "2.0532308163524386", "1661940040"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6668", "0.22273869357650455", "3.913479007972457", "1661940040"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6668", "0.15884275768572984", "2.0532308163524386", "1661940040"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6668", "0.22273869357650455", "3.913479007972457", "1661940040"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6669", "0.15856597738015937", "2.0527061959748525", "1661943650"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6669", "0.2223537948135558", "3.9127708493179445", "1661943650"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6669", "0.15856597738015937", "2.0527061959748525", "1661943650"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6669", "0.2223537948135558", "3.9127708493179445", "1661943650"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6670", "0.15826935343345094", "2.052143961827192", "1661947215"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6670", "0.2219412891597086", "3.9120118995334456", "1661947215"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6670", "0.15826935343345094", "2.052143961827192", "1661947215"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6670", "0.2219412891597086", "3.9120118995334456", "1661947215"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6671", "0.15797389159575323", "2.0515839297528617", "1661950804"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6671", "0.22153038725226798", "3.911255903025771", "1661950804"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6671", "0.15797389159575323", "2.0515839297528617", "1661950804"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6671", "0.22153038725226798", "3.911255903025771", "1661950804"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6672", "0.15769457680540508", "2.0510544890239735", "1661954438"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6672", "0.2211419350888634", "3.9105411947893582", "1661954438"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6672", "0.15769457680540508", "2.0510544890239735", "1661954438"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6672", "0.2211419350888634", "3.9105411947893582", "1661954438"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6673", "0.15742671630710323", "2.050546104070115", "1661958031"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6673", "0.22076964805600421", "3.9098553736756614", "1661958031"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6673", "0.15742671630710323", "2.050546104070115", "1661958031"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6673", "0.22076964805600421", "3.9098553736756614", "1661958031"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6674", "0.15717358196271244", "2.0500663001432633", "1661961619"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6674", "0.22041758195695832", "3.9092076324866687", "1661961619"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6674", "0.15717358196271244", "2.0500663001432633", "1661961619"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6674", "0.22041758195695832", "3.9092076324866687", "1661961619"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6675", "0.1568998062000832", "2.0495473705744667", "1661965201"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6675", "0.22003679712404486", "3.908507055523764", "1661965201"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6675", "0.1568998062000832", "2.0495473705744667", "1661965201"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6675", "0.22003679712404486", "3.908507055523764", "1661965201"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6676", "0.15661389201760825", "2.0490052131169088", "1661968816"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6676", "0.2196392003349624", "3.9077752628516857", "1661968816"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6676", "0.15661389201760825", "2.0490052131169088", "1661968816"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6676", "0.2196392003349624", "3.9077752628516857", "1661968816"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6677", "0.1563387392311218", "2.0484831077977934", "1661972405"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6677", "0.21925668998494915", "3.907070777455025", "1661972405"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6677", "0.1563387392311218", "2.0484831077977934", "1661972405"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6677", "0.21925668998494915", "3.907070777455025", "1661972405"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6678", "0.15606017399826905", "2.047954452743039", "1661976002"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6678", "0.21886945252717482", "3.906357491399297", "1661976002"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6678", "0.15606017399826905", "2.047954452743039", "1661976002"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6678", "0.21886945252717482", "3.906357491399297", "1661976002"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6679", "0.15576734768635922", "2.0473989640570514", "1661979614"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6679", "0.21846229197240483", "3.905607812591395", "1661979614"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6679", "0.15576734768635922", "2.0473989640570514", "1661979614"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6679", "0.21846229197240483", "3.905607812591395", "1661979614"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6680", "0.15549630213930893", "2.0468831095396944", "1661983211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6680", "0.21808603628779263", "3.9049128367135966", "1661983211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6680", "0.15549630213930893", "2.0468831095396944", "1661983211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6680", "0.21808603628779263", "3.9049128367135966", "1661983211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6681", "0.15524917133410693", "2.046414594121446", "1661986802"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6681", "0.2177422852991289", "3.904280293810109", "1661986802"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6681", "0.15524917133410693", "2.046414594121446", "1661986802"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6681", "0.2177422852991289", "3.904280293810109", "1661986802"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6682", "0.1549532750969866", "2.045853736972578", "1661990403"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6682", "0.21733065082217243", "3.9035229825982634", "1661990403"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6682", "0.1549532750969866", "2.045853736972578", "1661990403"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6682", "0.21733065082217243", "3.9035229825982634", "1661990403"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6683", "0.1546730844769753", "2.0453225901029564", "1661994022"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6683", "0.2169408755575626", "3.902805813296764", "1661994022"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6683", "0.1546730844769753", "2.0453225901029564", "1661994022"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6683", "0.2169408755575626", "3.902805813296764", "1661994022"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6684", "0.1544106840360183", "2.0448247706289315", "1661997653"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6684", "0.21657598667381112", "3.9021339176225127", "1661997653"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6684", "0.1544106840360183", "2.0448247706289315", "1661997653"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6684", "0.21657598667381112", "3.9021339176225127", "1661997653"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6685", "0.15414333377744202", "2.0443177848596465", "1662001221"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6685", "0.21620412037373787", "3.9014494703861815", "1662001221"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6685", "0.15414333377744202", "2.0443177848596465", "1662001221"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6685", "0.21620412037373787", "3.9014494703861815", "1662001221"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6686", "0.15388627970711272", "2.0438300028445617", "1662004819"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6686", "0.21584668594691753", "3.9007911684037935", "1662004819"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6686", "0.15388627970711272", "2.0438300028445617", "1662004819"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6686", "0.21584668594691753", "3.9007911684037935", "1662004819"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6687", "0.15363216343361638", "2.0433470364416357", "1662008442"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6687", "0.21549361139442158", "3.9001399052254073", "1662008442"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6687", "0.15363216343361638", "2.0433470364416357", "1662008442"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6687", "0.21549361139442158", "3.9001399052254073", "1662008442"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6688", "0.1533657051097249", "2.042841763871943", "1662012034"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6688", "0.21512294750058156", "3.8994577078460964", "1662012034"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6688", "0.1533657051097249", "2.042841763871943", "1662012034"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6688", "0.21512294750058156", "3.8994577078460964", "1662012034"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6689", "0.15307505915843025", "2.042290747805882", "1662015604"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6689", "0.21471857921779353", "3.898713641744091", "1662015604"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6689", "0.15307505915843025", "2.042290747805882", "1662015604"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6689", "0.21471857921779353", "3.898713641744091", "1662015604"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6690", "0.15280602320747716", "2.041778099722848", "1662019210"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6690", "0.21434523929827107", "3.8980232703137387", "1662019210"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6690", "0.15280602320747716", "2.041778099722848", "1662019210"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6690", "0.21434523929827107", "3.8980232703137387", "1662019210"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6691", "0.15253746705958432", "2.041269061338354", "1662022816"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6691", "0.2139715454853819", "3.8973357828931743", "1662022816"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6691", "0.15253746705958432", "2.041269061338354", "1662022816"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6691", "0.2139715454853819", "3.8973357828931743", "1662022816"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6692", "0.1522487931726623", "2.0407216570095947", "1662026430"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6692", "0.21356993376019792", "3.896596632414631", "1662026430"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6692", "0.1522487931726623", "2.0407216570095947", "1662026430"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6692", "0.21356993376019792", "3.896596632414631", "1662026430"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6693", "0.1519989065010013", "2.0402480969018923", "1662030011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6693", "0.21322216449568634", "3.8959569630250734", "1662030011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6693", "0.1519989065010013", "2.0402480969018923", "1662030011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6693", "0.21322216449568634", "3.8959569630250734", "1662030011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6694", "0.15171704452263293", "2.039713036421754", "1662033630"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6694", "0.21283022245634506", "3.8952348649907607", "1662033630"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6694", "0.15171704452263293", "2.039713036421754", "1662033630"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6694", "0.21283022245634506", "3.8952348649907607", "1662033630"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6695", "0.15144850934002024", "2.0392041841219504", "1662037219"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6695", "0.21245646065974588", "3.8945474555659945", "1662037219"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6695", "0.15144850934002024", "2.0392041841219504", "1662037219"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6695", "0.21245646065974588", "3.8945474555659945", "1662037219"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6696", "0.15120504132752308", "2.0387365813058445", "1662040869"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6696", "0.21211991901669222", "3.8939203267001714", "1662040869"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6696", "0.15120504132752308", "2.0387365813058445", "1662040869"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6696", "0.21211991901669222", "3.8939203267001714", "1662040869"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6697", "0.15092660237240388", "2.0381918647188373", "1662044417"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6697", "0.2117387493760968", "3.8931969344005104", "1662044417"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6697", "0.15092660237240388", "2.0381918647188373", "1662044417"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6697", "0.2117387493760968", "3.8931969344005104", "1662044417"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6698", "0.150733339820814", "2.0378240397011385", "1662048017"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6698", "0.21147033633178303", "3.892701180585539", "1662048017"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6698", "0.150733339820814", "2.0378240397011385", "1662048017"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6698", "0.21147033633178303", "3.892701180585539", "1662048017"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6699", "0.15048436978405283", "2.03735107981301", "1662051605"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6699", "0.2111242128603847", "3.8920630659115476", "1662051605"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6699", "0.15048436978405283", "2.03735107981301", "1662051605"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6699", "0.2111242128603847", "3.8920630659115476", "1662051605"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6700", "0.15009681663730512", "2.0365922661960543", "1662055202"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6700", "0.21059386097596935", "3.8910557195499678", "1662055202"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6700", "0.15009681663730512", "2.0365922661960543", "1662055202"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6700", "0.21059386097596935", "3.8910557195499678", "1662055202"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6701", "0.14986746336710516", "2.0361571882747036", "1662058814"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6701", "0.21027475700277598", "3.890468231386319", "1662058814"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6701", "0.14986746336710516", "2.0361571882747036", "1662058814"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6701", "0.21027475700277598", "3.890468231386319", "1662058814"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6702", "0.14963269953269434", "2.0357111140374484", "1662062404"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6702", "0.20994839125735154", "3.8898664171190886", "1662062404"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6702", "0.14963269953269434", "2.0357111140374484", "1662062404"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6702", "0.20994839125735154", "3.8898664171190886", "1662062404"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6703", "0.14937861334722646", "2.0352252585654544", "1662066004"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6703", "0.2095963016196254", "3.889213152909888", "1662066004"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6703", "0.14937861334722646", "2.0352252585654544", "1662066004"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6703", "0.2095963016196254", "3.889213152909888", "1662066004"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6704", "0.14919246753340745", "2.034873021759932", "1662069615"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6704", "0.20933696598535614", "3.8887368554605994", "1662069615"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6704", "0.14919246753340745", "2.034873021759932", "1662069615"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6704", "0.20933696598535614", "3.8887368554605994", "1662069615"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6705", "0.14894310789525578", "2.0344002096792986", "1662073203"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6705", "0.20898991216431234", "3.8880982038115675", "1662073203"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6705", "0.14894310789525578", "2.0344002096792986", "1662073203"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6705", "0.20898991216431234", "3.8880982038115675", "1662073203"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6706", "0.14867080902696958", "2.0338800993655135", "1662076800"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6706", "0.2086123435303182", "3.8873984242313795", "1662076800"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6706", "0.14867080902696958", "2.0338800993655135", "1662076800"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6706", "0.2086123435303182", "3.8873984242313795", "1662076800"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6707", "0.14839570743111946", "2.0333584443588166", "1662080407"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6707", "0.2082294535914345", "3.886693788659458", "1662080407"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6707", "0.14839570743111946", "2.0333584443588166", "1662080407"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6707", "0.2082294535914345", "3.886693788659458", "1662080407"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6708", "0.14808911093273672", "2.032769127769744", "1662084034"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6708", "0.20780568375602496", "3.8859035329371787", "1662084034"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6708", "0.14808911093273672", "2.032769127769744", "1662084034"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6708", "0.20780568375602496", "3.8859035329371787", "1662084034"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6709", "0.14788982918634183", "2.0323903772073924", "1662087601"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6709", "0.207528629074744", "3.8853925361454418", "1662087601"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6709", "0.14788982918634183", "2.0323903772073924", "1662087601"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6709", "0.207528629074744", "3.8853925361454418", "1662087601"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6710", "0.14764511639972563", "2.0319267526590856", "1662091222"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6710", "0.20718785530720044", "3.8847659466236135", "1662091222"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6710", "0.14764511639972563", "2.0319267526590856", "1662091222"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6710", "0.20718785530720044", "3.8847659466236135", "1662091222"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6711", "0.14741848315483008", "2.03149598107349", "1662094811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6711", "0.206872773569408", "3.884184768353653", "1662094811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6711", "0.14741848315483008", "2.03149598107349", "1662094811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6711", "0.206872773569408", "3.884184768353653", "1662094811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6712", "0.14721640751114196", "2.0311121288138434", "1662098411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6712", "0.20659173691647598", "3.8836667057145386", "1662098411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6712", "0.14721640751114196", "2.0311121288138434", "1662098411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6712", "0.20659173691647598", "3.8836667057145386", "1662098411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6713", "0.14701797692907415", "2.030734323515699", "1662102007"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6713", "0.20631609154581584", "3.8831574340392345", "1662102007"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6713", "0.14701797692907415", "2.030734323515699", "1662102007"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6713", "0.20631609154581584", "3.8831574340392345", "1662102007"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6714", "0.14690744082943155", "2.0305179723137643", "1662105614"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6714", "0.20616474273446003", "3.882870077693499", "1662105614"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6714", "0.14690744082943155", "2.0305179723137643", "1662105614"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6714", "0.20616474273446003", "3.882870077693499", "1662105614"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6715", "0.14663927567570362", "2.0300096033551585", "1662109202"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6715", "0.2057913881611274", "3.88218318288608", "1662109202"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6715", "0.14663927567570362", "2.0300096033551585", "1662109202"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6715", "0.2057913881611274", "3.88218318288608", "1662109202"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6716", "0.14636136202788838", "2.0294825624230395", "1662112823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6716", "0.205404521666355", "3.8814711814245366", "1662112823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6716", "0.14636136202788838", "2.0294825624230395", "1662112823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6716", "0.205404521666355", "3.8814711814245366", "1662112823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6717", "0.14611704356529584", "2.0290191148186274", "1662116415"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6717", "0.20506445546353397", "3.880845161798034", "1662116415"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6717", "0.14611704356529584", "2.0290191148186274", "1662116415"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6717", "0.20506445546353397", "3.880845161798034", "1662116415"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6718", "0.14585898981847092", "2.0285283435575403", "1662120011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6718", "0.20470573581699986", "3.880183144478655", "1662120011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6718", "0.14585898981847092", "2.0285283435575403", "1662120011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6718", "0.20470573581699986", "3.880183144478655", "1662120011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6719", "0.14568255682809914", "2.028193645741717", "1662123609"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6719", "0.20446015540646445", "3.8797310357769783", "1662123609"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6719", "0.14568255682809914", "2.028193645741717", "1662123609"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6719", "0.20446015540646445", "3.8797310357769783", "1662123609"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6720", "0.14543984485381925", "2.027733021035459", "1662127206"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6720", "0.2041223850599396", "3.879108955275146", "1662127206"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6720", "0.14543984485381925", "2.027733021035459", "1662127206"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6720", "0.2041223850599396", "3.879108955275146", "1662127206"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6721", "0.14519381430017614", "2.027247174961081", "1662130848"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6721", "0.20378705480130466", "3.878466589510206", "1662130848"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6721", "0.14519381430017614", "2.027247174961081", "1662130848"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6721", "0.20378705480130466", "3.878466589510206", "1662130848"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6722", "0.1449800966127984", "2.026841924687174", "1662134413"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6722", "0.20348948906892003", "3.8779190150138616", "1662134413"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6722", "0.1449800966127984", "2.026841924687174", "1662134413"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6722", "0.20348948906892003", "3.8779190150138616", "1662134413"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6723", "0.14477067383892744", "2.026445101773784", "1662138006"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6723", "0.20319779100171828", "3.87738261080614", "1662138006"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6723", "0.14477067383892744", "2.026445101773784", "1662138006"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6723", "0.20319779100171828", "3.87738261080614", "1662138006"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6724", "0.1445227523699059", "2.025974098364394", "1662141623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6724", "0.20285292095618612", "3.8767468191521957", "1662141623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6724", "0.1445227523699059", "2.025974098364394", "1662141623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6724", "0.20285292095618612", "3.8767468191521957", "1662141623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6725", "0.14431100542864264", "2.0255728139313582", "1662145203"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6725", "0.2025579929650229", "3.876204403945296", "1662145203"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6725", "0.14431100542864264", "2.0255728139313582", "1662145203"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6725", "0.2025579929650229", "3.876204403945296", "1662145203"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6726", "0.14405345130120054", "2.0250812065279438", "1662148801"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6726", "0.2022005659863617", "3.8755424487282935", "1662148801"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6726", "0.14405345130120054", "2.0250812065279438", "1662148801"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6726", "0.2022005659863617", "3.8755424487282935", "1662148801"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6727", "0.14384253816666018", "2.024681229550811", "1662152408"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6727", "0.20190688665857268", "3.875001977035977", "1662152408"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6727", "0.14384253816666018", "2.024681229550811", "1662152408"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6727", "0.20190688665857268", "3.875001977035977", "1662152408"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6728", "0.14363442534560697", "2.024286887575193", "1662156016"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6728", "0.201616979050157", "3.8744688731607737", "1662156016"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6728", "0.14363442534560697", "2.024286887575193", "1662156016"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6728", "0.201616979050157", "3.8744688731607737", "1662156016"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6729", "0.14342452200987613", "2.0238890401928833", "1662159612"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6729", "0.2013246128513334", "3.8739311025774583", "1662159612"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6729", "0.14342452200987613", "2.0238890401928833", "1662159612"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6729", "0.2013246128513334", "3.8739311025774583", "1662159612"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6730", "0.14325052165100421", "2.0235587056988606", "1662163230"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6730", "0.2010824500828355", "3.8734849732904295", "1662163230"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6730", "0.14325052165100421", "2.0235587056988606", "1662163230"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6730", "0.2010824500828355", "3.8734849732904295", "1662163230"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6731", "0.14308491194185774", "2.0232447906913955", "1662166800"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6731", "0.2008517778571101", "3.87306065580853", "1662166800"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6731", "0.14308491194185774", "2.0232447906913955", "1662166800"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6731", "0.2008517778571101", "3.87306065580853", "1662166800"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6732", "0.14283001678110674", "2.0227611412921203", "1662170409"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6732", "0.20049691901677574", "3.8724072563069645", "1662170409"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6732", "0.14283001678110674", "2.0227611412921203", "1662170409"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6732", "0.20049691901677574", "3.8724072563069645", "1662170409"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6733", "0.1426163138931864", "2.022355880653202", "1662174001"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6733", "0.2001993143732031", "3.871859580159379", "1662174001"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6733", "0.1426163138931864", "2.022355880653202", "1662174001"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6733", "0.2001993143732031", "3.871859580159379", "1662174001"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6734", "0.14241063864682088", "2.021965941474249", "1662177601"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6734", "0.19991284620326852", "3.871332528353656", "1662177601"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6734", "0.14241063864682088", "2.021965941474249", "1662177601"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6734", "0.19991284620326852", "3.871332528353656", "1662177601"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6735", "0.14225587441618456", "2.0216733506499915", "1662181211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6735", "0.1996969754040128", "3.8709364462625344", "1662181211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6735", "0.14225587441618456", "2.0216733506499915", "1662181211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6735", "0.1996969754040128", "3.8709364462625344", "1662181211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6736", "0.14193543863502572", "2.021065923632581", "1662184808"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6736", "0.19925061492977245", "3.8701153387750606", "1662184808"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6736", "0.14193543863502572", "2.021065923632581", "1662184808"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6736", "0.19925061492977245", "3.8701153387750606", "1662184808"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6737", "0.14170773625149938", "2.02062983496354", "1662188406"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6737", "0.19893508118101105", "3.869529073013853", "1662188406"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6737", "0.14170773625149938", "2.02062983496354", "1662188406"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6737", "0.19893508118101105", "3.869529073013853", "1662188406"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6738", "0.14146048985947784", "2.0201601999338923", "1662192001"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6738", "0.1985910070366308", "3.8688948917888863", "1662192001"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6738", "0.14146048985947784", "2.0201601999338923", "1662192001"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6738", "0.1985910070366308", "3.8688948917888863", "1662192001"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6739", "0.14121282814833339", "2.0196908903580155", "1662195601"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6739", "0.1982459302286077", "3.8682603251674488", "1662195601"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6739", "0.14121282814833339", "2.0196908903580155", "1662195601"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6739", "0.1982459302286077", "3.8682603251674488", "1662195601"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6740", "0.1409620572691681", "2.019215062074521", "1662199210"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6740", "0.19789674601912058", "3.867617387350229", "1662199210"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6740", "0.1409620572691681", "2.019215062074521", "1662199210"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6740", "0.19789674601912058", "3.867617387350229", "1662199210"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6741", "0.14071611594873434", "2.018749002248371", "1662202801"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6741", "0.19755405224739117", "3.8669871943300396", "1662202801"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6741", "0.14071611594873434", "2.018749002248371", "1662202801"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6741", "0.19755405224739117", "3.8669871943300396", "1662202801"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6742", "0.14046958452949035", "2.0182815924070208", "1662206435"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6742", "0.197210613800378", "3.8663553309869414", "1662206435"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6742", "0.14046958452949035", "2.0182815924070208", "1662206435"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6742", "0.197210613800378", "3.8663553309869414", "1662206435"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6743", "0.14022478837473176", "2.0178176050728682", "1662210001"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6743", "0.19686953448168604", "3.8657279839474343", "1662210001"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6743", "0.14022478837473176", "2.0178176050728682", "1662210001"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6743", "0.19686953448168604", "3.8657279839474343", "1662210001"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6744", "0.13998417516489364", "2.0173603128641915", "1662213620"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6744", "0.19653473468754928", "3.8651105749021037", "1662213620"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6744", "0.13998417516489364", "2.0173603128641915", "1662213620"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6744", "0.19653473468754928", "3.8651105749021037", "1662213620"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6745", "0.13971190745418785", "2.0168333536143432", "1662217211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6745", "0.19615942392717223", "3.864406000191534", "1662217211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6745", "0.13971190745418785", "2.0168333536143432", "1662217211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6745", "0.19615942392717223", "3.864406000191534", "1662217211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6746", "0.1394837730152415", "2.0163959948094035", "1662220835"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6746", "0.1958433807158316", "3.8638182261536493", "1662220835"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6746", "0.1394837730152415", "2.0163959948094035", "1662220835"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6746", "0.1958433807158316", "3.8638182261536493", "1662220835"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6747", "0.13939496047417946", "2.016228249268195", "1662224408"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6747", "0.1957194045346345", "3.8635909723748596", "1662224408"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6747", "0.13939496047417946", "2.016228249268195", "1662224408"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6747", "0.1957194045346345", "3.8635909723748596", "1662224408"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6748", "0.13925111803195964", "2.0159361009585743", "1662228004"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6748", "0.19552623670239969", "3.863210144851941", "1662228004"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6748", "0.13925111803195964", "2.0159361009585743", "1662228004"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6748", "0.19552623670239969", "3.863210144851941", "1662228004"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6749", "0.1390407265526825", "2.015536149893132", "1662231626"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6749", "0.19523349411363147", "3.862670175847422", "1662231626"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6749", "0.1390407265526825", "2.015536149893132", "1662231626"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6749", "0.19523349411363147", "3.862670175847422", "1662231626"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6750", "0.13884428011946956", "2.015163982394072", "1662235213"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6750", "0.19495967409742915", "3.8621667822192487", "1662235213"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6750", "0.13884428011946956", "2.015163982394072", "1662235213"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6750", "0.19495967409742915", "3.8621667822192487", "1662235213"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6751", "0.13865191983051953", "2.0147994880241766", "1662238836"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6751", "0.19469156951239452", "3.861673808317176", "1662238836"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6751", "0.13865191983051953", "2.0147994880241766", "1662238836"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6751", "0.19469156951239452", "3.861673808317176", "1662238836"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6752", "0.13844643160531891", "2.0144102697763673", "1662242437"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6752", "0.19440510520647888", "3.8611472758379377", "1662242437"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6752", "0.13844643160531891", "2.0144102697763673", "1662242437"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6752", "0.19440510520647888", "3.8611472758379377", "1662242437"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6753", "0.13819345618693263", "2.013928389573367", "1662246007"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6753", "0.19405344411342107", "3.8604973571695385", "1662246007"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6753", "0.13819345618693263", "2.013928389573367", "1662246007"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6753", "0.19405344411342107", "3.8604973571695385", "1662246007"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6754", "0.1379910879587233", "2.0135430138262183", "1662249603"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6754", "0.19377208596042092", "3.8599775082732366", "1662249603"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6754", "0.1379910879587233", "2.0135430138262183", "1662249603"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6754", "0.19377208596042092", "3.8599775082732366", "1662249603"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6755", "0.1377550967950093", "2.013095404248855", "1662253214"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6755", "0.19344330430494586", "3.859372395996562", "1662253214"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6755", "0.1377550967950093", "2.013095404248855", "1662253214"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6755", "0.19344330430494586", "3.859372395996562", "1662253214"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6756", "0.13751970591617033", "2.0126493142195736", "1662256801"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6756", "0.19311520887008216", "3.858769047901001", "1662256801"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6756", "0.13751970591617033", "2.0126493142195736", "1662256801"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6756", "0.19311520887008216", "3.858769047901001", "1662256801"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6757", "0.13728717197229318", "2.012208635912469", "1662260404"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6757", "0.19279108846245982", "3.8581730086158594", "1662260404"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6757", "0.13728717197229318", "2.012208635912469", "1662260404"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6757", "0.19279108846245982", "3.8581730086158594", "1662260404"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6758", "0.13705858715779418", "2.0117740787543825", "1662264016"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6758", "0.1924729725826118", "3.857586229183552", "1662264016"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6758", "0.13705858715779418", "2.0117740787543825", "1662264016"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6758", "0.1924729725826118", "3.857586229183552", "1662264016"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6759", "0.13682620083688526", "2.0113337334765387", "1662267602"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6759", "0.19214902234935483", "3.856990576892322", "1662267602"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6759", "0.13682620083688526", "2.0113337334765387", "1662267602"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6759", "0.19214902234935483", "3.856990576892322", "1662267602"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6760", "0.13663157290438205", "2.0109645704282766", "1662271205"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6760", "0.19187783797956767", "3.856491469128868", "1662271205"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6760", "0.13663157290438205", "2.0109645704282766", "1662271205"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6760", "0.19187783797956767", "3.856491469128868", "1662271205"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6761", "0.1364477549276414", "2.0106157820638737", "1662274815"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6761", "0.1916217586561411", "3.8560199939448982", "1662274815"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6761", "0.1364477549276414", "2.0106157820638737", "1662274815"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6761", "0.1916217586561411", "3.8560199939448982", "1662274815"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6762", "0.13623088090335028", "2.010204519541773", "1662278402"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6762", "0.19131952952662226", "3.8554638783871025", "1662278402"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6762", "0.13623088090335028", "2.010204519541773", "1662278402"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6762", "0.19131952952662226", "3.8554638783871025", "1662278402"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6763", "0.13604686623518658", "2.0098558950661065", "1662282008"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6763", "0.19106296530132194", "3.854992217051593", "1662282008"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6763", "0.13604686623518658", "2.0098558950661065", "1662282008"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6763", "0.19106296530132194", "3.854992217051593", "1662282008"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6764", "0.13577436468855006", "2.009325683563345", "1662285626"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6764", "0.19068821089552918", "3.85428502635186", "1662285626"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6764", "0.13577436468855006", "2.009325683563345", "1662285626"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6764", "0.19068821089552918", "3.85428502635186", "1662285626"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6765", "0.13559216655821557", "2.008980517646028", "1662289201"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6765", "0.1904341606258675", "3.8538180121862395", "1662289201"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6765", "0.13559216655821557", "2.008980517646028", "1662289201"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6765", "0.1904341606258675", "3.8538180121862395", "1662289201"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6766", "0.13541103595078563", "2.0086373737371237", "1662292847"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6766", "0.19018159417552177", "3.853353726541428", "1662292847"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6766", "0.13541103595078563", "2.0086373737371237", "1662292847"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6766", "0.19018159417552177", "3.853353726541428", "1662292847"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6767", "0.13519186795816096", "2.008222255095295", "1662296405"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6767", "0.18987595059127174", "3.8527919843053184", "1662296405"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6767", "0.13519186795816096", "2.008222255095295", "1662296405"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6767", "0.18987595059127174", "3.8527919843053184", "1662296405"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6768", "0.13496585891880145", "2.007794073553404", "1662300011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6768", "0.1895607986303874", "3.852212630559835", "1662300011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6768", "0.13496585891880145", "2.007794073553404", "1662300011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6768", "0.1895607986303874", "3.852212630559835", "1662300011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6769", "0.13474076293270587", "2.0073676374553546", "1662303601"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6769", "0.18924690657288376", "3.8516356154556597", "1662303601"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6769", "0.13474076293270587", "2.0073676374553546", "1662303601"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6769", "0.18924690657288376", "3.8516356154556597", "1662303601"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6770", "0.1344863055776253", "2.006880860819289", "1662307201"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6770", "0.18889381731939162", "3.8509803738338033", "1662307201"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6770", "0.1344863055776253", "2.006880860819289", "1662307201"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6770", "0.18889381731939162", "3.8509803738338033", "1662307201"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6771", "0.1341745791763573", "2.0062768889616103", "1662310840"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6771", "0.18846409046354762", "3.850172865075658", "1662310840"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6771", "0.1341745791763573", "2.0062768889616103", "1662310840"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6771", "0.18846409046354762", "3.850172865075658", "1662310840"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6772", "0.13395206449181832", "2.005855369979526", "1662314416"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6772", "0.18815376174445156", "3.8496024425504407", "1662314416"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6772", "0.13395206449181832", "2.005855369979526", "1662314416"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6772", "0.18815376174445156", "3.8496024425504407", "1662314416"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6773", "0.13372501493782793", "2.005424448898353", "1662318006"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6773", "0.18783740297031168", "3.8490198757172744", "1662318006"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6773", "0.13372501493782793", "2.005424448898353", "1662318006"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6773", "0.18783740297031168", "3.8490198757172744", "1662318006"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6774", "0.13350022730090272", "2.004995858642918", "1662321609"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6774", "0.18752491840719998", "3.8484418740210407", "1662321609"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6774", "0.13350022730090272", "2.004995858642918", "1662321609"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6774", "0.18752491840719998", "3.8484418740210407", "1662321609"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6775", "0.13331954210684577", "2.0046528364914336", "1662325223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6775", "0.18727318578434424", "3.847978190987579", "1662325223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6775", "0.13331954210684577", "2.0046528364914336", "1662325223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6775", "0.18727318578434424", "3.847978190987579", "1662325223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6776", "0.1331378853132237", "2.0043077713168063", "1662328803"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6776", "0.1870201684977933", "3.847511882841277", "1662328803"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6776", "0.1331378853132237", "2.0043077713168063", "1662328803"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6776", "0.1870201684977933", "3.847511882841277", "1662328803"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6777", "0.13291687045501102", "2.003888733315394", "1662332404"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6777", "0.18671203173003037", "3.8469450270447108", "1662332404"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6777", "0.13291687045501102", "2.003888733315394", "1662332404"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6777", "0.18671203173003037", "3.8469450270447108", "1662332404"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6778", "0.1327096648070712", "2.003492322466448", "1662336002"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6778", "0.18642446344740407", "3.8464113553787227", "1662336002"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6778", "0.1327096648070712", "2.003492322466448", "1662336002"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6778", "0.18642446344740407", "3.8464113553787227", "1662336002"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6779", "0.132533385593999", "2.003158285921514", "1662339606"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6779", "0.18617861765460297", "3.8459593353386103", "1662339606"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6779", "0.132533385593999", "2.003158285921514", "1662339606"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6779", "0.18617861765460297", "3.8459593353386103", "1662339606"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6780", "0.13231961939008782", "2.0027534492464043", "1662343200"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6780", "0.18588039749019347", "3.845411327554201", "1662343200"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6780", "0.13231961939008782", "2.0027534492464043", "1662343200"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6780", "0.18588039749019347", "3.845411327554201", "1662343200"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6781", "0.13210078124296548", "2.0023385486822147", "1662346817"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6781", "0.1855752651461521", "3.844850019702248", "1662346817"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6781", "0.13210078124296548", "2.0023385486822147", "1662346817"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6781", "0.1855752651461521", "3.844850019702248", "1662346817"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6782", "0.13188864305175804", "2.0019366038742854", "1662350400"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6782", "0.1852793738500078", "3.844306044702905", "1662350400"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6782", "0.13188864305175804", "2.0019366038742854", "1662350400"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6782", "0.1852793738500078", "3.844306044702905", "1662350400"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6783", "0.131715946798215", "2.00160923347514", "1662354017"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6783", "0.18503855000560132", "3.843863102458514", "1662354017"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6783", "0.131715946798215", "2.00160923347514", "1662354017"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6783", "0.18503855000560132", "3.843863102458514", "1662354017"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6784", "0.1315426905964545", "2.0012806385928563", "1662357603"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6784", "0.18479700152012946", "3.8434186151037064", "1662357603"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6784", "0.1315426905964545", "2.0012806385928563", "1662357603"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6784", "0.18479700152012946", "3.8434186151037064", "1662357603"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6785", "0.13132892663210022", "2.000875570962639", "1662361214"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6785", "0.1844988407473412", "3.8428704171382813", "1662361214"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6785", "0.13132892663210022", "2.000875570962639", "1662361214"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6785", "0.1844988407473412", "3.8428704171382813", "1662361214"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6786", "0.13114294894671416", "2.000521988936729", "1662364809"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6786", "0.18423986525954497", "3.842392737954863", "1662364809"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6786", "0.13114294894671416", "2.000521988936729", "1662364809"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6786", "0.18423986525954497", "3.842392737954863", "1662364809"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6787", "0.1309771471188895", "2.0002078695059553", "1662368402"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6787", "0.18400856994704", "3.8419675641897264", "1662368402"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6787", "0.1309771471188895", "2.0002078695059553", "1662368402"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6787", "0.18400856994704", "3.8419675641897264", "1662368402"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6788", "0.1307873475235821", "1.9998475412844476", "1662372013"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6788", "0.1837440690976415", "3.8414803784002833", "1662372013"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6788", "0.1307873475235821", "1.9998475412844476", "1662372013"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6788", "0.1837440690976415", "3.8414803784002833", "1662372013"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6789", "0.13063121290637042", "1.999551413762431", "1662375611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6789", "0.18352637167884353", "3.841079779866987", "1662375611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6789", "0.13063121290637042", "1.999551413762431", "1662375611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6789", "0.18352637167884353", "3.841079779866987", "1662375611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6790", "0.1304141031813158", "1.9991392256410672", "1662379239"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6790", "0.18322380507876931", "3.8405224673024394", "1662379239"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6790", "0.1304141031813158", "1.9991392256410672", "1662379239"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6790", "0.18322380507876931", "3.8405224673024394", "1662379239"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6791", "0.13023311111487393", "1.998795631832869", "1662382811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6791", "0.1829715581764304", "3.84005787411032", "1662382811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6791", "0.13023311111487393", "1.998795631832869", "1662382811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6791", "0.1829715581764304", "3.84005787411032", "1662382811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6792", "0.13002823074351716", "1.9984073994364273", "1662386435"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6792", "0.18268574830137957", "3.8395323972381754", "1662386435"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6792", "0.13002823074351716", "1.9984073994364273", "1662386435"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6792", "0.18268574830137957", "3.8395323972381754", "1662386435"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6793", "0.12981904931871033", "1.9980097156816063", "1662390004"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6793", "0.18239441568631726", "3.838995064307706", "1662390004"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6793", "0.12981904931871033", "1.9980097156816063", "1662390004"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6793", "0.18239441568631726", "3.838995064307706", "1662390004"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6794", "0.12961903501579955", "1.9976308329015162", "1662393606"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6794", "0.18211533396804283", "3.8384821295191704", "1662393606"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6794", "0.12961903501579955", "1.9976308329015162", "1662393606"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6794", "0.18211533396804283", "3.8384821295191704", "1662393606"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6795", "0.12926638527540615", "1.996962621407467", "1662397203"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6795", "0.18162333665977923", "3.8375776182000996", "1662397203"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6795", "0.12926638527540615", "1.996962621407467", "1662397203"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6795", "0.18162333665977923", "3.8375776182000996", "1662397203"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6796", "0.12880143751397835", "1.9960684293501796", "1662400802"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6796", "0.18097954232967903", "3.8363767640830324", "1662400802"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6796", "0.12880143751397835", "1.9960684293501796", "1662400802"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6796", "0.18097954232967903", "3.8363767640830324", "1662400802"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6797", "0.12823799716937337", "1.9950001406033393", "1662404401"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6797", "0.1801936311135167", "3.8349310577044737", "1662404401"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6797", "0.12823799716937337", "1.9950001406033393", "1662404401"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6797", "0.1801936311135167", "3.8349310577044737", "1662404401"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6798", "0.1275533896469379", "1.993703342273332", "1662408005"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6798", "0.1792381924788661", "3.8331751225609394", "1662408005"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6798", "0.1275533896469379", "1.993703342273332", "1662408005"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6798", "0.1792381924788661", "3.8331751225609394", "1662408005"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6799", "0.1267057824545107", "1.9920964650127948", "1662411610"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6799", "0.178055666163782", "3.8310001346373284", "1662411610"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6799", "0.1267057824545107", "1.9920964650127948", "1662411610"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6799", "0.178055666163782", "3.8310001346373284", "1662411610"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6800", "0.12562109858951295", "1.990041491919752", "1662415209"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6800", "0.1765417295691738", "3.8282174037657426", "1662415209"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6800", "0.12562109858951295", "1.990041491919752", "1662415209"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6800", "0.1765417295691738", "3.8282174037657426", "1662415209"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6801", "0.12434263030671548", "1.9876185873122278", "1662418801"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6801", "0.17475739341532773", "3.8249366720911255", "1662418801"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6801", "0.12434263030671548", "1.9876185873122278", "1662418801"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6801", "0.17475739341532773", "3.8249366720911255", "1662418801"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6802", "0.12282817259662286", "1.9847398481090652", "1662422470"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6802", "0.1726465659644723", "3.821044470046649", "1662422470"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6802", "0.12282817259662286", "1.9847398481090652", "1662422470"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6802", "0.1726465659644723", "3.821044470046649", "1662422470"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6803", "0.12121127765910206", "1.9816768596875267", "1662426006"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6803", "0.1703887026708881", "3.8168949830194343", "1662426006"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6803", "0.12121127765910206", "1.9816768596875267", "1662426006"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6803", "0.1703887026708881", "3.8168949830194343", "1662426006"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6804", "0.11939983428742768", "1.978245139079138", "1662429602"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6804", "0.16785877565445226", "3.812245382196651", "1662429602"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6804", "0.11939983428742768", "1.978245139079138", "1662429602"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6804", "0.16785877565445226", "3.812245382196651", "1662429602"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6805", "0.11753208515767487", "1.9747079071976932", "1662433200"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6805", "0.16524926923562572", "3.8074511856126776", "1662433200"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6805", "0.11753208515767487", "1.9747079071976932", "1662433200"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6805", "0.16524926923562572", "3.8074511856126776", "1662433200"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6806", "0.1154457966066499", "1.9707541260604273", "1662436808"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6806", "0.1623348060110053", "3.8020933954843943", "1662436808"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6806", "0.1154457966066499", "1.9707541260604273", "1662436808"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6806", "0.1623348060110053", "3.8020933954843943", "1662436808"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6807", "0.11318483311760548", "1.9664713869239063", "1662440421"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6807", "0.15917482647051084", "3.796287181190615", "1662440421"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6807", "0.11318483311760548", "1.9664713869239063", "1662440421"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6807", "0.15917482647051084", "3.796287181190615", "1662440421"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6808", "0.11071632259591299", "1.9617931308484766", "1662444003"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6808", "0.15572477980910396", "3.789945116333428", "1662444003"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6808", "0.11071632259591299", "1.9617931308484766", "1662444003"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6808", "0.15572477980910396", "3.789945116333428", "1662444003"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6809", "0.10809527517327842", "1.9568282275365312", "1662447606"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6809", "0.1520596416094185", "3.7832111288652066", "1662447606"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6809", "0.10809527517327842", "1.9568282275365312", "1662447606"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6809", "0.1520596416094185", "3.7832111288652066", "1662447606"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6810", "0.10549839587319368", "1.9519074947017852", "1662451203"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6810", "0.148427874328969", "3.776536627213189", "1662451203"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6810", "0.10549839587319368", "1.9519074947017852", "1662451203"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6810", "0.148427874328969", "3.776536627213189", "1662451203"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6811", "0.10281476598992105", "1.9468238532607147", "1662454833"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6811", "0.14467317310348665", "3.769638421378306", "1662454833"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6811", "0.10281476598992105", "1.9468238532607147", "1662454833"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6811", "0.14467317310348665", "3.769638421378306", "1662454833"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6812", "0.10010658459657695", "1.9416936310785544", "1662458401"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6812", "0.14088304481955433", "3.7626753393632923", "1662458401"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6812", "0.10010658459657695", "1.9416936310785544", "1662458401"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6812", "0.14088304481955433", "3.7626753393632923", "1662458401"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6813", "0.09381116430827001", "1.929767381260753", "1662462008"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6813", "0.13206844929052214", "3.74648194032932", "1662462008"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6813", "0.09381116430827001", "1.929767381260753", "1662462008"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6813", "0.13206844929052214", "3.74648194032932", "1662462008"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6814", "0.08555791851032332", "1.914131207869571", "1662465606"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6814", "0.12050378104500696", "3.7252376423872517", "1662465606"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6814", "0.08555791851032332", "1.914131207869571", "1662465606"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6814", "0.12050378104500696", "3.7252376423872517", "1662465606"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6815", "0.07649823662844171", "1.896967008321892", "1662469204"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6815", "0.10779713806799476", "3.701898636186779", "1662469204"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6815", "0.07649823662844171", "1.896967008321892", "1662469204"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6815", "0.10779713806799476", "3.701898636186779", "1662469204"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6816", "0.06706579989629455", "1.8790953256529523", "1662472812"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6816", "0.09455464775410162", "3.6775775071779457", "1662472812"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6816", "0.06706579989629455", "1.8790953256529523", "1662472812"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6816", "0.09455464775410162", "3.6775775071779457", "1662472812"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6817", "0.058675895249351115", "1.8631983122021845", "1662476407"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6817", "0.08276435139361873", "3.6559259227782075", "1662476407"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6817", "0.058675895249351115", "1.8631983122021845", "1662476407"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6817", "0.08276435139361873", "3.6559259227782075", "1662476407"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6818", "0.052359381863436666", "1.8512297084121545", "1662480015"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6818", "0.0738805502633038", "3.6396135705024335", "1662480015"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6818", "0.052359381863436666", "1.8512297084121545", "1662480015"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6818", "0.0738805502633038", "3.6396135705024335", "1662480015"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6819", "0.045789103219240394", "1.8387792912507122", "1662483621"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6819", "0.06463349240381093", "3.6226348092214122", "1662483621"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6819", "0.045789103219240394", "1.8387792912507122", "1662483621"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6819", "0.06463349240381093", "3.6226348092214122", "1662483621"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6820", "0.039078012013093896", "1.826061799988527", "1662487218"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6820", "0.05518123752784911", "3.6052809600353237", "1662487218"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6820", "0.039078012013093896", "1.826061799988527", "1662487218"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6820", "0.05518123752784911", "3.6052809600353237", "1662487218"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6821", "0.03297304780659001", "1.814492709104825", "1662490801"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6821", "0.04657648561728873", "3.589484573293276", "1662490801"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6821", "0.03297304780659001", "1.814492709104825", "1662490801"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6821", "0.04657648561728873", "3.589484573293276", "1662490801"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6822", "0.028352014485625146", "1.8057354256497733", "1662494400"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6822", "0.040059394194133895", "3.577521410255062", "1662494400"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6822", "0.028352014485625146", "1.8057354256497733", "1662494400"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6822", "0.040059394194133895", "3.577521410255062", "1662494400"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6823", "0.02436415239565182", "1.7981772814278834", "1662498019"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6823", "0.03443277086413074", "3.5671926055762655", "1662498019"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6823", "0.02436415239565182", "1.7981772814278834", "1662498019"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6823", "0.03443277086413074", "3.5671926055762655", "1662498019"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6824", "0.020880002333663363", "1.7915742047763188", "1662501600"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6824", "0.02951459608982802", "3.5581654086518246", "1662501600"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6824", "0.020880002333663363", "1.7915742047763188", "1662501600"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6824", "0.02951459608982802", "3.5581654086518246", "1662501600"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6825", "0.017769905277862694", "1.7856797758477343", "1662505227"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6825", "0.025122845153431533", "3.5501045967413196", "1662505227"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6825", "0.017769905277862694", "1.7856797758477343", "1662505227"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6825", "0.025122845153431533", "3.5501045967413196", "1662505227"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6826", "0.015146421047531467", "1.7807076097514396", "1662508802"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6826", "0.021417003902606837", "3.543303090523033", "1662508802"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6826", "0.015146421047531467", "1.7807076097514396", "1662508802"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6826", "0.021417003902606837", "3.543303090523033", "1662508802"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6827", "0.013967489322081021", "1.7784732363093905", "1662512408"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6827", "0.0197513187532846", "3.540246083877262", "1662512408"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6827", "0.013967489322081021", "1.7784732363093905", "1662512408"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6827", "0.0197513187532846", "3.540246083877262", "1662512408"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6828", "0.013411841830462994", "1.7774200925061425", "1662516001"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6828", "0.018966196714744588", "3.5388051161776493", "1662516001"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6828", "0.013411841830462994", "1.7774200925061425", "1662516001"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6828", "0.018966196714744588", "3.5388051161776493", "1662516001"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6829", "0.0133818252051171", "1.7773632030888482", "1662519613"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6829", "0.01892378132195936", "3.538727273036098", "1662519613"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6829", "0.0133818252051171", "1.7773632030888482", "1662519613"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6829", "0.01892378132195936", "3.538727273036098", "1662519613"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6830", "0.013342824707073512", "1.7772892552566806", "1662523211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6830", "0.018868682299782023", "3.5386261107476695", "1662523211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6830", "0.013342824707073512", "1.7772892552566806", "1662523211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6830", "0.018868682299782023", "3.5386261107476695", "1662523211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6831", "0.013289829722616137", "1.7771885685666262", "1662526828"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6831", "0.018793885281318434", "3.5384885146723573", "1662526828"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6831", "0.013289829722616137", "1.7771885685666262", "1662526828"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6831", "0.018793885281318434", "3.5384885146723573", "1662526828"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6832", "0.01325180196838458", "1.7771164966834194", "1662530405"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6832", "0.018740148602586014", "3.538389895250016", "1662530405"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6832", "0.01325180196838458", "1.7771164966834194", "1662530405"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6832", "0.018740148602586014", "3.538389895250016", "1662530405"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6833", "0.013224793744092004", "1.7770652211072253", "1662534013"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6833", "0.01870201518196675", "3.538319795476357", "1662534013"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6833", "0.013224793744092004", "1.7770652211072253", "1662534013"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6833", "0.01870201518196675", "3.538319795476357", "1662534013"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6834", "0.013188100294606443", "1.7769956782724425", "1662537625"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6834", "0.01865016353128815", "3.5382246359149607", "1662537625"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6834", "0.013188100294606443", "1.7769956782724425", "1662537625"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6834", "0.01865016353128815", "3.5382246359149607", "1662537625"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6835", "0.013160978491643213", "1.776944271628197", "1662541232"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6835", "0.018611839037046534", "3.5381542960742283", "1662541232"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6835", "0.013160978491643213", "1.776944271628197", "1662541232"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6835", "0.018611839037046534", "3.5381542960742283", "1662541232"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6836", "0.01313473151901531", "1.7768945273472077", "1662544838"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6836", "0.0185747490927457", "3.538086227656229", "1662544838"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6836", "0.01313473151901531", "1.7768945273472077", "1662544838"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6836", "0.0185747490927457", "3.538086227656229", "1662544838"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6837", "0.013102607717635413", "1.7768336450607354", "1662548402"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6837", "0.01852935437399196", "3.5380029181312986", "1662548402"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6837", "0.013102607717635413", "1.7768336450607354", "1662548402"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6837", "0.01852935437399196", "3.5380029181312986", "1662548402"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6838", "0.013073308945033424", "1.7767781168683157", "1662552002"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6838", "0.018487951610021182", "3.5379269347689934", "1662552002"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6838", "0.013073308945033424", "1.7767781168683157", "1662552002"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6838", "0.018487951610021182", "3.5379269347689934", "1662552002"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6839", "0.013041303936566072", "1.776717289707872", "1662555609"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6839", "0.01844278560290489", "3.5378438218931936", "1662555609"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6839", "0.013041303936566072", "1.776717289707872", "1662555609"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6839", "0.01844278560290489", "3.5378438218931936", "1662555609"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6840", "0.012984441685450479", "1.7766094592681403", "1662559208"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6840", "0.018362454167467523", "3.53769631337382", "1662559208"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6840", "0.012984441685450479", "1.7766094592681403", "1662559208"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6840", "0.018362454167467523", "3.53769631337382", "1662559208"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6841", "0.012935810060708965", "1.7765172895616521", "1662562811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6841", "0.018293731091455837", "3.5375701899160363", "1662562811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6841", "0.012935810060708965", "1.7765172895616521", "1662562811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6841", "0.018293731091455837", "3.5375701899160363", "1662562811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6842", "0.012891079646390708", "1.77643244500226", "1662566401"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6842", "0.018230545315540563", "3.537454138692494", "1662566401"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6842", "0.012891079646390708", "1.77643244500226", "1662566401"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6842", "0.018230545315540563", "3.537454138692494", "1662566401"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6843", "0.012863009987258629", "1.7763791861569702", "1662570000"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6843", "0.018190900092159838", "3.53738130216896", "1662570000"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6843", "0.012863009987258629", "1.7763791861569702", "1662570000"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6843", "0.018190900092159838", "3.53738130216896", "1662570000"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6844", "0.01281407469051753", "1.7762864432738772", "1662573607"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6844", "0.018121746057682894", "3.537254391174765", "1662573607"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6844", "0.01281407469051753", "1.7762864432738772", "1662573607"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6844", "0.018121746057682894", "3.537254391174765", "1662573607"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6845", "0.012661715571495482", "1.7759976898755256", "1662577213"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6845", "0.017906433827873717", "3.536859252160155", "1662577213"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6845", "0.012661715571495482", "1.7759976898755256", "1662577213"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6845", "0.017906433827873717", "3.536859252160155", "1662577213"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6846", "0.012573815204960934", "1.7758286676554484", "1662580808"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6846", "0.017783087016671875", "3.5366296949313156", "1662580808"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6846", "0.012573815204960934", "1.7758286676554484", "1662580808"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6846", "0.017783087016671875", "3.5366296949313156", "1662580808"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6847", "0.012577444418760467", "1.7758355451066177", "1662584403"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6847", "0.01778821612833659", "3.5366391068942624", "1662584403"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6847", "0.012577444418760467", "1.7758355451066177", "1662584403"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6847", "0.01778821612833659", "3.5366391068942624", "1662584403"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6848", "0.012551288701319453", "1.7757854116168308", "1662588002"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6848", "0.017751454789695708", "3.536570904196452", "1662588002"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6848", "0.012551288701319453", "1.7757854116168308", "1662588002"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6848", "0.017751454789695708", "3.536570904196452", "1662588002"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6849", "0.012514415257059217", "1.7757151798429367", "1662591610"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6849", "0.01769946976484284", "3.5364750443726813", "1662591610"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6849", "0.012514415257059217", "1.7757151798429367", "1662591610"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6849", "0.01769946976484284", "3.5364750443726813", "1662591610"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6850", "0.012480239008255142", "1.775650383440627", "1662595200"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6850", "0.01765117990491701", "3.536386390772489", "1662595200"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6850", "0.012480239008255142", "1.775650383440627", "1662595200"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6850", "0.01765117990491701", "3.536386390772489", "1662595200"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6851", "0.012457646990141178", "1.7756075107478424", "1662598802"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6851", "0.017619272223394353", "3.5363277609186126", "1662598802"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6851", "0.012457646990141178", "1.7756075107478424", "1662598802"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6851", "0.017619272223394353", "3.5363277609186126", "1662598802"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6852", "0.012442986874816223", "1.7755797306291132", "1662602405"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6852", "0.017598552585821468", "3.5362897418273795", "1662602405"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6852", "0.012442986874816223", "1.7755797306291132", "1662602405"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6852", "0.017598552585821468", "3.5362897418273795", "1662602405"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6853", "0.012303491293960024", "1.7753153864162021", "1662606004"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6853", "0.017401399755732724", "3.5359279705156776", "1662606004"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6853", "0.012303491293960024", "1.7753153864162021", "1662606004"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6853", "0.017401399755732724", "3.5359279705156776", "1662606004"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6854", "0.012268558302048297", "1.7752491503309433", "1662609624"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6854", "0.0173520412038196", "3.535837348803151", "1662609624"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6854", "0.012268558302048297", "1.7752491503309433", "1662609624"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6854", "0.0173520412038196", "3.535837348803151", "1662609624"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6855", "0.012243096954741465", "1.7752008619934372", "1662613212"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6855", "0.017316069557797853", "3.535771290434313", "1662613212"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6855", "0.012243096954741465", "1.7752008619934372", "1662613212"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6855", "0.017316069557797853", "3.535771290434313", "1662613212"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6856", "0.01221346940414007", "1.7751439437807655", "1662616825"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6856", "0.017274473736407697", "3.535693947023835", "1662616825"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6856", "0.01221346940414007", "1.7751439437807655", "1662616825"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6856", "0.017274473736407697", "3.535693947023835", "1662616825"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6857", "0.012188429562011755", "1.7750964574148675", "1662620407"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6857", "0.017239096436194094", "3.5356289835522694", "1662620407"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6857", "0.012188429562011755", "1.7750964574148675", "1662620407"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6857", "0.017239096436194094", "3.5356289835522694", "1662620407"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6858", "0.01216261330364862", "1.7750473427489033", "1662624004"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6858", "0.01720267812000815", "3.5355619037597266", "1662624004"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6858", "0.01216261330364862", "1.7750473427489033", "1662624004"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6858", "0.01720267812000815", "3.5355619037597266", "1662624004"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6859", "0.01213842978503988", "1.775001518380627", "1662627613"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6859", "0.017168496790660927", "3.5354991864691803", "1662627613"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6859", "0.01213842978503988", "1.775001518380627", "1662627613"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6859", "0.017168496790660927", "3.5354991864691803", "1662627613"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6860", "0.012114863313040472", "1.7749568534639095", "1662631213"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6860", "0.017135191022040395", "3.535438062898966", "1662631213"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6860", "0.012114863313040472", "1.7749568534639095", "1662631213"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6860", "0.017135191022040395", "3.535438062898966", "1662631213"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6861", "0.012091573985682398", "1.774912723467675", "1662634819"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6861", "0.017102273372172253", "3.5353776643170276", "1662634819"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6861", "0.012091573985682398", "1.774912723467675", "1662634819"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6861", "0.017102273372172253", "3.5353776643170276", "1662634819"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6862", "0.01206377648345373", "1.7748599448035156", "1662638409"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6862", "0.017063021872893217", "3.5353055046021145", "1662638409"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6862", "0.01206377648345373", "1.7748599448035156", "1662638409"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6862", "0.017063021872893217", "3.5353055046021145", "1662638409"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6863", "0.012037324378924335", "1.7748097677256083", "1662642006"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6863", "0.017025653091459893", "3.535236867996085", "1662642006"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6863", "0.012037324378924335", "1.7748097677256083", "1662642006"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6863", "0.017025653091459893", "3.535236867996085", "1662642006"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6864", "0.012011921528108286", "1.7747616254466132", "1662645613"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6864", "0.016989750491545094", "3.53517098281921", "1662645613"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6864", "0.012011921528108286", "1.7747616254466132", "1662645613"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6864", "0.016989750491545094", "3.53517098281921", "1662645613"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6865", "0.011986057838139193", "1.7747121450279877", "1662649207"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6865", "0.01695336355490863", "3.5351035986108332", "1662649207"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6865", "0.011986057838139193", "1.7747121450279877", "1662649207"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6865", "0.01695336355490863", "3.5351035986108332", "1662649207"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6866", "0.011956719794432646", "1.7746544375275977", "1662652802"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6866", "0.016912656512614317", "3.5350261296293057", "1662652802"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6866", "0.011956719794432646", "1.7746544375275977", "1662652802"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6866", "0.016912656512614317", "3.5350261296293057", "1662652802"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6867", "0.01199052771731234", "1.7747184655844284", "1662656413"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6867", "0.016960454040979803", "3.5351137866015203", "1662656413"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6867", "0.01199052771731234", "1.7747184655844284", "1662656413"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6867", "0.016960454040979803", "3.5351137866015203", "1662656413"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6868", "0.01202563016149661", "1.7747849350690155", "1662660011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6868", "0.017010085239933803", "3.5352047930021695", "1662660011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6868", "0.01202563016149661", "1.7747849350690155", "1662660011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6868", "0.017010085239933803", "3.5352047930021695", "1662660011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6869", "0.012060370927237643", "1.7748506356992946", "1662663625"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6869", "0.017059235051327448", "3.5352948065213186", "1662663625"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6869", "0.012060370927237643", "1.7748506356992946", "1662663625"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6869", "0.017059235051327448", "3.5352948065213186", "1662663625"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6870", "0.012033906629376987", "1.774800446039277", "1662667205"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6870", "0.01702184522544123", "3.535226145110747", "1662667205"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6870", "0.012033906629376987", "1.774800446039277", "1662667205"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6870", "0.01702184522544123", "3.535226145110747", "1662667205"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6871", "0.012044445812152279", "1.774820413330204", "1662670807"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6871", "0.017036742723650862", "3.53525347568048", "1662670807"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6871", "0.012044445812152279", "1.774820413330204", "1662670807"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6871", "0.017036742723650862", "3.53525347568048", "1662670807"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6872", "0.012054988537279957", "1.7748403876929983", "1662674403"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6872", "0.01705164508120714", "3.5352808156436724", "1662674403"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6872", "0.012054988537279957", "1.7748403876929983", "1662674403"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6872", "0.01705164508120714", "3.5352808156436724", "1662674403"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6873", "0.012063358276741643", "1.7748562450923406", "1662678004"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6873", "0.017063475866413696", "3.5353025204824635", "1662678004"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6873", "0.012063358276741643", "1.7748562450923406", "1662678004"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6873", "0.017063475866413696", "3.5353025204824635", "1662678004"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6874", "0.012033442792487244", "1.7747995642579977", "1662681625"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6874", "0.01702119065628084", "3.5352249403073843", "1662681625"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6874", "0.012033442792487244", "1.7747995642579977", "1662681625"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6874", "0.01702119065628084", "3.5352249403073843", "1662681625"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6875", "0.012053883977285485", "1.7748382895297217", "1662685210"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6875", "0.017050085723477257", "3.53527794767751", "1662685210"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6875", "0.012053883977285485", "1.7748382895297217", "1662685210"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6875", "0.017050085723477257", "3.53527794767751", "1662685210"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6876", "0.012060387850348015", "1.7748505050546595", "1662688824"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6876", "0.01705931745487859", "3.535294744070957", "1662688824"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6876", "0.012060387850348015", "1.7748505050546595", "1662688824"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6876", "0.01705931745487859", "3.535294744070957", "1662688824"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6877", "0.011976481673198659", "1.7746913407321945", "1662692420"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6877", "0.016940783924629936", "3.535077026086218", "1662692420"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6877", "0.011976481673198659", "1.7746913407321945", "1662692420"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6877", "0.016940783924629936", "3.535077026086218", "1662692420"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6878", "0.011888254419943322", "1.774524179572524", "1662696002"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6878", "0.01681607293066535", "3.53484822460608", "1662696002"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6878", "0.011888254419943322", "1.774524179572524", "1662696002"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6878", "0.01681607293066535", "3.53484822460608", "1662696002"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6879", "0.011809217721114644", "1.7743739559622864", "1662699600"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6879", "0.016704522765385223", "3.534642944682207", "1662699600"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6879", "0.011809217721114644", "1.7743739559622864", "1662699600"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6879", "0.016704522765385223", "3.534642944682207", "1662699600"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6880", "0.011740425983864244", "1.7742436100887697", "1662703201"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6880", "0.016607285539457322", "3.534464537364615", "1662703201"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6880", "0.011740425983864244", "1.7742436100887697", "1662703201"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6880", "0.016607285539457322", "3.534464537364615", "1662703201"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6881", "0.011636466882899819", "1.7740466075846526", "1662706801"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6881", "0.016460345573815673", "3.5341949089687974", "1662706801"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6881", "0.011636466882899819", "1.7740466075846526", "1662706801"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6881", "0.016460345573815673", "3.5341949089687974", "1662706801"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6882", "0.011504644014086199", "1.7737968408478646", "1662710402"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6882", "0.016274005767304145", "3.5338530337024268", "1662710402"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6882", "0.011504644014086199", "1.7737968408478646", "1662710402"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6882", "0.016274005767304145", "3.5338530337024268", "1662710402"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6883", "0.011360034183460007", "1.7735228711297704", "1662714023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6883", "0.01606957864476374", "3.533478007183602", "1662714023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6883", "0.011360034183460007", "1.7735228711297704", "1662714023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6883", "0.01606957864476374", "3.533478007183602", "1662714023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6884", "0.01120257812230642", "1.7732243858996992", "1662717618"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6884", "0.0158470514567893", "3.533069543359356", "1662717618"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6884", "0.01120257812230642", "1.7732243858996992", "1662717618"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6884", "0.0158470514567893", "3.533069543359356", "1662717618"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6885", "0.011120498350300542", "1.773068883172756", "1662721227"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6885", "0.015731015677988198", "3.5328566752927837", "1662721227"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6885", "0.011120498350300542", "1.773068883172756", "1662721227"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6885", "0.015731015677988198", "3.5328566752927837", "1662721227"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6886", "0.010944727199314993", "1.7727358415679149", "1662724800"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6886", "0.015482538624357898", "3.5324007949091425", "1662724800"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6886", "0.010944727199314993", "1.7727358415679149", "1662724800"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6886", "0.015482538624357898", "3.5324007949091425", "1662724800"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6887", "0.010812001907106458", "1.772484333525892", "1662728420"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6887", "0.015294919367737284", "3.5320565352035596", "1662728420"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6887", "0.010812001907106458", "1.772484333525892", "1662728420"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6887", "0.015294919367737284", "3.5320565352035596", "1662728420"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6888", "0.010691611363048704", "1.7722562399599844", "1662732002"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6888", "0.015124719258773497", "3.531744291810475", "1662732002"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6888", "0.010691611363048704", "1.7722562399599844", "1662732002"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6888", "0.015124719258773497", "3.531744291810475", "1662732002"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6889", "0.010578145596037352", "1.7720412409539752", "1662735600"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6889", "0.014964315811195634", "3.531449988548741", "1662735600"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6889", "0.010578145596037352", "1.7720412409539752", "1662735600"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6889", "0.014964315811195634", "3.531449988548741", "1662735600"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6890", "0.010467719890287535", "1.7718320365281903", "1662739221"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6890", "0.01480819570624841", "3.5311635896679747", "1662739221"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6890", "0.010467719890287535", "1.7718320365281903", "1662739221"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6890", "0.01480819570624841", "3.5311635896679747", "1662739221"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6891", "0.010293550306715785", "1.7715016735265616", "1662742802"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6891", "0.014562091849832624", "3.53071160124817", "1662742802"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6891", "0.010293550306715785", "1.7715016735265616", "1662742802"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6891", "0.014562091849832624", "3.53071160124817", "1662742802"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6892", "0.010113722680541594", "1.771160991495865", "1662746437"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6892", "0.014307839475840687", "3.530245191666156", "1662746437"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6892", "0.010113722680541594", "1.771160991495865", "1662746437"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6892", "0.014307839475840687", "3.530245191666156", "1662746437"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6893", "0.009937695659525373", "1.7708275093085575", "1662750018"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6893", "0.014058955627176881", "3.5297886312664715", "1662750018"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6893", "0.009937695659525373", "1.7708275093085575", "1662750018"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6893", "0.014058955627176881", "3.5297886312664715", "1662750018"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6894", "0.00982124000280522", "1.7706068610351509", "1662753603"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6894", "0.013894305178753964", "3.5294865609579014", "1662753603"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6894", "0.00982124000280522", "1.7706068610351509", "1662753603"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6894", "0.013894305178753964", "3.5294865609579014", "1662753603"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6895", "0.009810235299482384", "1.770586003845469", "1662757207"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6895", "0.013878748470782262", "3.529458011738449", "1662757207"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6895", "0.009810235299482384", "1.770586003845469", "1662757207"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6895", "0.013878748470782262", "3.529458011738449", "1662757207"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6896", "0.00978798019889411", "1.7705436025233987", "1662760804"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6896", "0.013847367139391198", "3.529400131028064", "1662760804"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6896", "0.00978798019889411", "1.7705436025233987", "1662760804"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6896", "0.013847367139391198", "3.529400131028064", "1662760804"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6897", "0.009765827661577471", "1.7705016317678002", "1662764400"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6897", "0.013816045894726063", "3.5293426707953564", "1662764400"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6897", "0.009765827661577471", "1.7705016317678002", "1662764400"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6897", "0.013816045894726063", "3.5293426707953564", "1662764400"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6898", "0.009740846185243004", "1.7704542556094238", "1662768018"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6898", "0.013780741129727148", "3.5292778427326295", "1662768018"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6898", "0.009740846185243004", "1.7704542556094238", "1662768018"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6898", "0.013780741129727148", "3.5292778427326295", "1662768018"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6899", "0.009715185301614542", "1.7704056419691137", "1662771611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6899", "0.013744457785023902", "3.529211284768287", "1662771611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6899", "0.009715185301614542", "1.7704056419691137", "1662771611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6899", "0.013744457785023902", "3.529211284768287", "1662771611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6900", "0.00968487294235783", "1.7703478511125623", "1662775212"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6900", "0.013701728453641388", "3.5291324228698984", "1662775212"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6900", "0.00968487294235783", "1.7703478511125623", "1662775212"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6900", "0.013701728453641388", "3.5291324228698984", "1662775212"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6901", "0.009663444387533074", "1.7703071257443488", "1662778810"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6901", "0.013671475826252333", "3.529076757327527", "1662778810"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6901", "0.009663444387533074", "1.7703071257443488", "1662778810"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6901", "0.013671475826252333", "3.529076757327527", "1662778810"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6902", "0.00966013138201547", "1.7703008503851174", "1662782427"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6902", "0.013666790984130182", "3.5290681648197917", "1662782427"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6902", "0.00966013138201547", "1.7703008503851174", "1662782427"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6902", "0.013666790984130182", "3.5290681648197917", "1662782427"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6903", "0.009630649786011703", "1.7702449574194676", "1662786004"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6903", "0.013625119685487972", "3.528991669339678", "1662786004"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6903", "0.009630649786011703", "1.7702449574194676", "1662786004"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6903", "0.013625119685487972", "3.528991669339678", "1662786004"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6904", "0.00961161798724652", "1.7702089033766855", "1662789615"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6904", "0.01359820886496154", "3.528942305727779", "1662789615"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6904", "0.00961161798724652", "1.7702089033766855", "1662789615"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6904", "0.01359820886496154", "3.528942305727779", "1662789615"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6905", "0.009592612009209394", "1.7701728982446747", "1662793208"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6905", "0.013571334496721682", "3.5288930089930037", "1662793208"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6905", "0.009592612009209394", "1.7701728982446747", "1662793208"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6905", "0.013571334496721682", "3.5288930089930037", "1662793208"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6906", "0.009558200880558332", "1.770107709416471", "1662796851"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6906", "0.013522677166623844", "3.5288037549235063", "1662796851"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6906", "0.009558200880558332", "1.770107709416471", "1662796851"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6906", "0.013522677166623844", "3.5288037549235063", "1662796851"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6907", "0.009514320178970994", "1.7700245169261726", "1662800421"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6907", "0.013460652702300187", "3.528689896509262", "1662800421"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6907", "0.009514320178970994", "1.7700245169261726", "1662800421"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6907", "0.013460652702300187", "3.528689896509262", "1662800421"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6908", "0.009468823617565852", "1.7699383279914227", "1662804002"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6908", "0.013396319849281154", "3.5285718887278996", "1662804002"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6908", "0.009468823617565852", "1.7699383279914227", "1662804002"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6908", "0.013396319849281154", "3.5285718887278996", "1662804002"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6909", "0.009424007908686577", "1.7698534173982106", "1662807648"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6909", "0.013332953517086688", "3.5284556389000605", "1662807648"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6909", "0.009424007908686577", "1.7698534173982106", "1662807648"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6909", "0.013332953517086688", "3.5284556389000605", "1662807648"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6910", "0.009408177415910286", "1.7698234280311025", "1662811201"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6910", "0.013310568752699849", "3.5284145778829665", "1662811201"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6910", "0.009408177415910286", "1.7698234280311025", "1662811201"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6910", "0.013310568752699849", "3.5284145778829665", "1662811201"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6911", "0.009389126050762493", "1.769787337022829", "1662814827"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6911", "0.013283629530358622", "3.528365162502973", "1662814827"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6911", "0.009389126050762493", "1.769787337022829", "1662814827"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6911", "0.013283629530358622", "3.528365162502973", "1662814827"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6912", "0.009370153353016808", "1.769751395038222", "1662818448"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6912", "0.013256801488249528", "3.528315951075227", "1662818448"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6912", "0.009370153353016808", "1.769751395038222", "1662818448"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6912", "0.013256801488249528", "3.528315951075227", "1662818448"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6913", "0.009273749702417785", "1.7695687633849309", "1662822000"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6913", "0.01312048396972865", "3.528065894995171", "1662822000"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6913", "0.009273749702417785", "1.7695687633849309", "1662822000"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6913", "0.01312048396972865", "3.528065894995171", "1662822000"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6914", "0.009214929252876924", "1.7694572780916842", "1662825614"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6914", "0.013037328463336346", "3.5279132880106188", "1662825614"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6914", "0.009214929252876924", "1.7694572780916842", "1662825614"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6914", "0.013037328463336346", "3.5279132880106188", "1662825614"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6915", "0.009196299180623842", "1.7694218960080736", "1662829227"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6915", "0.013011016386316758", "3.527864906090121", "1662829227"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6915", "0.009196299180623842", "1.7694218960080736", "1662829227"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6915", "0.013011016386316758", "3.527864906090121", "1662829227"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6916", "0.009178641038911303", "1.7693883721171908", "1662832801"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6916", "0.012986072536775885", "3.527819056227551", "1662832801"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6916", "0.009178641038911303", "1.7693883721171908", "1662832801"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6916", "0.012986072536775885", "3.527819056227551", "1662832801"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6917", "0.009167484216054051", "1.7693667989600719", "1662836403"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6917", "0.012970453138973284", "3.5277898305849997", "1662836403"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6917", "0.009167484216054051", "1.7693667989600719", "1662836403"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6917", "0.012970453138973284", "3.5277898305849997", "1662836403"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6918", "0.009140498643195225", "1.7693156160111512", "1662840048"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6918", "0.01293231562977867", "3.5277197936328233", "1662840048"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6918", "0.009140498643195225", "1.7693156160111512", "1662840048"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6918", "0.01293231562977867", "3.5277197936328233", "1662840048"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6919", "0.009119247333819632", "1.7692751133204123", "1662843601"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6919", "0.012902352304992806", "3.527664510775904", "1662843601"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6919", "0.009119247333819632", "1.7692751133204123", "1662843601"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6919", "0.012902352304992806", "3.527664510775904", "1662843601"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6920", "0.009101129487969364", "1.7692407926229332", "1662847204"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6920", "0.012876731581458767", "3.527617516623956", "1662847204"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6920", "0.009101129487969364", "1.7692407926229332", "1662847204"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6920", "0.012876731581458767", "3.527617516623956", "1662847204"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6921", "0.009083132710828825", "1.7692067012624886", "1662850834"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6921", "0.01285128201084706", "3.5275708364149585", "1662850834"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6921", "0.009083132710828825", "1.7692067012624886", "1662850834"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6921", "0.01285128201084706", "3.5275708364149585", "1662850834"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6922", "0.009057932799006274", "1.7691589649713695", "1662854409"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6922", "0.012815646268756812", "3.5275054725043904", "1662854409"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6922", "0.009057932799006274", "1.7691589649713695", "1662854409"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6922", "0.012815646268756812", "3.5275054725043904", "1662854409"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6923", "0.009040565788100759", "1.769126029630485", "1662858003"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6923", "0.012791100403386137", "3.5274604014076254", "1662858003"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6923", "0.009040565788100759", "1.769126029630485", "1662858003"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6923", "0.012791100403386137", "3.5274604014076254", "1662858003"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6924", "0.009015069734750879", "1.7690775490731516", "1662861612"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6924", "0.012755111496439849", "3.5273941490796994", "1662861612"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6924", "0.009015069734750879", "1.7690775490731516", "1662861612"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6924", "0.012755111496439849", "3.5273941490796994", "1662861612"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6925", "0.008998739103880524", "1.7690465560451891", "1662865224"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6925", "0.012732038591881526", "3.527351752299159", "1662865224"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6925", "0.008998739103880524", "1.7690465560451891", "1662865224"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6925", "0.012732038591881526", "3.527351752299159", "1662865224"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6926", "0.008982742348531827", "1.769016238702167", "1662868806"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6926", "0.012709422272776523", "3.527310249769576", "1662868806"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6926", "0.008982742348531827", "1.769016238702167", "1662868806"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6926", "0.012709422272776523", "3.527310249769576", "1662868806"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6927", "0.008965470105150874", "1.7689834721729725", "1662872405"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6927", "0.012685014048645955", "3.527265417136763", "1662872405"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6927", "0.008965470105150874", "1.7689834721729725", "1662872405"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6927", "0.012685014048645955", "3.527265417136763", "1662872405"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6928", "0.008945903836867034", "1.7689461250555258", "1662876006"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6928", "0.012657446055176125", "3.52721448019316", "1662876006"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6928", "0.008945903836867034", "1.7689461250555258", "1662876006"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6928", "0.012657446055176125", "3.52721448019316", "1662876006"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6929", "0.008890552557277177", "1.768841163333721", "1662879638"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6929", "0.012579210547936816", "3.527070835290311", "1662879638"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6929", "0.008890552557277177", "1.768841163333721", "1662879638"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6929", "0.012579210547936816", "3.527070835290311", "1662879638"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6930", "0.008775261428866293", "1.7686222098962974", "1662883209"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6930", "0.012416370252783205", "3.5267714196021704", "1662883209"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6930", "0.008775261428866293", "1.7686222098962974", "1662883209"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6930", "0.012416370252783205", "3.5267714196021704", "1662883209"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6931", "0.008670420624736825", "1.7684236121218833", "1662886812"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6931", "0.01226810564932212", "3.526499474271786", "1662886812"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6931", "0.008670420624736825", "1.7684236121218833", "1662886812"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6931", "0.01226810564932212", "3.526499474271786", "1662886812"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6932", "0.008577134403480352", "1.7682467864331157", "1662890407"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6932", "0.012136221332522828", "3.5262574222034258", "1662890407"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6932", "0.008577134403480352", "1.7682467864331157", "1662890407"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6932", "0.012136221332522828", "3.5262574222034258", "1662890407"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6933", "0.00850445391579394", "1.7681090513783657", "1662894003"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6933", "0.012033456058635188", "3.5260688558215705", "1662894003"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6933", "0.00850445391579394", "1.7681090513783657", "1662894003"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6933", "0.012033456058635188", "3.5260688558215705", "1662894003"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6934", "0.008414294193456804", "1.7679382761932578", "1662897621"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6934", "0.011905944852424074", "3.525834993695939", "1662897621"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6934", "0.008414294193456804", "1.7679382761932578", "1662897621"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6934", "0.011905944852424074", "3.525834993695939", "1662897621"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6935", "0.008327239525083355", "1.7677733823264037", "1662901209"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6935", "0.011782823826084254", "3.5256091836277466", "1662901209"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6935", "0.008327239525083355", "1.7677733823264037", "1662901209"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6935", "0.011782823826084254", "3.5256091836277466", "1662901209"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6936", "0.00824187270775995", "1.767611655626644", "1662904815"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6936", "0.011662099421523032", "3.5253877302100642", "1662904815"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6936", "0.00824187270775995", "1.767611655626644", "1662904815"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6936", "0.011662099421523032", "3.5253877302100642", "1662904815"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6937", "0.00818216558153461", "1.7674985254587716", "1662908403"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6937", "0.011577667405270825", "3.525232830321476", "1662908403"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6937", "0.00818216558153461", "1.7674985254587716", "1662908403"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6937", "0.011577667405270825", "3.525232830321476", "1662908403"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6938", "0.008159404877395637", "1.7674554035857957", "1662912089"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6938", "0.01154547983680538", "3.525173783965976", "1662912089"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6938", "0.008159404877395637", "1.7674554035857957", "1662912089"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6938", "0.01154547983680538", "3.525173783965976", "1662912089"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6939", "0.008143096945745866", "1.767424181042181", "1662915607"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6939", "0.011522534502045378", "3.5251312639138432", "1662915607"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6939", "0.008143096945745866", "1.767424181042181", "1662915607"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6939", "0.011522534502045378", "3.5251312639138432", "1662915607"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6940", "0.008128858723903442", "1.7673971915317674", "1662919212"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6940", "0.01150240418146115", "3.525094317400314", "1662919212"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6940", "0.008128858723903442", "1.7673971915317674", "1662919212"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6940", "0.01150240418146115", "3.525094317400314", "1662919212"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6941", "0.00811248524878941", "1.7673661076806573", "1662922805"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6941", "0.011479271750580002", "3.5250517994101607", "1662922805"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6941", "0.00811248524878941", "1.7673661076806573", "1662922805"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6941", "0.011479271750580002", "3.5250517994101607", "1662922805"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6942", "0.00809448378091159", "1.7673320114005742", "1662926403"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6942", "0.011453811184518848", "3.5250051050707527", "1662926403"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6942", "0.00809448378091159", "1.7673320114005742", "1662926403"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6942", "0.011453811184518848", "3.5250051050707527", "1662926403"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6943", "0.008078119549751937", "1.7673009755936273", "1662930004"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6943", "0.011430680778549415", "3.5249626309215136", "1662930004"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6943", "0.008078119549751937", "1.7673009755936273", "1662930004"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6943", "0.011430680778549415", "3.5249626309215136", "1662930004"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6944", "0.008064029466082812", "1.7672740066758232", "1662933602"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6944", "0.011410853109172782", "3.5249258980605833", "1662933602"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6944", "0.008064029466082812", "1.7672740066758232", "1662933602"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6944", "0.011410853109172782", "3.5249258980605833", "1662933602"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6945", "0.008077863860473076", "1.767300210935468", "1662937203"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6945", "0.011430419731518067", "3.5249617839681036", "1662937203"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6945", "0.008077863860473076", "1.767300210935468", "1662937203"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6945", "0.011430419731518067", "3.5249617839681036", "1662937203"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6946", "0.008056844671771876", "1.7672603835941145", "1662940826"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6946", "0.01140069636434036", "3.5249072517198914", "1662940826"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6946", "0.008056844671771876", "1.7672603835941145", "1662940826"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6946", "0.01140069636434036", "3.5249072517198914", "1662940826"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6947", "0.008042339076685234", "1.767232891533647", "1662944408"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6947", "0.011380186283994408", "3.52486961388091", "1662944408"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6947", "0.008042339076685234", "1.767232891533647", "1662944408"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6947", "0.011380186283994408", "3.52486961388091", "1662944408"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6948", "0.007973581844087823", "1.767102619997066", "1662948003"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6948", "0.011282951890845244", "3.5246912355840356", "1662948003"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6948", "0.007973581844087823", "1.767102619997066", "1662948003"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6948", "0.011282951890845244", "3.5246912355840356", "1662948003"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6949", "0.007878197760652357", "1.7669219175062596", "1662951613"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6949", "0.011148054913123808", "3.524443788400845", "1662951613"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6949", "0.007878197760652357", "1.7669219175062596", "1662951613"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6949", "0.011148054913123808", "3.524443788400845", "1662951613"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6950", "0.007839601980547303", "1.7668488158732976", "1662955211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6950", "0.011093464290918564", "3.5243436729801014", "1662955211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6950", "0.007839601980547303", "1.7668488158732976", "1662955211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6950", "0.011093464290918564", "3.5243436729801014", "1662955211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6951", "0.00780767645364185", "1.7667879809989846", "1662958812"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6951", "0.011048439645447604", "3.5242606190761636", "1662958812"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6951", "0.00780767645364185", "1.7667879809989846", "1662958812"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6951", "0.011048439645447604", "3.5242606190761636", "1662958812"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6952", "0.007757090779066593", "1.7666921724514562", "1662962422"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6952", "0.010976888808108116", "3.524129403030479", "1662962422"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6952", "0.007757090779066593", "1.7666921724514562", "1662962422"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6952", "0.010976888808108116", "3.524129403030479", "1662962422"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6953", "0.007656520718713177", "1.7665016475333948", "1662966007"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6953", "0.010834653107395552", "3.523868498117076", "1662966007"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6953", "0.007656520718713177", "1.7665016475333948", "1662966007"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6953", "0.010834653107395552", "3.523868498117076", "1662966007"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6954", "0.0075345030619461874", "1.766270491806707", "1662969619"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6954", "0.010662081733679198", "3.523551949459549", "1662969619"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6954", "0.0075345030619461874", "1.766270491806707", "1662969619"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6954", "0.010662081733679198", "3.523551949459549", "1662969619"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6955", "0.007420353927980017", "1.7660542015296197", "1662973215"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6955", "0.010500651419878732", "3.523255783644217", "1662973215"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6955", "0.007420353927980017", "1.7660542015296197", "1662973215"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6955", "0.010500651419878732", "3.523255783644217", "1662973215"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6956", "0.0073071195992248875", "1.765839738717688", "1662976810"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6956", "0.010340478954635302", "3.522962049721267", "1662976810"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6956", "0.0073071195992248875", "1.765839738717688", "1662976810"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6956", "0.010340478954635302", "3.522962049721267", "1662976810"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6957", "0.007198357573551183", "1.7656337304011658", "1662980404"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6957", "0.010186636381034599", "3.522679903580076", "1662980404"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6957", "0.007198357573551183", "1.7656337304011658", "1662980404"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6957", "0.010186636381034599", "3.522679903580076", "1662980404"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6958", "0.007091353565853902", "1.7654310526331558", "1662984022"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6958", "0.010035278362858363", "3.522402315490378", "1662984022"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6958", "0.007091353565853902", "1.7654310526331558", "1662984022"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6958", "0.010035278362858363", "3.522402315490378", "1662984022"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6959", "0.0069428840495543345", "1.7651498478521808", "1662987605"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6959", "0.009825259123741622", "3.522017162155023", "1662987605"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6959", "0.0069428840495543345", "1.7651498478521808", "1662987605"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6959", "0.009825259123741622", "3.522017162155023", "1662987605"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6960", "0.006867428088150507", "1.7650068715806555", "1662991216"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6960", "0.009718542479551995", "3.521821375401137", "1662991216"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6960", "0.006867428088150507", "1.7650068715806555", "1662991216"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6960", "0.009718542479551995", "3.521821375401137", "1662991216"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6961", "0.0068482884665461785", "1.7649706220037482", "1662994806"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6961", "0.00969146733382402", "3.5217717242893096", "1662994806"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6961", "0.0068482884665461785", "1.7649706220037482", "1662994806"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6961", "0.00969146733382402", "3.5217717242893096", "1662994806"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6962", "0.006795964692534683", "1.764870352813279", "1662998406"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6962", "0.009617868820455334", "3.5216352203507824", "1662998406"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6962", "0.006795964692534683", "1.764870352813279", "1662998406"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6962", "0.009617868820455334", "3.5216352203507824", "1662998406"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6963", "0.0066780970820305005", "1.764647136984208", "1663002021"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6963", "0.009451122268888959", "3.52132946320124", "1663002021"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6963", "0.0066780970820305005", "1.764647136984208", "1663002021"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6963", "0.009451122268888959", "3.52132946320124", "1663002021"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6964", "0.006622693433693397", "1.7645422020309767", "1663005649"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6964", "0.009372746734585805", "3.5211857327501517", "1663005649"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6964", "0.006622693433693397", "1.7645422020309767", "1663005649"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6964", "0.009372746734585805", "3.5211857327501517", "1663005649"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6965", "0.006601441917655081", "1.7645019562527398", "1663009229"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6965", "0.009342681909579561", "3.5211306040985817", "1663009229"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6965", "0.006601441917655081", "1.7645019562527398", "1663009229"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6965", "0.009342681909579561", "3.5211306040985817", "1663009229"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6966", "0.006583918133795098", "1.7644687592291501", "1663012810"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6966", "0.009317894564011572", "3.5210851384247595", "1663012810"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6966", "0.006583918133795098", "1.7644687592291501", "1663012810"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6966", "0.009317894564011572", "3.5210851384247595", "1663012810"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6967", "0.0065754274455418925", "1.7644525887272224", "1663016403"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6967", "0.009305915235628445", "3.5210630529401814", "1663016403"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6967", "0.0065754274455418925", "1.7644525887272224", "1663016403"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6967", "0.009305915235628445", "3.5210630529401814", "1663016403"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6968", "0.006557704516107814", "1.7644190147675751", "1663020001"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6968", "0.009280846005962415", "3.5210170706746515", "1663020001"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6968", "0.006557704516107814", "1.7644190147675751", "1663020001"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6968", "0.009280846005962415", "3.5210170706746515", "1663020001"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6969", "0.006539511918881175", "1.7643845622180188", "1663023606"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6969", "0.009255108379779615", "3.520969877076983", "1663023606"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6969", "0.006539511918881175", "1.7643845622180188", "1663023606"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6969", "0.009255108379779615", "3.520969877076983", "1663023606"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6970", "0.006523105652178275", "1.7643534925599098", "1663027201"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6970", "0.009231897884564582", "3.5209273173422986", "1663027201"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6970", "0.006523105652178275", "1.7643534925599098", "1663027201"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6970", "0.009231897884564582", "3.5209273173422986", "1663027201"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6971", "0.006511191930594268", "1.764330931076202", "1663030831"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6971", "0.009215042994592642", "3.5208964119623785", "1663030831"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6971", "0.006511191930594268", "1.764330931076202", "1663030831"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6971", "0.009215042994592642", "3.5208964119623785", "1663030831"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6972", "0.006504380632969", "1.764318018410847", "1663034443"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6972", "0.009205411690737818", "3.5208787336800205", "1663034443"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6972", "0.006504380632969", "1.764318018410847", "1663034443"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6972", "0.009205411690737818", "3.5208787336800205", "1663034443"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6973", "0.00649483053133212", "1.7642998977665156", "1663038006"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6973", "0.009191913328956193", "3.520853936601967", "1663038006"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6973", "0.00649483053133212", "1.7642998977665156", "1663038006"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6973", "0.009191913328956193", "3.520853936601967", "1663038006"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6974", "0.0064785496969864236", "1.7642690657605749", "1663041614"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6974", "0.00916888012674479", "3.520811702140724", "1663041614"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6974", "0.0064785496969864236", "1.7642690657605749", "1663041614"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6974", "0.00916888012674479", "3.520811702140724", "1663041614"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6975", "0.006466792575476559", "1.764246724365738", "1663045222"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6975", "0.009152274114403405", "3.5207811526908013", "1663045222"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6975", "0.006466792575476559", "1.764246724365738", "1663045222"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6975", "0.009152274114403405", "3.5207811526908013", "1663045222"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6976", "0.006456166119767606", "1.7642265984853862", "1663048806"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6976", "0.009137241049000837", "3.5207535850490728", "1663048806"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6976", "0.006456166119767606", "1.7642265984853862", "1663048806"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6976", "0.009137241049000837", "3.5207535850490728", "1663048806"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6977", "0.006438128334386093", "1.7641924185743605", "1663052406"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6977", "0.009111729500530269", "3.520706779105173", "1663052406"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6977", "0.006438128334386093", "1.7641924185743605", "1663052406"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6977", "0.009111729500530269", "3.520706779105173", "1663052406"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6978", "0.006428051778309621", "1.764173158464112", "1663056061"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6978", "0.00909753731015425", "3.5206805226772255", "1663056061"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6978", "0.006428051778309621", "1.764173158464112", "1663056061"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6978", "0.00909753731015425", "3.5206805226772255", "1663056061"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6979", "0.006419123084891461", "1.7641562500310215", "1663059632"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6979", "0.009084905272167008", "3.5206573606644924", "1663059632"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6979", "0.006419123084891461", "1.7641562500310215", "1663059632"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6979", "0.009084905272167008", "3.5206573606644924", "1663059632"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6980", "0.006410328240958074", "1.7641395950703012", "1663063205"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6980", "0.009072462587720178", "3.520634545851499", "1663063205"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6980", "0.006410328240958074", "1.7641395950703012", "1663063205"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6980", "0.009072462587720178", "3.520634545851499", "1663063205"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6981", "0.006391050213050634", "1.7641025937023465", "1663066854"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6981", "0.009045365715254269", "3.5205842121074333", "1663066854"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6981", "0.006391050213050634", "1.7641025937023465", "1663066854"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6981", "0.009045365715254269", "3.5205842121074333", "1663066854"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6982", "0.006370524149074683", "1.7640637217284618", "1663070404"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6982", "0.009016326427705366", "3.5205309641041893", "1663070404"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6982", "0.006370524149074683", "1.7640637217284618", "1663070404"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6982", "0.009016326427705366", "3.5205309641041893", "1663070404"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6983", "0.0063505911230153315", "1.7640259757187402", "1663074034"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6983", "0.008988125043733343", "3.5204792563243155", "1663074034"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6983", "0.0063505911230153315", "1.7640259757187402", "1663074034"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6983", "0.008988125043733343", "3.5204792563243155", "1663074034"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6984", "0.006331217102092828", "1.763989324304074", "1663077637"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6984", "0.008960701563059979", "3.5204290222006347", "1663077637"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6984", "0.006331217102092828", "1.763989324304074", "1663077637"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6984", "0.008960701563059979", "3.5204290222006347", "1663077637"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6985", "0.006320865865636405", "1.7639697227079925", "1663081208"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6985", "0.008946056525271707", "3.5204021701763044", "1663081208"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6985", "0.006320865865636405", "1.7639697227079925", "1663081208"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6985", "0.008946056525271707", "3.5204021701763044", "1663081208"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6986", "0.006306617655823526", "1.7639427324210633", "1663084820"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6986", "0.008925901275985899", "3.520365202977936", "1663084820"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6986", "0.006306617655823526", "1.7639427324210633", "1663084820"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6986", "0.008925901275985899", "3.520365202977936", "1663084820"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6987", "0.006297626519690246", "1.7639255486473964", "1663088434"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6987", "0.008913237022492861", "3.5203417756017794", "1663088434"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6987", "0.006297626519690246", "1.7639255486473964", "1663088434"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6987", "0.008913237022492861", "3.5203417756017794", "1663088434"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6988", "0.0062802262717086355", "1.7638925677056965", "1663092016"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6988", "0.008888629973847775", "3.5202966173046315", "1663092016"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6988", "0.0062802262717086355", "1.7638925677056965", "1663092016"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6988", "0.008888629973847775", "3.5202966173046315", "1663092016"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6989", "0.006269738141726424", "1.7638726724848575", "1663095626"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6989", "0.008873803497642139", "3.5202693874530167", "1663095626"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6989", "0.006269738141726424", "1.7638726724848575", "1663095626"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6989", "0.008873803497642139", "3.5202693874530167", "1663095626"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6990", "0.006259756964098049", "1.7638537718154932", "1663099201"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6990", "0.008859681862302451", "3.520243495345563", "1663099201"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6990", "0.006259756964098049", "1.7638537718154932", "1663099201"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6990", "0.008859681862302451", "3.520243495345563", "1663099201"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6991", "0.006250358777099991", "1.7638359752996273", "1663102803"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6991", "0.008846384976518339", "3.520219115667895", "1663102803"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6991", "0.006250358777099991", "1.7638359752996273", "1663102803"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6991", "0.008846384976518339", "3.520219115667895", "1663102803"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6992", "0.006240936876069556", "1.7638181244119284", "1663106411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6992", "0.008833057917701033", "3.5201946682379366", "1663106411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6992", "0.006240936876069556", "1.7638181244119284", "1663106411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6992", "0.008833057917701033", "3.5201946682379366", "1663106411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6993", "0.006224592686948406", "1.763787174886497", "1663110003"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6993", "0.008809933516039379", "3.5201522699740133", "1663110003"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6993", "0.006224592686948406", "1.763787174886497", "1663110003"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6993", "0.008809933516039379", "3.5201522699740133", "1663110003"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6994", "0.006233860745521031", "1.7638047281086118", "1663113622"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6994", "0.008823045213200993", "3.52017631419618", "1663113622"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6994", "0.006233860745521031", "1.7638047281086118", "1663113622"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6994", "0.008823045213200993", "3.52017631419618", "1663113622"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6995", "0.0062171157559223035", "1.7637730194192278", "1663117202"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6995", "0.008799353796267341", "3.5201328760554675", "1663117202"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6995", "0.0062171157559223035", "1.7637730194192278", "1663117202"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6995", "0.008799353796267341", "3.5201328760554675", "1663117202"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6996", "0.006207089866465021", "1.7637538768708718", "1663120808"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6996", "0.008785225160861117", "3.5201067646370428", "1663120808"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6996", "0.006207089866465021", "1.7637538768708718", "1663120808"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6996", "0.008785225160861117", "3.5201067646370428", "1663120808"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6997", "0.0061997290524644965", "1.7637399112034968", "1663124411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6997", "0.00877482048802039", "3.520087652158927", "1663124411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6997", "0.0061997290524644965", "1.7637399112034968", "1663124411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6997", "0.00877482048802039", "3.520087652158927", "1663124411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6998", "0.0061941907147665225", "1.7637293794243405", "1663128005"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6998", "0.008767000483643613", "3.520073256077359", "1663128005"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6998", "0.0061941907147665225", "1.7637293794243405", "1663128005"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6998", "0.008767000483643613", "3.520073256077359", "1663128005"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6999", "0.006215729855802559", "1.7637701345129413", "1663131609"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6999", "0.008797486351084455", "3.520129109881699", "1663131609"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "6999", "0.006215729855802559", "1.7637701345129413", "1663131609"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "6999", "0.008797486351084455", "3.520129109881699", "1663131609"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7000", "0.006258929077138491", "1.7638519352157174", "1663135232"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7000", "0.00885860691856717", "3.5202411712386077", "1663135232"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7000", "0.006258929077138491", "1.7638519352157174", "1663135232"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7000", "0.00885860691856717", "3.5202411712386077", "1663135232"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7001", "0.00624144425647", "1.7638188068018499", "1663138825"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7001", "0.008833875557716619", "3.5201958016966106", "1663138825"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7001", "0.00624144425647", "1.7638188068018499", "1663138825"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7001", "0.008833875557716619", "3.5201958016966106", "1663138825"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7002", "0.006221289111616722", "1.76378062854445", "1663142407"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7002", "0.008805363657172572", "3.52014350941771", "1663142407"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7002", "0.006221289111616722", "1.76378062854445", "1663142407"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7002", "0.008805363657172572", "3.52014350941771", "1663142407"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7003", "0.006202519303311299", "1.7637450867122098", "1663146004"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7003", "0.008778807016739148", "3.520094819354313", "1663146004"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7003", "0.006202519303311299", "1.7637450867122098", "1663146004"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7003", "0.008778807016739148", "3.520094819354313", "1663146004"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7004", "0.006184549030891717", "1.7637110588485436", "1663149627"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7004", "0.008753381554025995", "3.5200482032503047", "1663149627"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7004", "0.006184549030891717", "1.7637110588485436", "1663149627"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7004", "0.008753381554025995", "3.5200482032503047", "1663149627"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7005", "0.0061395656186402124", "1.7636258799558349", "1663153213"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7005", "0.008689735951513696", "3.519931512924326", "1663153213"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7005", "0.0061395656186402124", "1.7636258799558349", "1663153213"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7005", "0.008689735951513696", "3.519931512924326", "1663153213"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7006", "0.0060907489784002514", "1.76353344247155", "1663156812"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7006", "0.008620666506841684", "3.519804878243759", "1663156812"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7006", "0.0060907489784002514", "1.76353344247155", "1663156812"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7006", "0.008620666506841684", "3.519804878243759", "1663156812"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7007", "0.0060420932663820875", "1.763441306259409", "1663160432"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7007", "0.008551825602369284", "3.5196786581493074", "1663160432"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7007", "0.0060420932663820875", "1.763441306259409", "1663160432"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7007", "0.008551825602369284", "3.5196786581493074", "1663160432"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7008", "0.006029266246747914", "1.7634170365601143", "1663164009"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7008", "0.008533669960376945", "3.519645396001618", "1663164009"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7008", "0.006029266246747914", "1.7634170365601143", "1663164009"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7008", "0.008533669960376945", "3.519645396001618", "1663164009"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7009", "0.006012673478794684", "1.7633853991427875", "1663167611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7009", "0.008510271110525075", "3.5196022094254618", "1663167611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7009", "0.006012673478794684", "1.7633853991427875", "1663167611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7009", "0.008510271110525075", "3.5196022094254618", "1663167611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7010", "0.00599798027292474", "1.7633575505596049", "1663171211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7010", "0.008489491126276574", "3.519564076439499", "1663171211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7010", "0.00599798027292474", "1.7633575505596049", "1663171211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7010", "0.008489491126276574", "3.519564076439499", "1663171211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7011", "0.005981790226805858", "1.7633267603683347", "1663174807"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7011", "0.008466631663160485", "3.519521990001121", "1663174807"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7011", "0.005981790226805858", "1.7633267603683347", "1663174807"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7011", "0.008466631663160485", "3.519521990001121", "1663174807"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7012", "0.00596414692237735", "1.763293352347885", "1663178402"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7012", "0.008441667917869003", "3.519476221541202", "1663178402"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7012", "0.00596414692237735", "1.763293352347885", "1663178402"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7012", "0.008441667917869003", "3.519476221541202", "1663178402"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7013", "0.00594598091041144", "1.7632589061385642", "1663182004"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7013", "0.008415981887741232", "3.5194290652461295", "1663182004"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7013", "0.00594598091041144", "1.7632589061385642", "1663182004"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7013", "0.008415981887741232", "3.5194290652461295", "1663182004"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7014", "0.005921823284549507", "1.763213159763192", "1663185610"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7014", "0.008381801980308716", "3.5193663955693246", "1663185610"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7014", "0.005921823284549507", "1.763213159763192", "1663185610"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7014", "0.008381801980308716", "3.5193663955693246", "1663185610"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7015", "0.005897973557470557", "1.763167997166795", "1663189207"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7015", "0.008348057356132841", "3.5193045249709956", "1663189207"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7015", "0.005897973557470557", "1.763167997166795", "1663189207"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7015", "0.008348057356132841", "3.5193045249709956", "1663189207"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7016", "0.005874448595280803", "1.7631234343906999", "1663192802"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7016", "0.008314777579025651", "3.5192434867729623", "1663192802"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7016", "0.005874448595280803", "1.7631234343906999", "1663192802"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7016", "0.008314777579025651", "3.5192434867729623", "1663192802"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7017", "0.005852247233155523", "1.7630811848540193", "1663196407"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7017", "0.008283439684137197", "3.5191857552741337", "1663196407"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7017", "0.005852247233155523", "1.7630811848540193", "1663196407"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7017", "0.008283439684137197", "3.5191857552741337", "1663196407"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7018", "0.005829011311576662", "1.7630371652937775", "1663200012"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7018", "0.008250570168015607", "3.519125463923091", "1663200012"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7018", "0.005829011311576662", "1.7630371652937775", "1663200012"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7018", "0.008250570168015607", "3.519125463923091", "1663200012"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7019", "0.005805787067992501", "1.7629928957920447", "1663203604"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7019", "0.008217814565028363", "3.5190650240690147", "1663203604"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7019", "0.005805787067992501", "1.7629928957920447", "1663203604"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7019", "0.008217814565028363", "3.5190650240690147", "1663203604"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7020", "0.0057853200481657475", "1.76295414305589", "1663207234"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7020", "0.008188854169102215", "3.5190119310327432", "1663207234"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7020", "0.0057853200481657475", "1.76295414305589", "1663207234"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7020", "0.008188854169102215", "3.5190119310327432", "1663207234"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7021", "0.005765050447512765", "1.7629157448437183", "1663210808"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7021", "0.008160179954678895", "3.5189593373531705", "1663210808"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7021", "0.005765050447512765", "1.7629157448437183", "1663210808"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7021", "0.008160179954678895", "3.5189593373531705", "1663210808"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7022", "0.00574377628832458", "1.7628754356878806", "1663214416"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7022", "0.00813008741969941", "3.5189041318142857", "1663214416"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7022", "0.00574377628832458", "1.7628754356878806", "1663214416"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7022", "0.00813008741969941", "3.5189041318142857", "1663214416"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7023", "0.0057256630173672845", "1.7628411400709414", "1663218006"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7023", "0.00810445717556116", "3.5188571446151724", "1663218006"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7023", "0.0057256630173672845", "1.7628411400709414", "1663218006"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7023", "0.00810445717556116", "3.5188571446151724", "1663218006"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7024", "0.005705743130472965", "1.762803298055529", "1663221604"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7024", "0.008076315566944164", "3.5188053882250645", "1663221604"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7024", "0.005705743130472965", "1.762803298055529", "1663221604"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7024", "0.008076315566944164", "3.5188053882250645", "1663221604"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7025", "0.005688287778835407", "1.7627702484969068", "1663225223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7025", "0.008051616041002234", "3.518760107783147", "1663225223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7025", "0.005688287778835407", "1.7627702484969068", "1663225223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7025", "0.008051616041002234", "3.518760107783147", "1663225223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7026", "0.0056772645857424055", "1.762749377449816", "1663228811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7026", "0.008036018064302743", "3.518731512792051", "1663228811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7026", "0.0056772645857424055", "1.762749377449816", "1663228811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7026", "0.008036018064302743", "3.518731512792051", "1663228811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7027", "0.0056663378542159675", "1.7627286890393725", "1663232411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7027", "0.008020556562780126", "3.518703167997909", "1663232411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7027", "0.0056663378542159675", "1.7627286890393725", "1663232411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7027", "0.008020556562780126", "3.518703167997909", "1663232411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7028", "0.005633584158977595", "1.7626666739732098", "1663236011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7028", "0.007974209439918924", "3.5186182021683603", "1663236011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7028", "0.005633584158977595", "1.7626666739732098", "1663236011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7028", "0.007974209439918924", "3.5186182021683603", "1663236011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7029", "0.005604387135201816", "1.76261135703343", "1663239611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7029", "0.007932907821872844", "3.518542438771316", "1663239611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7029", "0.005604387135201816", "1.76261135703343", "1663239611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7029", "0.007932907821872844", "3.518542438771316", "1663239611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7030", "0.005574904328298974", "1.7625554383296231", "1663243211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7030", "0.00789122340544099", "3.518465893953503", "1663243211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7030", "0.005574904328298974", "1.7625554383296231", "1663243211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7030", "0.00789122340544099", "3.518465893953503", "1663243211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7031", "0.005556634576435417", "1.7625208320597097", "1663246811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7031", "0.007865376379636885", "3.518418490598593", "1663246811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7031", "0.005556634576435417", "1.7625208320597097", "1663246811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7031", "0.007865376379636885", "3.518418490598593", "1663246811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7032", "0.005554341624933794", "1.7625164884333784", "1663250411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7032", "0.007862132562860098", "3.5184125409852904", "1663250411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7032", "0.005554341624933794", "1.7625164884333784", "1663250411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7032", "0.007862132562860098", "3.5184125409852904", "1663250411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7033", "0.005553071343028409", "1.7625140684437097", "1663254011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7033", "0.007860340395284411", "3.518409235969734", "1663254011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7033", "0.005553071343028409", "1.7625140684437097", "1663254011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7033", "0.007860340395284411", "3.518409235969734", "1663254011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7034", "0.005519786317968022", "1.7624510068767496", "1663257623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7034", "0.007813255311976103", "3.51832286425724", "1663257623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7034", "0.005519786317968022", "1.7624510068767496", "1663257623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7034", "0.007813255311976103", "3.51832286425724", "1663257623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7035", "0.00543639837907396", "1.7622931158977988", "1663261211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7035", "0.007695259605204", "3.518106541182193", "1663261211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7035", "0.00543639837907396", "1.7622931158977988", "1663261211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7035", "0.007695259605204", "3.518106541182193", "1663261211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7036", "0.005413986846942401", "1.7622506630031307", "1663264811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7036", "0.00766355297549687", "3.5180483897324333", "1663264811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7036", "0.005413986846942401", "1.7622506630031307", "1663264811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7036", "0.00766355297549687", "3.5180483897324333", "1663264811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7037", "0.005401882670730161", "1.7622277277777654", "1663268411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7037", "0.007646431100814019", "3.5180169782599693", "1663268411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7037", "0.005401882670730161", "1.7622277277777654", "1663268411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7037", "0.007646431100814019", "3.5180169782599693", "1663268411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7038", "0.0053864734585206756", "1.762198491916523", "1663272011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7038", "0.007624647756915462", "3.517976964765608", "1663272011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7038", "0.0053864734585206756", "1.762198491916523", "1663272011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7038", "0.007624647756915462", "3.517976964765608", "1663272011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7039", "0.005377574016260489", "1.7621816272791317", "1663275611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7039", "0.007612059723143855", "3.5179538686339797", "1663275611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7039", "0.005377574016260489", "1.7621816272791317", "1663275611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7039", "0.007612059723143855", "3.5179538686339797", "1663275611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7040", "0.0053327720836469725", "1.762096681054335", "1663279211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7040", "0.0075487046629843495", "3.517837566894313", "1663279211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7040", "0.0053327720836469725", "1.762096681054335", "1663279211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7040", "0.0075487046629843495", "3.517837566894313", "1663279211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7041", "0.005285737230674813", "1.7620073946248964", "1663282811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7041", "0.0074822297857207185", "3.5177153981600733", "1663282811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7041", "0.005285737230674813", "1.7620073946248964", "1663282811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7041", "0.0074822297857207185", "3.5177153981600733", "1663282811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7042", "0.005249999258874104", "1.761939727368374", "1663286411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7042", "0.00743165825020341", "3.5176226861595166", "1663286411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7042", "0.005249999258874104", "1.761939727368374", "1663286411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7042", "0.00743165825020341", "3.5176226861595166", "1663286411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7043", "0.005243354900176315", "1.7619271330974096", "1663290011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7043", "0.007422260923442664", "3.5176054402494064", "1663290011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7043", "0.005243354900176315", "1.7619271330974096", "1663290011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7043", "0.007422260923442664", "3.5176054402494064", "1663290011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7044", "0.00523140895355683", "1.7619045146069165", "1663293623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7044", "0.007405356473323724", "3.5175744499884094", "1663293623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7044", "0.00523140895355683", "1.7619045146069165", "1663293623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7044", "0.007405356473323724", "3.5175744499884094", "1663293623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7045", "0.005205433788965417", "1.7618551755331446", "1663297211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7045", "0.007368655954421346", "3.5175069613275043", "1663297211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7045", "0.005205433788965417", "1.7618551755331446", "1663297211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7045", "0.007368655954421346", "3.5175069613275043", "1663297211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7046", "0.005224985565113789", "1.7618920223454648", "1663300811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7046", "0.00739638513168051", "3.5175575693879133", "1663300811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7046", "0.005224985565113789", "1.7618920223454648", "1663300811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7046", "0.00739638513168051", "3.5175575693879133", "1663300811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7047", "0.005207661431339958", "1.7618591352583644", "1663304411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7047", "0.007371900693857038", "3.5175125706959904", "1663304411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7047", "0.005207661431339958", "1.7618591352583644", "1663304411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7047", "0.007371900693857038", "3.5175125706959904", "1663304411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7048", "0.005188999069677362", "1.761823628290539", "1663308011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7048", "0.007345553324495018", "3.5174640436945257", "1663308011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7048", "0.005188999069677362", "1.761823628290539", "1663308011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7048", "0.007345553324495018", "3.5174640436945257", "1663308011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7049", "0.0051713217999817904", "1.7617901381924927", "1663311623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7049", "0.007320545562917156", "3.5174181718497897", "1663311623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7049", "0.0051713217999817904", "1.7617901381924927", "1663311623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7049", "0.007320545562917156", "3.5174181718497897", "1663311623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7050", "0.0051539271790591226", "1.7617572065742813", "1663315211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7050", "0.007295929375098212", "3.5173730485024555", "1663315211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7050", "0.0051539271790591226", "1.7617572065742813", "1663315211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7050", "0.007295929375098212", "3.5173730485024555", "1663315211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7051", "0.005138120602255879", "1.7617272725796125", "1663318823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7051", "0.00727356365943713", "3.51733203879782", "1663318823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7051", "0.005138120602255879", "1.7617272725796125", "1663318823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7051", "0.00727356365943713", "3.51733203879782", "1663318823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7052", "0.005119888717596514", "1.761692748909817", "1663322411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7052", "0.007247764992044235", "3.517284738789237", "1663322411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7052", "0.005119888717596514", "1.761692748909817", "1663322411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7052", "0.007247764992044235", "3.517284738789237", "1663322411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7053", "0.005101155026677212", "1.7616572714194336", "1663326011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7053", "0.007221257487945285", "3.517236134457038", "1663326011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7053", "0.005101155026677212", "1.7616572714194336", "1663326011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7053", "0.007221257487945285", "3.517236134457038", "1663326011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7054", "0.0050830337180323955", "1.7616229056161037", "1663329611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7054", "0.00719563362799277", "3.51718908728706", "1663329611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7054", "0.0050830337180323955", "1.7616229056161037", "1663329611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7054", "0.00719563362799277", "3.51718908728706", "1663329611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7055", "0.005065281182041553", "1.7615892980406533", "1663333211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7055", "0.007170510082157621", "3.5171430361550082", "1663333211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7055", "0.005065281182041553", "1.7615892980406533", "1663333211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7055", "0.007170510082157621", "3.5171430361550082", "1663333211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7056", "0.005047378476585136", "1.7615553813810705", "1663336823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7056", "0.007145182842138385", "3.517096579093645", "1663336823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7056", "0.005047378476585136", "1.7615553813810705", "1663336823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7056", "0.007145182842138385", "3.517096579093645", "1663336823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7057", "0.0050308341925443", "1.7615238363216303", "1663340411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7057", "0.007121849644727566", "3.517053514287995", "1663340411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7057", "0.0050308341925443", "1.7615238363216303", "1663340411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7057", "0.007121849644727566", "3.517053514287995", "1663340411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7058", "0.005016991377132448", "1.7614968818884753", "1663344011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7058", "0.007102527028664484", "3.5170171129534182", "1663344011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7058", "0.005016991377132448", "1.7614968818884753", "1663344011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7058", "0.007102527028664484", "3.5170171129534182", "1663344011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7059", "0.005009503523872078", "1.7614826193140818", "1663347611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7059", "0.007091961301539392", "3.5169976315461833", "1663347611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7059", "0.005009503523872078", "1.7614826193140818", "1663347611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7059", "0.007091961301539392", "3.5169976315461833", "1663347611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7060", "0.00499079472323714", "1.7614472021476817", "1663351223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7060", "0.007065483950073633", "3.516949099925081", "1663351223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7060", "0.00499079472323714", "1.7614472021476817", "1663351223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7060", "0.007065483950073633", "3.516949099925081", "1663351223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7061", "0.004979156269334284", "1.76142516081538", "1663354811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7061", "0.00704901594581914", "3.516918903283991", "1663354811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7061", "0.004979156269334284", "1.76142516081538", "1663354811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7061", "0.00704901594581914", "3.516918903283991", "1663354811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7062", "0.004965808619690079", "1.7613998951022773", "1663358411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7062", "0.0070301249662655845", "3.516884280250915", "1663358411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7062", "0.004965808619690079", "1.7613998951022773", "1663358411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7062", "0.0070301249662655845", "3.516884280250915", "1663358411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7063", "0.004955833617191671", "1.761380978002868", "1663362011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7063", "0.0070160199820360255", "3.5168583823223805", "1663362011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7063", "0.004955833617191671", "1.761380978002868", "1663362011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7063", "0.0070160199820360255", "3.5168583823223805", "1663362011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7064", "0.004948031484008162", "1.7613662209271146", "1663365611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7064", "0.007004973431080168", "3.516838151594552", "1663365611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7064", "0.004948031484008162", "1.7613662209271146", "1663365611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7064", "0.007004973431080168", "3.516838151594552", "1663365611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7065", "0.0049277190084578435", "1.7613278443513047", "1663369211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7065", "0.006976198916715626", "3.516785509919791", "1663369211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7065", "0.0049277190084578435", "1.7613278443513047", "1663369211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7065", "0.006976198916715626", "3.516785509919791", "1663369211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7066", "0.004910003700215618", "1.761294048923855", "1663372811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7066", "0.006951220082877622", "3.516739384754519", "1663372811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7066", "0.004910003700215618", "1.761294048923855", "1663372811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7066", "0.006951220082877622", "3.516739384754519", "1663372811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7067", "0.004897832054025455", "1.761271009781699", "1663376411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7067", "0.006933993181670712", "3.516707812333396", "1663376411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7067", "0.004897832054025455", "1.761271009781699", "1663376411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7067", "0.006933993181670712", "3.516707812333396", "1663376411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7068", "0.004885702932650409", "1.761248051131175", "1663380023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7068", "0.006916826443358809", "3.516676350179958", "1663380023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7068", "0.004885702932650409", "1.761248051131175", "1663380023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7068", "0.006916826443358809", "3.516676350179958", "1663380023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7069", "0.004875373315388166", "1.7612284775328848", "1663383611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7069", "0.006902214152311278", "3.5166495418859083", "1663383611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7069", "0.004875373315388166", "1.7612284775328848", "1663383611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7069", "0.006902214152311278", "3.5166495418859083", "1663383611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7070", "0.004866130472349903", "1.761210973231902", "1663387211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7070", "0.006889135630083021", "3.5166255606129484", "1663387211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7070", "0.004866130472349903", "1.761210973231902", "1663387211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7070", "0.006889135630083021", "3.5166255606129484", "1663387211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7071", "0.004854154663452917", "1.7611882105695862", "1663390811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7071", "0.006872219543179259", "3.516594434079478", "1663390811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7071", "0.004854154663452917", "1.7611882105695862", "1663390811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7071", "0.006872219543179259", "3.516594434079478", "1663390811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7072", "0.004840112938419438", "1.761161494001949", "1663394411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7072", "0.006852395002613845", "3.5165579200601815", "1663394411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7072", "0.004840112938419438", "1.761161494001949", "1663394411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7072", "0.006852395002613845", "3.5165579200601815", "1663394411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7073", "0.0048247536308025085", "1.7611323889005621", "1663398011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7073", "0.0068306678460128886", "3.5165180576100354", "1663398011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7073", "0.0048247536308025085", "1.7611323889005621", "1663398011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7073", "0.0068306678460128886", "3.5165180576100354", "1663398011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7074", "0.0048119980050648666", "1.7611082435447156", "1663401611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7074", "0.006812614535787973", "3.516484969562119", "1663401611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7074", "0.0048119980050648666", "1.7611082435447156", "1663401611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7074", "0.006812614535787973", "3.516484969562119", "1663401611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7075", "0.0047972962049464985", "1.7610804008190712", "1663405211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7075", "0.006791811534150061", "3.5164468242645586", "1663405211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7075", "0.0047972962049464985", "1.7610804008190712", "1663405211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7075", "0.006791811534150061", "3.5164468242645586", "1663405211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7076", "0.004789282401746141", "1.7610652276503362", "1663408823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7076", "0.00678047071632249", "3.5164260340053413", "1663408823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7076", "0.004789282401746141", "1.7610652276503362", "1663408823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7076", "0.00678047071632249", "3.5164260340053413", "1663408823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7077", "0.004770148969903258", "1.76102898029865", "1663412411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7077", "0.006753401137484313", "3.516376382466831", "1663412411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7077", "0.004770148969903258", "1.76102898029865", "1663412411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7077", "0.006753401137484313", "3.516376382466831", "1663412411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7078", "0.004754537015795963", "1.7609992457215402", "1663416011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7078", "0.00673137035887854", "3.516335764877609", "1663416011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7078", "0.004754537015795963", "1.7609992457215402", "1663416011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7078", "0.00673137035887854", "3.516335764877609", "1663416011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7079", "0.004738423547060189", "1.7609687470442088", "1663419611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7079", "0.006708563427264295", "3.516293968141666", "1663419611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7079", "0.004738423547060189", "1.7609687470442088", "1663419611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7079", "0.006708563427264295", "3.516293968141666", "1663419611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7080", "0.004722437518433288", "1.7609384850623113", "1663423223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7080", "0.0066859384479150815", "3.5162524989358603", "1663423223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7080", "0.004722437518433288", "1.7609384850623113", "1663423223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7080", "0.0066859384479150815", "3.5162524989358603", "1663423223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7081", "0.004708898583491733", "1.760912852817423", "1663426811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7081", "0.006666777758273521", "3.516217375900174", "1663426811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7081", "0.004708898583491733", "1.760912852817423", "1663426811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7081", "0.006666777758273521", "3.516217375900174", "1663426811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7082", "0.004697114198420785", "1.760890540508677", "1663430411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7082", "0.006650100785089113", "3.5161868033244077", "1663430411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7082", "0.004697114198420785", "1.760890540508677", "1663430411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7082", "0.006650100785089113", "3.5161868033244077", "1663430411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7083", "0.00468874137379579", "1.7608746929199892", "1663434011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7083", "0.006638249842418806", "3.516165084953353", "1663434011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7083", "0.00468874137379579", "1.7608746929199892", "1663434011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7083", "0.006638249842418806", "3.516165084953353", "1663434011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7084", "0.004676438747042488", "1.7608514052532356", "1663437611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7084", "0.006620837323716837", "3.5161331716855697", "1663437611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7084", "0.004676438747042488", "1.7608514052532356", "1663437611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7084", "0.006620837323716837", "3.5161331716855697", "1663437611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7085", "0.0046635251324155386", "1.7608269637652476", "1663441211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7085", "0.006602559043436727", "3.5160996752497704", "1663441211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7085", "0.0046635251324155386", "1.7608269637652476", "1663441211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7085", "0.006602559043436727", "3.5160996752497704", "1663441211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7086", "0.004655164548090999", "1.7608111258226296", "1663444811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7086", "0.006590730219160158", "3.516077979660892", "1663444811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7086", "0.004655164548090999", "1.7608111258226296", "1663444811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7086", "0.006590730219160158", "3.516077979660892", "1663444811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7087", "0.004647511760661217", "1.7607966410988114", "1663448411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7087", "0.006579898361065669", "3.5160581289352852", "1663448411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7087", "0.004647511760661217", "1.7607966410988114", "1663448411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7087", "0.006579898361065669", "3.5160581289352852", "1663448411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7088", "0.004631640228441268", "1.7607665951024458", "1663452011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7088", "0.006557435461552865", "3.5160169558745618", "1663452011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7088", "0.004631640228441268", "1.7607665951024458", "1663452011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7088", "0.006557435461552865", "3.5160169558745618", "1663452011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7089", "0.004621771792175518", "1.7607479092923262", "1663455623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7089", "0.006543470168172959", "3.515991352971835", "1663455623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7089", "0.004621771792175518", "1.7607479092923262", "1663455623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7089", "0.006543470168172959", "3.515991352971835", "1663455623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7090", "0.004611423157994123", "1.760728307748664", "1663459211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7090", "0.006528827626774492", "3.515964499940489", "1663459211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7090", "0.004611423157994123", "1.760728307748664", "1663459211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7090", "0.006528827626774492", "3.515964499940489", "1663459211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7091", "0.004608745011990129", "1.7607231011923563", "1663462811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7091", "0.006525086147752529", "3.5159574625255043", "1663462811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7091", "0.004608745011990129", "1.7607231011923563", "1663462811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7091", "0.006525086147752529", "3.5159574625255043", "1663462811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7092", "0.004610263806040415", "1.7607258974202586", "1663466411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7092", "0.006527263958267586", "3.5159613505526566", "1663466411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7092", "0.004610263806040415", "1.7607258974202586", "1663466411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7092", "0.006527263958267586", "3.5159613505526566", "1663466411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7093", "0.00460762448940134", "1.7607208914141235", "1663470023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7093", "0.006523531962918839", "3.5159544974554837", "1663470023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7093", "0.00460762448940134", "1.7607208914141235", "1663470023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7093", "0.006523531962918839", "3.5159544974554837", "1663470023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7094", "0.004589040212211022", "1.7606854480515006", "1663473611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7094", "0.006497323346773716", "3.515906114572936", "1663473611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7094", "0.004589040212211022", "1.7606854480515006", "1663473611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7094", "0.006497323346773716", "3.515906114572936", "1663473611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7095", "0.00457777419802505", "1.7606641235490152", "1663477211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7095", "0.0064813774689915695", "3.5158768906422604", "1663477211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7095", "0.00457777419802505", "1.7606641235490152", "1663477211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7095", "0.0064813774689915695", "3.5158768906422604", "1663477211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7096", "0.004560214000139016", "1.760630848218123", "1663480811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7096", "0.006456536057313342", "3.515831315185974", "1663480811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7096", "0.004560214000139016", "1.760630848218123", "1663480811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7096", "0.006456536057313342", "3.515831315185974", "1663480811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7097", "0.004548755652501308", "1.7606091207041248", "1663484411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7097", "0.00644033183908401", "3.5158015666190883", "1663484411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7097", "0.004548755652501308", "1.7606091207041248", "1663484411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7097", "0.00644033183908401", "3.5158015666190883", "1663484411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7098", "0.004532039254428586", "1.7605774668736307", "1663488023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7098", "0.006416675950172217", "3.515758195870788", "1663488023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7098", "0.004532039254428586", "1.7605774668736307", "1663488023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7098", "0.006416675950172217", "3.515758195870788", "1663488023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7099", "0.004521548737345957", "1.760557598890011", "1663491611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7099", "0.006401831673689082", "3.5157309759463278", "1663491611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7099", "0.004521548737345957", "1.760557598890011", "1663491611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7099", "0.006401831673689082", "3.5157309759463278", "1663491611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7100", "0.004511971855735744", "1.7605393853320326", "1663495211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7100", "0.006388307356819823", "3.515706076663095", "1663495211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7100", "0.004511971855735744", "1.7605393853320326", "1663495211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7100", "0.006388307356819823", "3.515706076663095", "1663495211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7101", "0.0045031476097082005", "1.7605226847244897", "1663498811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7101", "0.0063758166960128934", "3.515683187848853", "1663498811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7101", "0.0045031476097082005", "1.7605226847244897", "1663498811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7101", "0.0063758166960128934", "3.515683187848853", "1663498811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7102", "0.004494382558953138", "1.7605060961480141", "1663502423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7102", "0.006363409813277333", "3.5156604525582833", "1663502423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7102", "0.004494382558953138", "1.7605060961480141", "1663502423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7102", "0.006363409813277333", "3.5156604525582833", "1663502423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7103", "0.004485283253658477", "1.7604888749665701", "1663506011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7103", "0.006350529781903958", "3.515636850237768", "1663506011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7103", "0.004485283253658477", "1.7604888749665701", "1663506011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7103", "0.006350529781903958", "3.515636850237768", "1663506011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7104", "0.004477671747077689", "1.760474469403083", "1663509623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7104", "0.006339755771707073", "3.5156171069346116", "1663509623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7104", "0.004477671747077689", "1.760474469403083", "1663509623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7104", "0.006339755771707073", "3.5156171069346116", "1663509623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7105", "0.00446748614316085", "1.760455192310895", "1663513211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7105", "0.00632533806035529", "3.5155906868619833", "1663513211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7105", "0.00446748614316085", "1.760455192310895", "1663513211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7105", "0.00632533806035529", "3.5155906868619833", "1663513211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7106", "0.004456641569845021", "1.7604346680637573", "1663516811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7106", "0.006309987560130313", "3.5155625574822715", "1663516811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7106", "0.004456641569845021", "1.7604346680637573", "1663516811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7106", "0.006309987560130313", "3.5155625574822715", "1663516811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7107", "0.004447622552239443", "1.7604175938075401", "1663520411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7107", "0.006297222917974894", "3.5155391600217807", "1663520411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7107", "0.004447622552239443", "1.7604175938075401", "1663520411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7107", "0.006297222917974894", "3.5155391600217807", "1663520411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7108", "0.004436104500321582", "1.7603957947931719", "1663524011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7108", "0.006280919124882585", "3.515509283567565", "1663524011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7108", "0.004436104500321582", "1.7603957947931719", "1663524011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7108", "0.006280919124882585", "3.515509283567565", "1663524011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7109", "0.004421849853096322", "1.760368799489173", "1663527611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7109", "0.006260747744041133", "3.5154722974607373", "1663527611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7109", "0.004421849853096322", "1.760368799489173", "1663527611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7109", "0.006260747744041133", "3.5154722974607373", "1663527611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7110", "0.004411362887579842", "1.7603488147632043", "1663531223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7110", "0.00624595248341952", "3.5154450051843233", "1663531223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7110", "0.004411362887579842", "1.7603488147632043", "1663531223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7110", "0.00624595248341952", "3.5154450051843233", "1663531223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7111", "0.004408581185889694", "1.7603435046149123", "1663534811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7111", "0.006242031257769379", "3.5154377598004456", "1663534811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7111", "0.004408581185889694", "1.7603435046149123", "1663534811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7111", "0.006242031257769379", "3.5154377598004456", "1663534811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7112", "0.004395448403348166", "1.7603186503455246", "1663538411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7112", "0.0062234414499921144", "3.5154036953042875", "1663538411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7112", "0.004395448403348166", "1.7603186503455246", "1663538411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7112", "0.0062234414499921144", "3.5154036953042875", "1663538411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7113", "0.004378846530359912", "1.7602872282435869", "1663542011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7113", "0.006199941887940333", "3.5153606308228524", "1663542011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7113", "0.004378846530359912", "1.7602872282435869", "1663542011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7113", "0.006199941887940333", "3.5153606308228524", "1663542011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7114", "0.004377497516478897", "1.760284642123904", "1663545611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7114", "0.006198044147372126", "3.5153571099084084", "1663545611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7114", "0.004377497516478897", "1.760284642123904", "1663545611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7114", "0.006198044147372126", "3.5153571099084084", "1663545611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7115", "0.004363560058604716", "1.760258264691837", "1663549211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7115", "0.0061783153294968345", "3.515320957903157", "1663549211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7115", "0.004363560058604716", "1.760258264691837", "1663549211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7115", "0.0061783153294968345", "3.515320957903157", "1663549211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7116", "0.0043303701829753025", "1.7601952324739571", "1663552811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7116", "0.006131412284053365", "3.515234723520934", "1663552811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7116", "0.0043303701829753025", "1.7601952324739571", "1663552811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7116", "0.006131412284053365", "3.515234723520934", "1663552811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7117", "0.004291809883876782", "1.7601222442944329", "1663556423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7117", "0.006076832642626616", "3.515134695395363", "1663556423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7117", "0.004291809883876782", "1.7601222442944329", "1663556423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7117", "0.006076832642626616", "3.515134695395363", "1663556423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7118", "0.004268239973740272", "1.7600776262404918", "1663560011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7118", "0.006043472309491414", "3.515073550461257", "1663560011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7118", "0.004268239973740272", "1.7600776262404918", "1663560011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7118", "0.006043472309491414", "3.515073550461257", "1663560011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7119", "0.004253423128304198", "1.7600495326917887", "1663563623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7119", "0.006022516970186662", "3.515035082897134", "1663563623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7119", "0.004253423128304198", "1.7600495326917887", "1663563623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7119", "0.006022516970186662", "3.515035082897134", "1663563623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7120", "0.004238907497549342", "1.7600220358626117", "1663567211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7120", "0.006001978441549753", "3.5149974141477487", "1663567211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7120", "0.004238907497549342", "1.7600220358626117", "1663567211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7120", "0.006001978441549753", "3.5149974141477487", "1663567211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7121", "0.00422735948711429", "1.760000130796266", "1663570811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7121", "0.005985649500387938", "3.5149674268710265", "1663570811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7121", "0.00422735948711429", "1.760000130796266", "1663570811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7121", "0.005985649500387938", "3.5149674268710265", "1663570811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7122", "0.004221572563071355", "1.759988987057904", "1663574411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7122", "0.005977526393327563", "3.514952289905964", "1663574411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7122", "0.004221572563071355", "1.759988987057904", "1663574411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7122", "0.005977526393327563", "3.514952289905964", "1663574411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7123", "0.004212219943387125", "1.759971232569755", "1663578023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7123", "0.005964306652567863", "3.5149279943821488", "1663578023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7123", "0.004212219943387125", "1.759971232569755", "1663578023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7123", "0.005964306652567863", "3.5149279943821488", "1663578023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7124", "0.0041956007946754095", "1.7599397787191935", "1663581611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7124", "0.005940781793100153", "3.5148848849301326", "1663581611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7124", "0.0041956007946754095", "1.7599397787191935", "1663581611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7124", "0.005940781793100153", "3.5148848849301326", "1663581611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7125", "0.0041783528165915745", "1.7599070349845367", "1663585211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7125", "0.005916402443076628", "3.5148400785574307", "1663585211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7125", "0.0041783528165915745", "1.7599070349845367", "1663585211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7125", "0.005916402443076628", "3.5148400785574307", "1663585211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7126", "0.0041664799332708944", "1.7598845672301398", "1663588823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7126", "0.005899594850412692", "3.514809282742791", "1663588823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7126", "0.0041664799332708944", "1.7598845672301398", "1663588823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7126", "0.005899594850412692", "3.514809282742791", "1663588823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7127", "0.004152154064460339", "1.759856702658127", "1663592411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7127", "0.005879584736248634", "3.514771627105577", "1663592411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7127", "0.004152154064460339", "1.759856702658127", "1663592411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7127", "0.005879584736248634", "3.514771627105577", "1663592411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7128", "0.004135008792825349", "1.7598242591193618", "1663596011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7128", "0.005855312792724074", "3.5147271566369236", "1663596011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7128", "0.004135008792825349", "1.7598242591193618", "1663596011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7128", "0.005855312792724074", "3.5147271566369236", "1663596011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7129", "0.004124245745668552", "1.7598039099962162", "1663599611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7129", "0.005840069649457156", "3.5146992515261504", "1663599611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7129", "0.004124245745668552", "1.7598039099962162", "1663599611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7129", "0.005840069649457156", "3.5146992515261504", "1663599611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7130", "0.004108689777404539", "1.7597742985209648", "1663603211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7130", "0.005818110265096529", "3.5146587876809448", "1663603211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7130", "0.004108689777404539", "1.7597742985209648", "1663603211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7130", "0.005818110265096529", "3.5146587876809448", "1663603211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7131", "0.004094131342968282", "1.7597465265517769", "1663606811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7131", "0.005797580220657866", "3.514620879428271", "1663606811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7131", "0.004094131342968282", "1.7597465265517769", "1663606811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7131", "0.005797580220657866", "3.514620879428271", "1663606811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7132", "0.004098922530777017", "1.7597542109286313", "1663610411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7132", "0.005804857080950864", "3.5146323957174603", "1663610411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7132", "0.004098922530777017", "1.7597542109286313", "1663610411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7132", "0.005804857080950864", "3.5146323957174603", "1663610411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7133", "0.00408220835290551", "1.7597225887432493", "1663614011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7133", "0.00578119326670701", "3.514589046856312", "1663614011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7133", "0.00408220835290551", "1.7597225887432493", "1663614011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7133", "0.00578119326670701", "3.514589046856312", "1663614011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7134", "0.004068384162592714", "1.7596960814632179", "1663617623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7134", "0.005761747153482802", "3.5145529605916637", "1663617623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7134", "0.004068384162592714", "1.7596960814632179", "1663617623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7134", "0.005761747153482802", "3.5145529605916637", "1663617623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7135", "0.004051695181159036", "1.759664461533797", "1663621211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7135", "0.005738135161457906", "3.5145096469936754", "1663621211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7135", "0.004051695181159036", "1.759664461533797", "1663621211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7135", "0.005738135161457906", "3.5145096469936754", "1663621211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7136", "0.004039876017104011", "1.759642037390756", "1663624823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7136", "0.005721424112111353", "3.5144789518361788", "1663624823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7136", "0.004039876017104011", "1.759642037390756", "1663624823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7136", "0.005721424112111353", "3.5144789518361788", "1663624823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7137", "0.0040252896528170405", "1.759614320461174", "1663628411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7137", "0.005700815750594162", "3.5144410418833973", "1663628411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7137", "0.0040252896528170405", "1.759614320461174", "1663628411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7137", "0.005700815750594162", "3.5144410418833973", "1663628411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7138", "0.004006714789774403", "1.7595791993063554", "1663632011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7138", "0.005674509736609508", "3.514392880976767", "1663632011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7138", "0.004006714789774403", "1.7595791993063554", "1663632011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7138", "0.005674509736609508", "3.514392880976767", "1663632011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7139", "0.003984748695014108", "1.7595376621878744", "1663635611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7139", "0.005643402312562254", "3.5143359246252914", "1663635611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7139", "0.003984748695014108", "1.7595376621878744", "1663635611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7139", "0.005643402312562254", "3.5143359246252914", "1663635611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7140", "0.003962238288304096", "1.7594950387806467", "1663639211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7140", "0.005611544354269016", "3.5142775191798274", "1663639211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7140", "0.003962238288304096", "1.7594950387806467", "1663639211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7140", "0.005611544354269016", "3.5142775191798274", "1663639211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7141", "0.003943287880044019", "1.7594588118975467", "1663642823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7141", "0.005584847703500286", "3.514228123238893", "1663642823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7141", "0.003943287880044019", "1.7594588118975467", "1663642823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7141", "0.005584847703500286", "3.514228123238893", "1663642823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7142", "0.003929951876187738", "1.7594335763600577", "1663646411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7142", "0.005565968004197801", "3.514193532205879", "1663646411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7142", "0.003929951876187738", "1.7594335763600577", "1663646411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7142", "0.005565968004197801", "3.514193532205879", "1663646411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7143", "0.003913978624523973", "1.7594032180928112", "1663650011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7143", "0.005543402014101959", "3.514152013303947", "1663650011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7143", "0.003913978624523973", "1.7594032180928112", "1663650011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7143", "0.005543402014101959", "3.514152013303947", "1663650011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7144", "0.00390031185002938", "1.759377322651366", "1663653611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7144", "0.005524066125729826", "3.5141165417822093", "1663653611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7144", "0.00390031185002938", "1.759377322651366", "1663653611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7144", "0.005524066125729826", "3.5141165417822093", "1663653611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7145", "0.0038863990646879824", "1.7593510047583838", "1663657211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7145", "0.005504366535419271", "3.51408046052507", "1663657211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7145", "0.0038863990646879824", "1.7593510047583838", "1663657211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7145", "0.005504366535419271", "3.51408046052507", "1663657211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7146", "0.00387383083446164", "1.7593272325808218", "1663660811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7146", "0.005486569893936574", "3.514047867703217", "1663660811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7146", "0.00387383083446164", "1.7593272325808218", "1663660811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7146", "0.005486569893936574", "3.514047867703217", "1663660811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7147", "0.00386004656609889", "1.75930113690905", "1663664423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7147", "0.005467059679162487", "3.5140121058654965", "1663664423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7147", "0.00386004656609889", "1.75930113690905", "1663664423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7147", "0.005467059679162487", "3.5140121058654965", "1663664423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7148", "0.0038464557996944486", "1.7592753898420512", "1663668023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7148", "0.0054478296494174265", "3.5139768343050592", "1663668023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7148", "0.0038464557996944486", "1.7592753898420512", "1663668023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7148", "0.0054478296494174265", "3.5139768343050592", "1663668023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7149", "0.003833353312802826", "1.7592506033072852", "1663671611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7149", "0.005429277783667205", "3.5139428533439068", "1663671611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7149", "0.003833353312802826", "1.7592506033072852", "1663671611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7149", "0.005429277783667205", "3.5139428533439068", "1663671611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7150", "0.0038205863865555037", "1.759226449605319", "1663675211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7150", "0.00541120171337365", "3.5139097413139035", "1663675211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7150", "0.0038205863865555037", "1.759226449605319", "1663675211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7150", "0.00541120171337365", "3.5139097413139035", "1663675211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7151", "0.003798193698413274", "1.7591840885870516", "1663678811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7151", "0.005379495633143739", "3.5138516664048405", "1663678811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7151", "0.003798193698413274", "1.7591840885870516", "1663678811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7151", "0.005379495633143739", "3.5138516664048405", "1663678811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7152", "0.0037774226227073734", "1.759144798091137", "1663682411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7152", "0.005350084516832929", "3.513797798883672", "1663682411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7152", "0.0037774226227073734", "1.759144798091137", "1663682411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7152", "0.005350084516832929", "3.513797798883672", "1663682411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7153", "0.0037623653713804556", "1.7591162973062413", "1663686023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7153", "0.00532877055660352", "3.5137587372396064", "1663686023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7153", "0.0037623653713804556", "1.7591162973062413", "1663686023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7153", "0.00532877055660352", "3.5137587372396064", "1663686023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7154", "0.0037491490518364286", "1.7590912878212308", "1663689611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7154", "0.005310060049835213", "3.513724455751041", "1663689611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7154", "0.0037491490518364286", "1.7590912878212308", "1663689611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7154", "0.005310060049835213", "3.513724455751041", "1663689611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7155", "0.003740772114076634", "1.7590750101802153", "1663693211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7155", "0.005298352854291678", "3.5137024459543156", "1663693211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7155", "0.003740772114076634", "1.7590750101802153", "1663693211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7155", "0.005298352854291678", "3.5137024459543156", "1663693211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7156", "0.0037043902802186297", "1.7590061123570437", "1663696811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7156", "0.005246864951341223", "3.513608041485363", "1663696811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7156", "0.0037043902802186297", "1.7590061123570437", "1663696811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7156", "0.005246864951341223", "3.513608041485363", "1663696811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7157", "0.0036780112322805036", "1.7589562218288906", "1663700411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7157", "0.005209509865581464", "3.5135396349169867", "1663700411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7157", "0.0036780112322805036", "1.7589562218288906", "1663700411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7157", "0.005209509865581464", "3.5135396349169867", "1663700411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7158", "0.0036643921785735273", "1.7589303326005916", "1663704011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7158", "0.005190271043173757", "3.5135042308236724", "1663704011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7158", "0.0036643921785735273", "1.7589303326005916", "1663704011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7158", "0.005190271043173757", "3.5135042308236724", "1663704011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7159", "0.003650118963939425", "1.7589033384438142", "1663707611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7159", "0.00517005857281799", "3.5134672176232833", "1663707611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7159", "0.003650118963939425", "1.7589033384438142", "1663707611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7159", "0.00517005857281799", "3.5134672176232833", "1663707611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7160", "0.0036297282008377163", "1.758864774495881", "1663711211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7160", "0.0051411829116611765", "3.513414340346363", "1663711211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7160", "0.0036297282008377163", "1.758864774495881", "1663711211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7160", "0.0051411829116611765", "3.513414340346363", "1663711211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7161", "0.0036186757614306004", "1.7588438589936406", "1663714811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7161", "0.0051255358692825605", "3.5133856708106803", "1663714811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7161", "0.0036186757614306004", "1.7588438589936406", "1663714811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7161", "0.0051255358692825605", "3.5133856708106803", "1663714811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7162", "0.0036086105288998297", "1.7588248217419815", "1663718423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7162", "0.005111282808845861", "3.513359568668231", "1663718423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7162", "0.0036086105288998297", "1.7588248217419815", "1663718423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7162", "0.005111282808845861", "3.513359568668231", "1663718423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7163", "0.003598491157848575", "1.7588056753315704", "1663722011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7163", "0.005096955483495382", "3.513333321638124", "1663722011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7163", "0.003598491157848575", "1.7588056753315704", "1663722011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7163", "0.005096955483495382", "3.513333321638124", "1663722011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7164", "0.003582028502160962", "1.7587745404942947", "1663725611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7164", "0.005073642304961762", "3.513290630572418", "1663725611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7164", "0.003582028502160962", "1.7587745404942947", "1663725611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7164", "0.005073642304961762", "3.513290630572418", "1663725611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7165", "0.0035580502787581052", "1.7587291907570552", "1663729211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7165", "0.005039686475849866", "3.5132284492007546", "1663729211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7165", "0.0035580502787581052", "1.7587291907570552", "1663729211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7165", "0.005039686475849866", "3.5132284492007546", "1663729211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7166", "0.003548177223716654", "1.758710518437395", "1663732811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7166", "0.005025704935255295", "3.513202846236249", "1663732811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7166", "0.003548177223716654", "1.758710518437395", "1663732811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7166", "0.005025704935255295", "3.513202846236249", "1663732811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7167", "0.0035384716065951127", "1.7586921412670298", "1663736411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7167", "0.005011968179902565", "3.513177663244549", "1663736411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7167", "0.0035384716065951127", "1.7586921412670298", "1663736411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7167", "0.005011968179902565", "3.513177663244549", "1663736411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7168", "0.0035282463356991855", "1.7586727937417157", "1663740011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7168", "0.004997491066321621", "3.5131511408610314", "1663740011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7168", "0.0035282463356991855", "1.7586727937417157", "1663740011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7168", "0.004997491066321621", "3.5131511408610314", "1663740011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7169", "0.0035126432968554415", "1.7586432759866706", "1663743611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7169", "0.00497539812660764", "3.5131106729632284", "1663743611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7169", "0.0035126432968554415", "1.7586432759866706", "1663743611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7169", "0.00497539812660764", "3.5131106729632284", "1663743611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7170", "0.0034934853689293677", "1.7586070385007437", "1663747223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7170", "0.0049482697022898885", "3.5130609886123843", "1663747223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7170", "0.0034934853689293677", "1.7586070385007437", "1663747223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7170", "0.0049482697022898885", "3.5130609886123843", "1663747223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7171", "0.003473525400175771", "1.758569150792879", "1663750811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7171", "0.00492005305756563", "3.513009136223493", "1663750811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7171", "0.003473525400175771", "1.758569150792879", "1663750811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7171", "0.00492005305756563", "3.513009136223493", "1663750811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7172", "0.0034544192509294836", "1.758533017462312", "1663754411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7172", "0.004892995610007233", "3.512959590068139", "1663754411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7172", "0.0034544192509294836", "1.758533017462312", "1663754411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7172", "0.004892995610007233", "3.512959590068139", "1663754411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7173", "0.0034352411586313176", "1.7584967192500445", "1663758011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7173", "0.004865846515452844", "3.512909838222672", "1663758011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7173", "0.0034352411586313176", "1.7584967192500445", "1663758011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7173", "0.004865846515452844", "3.512909838222672", "1663758011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7174", "0.0034244114869676867", "1.7584762383861676", "1663761611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7174", "0.004850509828258127", "3.512881754630541", "1663761611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7174", "0.0034244114869676867", "1.7584762383861676", "1663761611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7174", "0.004850509828258127", "3.512881754630541", "1663761611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7175", "0.003413652575856096", "1.7584556885097657", "1663765211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7175", "0.00483534578668545", "3.5128537205581623", "1663765211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7175", "0.003413652575856096", "1.7584556885097657", "1663765211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7175", "0.00483534578668545", "3.5128537205581623", "1663765211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7176", "0.0033972442433835024", "1.7584246583612972", "1663768811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7176", "0.004812108338537273", "3.5128111708752483", "1663768811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7176", "0.0033972442433835024", "1.7584246583612972", "1663768811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7176", "0.004812108338537273", "3.5128111708752483", "1663768811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7177", "0.0033778345025994574", "1.7583879345075915", "1663772423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7177", "0.004784626559007321", "3.512760826250537", "1663772423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7177", "0.0033778345025994574", "1.7583879345075915", "1663772423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7177", "0.004784626559007321", "3.512760826250537", "1663772423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7178", "0.0033633120342753714", "1.7583603734005846", "1663776011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7178", "0.004764094559505744", "3.5127231025144425", "1663776011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7178", "0.0033633120342753714", "1.7583603734005846", "1663776011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7178", "0.004764094559505744", "3.5127231025144425", "1663776011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7179", "0.0033489299451234626", "1.7583331423992525", "1663779623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7179", "0.004743738244751259", "3.512685785439556", "1663779623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7179", "0.0033489299451234626", "1.7583331423992525", "1663779623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7179", "0.004743738244751259", "3.512685785439556", "1663779623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7180", "0.003335858129830267", "1.7583083349182433", "1663783211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7180", "0.004725256936536605", "3.5126518301941494", "1663783211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7180", "0.003335858129830267", "1.7583083349182433", "1663783211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7180", "0.004725256936536605", "3.5126518301941494", "1663783211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7181", "0.003322550226704483", "1.758283154700575", "1663786811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7181", "0.004706414913382824", "3.512617311384927", "1663786811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7181", "0.003322550226704483", "1.758283154700575", "1663786811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7181", "0.004706414913382824", "3.512617311384927", "1663786811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7182", "0.00330933378602875", "1.7582581617814654", "1663790411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7182", "0.004687697272418531", "3.512583039177674", "1663790411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7182", "0.00330933378602875", "1.7582581617814654", "1663790411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7182", "0.004687697272418531", "3.512583039177674", "1663790411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7183", "0.003296107506000462", "1.7582331437278622", "1663794011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7183", "0.004668967999230017", "3.512548737098876", "1663794011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7183", "0.003296107506000462", "1.7582331437278622", "1663794011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7183", "0.004668967999230017", "3.512548737098876", "1663794011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7184", "0.003282269093425655", "1.7582068672573605", "1663797611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7184", "0.004649407785355746", "3.5125127810027172", "1663797611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7184", "0.003282269093425655", "1.7582068672573605", "1663797611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7184", "0.004649407785355746", "3.5125127810027172", "1663797611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7185", "0.003269570205015025", "1.7581828456836102", "1663801211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7185", "0.0046314256705649775", "3.512479845886603", "1663801211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7185", "0.003269570205015025", "1.7581828456836102", "1663801211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7185", "0.0046314256705649775", "3.512479845886603", "1663801211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7186", "0.0032591521827476542", "1.7581631133268656", "1663804823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7186", "0.004616682377893955", "3.5124528095289578", "1663804823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7186", "0.0032591521827476542", "1.7581631133268656", "1663804823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7186", "0.004616682377893955", "3.5124528095289578", "1663804823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7187", "0.00325000254224794", "1.7581458047927572", "1663808411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7187", "0.0046037263943592074", "3.512429078950706", "1663808411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7187", "0.00325000254224794", "1.7581458047927572", "1663808411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7187", "0.0046037263943592074", "3.512429078950706", "1663808411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7188", "0.0032389559223147076", "1.758124914124309", "1663812011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7188", "0.004588081959368295", "3.5124004325611047", "1663812011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7188", "0.0032389559223147076", "1.758124914124309", "1663812011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7188", "0.004588081959368295", "3.5124004325611047", "1663812011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7189", "0.003215220433552641", "1.7580800303327244", "1663815611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7189", "0.004554466071698754", "3.5123388831080553", "1663815611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7189", "0.003215220433552641", "1.7580800303327244", "1663815611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7189", "0.004554466071698754", "3.5123388831080553", "1663815611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7190", "0.003205412836235174", "1.758061458026788", "1663819211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7190", "0.004540585165518392", "3.512313433316289", "1663819211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7190", "0.003205412836235174", "1.758061458026788", "1663819211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7190", "0.004540585165518392", "3.512313433316289", "1663819211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7191", "0.003195701022758", "1.758043093051919", "1663822811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7191", "0.0045268305414156934", "3.5122882491930154", "1663822811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7191", "0.003195701022758", "1.758043093051919", "1663822811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7191", "0.0045268305414156934", "3.5122882491930154", "1663822811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7192", "0.0031845794465309297", "1.75802206224623", "1663826411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7192", "0.004511079275187669", "3.512259409337423", "1663826411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7192", "0.0031845794465309297", "1.75802206224623", "1663826411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7192", "0.004511079275187669", "3.512259409337423", "1663826411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7193", "0.0031734814011872546", "1.7580010759360374", "1663830011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7193", "0.00449536131535773", "3.5122306304685154", "1663830011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7193", "0.0031734814011872546", "1.7580010759360374", "1663830011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7193", "0.00449536131535773", "3.5122306304685154", "1663830011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7194", "0.0031625551890006793", "1.7579803876053146", "1663833611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7194", "0.004479896326495664", "3.5122022793489998", "1663833611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7194", "0.0031625551890006793", "1.7579803876053146", "1663833611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7194", "0.004479896326495664", "3.5122022793489998", "1663833611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7195", "0.003151603892008672", "1.7579596708356677", "1663837211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7195", "0.00446438900647519", "3.512173875700186", "1663837211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7195", "0.003151603892008672", "1.7579596708356677", "1663837211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7195", "0.00446438900647519", "3.512173875700186", "1663837211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7196", "0.0031405973053891655", "1.7579388004102143", "1663840811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7196", "0.00444882089653972", "3.5121452962035704", "1663840811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7196", "0.0031405973053891655", "1.7579388004102143", "1663840811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7196", "0.00444882089653972", "3.5121452962035704", "1663840811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7197", "0.0031297049241207435", "1.757918188629527", "1663844411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7197", "0.004433399271167299", "3.5121170410289015", "1663844411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7197", "0.0031297049241207435", "1.757918188629527", "1663844411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7197", "0.004433399271167299", "3.5121170410289015", "1663844411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7198", "0.0031189067219545077", "1.7578977680728465", "1663848011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7198", "0.004418106321576914", "3.512089038722137", "1663848011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7198", "0.0031189067219545077", "1.7578977680728465", "1663848011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7198", "0.004418106321576914", "3.512089038722137", "1663848011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7199", "0.003108137869985589", "1.7578774030716773", "1663851611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7199", "0.004402854901755151", "3.5120611125315278", "1663851611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7199", "0.003108137869985589", "1.7578774030716773", "1663851611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7199", "0.004402854901755151", "3.5120611125315278", "1663851611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7200", "0.0030976481316693696", "1.757857571638532", "1663855211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7200", "0.0043879967108644054", "3.5120339139099976", "1663855211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7200", "0.0030976481316693696", "1.757857571638532", "1663855211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7200", "0.0043879967108644054", "3.5120339139099976", "1663855211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7201", "0.0030849064947304954", "1.7578334762661798", "1663858811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7201", "0.00436995115036413", "3.5120008719895757", "1663858811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7201", "0.0030849064947304954", "1.7578334762661798", "1663858811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7201", "0.00436995115036413", "3.5120008719895757", "1663858811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7202", "0.0030763488181145345", "1.7578172940552366", "1663862411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7202", "0.004357830828263895", "3.5119786806434234", "1663862411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7202", "0.0030763488181145345", "1.7578172940552366", "1663862411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7202", "0.004357830828263895", "3.5119786806434234", "1663862411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7203", "0.0030652805618013685", "1.7577959932360212", "1663866011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7203", "0.004342287282374326", "3.5119497336611123", "1663866011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7203", "0.0030652805618013685", "1.7577959932360212", "1663866011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7203", "0.004342287282374326", "3.5119497336611123", "1663866011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7204", "0.0030557331003568593", "1.7577778818288095", "1663869611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7204", "0.004328785636479891", "3.5119249375656105", "1663869611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7204", "0.0030557331003568593", "1.7577778818288095", "1663869611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7204", "0.004328785636479891", "3.5119249375656105", "1663869611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7205", "0.0030467029873476634", "1.7577608062555639", "1663873211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7205", "0.004315996155430744", "3.511901521048634", "1663873211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7205", "0.0030467029873476634", "1.7577608062555639", "1663873211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7205", "0.004315996155430744", "3.511901521048634", "1663873211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7206", "0.003035255304877644", "1.7577391081195946", "1663876811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7206", "0.00429980083929666", "3.5118718016272776", "1663876811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7206", "0.003035255304877644", "1.7577391081195946", "1663876811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7206", "0.00429980083929666", "3.5118718016272776", "1663876811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7207", "0.0030061319369171532", "1.7576840381213825", "1663880411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7207", "0.004258552449353731", "3.511796280606171", "1663880411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7207", "0.0030061319369171532", "1.7576840381213825", "1663880411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7207", "0.004258552449353731", "3.511796280606171", "1663880411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7208", "0.0029881688648325504", "1.757650073541523", "1663884011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7208", "0.0042331099088727476", "3.5117497011447494", "1663884011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7208", "0.0029881688648325504", "1.757650073541523", "1663884011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7208", "0.0042331099088727476", "3.5117497011447494", "1663884011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7209", "0.0029752055670165412", "1.7576255625337995", "1663887611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7209", "0.004214748917511406", "3.5117160863838404", "1663887611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7209", "0.0029752055670165412", "1.7576255625337995", "1663887611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7209", "0.004214748917511406", "3.5117160863838404", "1663887611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7210", "0.00295906054440805", "1.7575950355175403", "1663891211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7210", "0.0041918813480755195", "3.5116742211208396", "1663891211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7210", "0.00295906054440805", "1.7575950355175403", "1663891211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7210", "0.0041918813480755195", "3.5116742211208396", "1663891211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7211", "0.0029416896854900436", "1.757562190686612", "1663894811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7211", "0.004167277475311891", "3.5116291770954837", "1663894811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7211", "0.0029416896854900436", "1.757562190686612", "1663894811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7211", "0.004167277475311891", "3.5116291770954837", "1663894811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7212", "0.002925392805099777", "1.7575313380044784", "1663898411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7212", "0.0041442084840517986", "3.5115868924441522", "1663898411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7212", "0.002925392805099777", "1.7575313380044784", "1663898411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7212", "0.0041442084840517986", "3.5115868924441522", "1663898411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7213", "0.0029151610110130072", "1.757511962760766", "1663902011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7213", "0.0041297265847179574", "3.5115603413623337", "1663902011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7213", "0.0029151610110130072", "1.757511962760766", "1663902011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7213", "0.0041297265847179574", "3.5115603413623337", "1663902011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7214", "0.002902689383055707", "1.7574883806129253", "1663905611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7214", "0.004112062118110344", "3.5115280007826293", "1663905611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7214", "0.002902689383055707", "1.7574883806129253", "1663905611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7214", "0.004112062118110344", "3.5115280007826293", "1663905611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7215", "0.0028888880816486887", "1.7574622816929821", "1663909211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7215", "0.004092515216289973", "3.5114922104580044", "1663909211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7215", "0.0028888880816486887", "1.7574622816929821", "1663909211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7215", "0.004092515216289973", "3.5114922104580044", "1663909211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7216", "0.0028749916465924136", "1.7574359690804848", "1663912811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7216", "0.0040728456078736215", "3.5114561510417577", "1663912811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7216", "0.0028749916465924136", "1.7574359690804848", "1663912811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7216", "0.0040728456078736215", "3.5114561510417577", "1663912811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7217", "0.002861282621561297", "1.7574100483032995", "1663916411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7217", "0.004053428034347856", "3.5114206023250927", "1663916411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7217", "0.002861282621561297", "1.7574100483032995", "1663916411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7217", "0.004053428034347856", "3.5114206023250927", "1663916411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7218", "0.0028501570057406006", "1.757388992674181", "1663920011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7218", "0.004037676566920987", "3.5113917396814585", "1663920011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7218", "0.0028501570057406006", "1.757388992674181", "1663920011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7218", "0.004037676566920987", "3.5113917396814585", "1663920011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7219", "0.002832922919693376", "1.757356407208185", "1663923611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7219", "0.004013265838295125", "3.5113470503382413", "1663923611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7219", "0.002832922919693376", "1.757356407208185", "1663923611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7219", "0.004013265838295125", "3.5113470503382413", "1663923611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7220", "0.0028156690942627216", "1.7573237844169565", "1663927211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7220", "0.003988827102293621", "3.5113023097313465", "1663927211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7220", "0.0028156690942627216", "1.7573237844169565", "1663927211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7220", "0.003988827102293621", "3.5113023097313465", "1663927211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7221", "0.0027983611279074473", "1.757291056890051", "1663930811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7221", "0.003964312475918793", "3.511257427090477", "1663930811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7221", "0.0027983611279074473", "1.757291056890051", "1663930811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7221", "0.003964312475918793", "3.511257427090477", "1663930811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7222", "0.0027819569002179825", "1.7572600338685989", "1663934411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7222", "0.00394107939918629", "3.5112148850464955", "1663934411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7222", "0.0027819569002179825", "1.7572600338685989", "1663934411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7222", "0.00394107939918629", "3.5112148850464955", "1663934411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7223", "0.0027704535139972996", "1.7572382749080806", "1663938011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7223", "0.003924788793505835", "3.5111850498140353", "1663938011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7223", "0.0027704535139972996", "1.7572382749080806", "1663938011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7223", "0.003924788793505835", "3.5111850498140353", "1663938011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7224", "0.0027590073996828076", "1.7572166329360128", "1663941611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7224", "0.0039085761815608085", "3.5111553688116968", "1663941611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7224", "0.0027590073996828076", "1.7572166329360128", "1663941611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7224", "0.0039085761815608085", "3.5111553688116968", "1663941611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7225", "0.0027456511583161657", "1.7571913796067973", "1663945211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7225", "0.0038896578915588787", "3.511120734770723", "1663945211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7225", "0.0027456511583161657", "1.7571913796067973", "1663945211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7225", "0.0038896578915588787", "3.511120734770723", "1663945211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7226", "0.002728340150474039", "1.7571585955298386", "1663948811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7226", "0.0038651568919986267", "3.5110758103495057", "1663948811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7226", "0.002728340150474039", "1.7571585955298386", "1663948811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7226", "0.0038651568919986267", "3.5110758103495057", "1663948811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7227", "0.0027112901776432177", "1.7571263526442273", "1663952411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7227", "0.003841008577738178", "3.5110315942378776", "1663952411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7227", "0.0027112901776432177", "1.7571263526442273", "1663952411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7227", "0.003841008577738178", "3.5110315942378776", "1663952411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7228", "0.0026942717805937253", "1.7570941649804608", "1663956011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7228", "0.003816906540231419", "3.510987456969531", "1663956011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7228", "0.0026942717805937253", "1.7570941649804608", "1663956011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7228", "0.003816906540231419", "3.510987456969531", "1663956011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7229", "0.0026805668977711587", "1.7570682471884198", "1663959611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7229", "0.003797496154994685", "3.5109519151563653", "1663959611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7229", "0.0026805668977711587", "1.7570682471884198", "1663959611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7229", "0.003797496154994685", "3.5109519151563653", "1663959611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7230", "0.002663600791856165", "1.7570361564140693", "1663963211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7230", "0.0037734688058663046", "3.510907912042271", "1663963211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7230", "0.002663600791856165", "1.7570361564140693", "1663963211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7230", "0.0037734688058663046", "3.510907912042271", "1663963211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7231", "0.002647023794974828", "1.7570048139589027", "1663966811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7231", "0.0037499880630681996", "3.510864926200484", "1663966811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7231", "0.002647023794974828", "1.7570048139589027", "1663966811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7231", "0.0037499880630681996", "3.510864926200484", "1663966811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7232", "0.002631336148481007", "1.75697515301364", "1663970411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7232", "0.003727767013423908", "3.5108242464685935", "1663970411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7232", "0.002631336148481007", "1.75697515301364", "1663970411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7232", "0.003727767013423908", "3.5108242464685935", "1663970411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7233", "0.0026153037079580843", "1.7569448209302376", "1663974011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7233", "0.0037050643963610964", "3.510782659870526", "1663974011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7233", "0.0026153037079580843", "1.7569448209302376", "1663974011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7233", "0.0037050643963610964", "3.510782659870526", "1663974011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7234", "0.002599393970842008", "1.756914737819507", "1663977611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7234", "0.0036825294835300614", "3.5107414026141233", "1663977611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7234", "0.002599393970842008", "1.756914737819507", "1663977611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7234", "0.0036825294835300614", "3.5107414026141233", "1663977611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7235", "0.002586353584113005", "1.7568900769977926", "1663981211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7235", "0.003664059914625527", "3.5107075839792325", "1663981211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7235", "0.002586353584113005", "1.7568900769977926", "1663981211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7235", "0.003664059914625527", "3.5107075839792325", "1663981211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7236", "0.0025779820194872126", "1.7568742487954074", "1663984811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7236", "0.00365220175314984", "3.5106858755556916", "1663984811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7236", "0.0025779820194872126", "1.7568742487954074", "1663984811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7236", "0.00365220175314984", "3.5106858755556916", "1663984811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7237", "0.0025707492776036885", "1.7568605737762233", "1663988411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7237", "0.0036419567032245008", "3.510667120214858", "1663988411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7237", "0.0025707492776036885", "1.7568605737762233", "1663988411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7237", "0.0036419567032245008", "3.510667120214858", "1663988411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7238", "0.0025541499868556956", "1.7568291717078084", "1663992023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7238", "0.0036184503605866383", "3.510624064623201", "1663992023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7238", "0.0025541499868556956", "1.7568291717078084", "1663992023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7238", "0.0036184503605866383", "3.510624064623201", "1663992023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7239", "0.002537731799464302", "1.7567981297812019", "1663995611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7239", "0.0035951941750533615", "3.5105814903063797", "1663995611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7239", "0.002537731799464302", "1.7567981297812019", "1663995611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7239", "0.0035951941750533615", "3.5105814903063797", "1663995611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7240", "0.0025213627305335235", "1.7567671786505383", "1663999223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7240", "0.0035720082607809357", "3.5105390419206546", "1663999223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7240", "0.0025213627305335235", "1.7567671786505383", "1663999223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7240", "0.0035720082607809357", "3.5105390419206546", "1663999223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7241", "0.0025096580105007193", "1.7567450495281225", "1664002811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7241", "0.0035554282229613462", "3.510508690779383", "1664002811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7241", "0.0025096580105007193", "1.7567450495281225", "1664002811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7241", "0.0035554282229613462", "3.510508690779383", "1664002811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7242", "0.0024941980746519083", "1.7567158193711954", "1664006411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7242", "0.003533529278069102", "3.510468601149159", "1664006411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7242", "0.0024941980746519083", "1.7567158193711954", "1664006411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7242", "0.003533529278069102", "3.510468601149159", "1664006411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7243", "0.002478050596617948", "1.7566852892733147", "1664010011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7243", "0.0035106563908224976", "3.5104267285655415", "1664010011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7243", "0.002478050596617948", "1.7566852892733147", "1664010011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7243", "0.0035106563908224976", "3.5104267285655415", "1664010011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7244", "0.00246538814272157", "1.7566613483220246", "1664013611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7244", "0.0034927200074528764", "3.5103938930707512", "1664013611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7244", "0.00246538814272157", "1.7566613483220246", "1664013611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7244", "0.0034927200074528764", "3.5103938930707512", "1664013611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7245", "0.002448964027626652", "1.756630295180852", "1664017211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7245", "0.003469455187196902", "3.5103513030055016", "1664017211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7245", "0.002448964027626652", "1.756630295180852", "1664017211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7245", "0.003469455187196902", "3.5103513030055016", "1664017211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7246", "0.0024228787784074867", "1.7565809656245954", "1664020811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7246", "0.0034325088371581947", "3.5102836534460833", "1664020811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7246", "0.0024228787784074867", "1.7565809656245954", "1664020811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7246", "0.0034325088371581947", "3.5102836534460833", "1664020811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7247", "0.002402750558753594", "1.7565428931153546", "1664024411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7247", "0.0034040027034786748", "3.510231447301329", "1664024411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7247", "0.002402750558753594", "1.7565428931153546", "1664024411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7247", "0.0034040027034786748", "3.510231447301329", "1664024411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7248", "0.0023866279766590333", "1.756512395364232", "1664028011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7248", "0.003381170093417384", "3.510189629163003", "1664028011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7248", "0.0023866279766590333", "1.756512395364232", "1664028011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7248", "0.003381170093417384", "3.510189629163003", "1664028011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7249", "0.002370487428062014", "1.7564818550640013", "1664031611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7249", "0.003358315052856622", "3.510147758694316", "1664031611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7249", "0.002370487428062014", "1.7564818550640013", "1664031611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7249", "0.003358315052856622", "3.510147758694316", "1664031611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7250", "0.002354445259634732", "1.7564515084596266", "1664035211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7250", "0.0033355965825924865", "3.5101061483589824", "1664035211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7250", "0.002354445259634732", "1.7564515084596266", "1664035211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7250", "0.0033355965825924865", "3.5101061483589824", "1664035211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7251", "0.0023392206119644795", "1.7564227125634577", "1664038811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7251", "0.003314034315751576", "3.510066661248577", "1664038811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7251", "0.0023392206119644795", "1.7564227125634577", "1664038811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7251", "0.003314034315751576", "3.510066661248577", "1664038811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7252", "0.0023256563036509205", "1.7563970302870986", "1664042411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7252", "0.0032948330574862545", "3.510031462707439", "1664042411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7252", "0.0023256563036509205", "1.7563970302870986", "1664042411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7252", "0.0032948330574862545", "3.510031462707439", "1664042411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7253", "0.0023191801791719088", "1.7563847825715198", "1664046011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7253", "0.0032856606297537003", "3.5100146668031837", "1664046011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7253", "0.0023191801791719088", "1.7563847825715198", "1664046011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7253", "0.0032856606297537003", "3.5100146668031837", "1664046011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7254", "0.00230235720287155", "1.756352973760352", "1664049611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7254", "0.0032618309643432618", "3.5099710407847016", "1664049611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7254", "0.00230235720287155", "1.756352973760352", "1664049611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7254", "0.0032618309643432618", "3.5099710407847016", "1664049611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7255", "0.002293373797951987", "1.7563359856681318", "1664053211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7255", "0.0032491068191874257", "3.5099477431013235", "1664053211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7255", "0.002293373797951987", "1.7563359856681318", "1664053211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7255", "0.0032491068191874257", "3.5099477431013235", "1664053211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7256", "0.0022866931742436345", "1.756323354965983", "1664056811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7256", "0.003239643370602243", "3.5099304192602387", "1664056811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7256", "0.0022866931742436345", "1.756323354965983", "1664056811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7256", "0.003239643370602243", "3.5099304192602387", "1664056811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7257", "0.002279509806746183", "1.7563097605368725", "1664060411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7257", "0.0032294724680866425", "3.5099117829774853", "1664060411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7257", "0.002279509806746183", "1.7563097605368725", "1664060411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7257", "0.0032294724680866425", "3.5099117829774853", "1664060411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7258", "0.0022662510751374917", "1.7562846930284362", "1664064011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7258", "0.0032106907256403685", "3.509877401125107", "1664064011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7258", "0.0022662510751374917", "1.7562846930284362", "1664064011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7258", "0.0032106907256403685", "3.509877401125107", "1664064011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7259", "0.0022529902700254498", "1.7562596215980713", "1664067611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7259", "0.0031919060175226014", "3.5098430138497827", "1664067611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7259", "0.0022529902700254498", "1.7562596215980713", "1664067611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7259", "0.0031919060175226014", "3.5098430138497827", "1664067611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7260", "0.002242881156731101", "1.7562405047770804", "1664071211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7260", "0.0031775873132083876", "3.509816796639845", "1664071211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7260", "0.002242881156731101", "1.7562405047770804", "1664071211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7260", "0.0031775873132083876", "3.509816796639845", "1664071211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7261", "0.0022335513968119664", "1.7562228554919346", "1664074811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7261", "0.0031643747159089105", "3.509792596460409", "1664074811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7261", "0.0022335513968119664", "1.7562228554919346", "1664074811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7261", "0.0031643747159089105", "3.509792596460409", "1664074811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7262", "0.0022251591646782337", "1.756206978118096", "1664078411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7262", "0.003152490393176461", "3.5097708270099086", "1664078411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7262", "0.0022251591646782337", "1.756206978118096", "1664078411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7262", "0.003152490393176461", "3.5097708270099086", "1664078411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7263", "0.002217296679187777", "1.7561921130603966", "1664082011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7263", "0.003141352641257059", "3.509750438373548", "1664082011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7263", "0.002217296679187777", "1.7561921130603966", "1664082011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7263", "0.003141352641257059", "3.509750438373548", "1664082011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7264", "0.0022016292334696413", "1.756162491702278", "1664085611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7264", "0.0031191585961011124", "3.5097098102244293", "1664085611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7264", "0.0022016292334696413", "1.756162491702278", "1664085611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7264", "0.0031191585961011124", "3.5097098102244293", "1664085611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7265", "0.002186109298600145", "1.7561331492304315", "1664089211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7265", "0.0030971734713551085", "3.5096695645307494", "1664089211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7265", "0.002186109298600145", "1.7561331492304315", "1664089211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7265", "0.0030971734713551085", "3.5096695645307494", "1664089211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7266", "0.002169242993368409", "1.7561012612662759", "1664092811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7266", "0.0030732810701814338", "3.5096258274100993", "1664092811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7266", "0.002169242993368409", "1.7561012612662759", "1664092811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7266", "0.0030732810701814338", "3.5096258274100993", "1664092811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7267", "0.0021520400757827954", "1.7560687368894832", "1664096411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7267", "0.003048911784669368", "3.509581217321169", "1664096411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7267", "0.0021520400757827954", "1.7560687368894832", "1664096411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7267", "0.003048911784669368", "3.509581217321169", "1664096411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7268", "0.0021348652688698046", "1.7560362656567978", "1664100023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7268", "0.003024582272386705", "3.5095366800506795", "1664100023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7268", "0.0021348652688698046", "1.7560362656567978", "1664100023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7268", "0.003024582272386705", "3.5095366800506795", "1664100023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7269", "0.002117723084334178", "1.7560038560202091", "1664103611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7269", "0.003000298952618813", "3.50949222724709", "1664103611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7269", "0.002117723084334178", "1.7560038560202091", "1664103611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7269", "0.003000298952618813", "3.50949222724709", "1664103611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7270", "0.0021005957008849705", "1.7559714744428545", "1664107211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7270", "0.0029760365243060175", "3.5094478128005133", "1664107211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7270", "0.0021005957008849705", "1.7559714744428545", "1664107211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7270", "0.0029760365243060175", "3.5094478128005133", "1664107211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7271", "0.002090474982530771", "1.7559523338743286", "1664110811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7271", "0.002961701770608341", "3.5094215639075386", "1664110811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7271", "0.002090474982530771", "1.7559523338743286", "1664110811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7271", "0.002961701770608341", "3.5094215639075386", "1664110811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7272", "0.002078561419950859", "1.7559297697109224", "1664114411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7272", "0.002944839400327793", "3.509390643321115", "1664114411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7272", "0.002078561419950859", "1.7559297697109224", "1664114411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7272", "0.002944839400327793", "3.509390643321115", "1664114411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7273", "0.0020669129988582745", "1.7559077470881774", "1664118011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7273", "0.0029283382380787286", "3.5093604368880227", "1664118011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7273", "0.0020669129988582745", "1.7559077470881774", "1664118011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7273", "0.0029283382380787286", "3.5093604368880227", "1664118011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7274", "0.002055204823598248", "1.7558856112648702", "1664121611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7274", "0.0029117524870752092", "3.50933007531548", "1664121611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7274", "0.002055204823598248", "1.7558856112648702", "1664121611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7274", "0.0029117524870752092", "3.50933007531548", "1664121611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7275", "0.0020434806070443994", "1.755863445341145", "1664125211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7275", "0.0028951439080876005", "3.5092996722602683", "1664125211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7275", "0.0020434806070443994", "1.755863445341145", "1664125211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7275", "0.0028951439080876005", "3.5092996722602683", "1664125211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7276", "0.00203215065886521", "1.7558420092311844", "1664128811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7276", "0.0028790993949149826", "3.5092702812674315", "1664128811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7276", "0.00203215065886521", "1.7558420092311844", "1664128811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7276", "0.0028790993949149826", "3.5092702812674315", "1664128811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7277", "0.0020209321321706802", "1.7558207994534694", "1664132411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7277", "0.0028632071064070785", "3.5092411895491344", "1664132411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7277", "0.0020209321321706802", "1.7558207994534694", "1664132411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7277", "0.0028632071064070785", "3.5092411895491344", "1664132411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7278", "0.0020095497174540742", "1.755799274158158", "1664136011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7278", "0.002847084654645122", "3.5092116690551154", "1664136011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7278", "0.0020095497174540742", "1.755799274158158", "1664136011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7278", "0.002847084654645122", "3.5092116690551154", "1664136011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7279", "0.0019989802392291465", "1.7557792897023845", "1664139611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7279", "0.0028321124084191877", "3.509184259208156", "1664139611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7279", "0.0019989802392291465", "1.7557792897023845", "1664139611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7279", "0.0028321124084191877", "3.509184259208156", "1664139611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7280", "0.0019921680349167274", "1.7557664105533224", "1664143211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7280", "0.002822462121571136", "3.5091665938617007", "1664143211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7280", "0.0019921680349167274", "1.7557664105533224", "1664143211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7280", "0.002822462121571136", "3.5091665938617007", "1664143211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7281", "0.001981894414429669", "1.7557469854592591", "1664146811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7281", "0.002807908958144899", "3.5091399511931933", "1664146811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7281", "0.001981894414429669", "1.7557469854592591", "1664146811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7281", "0.002807908958144899", "3.5091399511931933", "1664146811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7282", "0.0019705306233757853", "1.7557254985484003", "1664150411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7282", "0.0027918116827665516", "3.5091104809802607", "1664150411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7282", "0.0019705306233757853", "1.7557254985484003", "1664150411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7282", "0.0027918116827665516", "3.5091104809802607", "1664150411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7283", "0.001959067485273596", "1.7557038115042798", "1664154011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7283", "0.002775578040779689", "3.509080744965958", "1664154011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7283", "0.001959067485273596", "1.7557038115042798", "1664154011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7283", "0.002775578040779689", "3.509080744965958", "1664154011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7284", "0.0019478102282106894", "1.755682525197872", "1664157611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7284", "0.002759631929827778", "3.5090515504159914", "1664157611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7284", "0.0019478102282106894", "1.755682525197872", "1664157611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7284", "0.002759631929827778", "3.5090515504159914", "1664157611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7285", "0.0019359372535224836", "1.7556599977695098", "1664161223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7285", "0.002742841049038055", "3.509020708181716", "1664161223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7285", "0.0019359372535224836", "1.7556599977695098", "1664161223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7285", "0.002742841049038055", "3.509020708181716", "1664161223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7286", "0.0019248837628822691", "1.7556391006275036", "1664164811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7286", "0.0027271821562289546", "3.5089920445694864", "1664164811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7286", "0.0019248837628822691", "1.7556391006275036", "1664164811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7286", "0.0027271821562289546", "3.5089920445694864", "1664164811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7287", "0.0019129003868094796", "1.7556163148453952", "1664168411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7287", "0.0027102525391222844", "3.5089608831294816", "1664168411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7287", "0.0019129003868094796", "1.7556163148453952", "1664168411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7287", "0.0027102525391222844", "3.5089608831294816", "1664168411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7288", "0.001905038891437776", "1.755601452855016", "1664172011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7288", "0.0026991153575393746", "3.508940497223479", "1664172011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7288", "0.001905038891437776", "1.755601452855016", "1664172011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7288", "0.0026991153575393746", "3.508940497223479", "1664172011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7289", "0.001899565660206003", "1.755591103236352", "1664175611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7289", "0.0026913624878003033", "3.508926302681202", "1664175611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7289", "0.001899565660206003", "1.755591103236352", "1664175611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7289", "0.0026913624878003033", "3.508926302681202", "1664175611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7290", "0.0018885358702489103", "1.755570251549708", "1664179211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7290", "0.0026757368728359374", "3.5088977008548956", "1664179211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7290", "0.0018885358702489103", "1.755570251549708", "1664179211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7290", "0.0026757368728359374", "3.5088977008548956", "1664179211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7291", "0.001877485296311287", "1.7555493606869241", "1664182811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7291", "0.0026600817523089616", "3.508869045178144", "1664182811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7291", "0.001877485296311287", "1.7555493606869241", "1664182811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7291", "0.0026600817523089616", "3.508869045178144", "1664182811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7292", "0.0018685268453868169", "1.7555324240230001", "1664186411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7292", "0.002647390810288343", "3.5088458140407055", "1664186411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7292", "0.0018685268453868169", "1.7555324240230001", "1664186411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7292", "0.002647390810288343", "3.5088458140407055", "1664186411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7293", "0.0018605867899689123", "1.755517413528374", "1664190011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7293", "0.0026361422722031244", "3.508825224335742", "1664190011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7293", "0.0018605867899689123", "1.755517413528374", "1664190011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7293", "0.0026361422722031244", "3.508825224335742", "1664190011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7294", "0.001852768631101551", "1.7555026334758297", "1664193611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7294", "0.0026250664128696782", "3.5088049507099273", "1664193611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7294", "0.001852768631101551", "1.7555026334758297", "1664193611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7294", "0.0026250664128696782", "3.5088049507099273", "1664193611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7295", "0.0018441418734337644", "1.755486324784869", "1664197223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7295", "0.0026128450132055082", "3.50878258025096", "1664197223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7295", "0.0018441418734337644", "1.755486324784869", "1664197223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7295", "0.0026128450132055082", "3.50878258025096", "1664197223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7296", "0.0018344608083825237", "1.755467987753723", "1664200811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7296", "0.002599142534947034", "3.508757452505389", "1664200811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7296", "0.0018344608083825237", "1.755467987753723", "1664200811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7296", "0.002599142534947034", "3.508757452505389", "1664200811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7297", "0.0018251696502045852", "1.7554504203189403", "1664204411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7297", "0.002585980827060659", "3.5087333573202653", "1664204411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7297", "0.0018251696502045852", "1.7554504203189403", "1664204411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7297", "0.002585980827060659", "3.5087333573202653", "1664204411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7298", "0.0018157412008043914", "1.755432596241021", "1664208011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7298", "0.0025726235700364755", "3.5087089080163087", "1664208011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7298", "0.0018157412008043914", "1.755432596241021", "1664208011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7298", "0.0025726235700364755", "3.5087089080163087", "1664208011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7299", "0.0018025398160398988", "1.7554068758340866", "1664211611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7299", "0.0025541936220837658", "3.5086741693086534", "1664211611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7299", "0.0018025398160398988", "1.7554068758340866", "1664211611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7299", "0.0025541936220837658", "3.5086741693086534", "1664211611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7300", "0.0017945283881974582", "1.7553917274004969", "1664215211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7300", "0.002542844957413116", "3.508653392392793", "1664215211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7300", "0.0017945283881974582", "1.7553917274004969", "1664215211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7300", "0.002542844957413116", "3.508653392392793", "1664215211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7301", "0.0017849991171196866", "1.7553734893050035", "1664218811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7301", "0.00252942449005671", "3.508628533577007", "1664218811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7301", "0.0017849991171196866", "1.7553734893050035", "1664218811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7301", "0.00252942449005671", "3.508628533577007", "1664218811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7302", "0.0017768126079086835", "1.755357729110571", "1664222411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7302", "0.002517927875480521", "3.5086071165721684", "1664222411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7302", "0.0017768126079086835", "1.755357729110571", "1664222411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7302", "0.002517927875480521", "3.5086071165721684", "1664222411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7303", "0.0017707329412743995", "1.755346240117457", "1664226011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7303", "0.0025093132283513834", "3.5085913539455778", "1664226011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7303", "0.0017707329412743995", "1.755346240117457", "1664226011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7303", "0.0025093132283513834", "3.5085913539455778", "1664226011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7304", "0.0017599584479879259", "1.7553258604836142", "1664229611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7304", "0.0024940528267449317", "3.508563406765225", "1664229611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7304", "0.0017599584479879259", "1.7553258604836142", "1664229611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7304", "0.0024940528267449317", "3.508563406765225", "1664229611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7305", "0.001749070699138665", "1.7553052463686394", "1664233211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7305", "0.0024786392201283725", "3.5085351523609156", "1664233211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7305", "0.001749070699138665", "1.7553052463686394", "1664233211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7305", "0.0024786392201283725", "3.5085351523609156", "1664233211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7306", "0.0017388614427323351", "1.755285935288943", "1664236811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7306", "0.0024641795575723524", "3.508508670870144", "1664236811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7306", "0.0017388614427323351", "1.755285935288943", "1664236811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7306", "0.0024641795575723524", "3.508508670870144", "1664236811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7307", "0.0017271949815223138", "1.7552638892081458", "1664240411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7307", "0.0024476483849264615", "3.5084784236894024", "1664240411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7307", "0.0017271949815223138", "1.7552638892081458", "1664240411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7307", "0.0024476483849264615", "3.5084784236894024", "1664240411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7308", "0.0017186652687851967", "1.7552477706318461", "1664244011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7308", "0.0024355619163782057", "3.508456309012072", "1664244011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7308", "0.0017186652687851967", "1.7552477706318461", "1664244011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7308", "0.0024355619163782057", "3.508456309012072", "1664244011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7309", "0.0017090624821621966", "1.7552296173742155", "1664247611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7309", "0.002421957363245991", "3.5084314076220253", "1664247611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7309", "0.0017090624821621966", "1.7552296173742155", "1664247611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7309", "0.002421957363245991", "3.5084314076220253", "1664247611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7310", "0.0017043161784277663", "1.7552206479060315", "1664251211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7310", "0.00241523205201742", "3.508419101773927", "1664251211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7310", "0.0017043161784277663", "1.7552206479060315", "1664251211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7310", "0.00241523205201742", "3.508419101773927", "1664251211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7311", "0.0016994233146123113", "1.7552113763464194", "1664254811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7311", "0.0024083080245472133", "3.5084063992776313", "1664254811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7311", "0.0016994233146123113", "1.7552113763464194", "1664254811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7311", "0.0024083080245472133", "3.5084063992776313", "1664254811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7312", "0.0016898163901473032", "1.7551932220262207", "1664258411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7312", "0.0023946951688279543", "3.508381491590407", "1664258411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7312", "0.0016898163901473032", "1.7551932220262207", "1664258411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7312", "0.0023946951688279543", "3.508381491590407", "1664258411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7313", "0.0016812353119798884", "1.7551770065491574", "1664262011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7313", "0.002382535804687528", "3.508359243766734", "1664262011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7313", "0.0016812353119798884", "1.7551770065491574", "1664262011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7313", "0.002382535804687528", "3.508359243766734", "1664262011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7314", "0.0016765488568587625", "1.7551681506564103", "1664265611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7314", "0.0023758951056512385", "3.5083470933708494", "1664265611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7314", "0.0016765488568587625", "1.7551681506564103", "1664265611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7314", "0.0023758951056512385", "3.5083470933708494", "1664265611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7315", "0.0016718957590723055", "1.7551593510474175", "1664269211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7315", "0.002369304076947908", "3.508335024979218", "1664269211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7315", "0.0016718957590723055", "1.7551593510474175", "1664269211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7315", "0.002369304076947908", "3.508335024979218", "1664269211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7316", "0.0016669873419870552", "1.755150073365489", "1664272811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7316", "0.002362349689153514", "3.5083222975398187", "1664272811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7316", "0.0016669873419870552", "1.755150073365489", "1664272811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7316", "0.002362349689153514", "3.5083222975398187", "1664272811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7317", "0.0016607889001298006", "1.7551383516137113", "1664276411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7317", "0.002353569590138294", "3.508306221288905", "1664276411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7317", "0.0016607889001298006", "1.7551383516137113", "1664276411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7317", "0.002353569590138294", "3.508306221288905", "1664276411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7318", "0.001651991977028209", "1.7551217283510685", "1664280011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7318", "0.002341104299247792", "3.5082834138480306", "1664280011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7318", "0.001651991977028209", "1.7551217283510685", "1664280011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7318", "0.002341104299247792", "3.5082834138480306", "1664280011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7319", "0.0016432021553600702", "1.7551051184061257", "1664283611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7319", "0.002328649094612439", "3.5082606247316637", "1664283611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7319", "0.0016432021553600702", "1.7551051184061257", "1664283611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7319", "0.002328649094612439", "3.5082606247316637", "1664283611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7320", "0.0016339847960229839", "1.755087700657754", "1664287211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7320", "0.0023155880163968547", "3.508236727199628", "1664287211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7320", "0.0016339847960229839", "1.755087700657754", "1664287211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7320", "0.0023155880163968547", "3.508236727199628", "1664287211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7321", "0.0016294498530002712", "1.7550791307859719", "1664290811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7321", "0.002309162077165403", "3.5082249693778365", "1664290811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7321", "0.0016294498530002712", "1.7550791307859719", "1664290811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7321", "0.002309162077165403", "3.5082249693778365", "1664290811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7322", "0.0016249297848463103", "1.755070589358593", "1664294411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7322", "0.002302757092670084", "3.508213250339014", "1664294411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7322", "0.0016249297848463103", "1.755070589358593", "1664294411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7322", "0.002302757092670084", "3.508213250339014", "1664294411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7323", "0.0016192556960800478", "1.7550598672153301", "1664298011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7323", "0.002294716844051897", "3.508198539299621", "1664298011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7323", "0.0016192556960800478", "1.7550598672153301", "1664298011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7323", "0.002294716844051897", "3.508198539299621", "1664298011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7324", "0.0016145255067558568", "1.7550509075284375", "1664301611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7324", "0.002288021665068367", "3.5081862614214345", "1664301611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7324", "0.0016145255067558568", "1.7550509075284375", "1664301611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7324", "0.002288021665068367", "3.5081862614214345", "1664301611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7325", "0.0016100200938375991", "1.755042391904666", "1664305211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7325", "0.0022816381098089865", "3.5081745791088736", "1664305211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7325", "0.0016100200938375991", "1.755042391904666", "1664305211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7325", "0.0022816381098089865", "3.5081745791088736", "1664305211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7326", "0.0016055381107273475", "1.7550339225088358", "1664308811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7326", "0.0022752870552324314", "3.508162958831788", "1664308811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7326", "0.0016055381107273475", "1.7550339225088358", "1664308811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7326", "0.0022752870552324314", "3.508162958831788", "1664308811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7327", "0.0016010125721707986", "1.7550253702967988", "1664312411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7327", "0.0022688744607402907", "3.5081512252858076", "1664312411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7327", "0.0016010125721707986", "1.7550253702967988", "1664312411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7327", "0.0022688744607402907", "3.5081512252858076", "1664312411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7328", "0.0015953881105265297", "1.7550145710982754", "1664316011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7328", "0.0022609654068644898", "3.5081365296285276", "1664316011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7328", "0.0015953881105265297", "1.7550145710982754", "1664316011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7328", "0.0022609654068644898", "3.5081365296285276", "1664316011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7329", "0.0015861509359223391", "1.7549971052324829", "1664319611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7329", "0.0022478799813957237", "3.5081125735325043", "1664319611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7329", "0.0015861509359223391", "1.7549971052324829", "1664319611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7329", "0.0022478799813957237", "3.5081125735325043", "1664319611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7330", "0.001579461277025602", "1.7549844633962655", "1664323211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7330", "0.0022384008295822885", "3.5080952289878824", "1664323211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7330", "0.001579461277025602", "1.7549844633962655", "1664323211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7330", "0.0022384008295822885", "3.5080952289878824", "1664323211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7331", "0.001574772094856465", "1.7549755982084358", "1664326811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7331", "0.002231757663717279", "3.508083068653459", "1664326811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7331", "0.001574772094856465", "1.7549755982084358", "1664326811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7331", "0.002231757663717279", "3.508083068653459", "1664326811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7332", "0.0015703036384525344", "1.7549671549028567", "1664330411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7332", "0.0022254255619350073", "3.508071483757192", "1664330411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7332", "0.0015703036384525344", "1.7549671549028567", "1664330411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7332", "0.0022254255619350073", "3.508071483757192", "1664330411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7333", "0.0015658523335382128", "1.754958744005445", "1664334011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7333", "0.0022191177617484157", "3.508059943322603", "1664334011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7333", "0.0015658523335382128", "1.754958744005445", "1664334011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7333", "0.0022191177617484157", "3.508059943322603", "1664334011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7334", "0.0015613843610758804", "1.7549503027587634", "1664337611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7334", "0.0022127859312455096", "3.5080483604296404", "1664337611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7334", "0.0015613843610758804", "1.7549503027587634", "1664337611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7334", "0.0022127859312455096", "3.5080483604296404", "1664337611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7335", "0.0015569452314276929", "1.754941914863343", "1664341211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7335", "0.002206495378991041", "3.5080368515481117", "1664341211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7335", "0.0015569452314276929", "1.754941914863343", "1664341211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7335", "0.002206495378991041", "3.5080368515481117", "1664341211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7336", "0.0015523201243358828", "1.7549331441810363", "1664344811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7336", "0.0021999524635335347", "3.5080248396930704", "1664344811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7336", "0.0015523201243358828", "1.7549331441810363", "1664344811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7336", "0.0021999524635335347", "3.5080248396930704", "1664344811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7337", "0.0015483012064853219", "1.7549254472134288", "1664348411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7337", "0.0021942941120948606", "3.5080143518927107", "1664348411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7337", "0.0015483012064853219", "1.7549254472134288", "1664348411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7337", "0.0021942941120948606", "3.5080143518927107", "1664348411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7338", "0.0015420780705209251", "1.7549136889131691", "1664352011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7338", "0.0021854752934177784", "3.507998218134078", "1664352011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7338", "0.0015420780705209251", "1.7549136889131691", "1664352011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7338", "0.0021854752934177784", "3.507998218134078", "1664352011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7339", "0.0015320550459621924", "1.7548947509151247", "1664355611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7339", "0.0021712716316803007", "3.5079722329728753", "1664355611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7339", "0.0015320550459621924", "1.7548947509151247", "1664355611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7339", "0.0021712716316803007", "3.5079722329728753", "1664355611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7340", "0.0015253508329731988", "1.7548820834242738", "1664359211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7340", "0.0021617711379107968", "3.507954851826479", "1664359211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7340", "0.0015253508329731988", "1.7548820834242738", "1664359211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7340", "0.0021617711379107968", "3.507954851826479", "1664359211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7341", "0.001518863735486156", "1.7548698263816997", "1664362811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7341", "0.0021525782342541834", "3.50793803369732", "1664362811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7341", "0.001518863735486156", "1.7548698263816997", "1664362811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7341", "0.0021525782342541834", "3.50793803369732", "1664362811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7342", "0.0015125809412750266", "1.7548579529467554", "1664366411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7342", "0.0021436757033430195", "3.5079217436242955", "1664366411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7342", "0.0015125809412750266", "1.7548579529467554", "1664366411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7342", "0.0021436757033430195", "3.5079217436242955", "1664366411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7343", "0.001503520474830762", "1.7548408336670287", "1664370011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7343", "0.0021308360377749703", "3.5078982538819714", "1664370011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7343", "0.001503520474830762", "1.7548408336670287", "1664370011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7343", "0.0021308360377749703", "3.5078982538819714", "1664370011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7344", "0.0014944407206466624", "1.7548236752016324", "1664373611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7344", "0.002117970003190041", "3.5078747122954406", "1664373611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7344", "0.0014944407206466624", "1.7548236752016324", "1664373611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7344", "0.002117970003190041", "3.5078747122954406", "1664373611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7345", "0.0014863238103981177", "1.7548083363672071", "1664377211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7345", "0.0021064682749246098", "3.507853667174508", "1664377211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7345", "0.0014863238103981177", "1.7548083363672071", "1664377211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7345", "0.0021064682749246098", "3.507853667174508", "1664377211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7346", "0.001480081946858742", "1.7547965321547718", "1664380811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7346", "0.0020976266053260527", "3.5078374777836476", "1664380811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7346", "0.001480081946858742", "1.7547965321547718", "1664380811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7346", "0.0020976266053260527", "3.5078374777836476", "1664380811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7347", "0.0014738745864104868", "1.754784763192856", "1664384411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7347", "0.002088844494475235", "3.507821357977122", "1664384411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7347", "0.0014738745864104868", "1.754784763192856", "1664384411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7347", "0.002088844494475235", "3.507821357977122", "1664384411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7348", "0.0014699862269711278", "1.7547774164124195", "1664388011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7348", "0.002083334217623015", "3.50781127721004", "1664388011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7348", "0.0014699862269711278", "1.7547774164124195", "1664388011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7348", "0.002083334217623015", "3.50781127721004", "1664388011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7349", "0.0014657233530957212", "1.754769358863062", "1664391611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7349", "0.0020772943282320287", "3.507800223401682", "1664391611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7349", "0.0014657233530957212", "1.754769358863062", "1664391611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7349", "0.0020772943282320287", "3.507800223401682", "1664391611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7350", "0.001461411536360511", "1.7547612120818807", "1664395211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7350", "0.0020711839223400822", "3.507789044852043", "1664395211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7350", "0.001461411536360511", "1.7547612120818807", "1664395211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7350", "0.0020711839223400822", "3.507789044852043", "1664395211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7351", "0.001457078712693704", "1.7547530256098702", "1664398811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7351", "0.002065043743858743", "3.507777811836243", "1664398811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7351", "0.001457078712693704", "1.7547530256098702", "1664398811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7351", "0.002065043743858743", "3.507777811836243", "1664398811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7352", "0.0014527263526213062", "1.7547448020874263", "1664402411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7352", "0.0020588759258614612", "3.5077665280750705", "1664402411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7352", "0.0014527263526213062", "1.7547448020874263", "1664402411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7352", "0.0020588759258614612", "3.5077665280750705", "1664402411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7353", "0.001448158414865837", "1.7547361219269517", "1664406011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7353", "0.0020524201797724956", "3.5077546527011103", "1664406011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7353", "0.001448158414865837", "1.7547361219269517", "1664406011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7353", "0.0020524201797724956", "3.5077546527011103", "1664406011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7354", "0.0014440589672424589", "1.7547283725554907", "1664409611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7354", "0.002046612085929492", "3.5077440221597898", "1664409611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7354", "0.0014440589672424589", "1.7547283725554907", "1664409611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7354", "0.002046612085929492", "3.5077440221597898", "1664409611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7355", "0.0014386742174783177", "1.7547181694139509", "1664413211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7355", "0.0020389915628420104", "3.507730042623517", "1664413211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7355", "0.0014386742174783177", "1.7547181694139509", "1664413211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7355", "0.0020389915628420104", "3.507730042623517", "1664413211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7356", "0.0014334745277897953", "1.7547083453755967", "1664416811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7356", "0.002031622795824282", "3.507716562389813", "1664416811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7356", "0.0014334745277897953", "1.7547083453755967", "1664416811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7356", "0.002031622795824282", "3.507716562389813", "1664416811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7357", "0.0014281452651922293", "1.7546982575140033", "1664420423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7357", "0.0020240771750006177", "3.5077027336176583", "1664420423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7357", "0.0014281452651922293", "1.7546982575140033", "1664420423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7357", "0.0020240771750006177", "3.5077027336176583", "1664420423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7358", "0.0014241782613671327", "1.7546907614624023", "1664424011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7358", "0.0020184556611649923", "3.5076924484647773", "1664424011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7358", "0.0014241782613671327", "1.7546907614624023", "1664424011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7358", "0.0020184556611649923", "3.5076924484647773", "1664424011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7359", "0.0014144580021656422", "1.7546723953211845", "1664427611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7359", "0.0020046809325386097", "3.507667247809811", "1664427611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7359", "0.0014144580021656422", "1.7546723953211845", "1664427611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7359", "0.0020046809325386097", "3.507667247809811", "1664427611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7360", "0.0014047654574278069", "1.7546540828458486", "1664431211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7360", "0.0019909449996590623", "3.507642119845577", "1664431211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7360", "0.0014047654574278069", "1.7546540828458486", "1664431211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7360", "0.0019909449996590623", "3.507642119845577", "1664431211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7361", "0.0013950983724036346", "1.7546358184716553", "1664434811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7361", "0.0019772451322413206", "3.5076170578613484", "1664434811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7361", "0.0013950983724036346", "1.7546358184716553", "1664434811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7361", "0.0019772451322413206", "3.5076170578613484", "1664434811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7362", "0.001385429029535552", "1.7546175485163973", "1664438411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7362", "0.0019635425183284726", "3.5075919891273517", "1664438411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7362", "0.001385429029535552", "1.7546175485163973", "1664438411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7362", "0.0019635425183284726", "3.5075919891273517", "1664438411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7363", "0.0013741691204186533", "1.754596274770605", "1664442011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7363", "0.0019475853137322448", "3.5075627976836725", "1664442011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7363", "0.0013741691204186533", "1.754596274770605", "1664442011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7363", "0.0019475853137322448", "3.5075627976836725", "1664442011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7364", "0.0013627948645185996", "1.7545747824104931", "1664445611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7364", "0.0019314669565961573", "3.507533308053778", "1664445611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7364", "0.0013627948645185996", "1.7545747824104931", "1664445611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7364", "0.0019314669565961573", "3.507533308053778", "1664445611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7365", "0.0013514103402881548", "1.7545532695777049", "1664449211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7365", "0.0019153344082045996", "3.507503791058672", "1664449211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7365", "0.0013514103402881548", "1.7545532695777049", "1664449211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7365", "0.0019153344082045996", "3.507503791058672", "1664449211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7366", "0.0013450430396333233", "1.7545412396382047", "1664452811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7366", "0.001906310818208843", "3.5074872837255797", "1664452811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7366", "0.0013450430396333233", "1.7545412396382047", "1664452811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7366", "0.001906310818208843", "3.5074872837255797", "1664452811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7367", "0.0013356914813157678", "1.754523571077168", "1664456411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7367", "0.0018930581277649928", "3.507463039390185", "1664456411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7367", "0.0013356914813157678", "1.754523571077168", "1664456411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7367", "0.0018930581277649928", "3.507463039390185", "1664456411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7368", "0.0013262269805022454", "1.7545056895021116", "1664460011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7368", "0.0018796452305442249", "3.5074385024731476", "1664460011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7368", "0.0013262269805022454", "1.7545056895021116", "1664460011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7368", "0.0018796452305442249", "3.5074385024731476", "1664460011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7369", "0.0013164586717536438", "1.7544872483623073", "1664463611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7369", "0.0018657966259409866", "3.5074131874751764", "1664463611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7369", "0.0013164586717536438", "1.7544872483623073", "1664463611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7369", "0.0018657966259409866", "3.5074131874751764", "1664463611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7370", "0.0013127988182340604", "1.7544803323629987", "1664467211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7370", "0.0018606104183963473", "3.507403698334268", "1664467211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7370", "0.0013127988182340604", "1.7544803323629987", "1664467211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7370", "0.0018606104183963473", "3.507403698334268", "1664467211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7371", "0.0013091291441705759", "1.7544733818184164", "1664470811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7371", "0.0018554159891764064", "3.5073941731221954", "1664470811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7371", "0.0013091291441705759", "1.7544733818184164", "1664470811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7371", "0.0018554159891764064", "3.5073941731221954", "1664470811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7372", "0.0013046670778303856", "1.7544648421292128", "1664474411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7372", "0.0018491313914161258", "3.507382532536593", "1664474411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7372", "0.0013046670778303856", "1.7544648421292128", "1664474411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7372", "0.0018491313914161258", "3.507382532536593", "1664474411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7373", "0.001300907941429471", "1.7544577402023611", "1664478011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7373", "0.001843803886352687", "3.5073727870858438", "1664478011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7373", "0.001300907941429471", "1.7544577402023611", "1664478011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7373", "0.001843803886352687", "3.5073727870858438", "1664478011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7374", "0.001297270985718948", "1.7544508644746288", "1664481611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7374", "0.0018386511850530059", "3.507363355309565", "1664481611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7374", "0.001297270985718948", "1.7544508644746288", "1664481611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7374", "0.0018386511850530059", "3.507363355309565", "1664481611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7375", "0.0012904659357230075", "1.7544375180749439", "1664485223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7375", "0.0018291815042285609", "3.507345388169828", "1664485223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7375", "0.0012904659357230075", "1.7544375180749439", "1664485223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7375", "0.0018291815042285609", "3.507345388169828", "1664485223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7376", "0.001286838608573692", "1.75443066169102", "1664488811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7376", "0.0018240420308137315", "3.507335982108137", "1664488811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7376", "0.001286838608573692", "1.75443066169102", "1664488811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7376", "0.0018240420308137315", "3.507335982108137", "1664488811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7377", "0.0012832231442259404", "1.7544238325940986", "1664492411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7377", "0.0018189176310561869", "3.507326610034297", "1664492411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7377", "0.0012832231442259404", "1.7544238325940986", "1664492411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7377", "0.0018189176310561869", "3.507326610034297", "1664492411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7378", "0.0012795949036135473", "1.7544169789381803", "1664496011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7378", "0.001813775272500719", "3.5073172045550693", "1664496011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7378", "0.0012795949036135473", "1.7544169789381803", "1664496011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7378", "0.001813775272500719", "3.5073172045550693", "1664496011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7379", "0.0012759562526291088", "1.7544101060459967", "1664499611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7379", "0.001808618004320893", "3.5073077723703263", "1664499611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7379", "0.0012759562526291088", "1.7544101060459967", "1664499611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7379", "0.001808618004320893", "3.5073077723703263", "1664499611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7380", "0.0012724142012436148", "1.7544034152081946", "1664503211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7380", "0.0018035977956583902", "3.507298590318552", "1664503211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7380", "0.0012724142012436148", "1.7544034152081946", "1664503211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7380", "0.0018035977956583902", "3.507298590318552", "1664503211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7381", "0.0012688249834883264", "1.7543966339678225", "1664506811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7381", "0.0017985112005460134", "3.507289285126651", "1664506811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7381", "0.0012688249834883264", "1.7543966339678225", "1664506811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7381", "0.0017985112005460134", "3.507289285126651", "1664506811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7382", "0.0012653053030221913", "1.7543899857995469", "1664510411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7382", "0.0017935225478810956", "3.5072801613337914", "1664510411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7382", "0.0012653053030221913", "1.7543899857995469", "1664510411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7382", "0.0017935225478810956", "3.5072801613337914", "1664510411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7383", "0.0012616578263333156", "1.7543830910469675", "1664514011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7383", "0.0017883546103108694", "3.5072707028114185", "1664514011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7383", "0.0012616578263333156", "1.7543830910469675", "1664514011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7383", "0.0017883546103108694", "3.5072707028114185", "1664514011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7384", "0.001258158027660651", "1.7543764804467257", "1664517611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7384", "0.0017833941281072143", "3.5072616305596167", "1664517611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7384", "0.001258158027660651", "1.7543764804467257", "1664517611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7384", "0.0017833941281072143", "3.5072616305596167", "1664517611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7385", "0.0012514564895870167", "1.7543638021548043", "1664521211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7385", "0.0017739027678085576", "3.5072442453483172", "1664521211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7385", "0.0012514564895870167", "1.7543638021548043", "1664521211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7385", "0.0017739027678085576", "3.5072442453483172", "1664521211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7386", "0.0012455207033197065", "1.7543525879334103", "1664524811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7386", "0.0017654904532800949", "3.5072288568657504", "1664524811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7386", "0.0012455207033197065", "1.7543525879334103", "1664524811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7386", "0.0017654904532800949", "3.5072288568657504", "1664524811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7387", "0.0012393671423122409", "1.7543409257538587", "1664528411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7387", "0.0017567825060293863", "3.5072128795385553", "1664528411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7387", "0.0012393671423122409", "1.7543409257538587", "1664528411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7387", "0.0017567825060293863", "3.5072128795385553", "1664528411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7388", "0.0012341089872256507", "1.7543309941391156", "1664532011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7388", "0.0017493296833388445", "3.507199249379616", "1664532011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7388", "0.0012341089872256507", "1.7543309941391156", "1664532011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7388", "0.0017493296833388445", "3.507199249379616", "1664532011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7389", "0.001226978201486576", "1.754317525495161", "1664535611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7389", "0.0017392226175550495", "3.50718076498692", "1664535611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7389", "0.001226978201486576", "1.754317525495161", "1664535611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7389", "0.0017392226175550495", "3.50718076498692", "1664535611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7390", "0.0012223215466137091", "1.7543087343738968", "1664539211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7390", "0.0017326207827798633", "3.507168696926745", "1664539211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7390", "0.0012223215466137091", "1.7543087343738968", "1664539211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7390", "0.0017326207827798633", "3.507168696926745", "1664539211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7391", "0.0012174320478405445", "1.754299491749057", "1664542811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7391", "0.0017256930839372215", "3.5071560175084375", "1664542811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7391", "0.0012174320478405445", "1.754299491749057", "1664542811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7391", "0.0017256930839372215", "3.5071560175084375", "1664542811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7392", "0.001211104241279066", "1.7542875394060993", "1664546411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7392", "0.0017167242624819459", "3.507139614324425", "1664546411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7392", "0.001211104241279066", "1.7542875394060993", "1664546411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7392", "0.0017167242624819459", "3.507139614324425", "1664546411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7393", "0.0012030619023527494", "1.7542723490388916", "1664550011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7393", "0.0017053251368719803", "3.507118766972873", "1664550011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7393", "0.0012030619023527494", "1.7542723490388916", "1664550011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7393", "0.0017053251368719803", "3.507118766972873", "1664550011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7394", "0.0011939983719574966", "1.7542552298449134", "1664553611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7394", "0.0016924785727899813", "3.50709527246853", "1664553611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7394", "0.0011939983719574966", "1.7542552298449134", "1664553611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7394", "0.0016924785727899813", "3.50709527246853", "1664553611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7395", "0.001187316302485602", "1.754242607911102", "1664557211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7395", "0.0016830077607839261", "3.50707795061966", "1664557211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7395", "0.001187316302485602", "1.754242607911102", "1664557211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7395", "0.0016830077607839261", "3.50707795061966", "1664557211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7396", "0.0011817821862551247", "1.7542321277696091", "1664560811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7396", "0.0016751734663817495", "3.507063586917818", "1664560811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7396", "0.0011817821862551247", "1.7542321277696091", "1664560811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7396", "0.0016751734663817495", "3.507063586917818", "1664560811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7397", "0.001175556843810362", "1.7542203694915068", "1664564411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7397", "0.0016663496508105618", "3.5070474496369934", "1664564411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7397", "0.001175556843810362", "1.7542203694915068", "1664564411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7397", "0.0016663496508105618", "3.5070474496369934", "1664564411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7398", "0.0011693455115017917", "1.7542086376750925", "1664568011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7398", "0.0016575456869868108", "3.5070313486630678", "1664568011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7398", "0.0011693455115017917", "1.7542086376750925", "1664568011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7398", "0.0016575456869868108", "3.5070313486630678", "1664568011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7399", "0.0011644828305624386", "1.754199441757171", "1664571611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7399", "0.001650657362208908", "3.507018736074633", "1664571611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7399", "0.0011644828305624386", "1.754199441757171", "1664571611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7399", "0.001650657362208908", "3.507018736074633", "1664571611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7400", "0.0011557088230571369", "1.754182849228881", "1664575211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7400", "0.0016382282975257996", "3.506995978579821", "1664575211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7400", "0.0011557088230571369", "1.754182849228881", "1664575211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7400", "0.0016382282975257996", "3.506995978579821", "1664575211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7401", "0.001146969469952438", "1.754166346981168", "1664578811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7401", "0.0016258394988643", "3.506973327385316", "1664578811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7401", "0.001146969469952438", "1.754166346981168", "1664578811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7401", "0.0016258394988643", "3.506973327385316", "1664578811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7402", "0.001143460715224357", "1.7541596860295774", "1664582411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7402", "0.001620878162207222", "3.5069642096074154", "1664582411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7402", "0.001143460715224357", "1.7541596860295774", "1664582411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7402", "0.001620878162207222", "3.5069642096074154", "1664582411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7403", "0.0011383528040635994", "1.754150038596567", "1664586011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7403", "0.00161363806934159", "3.5069509690511342", "1664586011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7403", "0.0011383528040635994", "1.754150038596567", "1664586011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7403", "0.00161363806934159", "3.5069509690511342", "1664586011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7404", "0.0011312558818664766", "1.754136634475677", "1664589611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7404", "0.0016035786891491798", "3.5069325726389673", "1664589611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7404", "0.0011312558818664766", "1.754136634475677", "1664589611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7404", "0.0016035786891491798", "3.5069325726389673", "1664589611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7405", "0.0011245315856448107", "1.754123934141688", "1664593211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7405", "0.0015940474721313216", "3.5069151421237", "1664593211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7405", "0.0011245315856448107", "1.754123934141688", "1664593211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7405", "0.0015940474721313216", "3.5069151421237", "1664593211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7406", "0.0011170020493107764", "1.7541097132199306", "1664596811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7406", "0.001583374772523445", "3.506895624467149", "1664596811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7406", "0.0011170020493107764", "1.7541097132199306", "1664596811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7406", "0.001583374772523445", "3.506895624467149", "1664596811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7407", "0.001107900622825338", "1.7540924668368663", "1664600411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7407", "0.0015704941673715229", "3.506871994588285", "1664600411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7407", "0.001107900622825338", "1.7540924668368663", "1664600411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7407", "0.0015704941673715229", "3.506871994588285", "1664600411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7408", "0.0011018471984118633", "1.7540810134019658", "1664604011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7408", "0.0015619210305999028", "3.506856289637048", "1664604011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7408", "0.0011018471984118633", "1.7540810134019658", "1664604011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7408", "0.0015619210305999028", "3.506856289637048", "1664604011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7409", "0.001098771846592923", "1.7540752023042319", "1664607611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7409", "0.0015575628508016925", "3.5068483160487336", "1664607611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7409", "0.001098771846592923", "1.7540752023042319", "1664607611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7409", "0.0015575628508016925", "3.5068483160487336", "1664607611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7410", "0.0010914196780550968", "1.7540613166184629", "1664611211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7410", "0.0015471414420965839", "3.5068292582693097", "1664611211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7410", "0.0010914196780550968", "1.7540613166184629", "1664611211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7410", "0.0015471414420965839", "3.5068292582693097", "1664611211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7411", "0.0010861452830501594", "1.7540513471669898", "1664614811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7411", "0.001539668022753332", "3.5068155810556747", "1664614811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7411", "0.0010861452830501594", "1.7540513471669898", "1664614811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7411", "0.001539668022753332", "3.5068155810556747", "1664614811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7412", "0.0010831240727595744", "1.7540456388017378", "1664618411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7412", "0.001535386408370738", "3.5068077481146136", "1664618411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7412", "0.0010831240727595744", "1.7540456388017378", "1664618411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7412", "0.001535386408370738", "3.5068077481146136", "1664618411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7413", "0.0010759238490013205", "1.7540320266429916", "1664622011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7413", "0.0015251851435607192", "3.5067890752358784", "1664622011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7413", "0.0010759238490013205", "1.7540320266429916", "1664622011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7413", "0.0015251851435607192", "3.5067890752358784", "1664622011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7414", "0.0010720531367897895", "1.7540247170817507", "1664625611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7414", "0.0015196982399477573", "3.5067790423996845", "1664625611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7414", "0.0010720531367897895", "1.7540247170817507", "1664625611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7414", "0.0015196982399477573", "3.5067790423996845", "1664625611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7415", "0.0010671731234337554", "1.7540154958480487", "1664629211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7415", "0.0015127826266904463", "3.5067663896889303", "1664629211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7415", "0.0010671731234337554", "1.7540154958480487", "1664629211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7415", "0.0015127826266904463", "3.5067663896889303", "1664629211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7416", "0.0010584907302715178", "1.75399908081708", "1664632811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7416", "0.0015004816886445553", "3.506743872418484", "1664632811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7416", "0.0010584907302715178", "1.75399908081708", "1664632811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7416", "0.0015004816886445553", "3.506743872418484", "1664632811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7417", "0.001055547666275756", "1.7539935214780853", "1664636411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7417", "0.0014963103192762238", "3.506736242975637", "1664636411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7417", "0.001055547666275756", "1.7539935214780853", "1664636411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7417", "0.0014963103192762238", "3.506736242975637", "1664636411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7418", "0.001040882860804735", "1.7539658282412776", "1664640011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7418", "0.0014755221862997464", "3.506698232020118", "1664640011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7418", "0.001040882860804735", "1.7539658282412776", "1664640011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7418", "0.0014755221862997464", "3.506698232020118", "1664640011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7419", "0.001032245687365696", "1.753949513292652", "1664643611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7419", "0.001463280082223218", "3.506675841659385", "1664643611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7419", "0.001032245687365696", "1.753949513292652", "1664643611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7419", "0.001463280082223218", "3.506675841659385", "1664643611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7420", "0.0010239799844912016", "1.7539339098349263", "1664647211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7420", "0.0014515609859019167", "3.506654420772284", "1664647211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7420", "0.0010239799844912016", "1.7539339098349263", "1664647211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7420", "0.0014515609859019167", "3.506654420772284", "1664647211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7421", "0.0010152466089156911", "1.7539173944227286", "1664650811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7421", "0.0014391891769444456", "3.5066317685321104", "1664650811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7421", "0.0010152466089156911", "1.7539173944227286", "1664650811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7421", "0.0014391891769444456", "3.5066317685321104", "1664650811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7422", "0.0010066718891485777", "1.7539012002452805", "1664654411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7422", "0.0014270345595789535", "3.506609541876619", "1664654411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7422", "0.0010066718891485777", "1.7539012002452805", "1664654411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7422", "0.0014270345595789535", "3.506609541876619", "1664654411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7423", "0.0009973305059942377", "1.7538834341951022", "1664658011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7423", "0.0014138373162592567", "3.5065852455506206", "1664658011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7423", "0.0009973305059942377", "1.7538834341951022", "1664658011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7423", "0.0014138373162592567", "3.5065852455506206", "1664658011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7424", "0.0009901534920537043", "1.7538698494209282", "1664661611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7424", "0.0014036747038801616", "3.5065666217404994", "1664661611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7424", "0.0009901534920537043", "1.7538698494209282", "1664661611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7424", "0.0014036747038801616", "3.5065666217404994", "1664661611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7425", "0.000984161066229595", "1.7538585173882282", "1664665211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7425", "0.0013951857056331578", "3.5065510788369783", "1664665211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7425", "0.000984161066229595", "1.7538585173882282", "1664665211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7425", "0.0013951857056331578", "3.5065510788369783", "1664665211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7426", "0.000978050965432553", "1.7538469768182539", "1664668811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7426", "0.0013865250193119752", "3.5065352400040726", "1664668811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7426", "0.000978050965432553", "1.7538469768182539", "1664668811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7426", "0.0013865250193119752", "3.5065352400040726", "1664668811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7427", "0.0009753301978703541", "1.753841838237605", "1664672411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7427", "0.001382668384870901", "3.506528187338594", "1664672411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7427", "0.0009753301978703541", "1.753841838237605", "1664672411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7427", "0.001382668384870901", "3.506528187338594", "1664672411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7428", "0.0009705122122693617", "1.7538327398506335", "1664676011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7428", "0.0013758385881736755", "3.5065156990789617", "1664676011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7428", "0.0009705122122693617", "1.7538327398506335", "1664676011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7428", "0.0013758385881736755", "3.5065156990789617", "1664676011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7429", "0.0009584940297021505", "1.7538100391743525", "1664679611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7429", "0.0013588039248269507", "3.5064845443100126", "1664679611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7429", "0.0009584940297021505", "1.7538100391743525", "1664679611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7429", "0.0013588039248269507", "3.5064845443100126", "1664679611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7430", "0.0009526850971558992", "1.7537990662787653", "1664683211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7430", "0.0013505705151931162", "3.506469485365982", "1664683211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7430", "0.0009526850971558992", "1.7537990662787653", "1664683211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7430", "0.0013505705151931162", "3.506469485365982", "1664683211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7431", "0.0009443340340812956", "1.7537832954126455", "1664686811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7431", "0.0013387325182920462", "3.5064478389285227", "1664686811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7431", "0.0009443340340812956", "1.7537832954126455", "1664686811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7431", "0.0013387325182920462", "3.5064478389285227", "1664686811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7432", "0.0009332521654947081", "1.753762368178704", "1664690411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7432", "0.0013230232110811133", "3.5064191145369064", "1664690411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7432", "0.0009332521654947081", "1.753762368178704", "1664690411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7432", "0.0013230232110811133", "3.5064191145369064", "1664690411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7433", "0.0009212151942427948", "1.7537396361367927", "1664694011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7433", "0.0013059603747070426", "3.5063879136884926", "1664694011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7433", "0.0009212151942427948", "1.7537396361367927", "1664694011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7433", "0.0013059603747070426", "3.5063879136884926", "1664694011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7434", "0.0009112624976633198", "1.7537208278491128", "1664697623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7434", "0.0012918564809251483", "3.5063621071616833", "1664697623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7434", "0.0009112624976633198", "1.7537208278491128", "1664697623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7434", "0.0012918564809251483", "3.5063621071616833", "1664697623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7435", "0.0009086380678033423", "1.75371585759289", "1664701211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7435", "0.0012881412237184312", "3.5063552951181034", "1664701211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7435", "0.0009086380678033423", "1.75371585759289", "1664701211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7435", "0.0012881412237184312", "3.5063552951181034", "1664701211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7436", "0.0009060931755770087", "1.7537110484173712", "1664704811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7436", "0.0012845348431055606", "3.5063486964686272", "1664704811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7436", "0.0009060931755770087", "1.7537110484173712", "1664704811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7436", "0.0012845348431055606", "3.5063486964686272", "1664704811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7437", "0.0009035797139508302", "1.75370630205539", "1664708411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7437", "0.0012809717853208295", "3.506342181585994", "1664708411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7437", "0.0009035797139508302", "1.75370630205539", "1664708411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7437", "0.0012809717853208295", "3.506342181585994", "1664708411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7438", "0.0009010726540842829", "1.7537015677223438", "1664712011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7438", "0.0012774178229238455", "3.5063356832552093", "1664712011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7438", "0.0009010726540842829", "1.7537015677223438", "1664712011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7438", "0.0012774178229238455", "3.5063356832552093", "1664712011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7439", "0.0008880773399447577", "1.7536770265706463", "1664715611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7439", "0.001258996168439136", "3.506301998683443", "1664715611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7439", "0.0008880773399447577", "1.7536770265706463", "1664715611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7439", "0.001258996168439136", "3.506301998683443", "1664715611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7440", "0.0008840843267246709", "1.7536694894813516", "1664719211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7440", "0.0012533345536701488", "3.5062916509324547", "1664719211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7440", "0.0008840843267246709", "1.7536694894813516", "1664719211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7440", "0.0012533345536701488", "3.5062916509324547", "1664719211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7441", "0.0008816228844556785", "1.7536648400099908", "1664722811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7441", "0.0012498457065751273", "3.5062852699782368", "1664722811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7441", "0.0008816228844556785", "1.7536648400099908", "1664722811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7441", "0.0012498457065751273", "3.5062852699782368", "1664722811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7442", "0.0008733710475454197", "1.753649252797227", "1664726411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7442", "0.001238149599470517", "3.506263878109203", "1664726411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7442", "0.0008733710475454197", "1.753649252797227", "1664726411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7442", "0.001238149599470517", "3.506263878109203", "1664726411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7443", "0.0008650696978281753", "1.753633576517098", "1664730011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7443", "0.0012263817146472304", "3.506242360831142", "1664730011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7443", "0.0008650696978281753", "1.753633576517098", "1664730011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7443", "0.0012263817146472304", "3.506242360831142", "1664730011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7444", "0.0008603292390215509", "1.7536246166148592", "1664733611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7444", "0.0012196645493267916", "3.506230068124452", "1664733611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7444", "0.0008603292390215509", "1.7536246166148592", "1664733611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7444", "0.0012196645493267916", "3.506230068124452", "1664733611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7445", "0.0008523659437367338", "1.7536095787036454", "1664737211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7445", "0.0012083758739577838", "3.506209427055658", "1664737211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7445", "0.0008523659437367338", "1.7536095787036454", "1664737211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7445", "0.0012083758739577838", "3.506209427055658", "1664737211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7446", "0.0008499413035942467", "1.7536050023621508", "1664740811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7446", "0.0012049378913341995", "3.5062031438885106", "1664740811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7446", "0.0008499413035942467", "1.7536050023621508", "1664740811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7446", "0.0012049378913341995", "3.5062031438885106", "1664740811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7447", "0.0008416288716415261", "1.7535892758277751", "1664744411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7447", "0.0011931647022980392", "3.5061815783391244", "1664744411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7447", "0.0008416288716415261", "1.7535892758277751", "1664744411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7447", "0.0011931647022980392", "3.5061815783391244", "1664744411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7448", "0.0008321315155723356", "1.75357114113318", "1664748011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7448", "0.001179772453274523", "3.506156827994165", "1664748011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7448", "0.0008321315155723356", "1.75357114113318", "1664748011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7448", "0.001179772453274523", "3.506156827994165", "1664748011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7449", "0.0008240434940445185", "1.7535558702281482", "1664751611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7449", "0.0011683060257446953", "3.5061358652617223", "1664751611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7449", "0.0008240434940445185", "1.7535558702281482", "1664751611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7449", "0.0011683060257446953", "3.5061358652617223", "1664751611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7450", "0.0008147686142236564", "1.7535382968814806", "1664755211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7450", "0.0011551788694958525", "3.5061117854386765", "1664755211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7450", "0.0008147686142236564", "1.7535382968814806", "1664755211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7450", "0.0011551788694958525", "3.5061117854386765", "1664755211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7451", "0.0008018568998533517", "1.7535139193877902", "1664758811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7451", "0.0011368734807290029", "3.506078321122976", "1664758811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7451", "0.0008018568998533517", "1.7535139193877902", "1664758811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7451", "0.0011368734807290029", "3.506078321122976", "1664758811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7452", "0.0007993255256187189", "1.753509140118388", "1664762411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7452", "0.0011332846598311925", "3.506071760354228", "1664762411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7452", "0.0007993255256187189", "1.753509140118388", "1664762411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7452", "0.0011332846598311925", "3.506071760354228", "1664762411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7453", "0.0007920030751878928", "1.7534952838529996", "1664766011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7453", "0.0011229145148188996", "3.506052761278434", "1664766011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7453", "0.0007920030751878928", "1.7534952838529996", "1664766011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7453", "0.0011229145148188996", "3.506052761278434", "1664766011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7454", "0.0007841149937629549", "1.753480391358338", "1664769611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7454", "0.0011117311690040828", "3.506032317277547", "1664769611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7454", "0.0007841149937629549", "1.753480391358338", "1664769611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7454", "0.0011117311690040828", "3.506032317277547", "1664769611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7455", "0.0007762241917111416", "1.7534654948579806", "1664773211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7455", "0.0011005435534478642", "3.5060118669619285", "1664773211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7455", "0.0007762241917111416", "1.7534654948579806", "1664773211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7455", "0.0011005435534478642", "3.5060118669619285", "1664773211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7456", "0.0007740709192267133", "1.7534614295308073", "1664776811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7456", "0.0010974907432650396", "3.5060062861901478", "1664776811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7456", "0.0007740709192267133", "1.7534614295308073", "1664776811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7456", "0.0010974907432650396", "3.5060062861901478", "1664776811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7457", "0.0007719236853776003", "1.753457375605198", "1664780411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7457", "0.0010944464933475056", "3.5060007210684105", "1664780411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7457", "0.0007719236853776003", "1.753457375605198", "1664780411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7457", "0.0010944464933475056", "3.5060007210684105", "1664780411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7458", "0.0007694430401392965", "1.7534526922068994", "1664784011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7458", "0.0010909295470858007", "3.505994291821803", "1664784011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7458", "0.0007694430401392965", "1.7534526922068994", "1664784011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7458", "0.0010909295470858007", "3.505994291821803", "1664784011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7459", "0.0007673086439077372", "1.7534486625183243", "1664787611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7459", "0.0010879034961573002", "3.5059887599695685", "1664787611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7459", "0.0007673086439077372", "1.7534486625183243", "1664787611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7459", "0.0010879034961573002", "3.5059887599695685", "1664787611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7460", "0.0007651801684359654", "1.7534446440079654", "1664791211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7460", "0.0010848858386807083", "3.5059832434613694", "1664791211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7460", "0.0007651801684359654", "1.7534446440079654", "1664791211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7460", "0.0010848858386807083", "3.5059832434613694", "1664791211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7461", "0.0007630575972996582", "1.7534406366448139", "1664794811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7461", "0.001081876551376467", "3.505977742254648", "1664794811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7461", "0.0007630575972996582", "1.7534406366448139", "1664794811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7461", "0.001081876551376467", "3.505977742254648", "1664794811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7462", "0.0007609409141200557", "1.7534366403979476", "1664798411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7462", "0.0010788756110295767", "3.5059722563069644", "1664798411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7462", "0.0007609409141200557", "1.7534366403979476", "1664798411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7462", "0.0010788756110295767", "3.5059722563069644", "1664798411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7463", "0.000760216041088487", "1.7534351403804331", "1664802011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7463", "0.0010778946895958121", "3.505970290117316", "1664802011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7463", "0.000760216041088487", "1.7534351403804331", "1664802011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7463", "0.0010778946895958121", "3.505970290117316", "1664802011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7464", "0.0007581058585082647", "1.7534311560443854", "1664805611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7464", "0.0010749030933094143", "3.5059648207749974", "1664805611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7464", "0.0007581058585082647", "1.7534311560443854", "1664805611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7464", "0.0010749030933094143", "3.5059648207749974", "1664805611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7465", "0.0007560029115816867", "1.7534271860967725", "1664809211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7465", "0.001071921495835099", "3.505959370668999", "1664809211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7465", "0.0007560029115816867", "1.7534271860967725", "1664809211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7465", "0.001071921495835099", "3.505959370668999", "1664809211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7466", "0.0007482130042647648", "1.7534124800704285", "1664812811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7466", "0.0010608768925565535", "3.5059391817841554", "1664812811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7466", "0.0007482130042647648", "1.7534124800704285", "1664812811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7466", "0.0010608768925565535", "3.5059391817841554", "1664812811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7467", "0.0007403281112944013", "1.7533975948030252", "1664816411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7467", "0.0010496975805970277", "3.505918746762355", "1664816411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7467", "0.0007403281112944013", "1.7533975948030252", "1664816411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7467", "0.0010496975805970277", "3.505918746762355", "1664816411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7468", "0.0007380499683360067", "1.753393264420129", "1664820011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7468", "0.0010464781446447458", "3.505912822831068", "1664820011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7468", "0.0007380499683360067", "1.753393264420129", "1664820011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7468", "0.0010464781446447458", "3.505912822831068", "1664820011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7469", "0.0007310561985327934", "1.7533800569513727", "1664823611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7469", "0.0010365638628069829", "3.5058946943033313", "1664823611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7469", "0.0007310561985327934", "1.7533800569513727", "1664823611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7469", "0.0010365638628069829", "3.5058946943033313", "1664823611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7470", "0.0007240744697983049", "1.7533668771588289", "1664827211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7470", "0.0010266648860806072", "3.5058766002610255", "1664827211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7470", "0.0007240744697983049", "1.7533668771588289", "1664827211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7470", "0.0010266648860806072", "3.5058766002610255", "1664827211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7471", "0.0007163417542205458", "1.753352276935694", "1664830811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7471", "0.0010157020992268913", "3.50585655809437", "1664830811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7471", "0.0007163417542205458", "1.753352276935694", "1664830811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7471", "0.0010157020992268913", "3.50585655809437", "1664830811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7472", "0.000710322700985883", "1.7533408862029092", "1664834411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7472", "0.0010071780715597185", "3.5058409401314785", "1664834411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7472", "0.000710322700985883", "1.7533408862029092", "1664834411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7472", "0.0010071780715597185", "3.5058409401314785", "1664834411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7473", "0.0007083107515138829", "1.753337088222923", "1664838011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7473", "0.0010043254112475182", "3.5058357259561492", "1664838011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7473", "0.0007083107515138829", "1.753337088222923", "1664838011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7473", "0.0010043254112475182", "3.5058357259561492", "1664838011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7474", "0.0007004840537372975", "1.7533223136758864", "1664841611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7474", "0.0009932282525054095", "3.505815442248663", "1664841611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7474", "0.0007004840537372975", "1.7533223136758864", "1664841611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7474", "0.0009932282525054095", "3.505815442248663", "1664841611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7475", "0.0006984651944141822", "1.7533185002889404", "1664845211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7475", "0.0009903666322456184", "3.5058102085875458", "1664845211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7475", "0.0006984651944141822", "1.7533185002889404", "1664845211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7475", "0.0009903666322456184", "3.5058102085875458", "1664845211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7476", "0.0006965009944932137", "1.7533147897434984", "1664848811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7476", "0.0009875826315549467", "3.505805116354935", "1664848811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7476", "0.0006965009944932137", "1.7533147897434984", "1664848811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7476", "0.0009875826315549467", "3.505805116354935", "1664848811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7477", "0.0006943406495116568", "1.7533107116510929", "1664852411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7477", "0.000984519556908511", "3.505799517599942", "1664852411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7477", "0.0006943406495116568", "1.7533107116510929", "1664852411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7477", "0.000984519556908511", "3.505799517599942", "1664852411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7478", "0.0006902842343058985", "1.7533030383314376", "1664856011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7478", "0.0009787738044681185", "3.505788994325374", "1664856011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7478", "0.0006902842343058985", "1.7533030383314376", "1664856011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7478", "0.0009787738044681185", "3.505788994325374", "1664856011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7479", "0.0006883809204915098", "1.7532994447039283", "1664859611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7479", "0.0009760754240946985", "3.505784061201381", "1664859611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7479", "0.0006883809204915098", "1.7532994447039283", "1664859611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7479", "0.0009760754240946985", "3.505784061201381", "1664859611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7480", "0.0006815495404439121", "1.7532865492443241", "1664863211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7480", "0.0009663893879046461", "3.5057663570732407", "1664863211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7480", "0.0006815495404439121", "1.7532865492443241", "1664863211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7480", "0.0009663893879046461", "3.5057663570732407", "1664863211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7481", "0.0006733621777603088", "1.753271093519703", "1664866811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7481", "0.000954780943766523", "3.5057451383781166", "1664866811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7481", "0.0006733621777603088", "1.753271093519703", "1664866811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7481", "0.000954780943766523", "3.5057451383781166", "1664866811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7482", "0.0006695071940075274", "1.7532638145346076", "1664870411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7482", "0.0009493157685513651", "3.5057351464943776", "1664870411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7482", "0.0006695071940075274", "1.7532638145346076", "1664870411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7482", "0.0009493157685513651", "3.5057351464943776", "1664870411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7483", "0.0006619618111854369", "1.7532495712945557", "1664874011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7483", "0.0009386173324103117", "3.5057155919465552", "1664874011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7483", "0.0006619618111854369", "1.7532495712945557", "1664874011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7483", "0.0009386173324103117", "3.5057155919465552", "1664874011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7484", "0.0006539704959255031", "1.7532344138690972", "1664877611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7484", "0.0009273123596606201", "3.505694833496488", "1664877611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7484", "0.0006539704959255031", "1.7532344138690972", "1664877611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7484", "0.0009273123596606201", "3.505694833496488", "1664877611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7485", "0.0006463385579020708", "1.753219996430482", "1664881211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7485", "0.0009164950234300813", "3.5056750474037486", "1664881211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7485", "0.0006463385579020708", "1.753219996430482", "1664881211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7485", "0.0009164950234300813", "3.5056750474037486", "1664881211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7486", "0.0006387508061946338", "1.753205673465445", "1664884811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7486", "0.000905736394042227", "3.5056553831770634", "1664884811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7486", "0.0006387508061946338", "1.753205673465445", "1664884811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7486", "0.000905736394042227", "3.5056553831770634", "1664884811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7487", "0.0006357880101425318", "1.7532000562302354", "1664888411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7487", "0.0009015441846022961", "3.5056476885263965", "1664888411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7487", "0.0006357880101425318", "1.7532000562302354", "1664888411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7487", "0.0009015441846022961", "3.5056476885263965", "1664888411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7488", "0.0006340213502794748", "1.753196721646295", "1664892011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7488", "0.0008990391605994384", "3.5056431102507073", "1664892011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7488", "0.0006340213502794748", "1.753196721646295", "1664892011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7488", "0.0008990391605994384", "3.5056431102507073", "1664892011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7489", "0.0006321678211979811", "1.7531932042969989", "1664895611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7489", "0.0008964176451715525", "3.505638294333536", "1664895611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7489", "0.0006321678211979811", "1.7531932042969989", "1664895611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7489", "0.0008964176451715525", "3.505638294333536", "1664895611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7490", "0.0006304043702032647", "1.7531898758222035", "1664899211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7490", "0.000893917151481918", "3.5056337244068416", "1664899211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7490", "0.0006304043702032647", "1.7531898758222035", "1664899211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7490", "0.000893917151481918", "3.5056337244068416", "1664899211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7491", "0.0006286444168790259", "1.7531865539491607", "1664902811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7491", "0.0008914216168283812", "3.505629163543444", "1664902811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7491", "0.0006286444168790259", "1.7531865539491607", "1664902811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7491", "0.0008914216168283812", "3.505629163543444", "1664902811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7492", "0.0006268673523678279", "1.7531831977494432", "1664906411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7492", "0.0008889025404897628", "3.505624556984324", "1664906411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7492", "0.0006268673523678279", "1.7531831977494432", "1664906411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7492", "0.0008889025404897628", "3.505624556984324", "1664906411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7493", "0.000625143181115637", "1.7531799431723074", "1664910011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7493", "0.0008864578282437563", "3.5056200886863356", "1664910011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7493", "0.000625143181115637", "1.7531799431723074", "1664910011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7493", "0.0008864578282437563", "3.5056200886863356", "1664910011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7494", "0.0006213650513632086", "1.7531728114962155", "1664913611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7494", "0.0008811007981596038", "3.5056102974171126", "1664913611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7494", "0.0006213650513632086", "1.7531728114962155", "1664913611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7494", "0.0008811007981596038", "3.5056102974171126", "1664913611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7495", "0.0006139418437133522", "1.7531588003885794", "1664917211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7495", "0.0008705749973798003", "3.505591060408675", "1664917211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7495", "0.0006139418437133522", "1.7531588003885794", "1664917211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7495", "0.0008705749973798003", "3.505591060408675", "1664917211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7496", "0.0006065349317984904", "1.753144820038298", "1664920811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7496", "0.0008600722943785304", "3.505571865615873", "1664920811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7496", "0.0006065349317984904", "1.753144820038298", "1664920811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7496", "0.0008600722943785304", "3.505571865615873", "1664920811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7497", "0.000604607083118159", "1.7531411784430475", "1664924411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7497", "0.0008573396880127165", "3.5055668677647085", "1664924411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7497", "0.000604607083118159", "1.7531411784430475", "1664924411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7497", "0.0008573396880127165", "3.5055668677647085", "1664924411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7498", "0.0005982666043269323", "1.7531292109863446", "1664928011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7498", "0.0008483491246607225", "3.5055504366070487", "1664928011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7498", "0.0005982666043269323", "1.7531292109863446", "1664928011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7498", "0.0008483491246607225", "3.5055504366070487", "1664928011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7499", "0.0005909079393975835", "1.7531153217345647", "1664931611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7499", "0.0008379148030282604", "3.5055313668379497", "1664931611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7499", "0.0005909079393975835", "1.7531153217345647", "1664931611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7499", "0.0008379148030282604", "3.5055313668379497", "1664931611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7500", "0.0005887382792680571", "1.753111226568298", "1664935211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7500", "0.0008348383014935857", "3.505525744223274", "1664935211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7500", "0.0005887382792680571", "1.753111226568298", "1664935211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7500", "0.0008348383014935857", "3.505525744223274", "1664935211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7501", "0.0005870967933359812", "1.7531081283144396", "1664938811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7501", "0.0008325107318341652", "3.505521490356723", "1664938811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7501", "0.0005870967933359812", "1.7531081283144396", "1664938811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7501", "0.0008325107318341652", "3.505521490356723", "1664938811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7502", "0.0005843982488955003", "1.7531029197970707", "1664942411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7502", "0.0008287252115140459", "3.5055144204741007", "1664942411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7502", "0.0005843982488955003", "1.7531029197970707", "1664942411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7502", "0.0008287252115140459", "3.5055144204741007", "1664942411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7503", "0.0005770849772341762", "1.7530891159074105", "1664946011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7503", "0.0008183553515139247", "3.505495468103469", "1664946011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7503", "0.0005770849772341762", "1.7530891159074105", "1664946011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7503", "0.0008183553515139247", "3.505495468103469", "1664946011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7504", "0.0005697852502444991", "1.7530753391414808", "1664949611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7504", "0.0008080041345327468", "3.5054765518584525", "1664949611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7504", "0.0005697852502444991", "1.7530753391414808", "1664949611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7504", "0.0008080041345327468", "3.5054765518584525", "1664949611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7505", "0.0005678989753327767", "1.7530717792336263", "1664953211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7505", "0.0008053293224499854", "3.5054716638702192", "1664953211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7505", "0.0005678989753327767", "1.7530717792336263", "1664953211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7505", "0.0008053293224499854", "3.5054716638702192", "1664953211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7506", "0.0005616808157399661", "1.7530600437077994", "1664956811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7506", "0.0007965117896906976", "3.5054555503451557", "1664956811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7506", "0.0005616808157399661", "1.7530600437077994", "1664956811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7506", "0.0007965117896906976", "3.5054555503451557", "1664956811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7507", "0.0005537131623224081", "1.753045006605812", "1664960411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7507", "0.0007852133281479096", "3.5054349033885512", "1664960411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7507", "0.0005537131623224081", "1.753045006605812", "1664960411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7507", "0.0007852133281479096", "3.5054349033885512", "1664960411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7508", "0.0005483331096500496", "1.7530348530011552", "1664964011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7508", "0.0007775841854901833", "3.5054209617946595", "1664964011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7508", "0.0005483331096500496", "1.7530348530011552", "1664964011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7508", "0.0007775841854901833", "3.5054209617946595", "1664964011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7509", "0.0005391847791207659", "1.7530175848094824", "1664967611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7509", "0.0007646124618492336", "3.5053972533723123", "1664967611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7509", "0.0005391847791207659", "1.7530175848094824", "1664967611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7509", "0.0007646124618492336", "3.5053972533723123", "1664967611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7510", "0.000537689112202265", "1.7530147620919412", "1664971211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7510", "0.0007624915369383487", "3.505393377577756", "1664971211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7510", "0.000537689112202265", "1.7530147620919412", "1664971211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7510", "0.0007624915369383487", "3.505393377577756", "1664971211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7511", "0.0005354509934172303", "1.7530105376845584", "1664974811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7511", "0.0007593179535561952", "3.505387577505568", "1664974811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7511", "0.0005354509934172303", "1.7530105376845584", "1664974811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7511", "0.0007593179535561952", "3.505387577505568", "1664974811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7512", "0.000533198869389854", "1.753006287335129", "1664978411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7512", "0.0007561243352261223", "3.5053817414658157", "1664978411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7512", "0.000533198869389854", "1.753006287335129", "1664978411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7512", "0.0007561243352261223", "3.5053817414658157", "1664978411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7513", "0.0005304392555945701", "1.7530010712024782", "1664982011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7513", "0.0007522139211960196", "3.5053745849991653", "1664982011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7513", "0.0005304392555945701", "1.7530010712024782", "1664982011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7513", "0.0007522139211960196", "3.5053745849991653", "1664982011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7514", "0.0005278204915935495", "1.7529961263465197", "1664985611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7514", "0.000748501298087399", "3.505367797157454", "1664985611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7514", "0.0005278204915935495", "1.7529961263465197", "1664985611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7514", "0.000748501298087399", "3.505367797157454", "1664985611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7515", "0.0005251636994233165", "1.7529911104817728", "1664989211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7515", "0.00074473447774821", "3.505360911276301", "1664989211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7515", "0.0005251636994233165", "1.7529911104817728", "1664989211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7515", "0.00074473447774821", "3.505360911276301", "1664989211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7516", "0.0005235502919572026", "1.7529880468015755", "1664992811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7516", "0.0007424532546893934", "3.50535671787078", "1664992811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7516", "0.0005235502919572026", "1.7529880468015755", "1664992811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7516", "0.0007424532546893934", "3.50535671787078", "1664992811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7517", "0.0005153335839009405", "1.7529725402034695", "1664996411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7517", "0.0007308013807454009", "3.5053354258048834", "1664996411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7517", "0.0005153335839009405", "1.7529725402034695", "1664996411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7517", "0.0007308013807454009", "3.5053354258048834", "1664996411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7518", "0.0005070064777481857", "1.752956806990546", "1665000011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7518", "0.000718999437942589", "3.5053138354686504", "1665000011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7518", "0.0005070064777481857", "1.752956806990546", "1665000011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7518", "0.000718999437942589", "3.5053138354686504", "1665000011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7519", "0.0005014677209382971", "1.7529462850629034", "1665003611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7519", "0.0007111696593248347", "3.505299436687488", "1665003611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7519", "0.0005014677209382971", "1.7529462850629034", "1665003611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7519", "0.0007111696593248347", "3.505299436687488", "1665003611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7520", "0.000499985387790166", "1.7529434878571961", "1665007211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7520", "0.0007090675095756556", "3.505295595662729", "1665007211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7520", "0.000499985387790166", "1.7529434878571961", "1665007211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7520", "0.0007090675095756556", "3.505295595662729", "1665007211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7521", "0.0004975219294148772", "1.7529388392396519", "1665010811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7521", "0.0007055739902007247", "3.505289212342968", "1665010811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7521", "0.0004975219294148772", "1.7529388392396519", "1665010811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7521", "0.0007055739902007247", "3.505289212342968", "1665010811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7522", "0.0004958659414361663", "1.752935714342187", "1665014411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7522", "0.0007032255732321903", "3.505284921341719", "1665014411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7522", "0.0004958659414361663", "1.752935714342187", "1665014411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7522", "0.0007032255732321903", "3.505284921341719", "1665014411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7523", "0.0004944740104433019", "1.75293308514893", "1665018011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7523", "0.0007012525413599668", "3.505281312845897", "1665018011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7523", "0.0004944740104433019", "1.75293308514893", "1665018011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7523", "0.0007012525413599668", "3.505281312845897", "1665018011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7524", "0.0004921170011666802", "1.7529286365086831", "1665021611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7524", "0.0006979102973582892", "3.505275204757214", "1665021611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7524", "0.0004921170011666802", "1.7529286365086831", "1665021611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7524", "0.0006979102973582892", "3.505275204757214", "1665021611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7525", "0.0004867331163099132", "1.7529184763839478", "1665025211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7525", "0.0006902754126134324", "3.5052612536229355", "1665025211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7525", "0.0004867331163099132", "1.7529184763839478", "1665025211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7525", "0.0006902754126134324", "3.5052612536229355", "1665025211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7526", "0.0004853776012429043", "1.7529159176576765", "1665028811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7526", "0.00068835339982946", "3.5052577406510803", "1665028811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7526", "0.0004853776012429043", "1.7529159176576765", "1665028811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7526", "0.00068835339982946", "3.5052577406510803", "1665028811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7527", "0.0004840311932105354", "1.7529133769599927", "1665032411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7527", "0.0006864440020493977", "3.5052542518392023", "1665032411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7527", "0.0004840311932105354", "1.7529133769599927", "1665032411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7527", "0.0006864440020493977", "3.5052542518392023", "1665032411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7528", "0.0004813241473521786", "1.7529082687104283", "1665036011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7528", "0.0006826050265372258", "3.5052472373402805", "1665036011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7528", "0.0004813241473521786", "1.7529082687104283", "1665036011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7528", "0.0006826050265372258", "3.5052472373402805", "1665036011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7529", "0.0004790709088509121", "1.7529040164463427", "1665039611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7529", "0.0006794097406488094", "3.5052413985071342", "1665039611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7529", "0.0004790709088509121", "1.7529040164463427", "1665039611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7529", "0.0006794097406488094", "3.5052413985071342", "1665039611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7530", "0.00047712397039720625", "1.75290034163969", "1665043211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7530", "0.0006766490219895082", "3.5052363530000954", "1665043211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7530", "0.00047712397039720625", "1.75290034163969", "1665043211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7530", "0.0006766490219895082", "3.5052363530000954", "1665043211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7531", "0.000474943277342103", "1.7528962265352939", "1665046811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7531", "0.0006735565202052821", "3.50523070232115", "1665046811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7531", "0.000474943277342103", "1.7528962265352939", "1665046811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7531", "0.0006735565202052821", "3.50523070232115", "1665046811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7532", "0.0004727583494292232", "1.7528921035406275", "1665050411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7532", "0.0006704579761091274", "3.5052250407349477", "1665050411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7532", "0.0004727583494292232", "1.7528921035406275", "1665050411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7532", "0.0006704579761091274", "3.5052250407349477", "1665050411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7533", "0.0004705355421154083", "1.7528879067204972", "1665054011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7533", "0.000667306546652098", "3.505219279430058", "1665054011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7533", "0.0004705355421154083", "1.7528879067204972", "1665054011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7533", "0.000667306546652098", "3.505219279430058", "1665054011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7534", "0.0004681866939044752", "1.7528834742230255", "1665057611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7534", "0.0006639756029752142", "3.5052131929691352", "1665057611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7534", "0.0004681866939044752", "1.7528834742230255", "1665057611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7534", "0.0006639756029752142", "3.5052131929691352", "1665057611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7535", "0.00046398930612243425", "1.7528755537061411", "1665061211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7535", "0.0006580230861000788", "3.5052023167026736", "1665061211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7535", "0.00046398930612243425", "1.7528755537061411", "1665061211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7535", "0.0006580230861000788", "3.5052023167026736", "1665061211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7536", "0.0004596100310093923", "1.752867288341453", "1665064811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7536", "0.0006518132003018093", "3.5051909680422066", "1665064811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7536", "0.0004596100310093923", "1.752867288341453", "1665064811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7536", "0.0006518132003018093", "3.5051909680422066", "1665064811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7537", "0.00045642994953525983", "1.7528612875038059", "1665068411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7537", "0.0006473033661293009", "3.5051827278195415", "1665068411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7537", "0.00045642994953525983", "1.7528612875038059", "1665068411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7537", "0.0006473033661293009", "3.5051827278195415", "1665068411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7538", "0.000453255132187166", "1.7528552965995312", "1665072011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7538", "0.0006428009956451618", "3.505174501234659", "1665072011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7538", "0.000453255132187166", "1.7528552965995312", "1665072011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7538", "0.0006428009956451618", "3.505174501234659", "1665072011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7539", "0.0004500005835510215", "1.7528491544237486", "1665075611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7539", "0.000638185843133276", "3.505166067502111", "1665075611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7539", "0.0004500005835510215", "1.7528491544237486", "1665075611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7539", "0.000638185843133276", "3.505166067502111", "1665075611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7540", "0.00044694870064700506", "1.752843389582698", "1665079211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7540", "0.0006338599112114344", "3.5051581555163525", "1665079211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7540", "0.00044694870064700506", "1.752843389582698", "1665079211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7540", "0.0006338599112114344", "3.5051581555163525", "1665079211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7541", "0.00044404304594963253", "1.7528379066339428", "1665082811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7541", "0.0006297392340605372", "3.505150626407714", "1665082811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7541", "0.00044404304594963253", "1.7528379066339428", "1665082811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7541", "0.0006297392340605372", "3.505150626407714", "1665082811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7542", "0.00044113503790672474", "1.752832419244381", "1665086411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7542", "0.0006256152181242984", "3.5051430911989168", "1665086411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7542", "0.00044113503790672474", "1.752832419244381", "1665086411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7542", "0.0006256152181242984", "3.5051430911989168", "1665086411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7543", "0.0004380142050780074", "1.7528265298016301", "1665090011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7543", "0.0006211895428781475", "3.5051350042147678", "1665090011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7543", "0.0004380142050780074", "1.7528265298016301", "1665090011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7543", "0.0006211895428781475", "3.5051350042147678", "1665090011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7544", "0.0004354637715669535", "1.7528217164860342", "1665093611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7544", "0.0006175728586732604", "3.5051283951022585", "1665093611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7544", "0.0004354637715669535", "1.7528217164860342", "1665093611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7544", "0.0006175728586732604", "3.5051283951022585", "1665093611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7545", "0.00043404287566255374", "1.752819033778144", "1665097211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7545", "0.0006155583302007713", "3.505124712292523", "1665097211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7545", "0.00043404287566255374", "1.752819033778144", "1665097211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7545", "0.0006155583302007713", "3.505124712292523", "1665097211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7546", "0.0004317236576615175", "1.752814657360895", "1665100811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7546", "0.0006122693330022142", "3.505118702699625", "1665100811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7546", "0.0004317236576615175", "1.752814657360895", "1665100811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7546", "0.0006122693330022142", "3.505118702699625", "1665100811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7547", "0.0004293651606479789", "1.7528102035805544", "1665104411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7547", "0.0006089257838039373", "3.5051125891629207", "1665104411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7547", "0.0004293651606479789", "1.7528102035805544", "1665104411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7547", "0.0006089257838039373", "3.5051125891629207", "1665104411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7548", "0.000427686400808885", "1.7528070357964716", "1665108011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7548", "0.0006065450243404933", "3.5051082391824213", "1665108011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7548", "0.000427686400808885", "1.7528070357964716", "1665108011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7548", "0.0006065450243404933", "3.5051082391824213", "1665108011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7549", "0.0004255064422447265", "1.7528029158019858", "1665111611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7549", "0.0006034557768267336", "3.5051025861946665", "1665111611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7549", "0.0004255064422447265", "1.7528029158019858", "1665111611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7549", "0.0006034557768267336", "3.5051025861946665", "1665111611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7550", "0.0004243261139513026", "1.752800688565504", "1665115211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7550", "0.0006017818687802602", "3.505099527754297", "1665115211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7550", "0.0004243261139513026", "1.752800688565504", "1665115211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7550", "0.0006017818687802602", "3.505099527754297", "1665115211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7551", "0.00042299318117693086", "1.7527981526055552", "1665118811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7551", "0.000599898920144223", "3.505096060042532", "1665118811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7551", "0.00042299318117693086", "1.7527981526055552", "1665118811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7551", "0.000599898920144223", "3.505096060042532", "1665118811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7552", "0.0004218198245667293", "1.7527959385819558", "1665122411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7552", "0.0005982348781947596", "3.505093019704666", "1665122411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7552", "0.0004218198245667293", "1.7527959385819558", "1665122411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7552", "0.0005982348781947596", "3.505093019704666", "1665122411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7553", "0.0004192846181018624", "1.7527911541352605", "1665126011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7553", "0.0005946397334018877", "3.505086450128262", "1665126011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7553", "0.0004192846181018624", "1.7527911541352605", "1665126011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7553", "0.0005946397334018877", "3.505086450128262", "1665126011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7554", "0.0004181215488595491", "1.7527889595250354", "1665129611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7554", "0.0005929902794724499", "3.505083436446697", "1665129611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7554", "0.0004181215488595491", "1.7527889595250354", "1665129611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7554", "0.0005929902794724499", "3.505083436446697", "1665129611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7555", "0.0004157156598798599", "1.7527844154645515", "1665133211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7555", "0.0005895798180783673", "3.5050771995313763", "1665133211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7555", "0.0004157156598798599", "1.7527844154645515", "1665133211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7555", "0.0005895798180783673", "3.5050771995313763", "1665133211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7556", "0.00041318163036166205", "1.7527796329133005", "1665136811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7556", "0.0005859864554840763", "3.5050706327837027", "1665136811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7556", "0.00041318163036166205", "1.7527796329133005", "1665136811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7556", "0.0005859864554840763", "3.5050706327837027", "1665136811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7557", "0.0004114653828054979", "1.752776394526258", "1665140411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7557", "0.0005835524794709849", "3.5050661857488343", "1665140411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7557", "0.0004114653828054979", "1.752776394526258", "1665140411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7557", "0.0005835524794709849", "3.5050661857488343", "1665140411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7558", "0.0004093879613716445", "1.7527724743846627", "1665144011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7558", "0.0005806063781860977", "3.505060802690988", "1665144011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7558", "0.0004093879613716445", "1.7527724743846627", "1665144011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7558", "0.0005806063781860977", "3.505060802690988", "1665144011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7559", "0.0004073176880165826", "1.7527685679876708", "1665147611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7559", "0.0005776703222870871", "3.505055438325027", "1665147611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7559", "0.0004073176880165826", "1.7527685679876708", "1665147611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7559", "0.0005776703222870871", "3.505055438325027", "1665147611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7560", "0.0004058373074903502", "1.7527657746589256", "1665151211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7560", "0.0005755708503270545", "3.50505160245268", "1665151211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7560", "0.0004058373074903502", "1.7527657746589256", "1665151211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7560", "0.0005755708503270545", "3.50505160245268", "1665151211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7561", "0.0004034239517598849", "1.752761220900034", "1665154811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7561", "0.0005721482345042442", "3.5050453491102815", "1665154811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7561", "0.0004034239517598849", "1.752761220900034", "1665154811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7561", "0.0005721482345042442", "3.5050453491102815", "1665154811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7562", "0.0004007221832117651", "1.752756064974703", "1665158435"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7562", "0.0005683371860507465", "3.5050383097911366", "1665158435"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7562", "0.0004007221832117651", "1.752756064974703", "1665158435"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7562", "0.0005683371860507465", "3.5050383097911366", "1665158435"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7563", "0.00039443865377240003", "1.7527441649021143", "1665162011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7563", "0.0005594414117883718", "3.5050219991312845", "1665162011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7563", "0.00039443865377240003", "1.7527441649021143", "1665162011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7563", "0.0005594414117883718", "3.5050219991312845", "1665162011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7564", "0.0003932986791543563", "1.7527413096249986", "1665165611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7564", "0.0005580746694672508", "3.5050185745609883", "1665165611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7564", "0.0003932986791543563", "1.7527413096249986", "1665165611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7564", "0.0005580746694672508", "3.5050185745609883", "1665165611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7565", "0.0004445396554550187", "1.752837882369963", "1665169211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7565", "0.0006307847923026823", "3.50515127086175", "1665169211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7565", "0.0004445396554550187", "1.752837882369963", "1665169211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7565", "0.0006307847923026823", "3.50515127086175", "1665169211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7566", "0.0004428671842092955", "1.7528347041037204", "1665172811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7566", "0.000628420878648577", "3.5051469222108587", "1665172811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7566", "0.0004428671842092955", "1.7528347041037204", "1665172811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7566", "0.000628420878648577", "3.5051469222108587", "1665172811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7567", "0.0004333627169809718", "1.7528167903525906", "1665176411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7567", "0.0006149345377723176", "3.505122308397701", "1665176411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7567", "0.0004333627169809718", "1.7528167903525906", "1665176411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7567", "0.0006149345377723176", "3.505122308397701", "1665176411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7568", "0.0004304397020841741", "1.752811243194006", "1665180011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7568", "0.0006108003835390529", "3.5051147132196485", "1665180011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7568", "0.0004304397020841741", "1.752811243194006", "1665180011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7568", "0.0006108003835390529", "3.5051147132196485", "1665180011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7569", "0.0004292427314330489", "1.7528089851609392", "1665183611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7569", "0.0006091026583032275", "3.505111612059552", "1665183611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7569", "0.0004292427314330489", "1.7528089851609392", "1665183611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7569", "0.0006091026583032275", "3.505111612059552", "1665183611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7570", "0.0004278833811442519", "1.7528063977719732", "1665187211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7570", "0.0006071827879695322", "3.5051080747694776", "1665187211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7570", "0.0004278833811442519", "1.7528063977719732", "1665187211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7570", "0.0006071827879695322", "3.5051080747694776", "1665187211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7571", "0.00042507158992001123", "1.7528010978441588", "1665190811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7571", "0.0006031931198639957", "3.5051007928075335", "1665190811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7571", "0.00042507158992001123", "1.7528010978441588", "1665190811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7571", "0.0006031931198639957", "3.5051007928075335", "1665190811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7572", "0.000421288095990887", "1.7527939658612892", "1665194411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7572", "0.0005978248714753339", "3.505090993997871", "1665194411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7572", "0.000421288095990887", "1.7527939658612892", "1665194411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7572", "0.0005978248714753339", "3.505090993997871", "1665194411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7573", "0.00041751318834079847", "1.7527868516182215", "1665198011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7573", "0.0005924682523636555", "3.505081218463414", "1665198011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7573", "0.00041751318834079847", "1.7527868516182215", "1665198011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7573", "0.0005924682523636555", "3.505081218463414", "1665198011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7574", "0.0004163550340043647", "1.7527846689445552", "1665201611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7574", "0.0005908248231792639", "3.5050782192959002", "1665201611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7574", "0.0004163550340043647", "1.7527846689445552", "1665201611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7574", "0.0005908248231792639", "3.5050782192959002", "1665201611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7575", "0.0004140425218185716", "1.7527803103451294", "1665205211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7575", "0.0005875434956919643", "3.5050722305186137", "1665205211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7575", "0.0004140425218185716", "1.7527803103451294", "1665205211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7575", "0.0005875434956919643", "3.5050722305186137", "1665205211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7576", "0.00041203906220426697", "1.7527765313607562", "1665208811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7576", "0.0005847017185881185", "3.5050670401701565", "1665208811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7576", "0.00041203906220426697", "1.7527765313607562", "1665208811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7576", "0.0005847017185881185", "3.5050670401701565", "1665208811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7577", "0.0004147606167057991", "1.752781660415969", "1665212411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7577", "0.0005885636337416783", "3.5050740879199993", "1665212411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7577", "0.0004147606167057991", "1.752781660415969", "1665212411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7577", "0.0005885636337416783", "3.5050740879199993", "1665212411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7578", "0.0004123882060767602", "1.752777185637657", "1665216011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7578", "0.0005851984769198836", "3.505067941821704", "1665216011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7578", "0.0004123882060767602", "1.752777185637657", "1665216011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7578", "0.0005851984769198836", "3.505067941821704", "1665216011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7579", "0.00040999734153316427", "1.752772679823934", "1665219611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7579", "0.0005818058058744859", "3.505061750441166", "1665219611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7579", "0.00040999734153316427", "1.752772679823934", "1665219611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7579", "0.0005818058058744859", "3.505061750441166", "1665219611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7580", "0.0004075143746945224", "1.7527680003811223", "1665223211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7580", "0.0005782824583175716", "3.505055320515258", "1665223211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7580", "0.0004075143746945224", "1.7527680003811223", "1665223211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7580", "0.0005782824583175716", "3.505055320515258", "1665223211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7581", "0.0004050225123723346", "1.7527633019262379", "1665226811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7581", "0.000574747283786559", "3.5050488660462005", "1665226811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7581", "0.0004050225123723346", "1.7527633019262379", "1665226811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7581", "0.000574747283786559", "3.5050488660462005", "1665226811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7582", "0.0004030651363846676", "1.7527596130746055", "1665230411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7582", "0.0005719697329113123", "3.50504379723124", "1665230411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7582", "0.0004030651363846676", "1.7527596130746055", "1665230411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7582", "0.0005719697329113123", "3.50504379723124", "1665230411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7583", "0.0004009244607549975", "1.7527555784064766", "1665234011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7583", "0.0005689322077151475", "3.5050382534938884", "1665234011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7583", "0.0004009244607549975", "1.7527555784064766", "1665234011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7583", "0.0005689322077151475", "3.5050382534938884", "1665234011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7584", "0.00039878374488108053", "1.7527515432427625", "1665237611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7584", "0.0005658947734683875", "3.5050327093699494", "1665237611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7584", "0.00039878374488108053", "1.7527515432427625", "1665237611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7584", "0.0005658947734683875", "3.5050327093699494", "1665237611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7585", "0.0003964420847533161", "1.752747129329383", "1665241211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7585", "0.0005625722132663607", "3.5050266448449334", "1665241211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7585", "0.0003964420847533161", "1.752747129329383", "1665241211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7585", "0.0005625722132663607", "3.5050266448449334", "1665241211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7586", "0.0003953011391719726", "1.7527449727327844", "1665244811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7586", "0.000560955452388963", "3.505023685977731", "1665244811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7586", "0.0003953011391719726", "1.7527449727327844", "1665244811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7586", "0.000560955452388963", "3.505023685977731", "1665244811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7587", "0.00038531065654344427", "1.7527261441110915", "1665248411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7587", "0.0005467789922166456", "3.5049978141798173", "1665248411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7587", "0.00038531065654344427", "1.7527261441110915", "1665248411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7587", "0.0005467789922166456", "3.5049978141798173", "1665248411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7588", "0.0003752980318948913", "1.7527072746502859", "1665252011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7588", "0.0005325707802966167", "3.504971885613547", "1665252011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7588", "0.0003752980318948913", "1.7527072746502859", "1665252011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7588", "0.0005325707802966167", "3.504971885613547", "1665252011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7589", "0.00036530075227523146", "1.7526884341076479", "1665255611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7589", "0.0005183843272168505", "3.5049459967588796", "1665255611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7589", "0.00036530075227523146", "1.7526884341076479", "1665255611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7589", "0.0005183843272168505", "3.5049459967588796", "1665255611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7590", "0.00036333512379271995", "1.7526847297491315", "1665259211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7590", "0.0005155950368947189", "3.504940906584128", "1665259211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7590", "0.00036333512379271995", "1.7526847297491315", "1665259211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7590", "0.0005155950368947189", "3.504940906584128", "1665259211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7591", "0.00035659528596077434", "1.752672027555452", "1665262811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7591", "0.0005060311680520899", "3.504923452803147", "1665262811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7591", "0.00035659528596077434", "1.752672027555452", "1665262811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7591", "0.0005060311680520899", "3.504923452803147", "1665262811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7592", "0.00034987396165358825", "1.7526593607789944", "1665266411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7592", "0.0004964933761739717", "3.504906047306458", "1665266411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7592", "0.00034987396165358825", "1.7526593607789944", "1665266411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7592", "0.0004964933761739717", "3.504906047306458", "1665266411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7593", "0.0003434508137627688", "1.75264725593531", "1665270011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7593", "0.00048737870011093966", "3.5048894139545888", "1665270011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7593", "0.0003434508137627688", "1.75264725593531", "1665270011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7593", "0.00048737870011093966", "3.5048894139545888", "1665270011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7594", "0.0003420309911727437", "1.752644579950511", "1665273611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7594", "0.0004853640039269225", "3.50488573702956", "1665273611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7594", "0.0003420309911727437", "1.752644579950511", "1665273611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7594", "0.0004853640039269225", "3.50488573702956", "1665273611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7595", "0.00033406111466695375", "1.7526295602003648", "1665277211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7595", "0.0004740544516856411", "3.5048650982629983", "1665277211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7595", "0.00033406111466695375", "1.7526295602003648", "1665277211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7595", "0.0004740544516856411", "3.5048650982629983", "1665277211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7596", "0.00032780680285042556", "1.752617773543099", "1665280811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7596", "0.00046517934256285804", "3.5048489021058122", "1665280811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7596", "0.00032780680285042556", "1.752617773543099", "1665280811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7596", "0.00046517934256285804", "3.5048489021058122", "1665280811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7597", "0.00032611310636116407", "1.752614578916892", "1665284411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7597", "0.0004627768941107675", "3.5048445142708093", "1665284411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7597", "0.00032611310636116407", "1.752614578916892", "1665284411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7597", "0.0004627768941107675", "3.5048445142708093", "1665284411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7598", "0.00032441987359273596", "1.752611387923845", "1665288011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7598", "0.0004603741250516191", "3.5048401294846685", "1665288011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7598", "0.00032441987359273596", "1.752611387923845", "1665288011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7598", "0.0004603741250516191", "3.5048401294846685", "1665288011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7599", "0.00032258409377318984", "1.7526079121429856", "1665291611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7599", "0.0004577748002125442", "3.5048353647373873", "1665291611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7599", "0.00032258409377318984", "1.7526079121429856", "1665291611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7599", "0.0004577748002125442", "3.5048353647373873", "1665291611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7600", "0.000320822786907745", "1.7526045929485805", "1665295211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7600", "0.00045527539884887596", "3.5048308037244036", "1665295211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7600", "0.000320822786907745", "1.7526045929485805", "1665295211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7600", "0.00045527539884887596", "3.5048308037244036", "1665295211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7601", "0.0003199328461793202", "1.7526029158494014", "1665298811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7601", "0.00045401251873942484", "3.5048284991675827", "1665298811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7601", "0.0003199328461793202", "1.7526029158494014", "1665298811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7601", "0.00045401251873942484", "3.5048284991675827", "1665298811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7602", "0.0003182817890353554", "1.7525998044212996", "1665302411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7602", "0.0004516695677285624", "3.5048242236519656", "1665302411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7602", "0.0003182817890353554", "1.7525998044212996", "1665302411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7602", "0.0004516695677285624", "3.5048242236519656", "1665302411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7603", "0.00031653686613700497", "1.7525965161025465", "1665306011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7603", "0.0004491934149942757", "3.504819705064353", "1665306011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7603", "0.00031653686613700497", "1.7525965161025465", "1665306011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7603", "0.0004491934149942757", "3.504819705064353", "1665306011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7604", "0.0003147951410600156", "1.7525932338100918", "1665309611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7604", "0.00044672179967268085", "3.5048151947569206", "1665309611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7604", "0.0003147951410600156", "1.7525932338100918", "1665309611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7604", "0.00044672179967268085", "3.5048151947569206", "1665309611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7605", "0.000313040856553095", "1.752589927849291", "1665313211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7605", "0.00044423236124823946", "3.504810651925261", "1665313211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7605", "0.000313040856553095", "1.752589927849291", "1665313211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7605", "0.00044423236124823946", "3.504810651925261", "1665313211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7606", "0.00031202670757800684", "1.7525880139354506", "1665316811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7606", "0.0004427941932589394", "3.5048080238831085", "1665316811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7606", "0.00031202670757800684", "1.7525880139354506", "1665316811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7606", "0.0004427941932589394", "3.5048080238831085", "1665316811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7607", "0.0003102915370705104", "1.752584744010336", "1665320411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7607", "0.0004403318726002833", "3.504803530557361", "1665320411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7607", "0.0003102915370705104", "1.752584744010336", "1665320411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7607", "0.0004403318726002833", "3.504803530557361", "1665320411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7608", "0.00030844627899562525", "1.752581266625417", "1665324011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7608", "0.00043771332993383075", "3.5047987521525563", "1665324011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7608", "0.00030844627899562525", "1.752581266625417", "1665324011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7608", "0.00043771332993383075", "3.5047987521525563", "1665324011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7609", "0.00030660442711133483", "1.7525777956594382", "1665327611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7609", "0.00043509962032563997", "3.5047939825674113", "1665327611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7609", "0.00030660442711133483", "1.7525777956594382", "1665327611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7609", "0.00043509962032563997", "3.5047939825674113", "1665327611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7610", "0.00030475674034857573", "1.752574313697624", "1665331211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7610", "0.0004324776300865944", "3.504789197871626", "1665331211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7610", "0.00030475674034857573", "1.752574313697624", "1665331211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7610", "0.0004324776300865944", "3.504789197871626", "1665331211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7611", "0.00030302156581069414", "1.7525710280817837", "1665334811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7611", "0.0004300208608885697", "3.5047846940223586", "1665334811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7611", "0.00030302156581069414", "1.7525710280817837", "1665334811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7611", "0.0004300208608885697", "3.5047846940223586", "1665334811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7612", "0.00030092090365383274", "1.7525670694970386", "1665338411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7612", "0.0004270398419611954", "3.5047792543024467", "1665338411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7612", "0.00030092090365383274", "1.7525670694970386", "1665338411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7612", "0.0004270398419611954", "3.5047792543024467", "1665338411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7613", "0.0002988165657895383", "1.7525631039855962", "1665342011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7613", "0.0004240536061740258", "3.5047738050630577", "1665342011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7613", "0.0002988165657895383", "1.7525631039855962", "1665342011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7613", "0.0004240536061740258", "3.5047738050630577", "1665342011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7614", "0.00029798766899526564", "1.7525615419741947", "1665345611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7614", "0.00042287733038314895", "3.504771658612246", "1665345611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7614", "0.00029798766899526564", "1.7525615419741947", "1665345611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7614", "0.00042287733038314895", "3.504771658612246", "1665345611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7615", "0.0002950406493002859", "1.7525559884741433", "1665349211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7615", "0.000418695255251538", "3.504764027223097", "1665349211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7615", "0.0002950406493002859", "1.7525559884741433", "1665349211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7615", "0.000418695255251538", "3.504764027223097", "1665349211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7616", "0.0002933790560717299", "1.7525528572910845", "1665352823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7616", "0.0004163373105249214", "3.5047597244804134", "1665352823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7616", "0.0002933790560717299", "1.7525528572910845", "1665352823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7616", "0.0004163373105249214", "3.5047597244804134", "1665352823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7617", "0.00029190957902984753", "1.7525500881406322", "1665356411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7617", "0.00041425199493633094", "3.504755919227441", "1665356411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7617", "0.00029190957902984753", "1.7525500881406322", "1665356411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7617", "0.00041425199493633094", "3.504755919227441", "1665356411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7618", "0.00029078480550132145", "1.7525479685654035", "1665360011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7618", "0.000412655843344071", "3.5047530065937345", "1665360011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7618", "0.00029078480550132145", "1.7525479685654035", "1665360011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7618", "0.000412655843344071", "3.5047530065937345", "1665360011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7619", "0.0002896553744027494", "1.7525458402132275", "1665363611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7619", "0.000411053082047948", "3.504750081898788", "1665363611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7619", "0.0002896553744027494", "1.7525458402132275", "1665363611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7619", "0.000411053082047948", "3.504750081898788", "1665363611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7620", "0.0002888445952811807", "1.7525443117950326", "1665367211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7620", "0.00040990271002247963", "3.5047479819946634", "1665367211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7620", "0.0002888445952811807", "1.7525443117950326", "1665367211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7620", "0.00040990271002247963", "3.5047479819946634", "1665367211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7621", "0.00028716223390751693", "1.7525411414657233", "1665370811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7621", "0.00040751529525874064", "3.5047436254630715", "1665370811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7621", "0.00028716223390751693", "1.7525411414657233", "1665370811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7621", "0.00040751529525874064", "3.5047436254630715", "1665370811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7622", "0.00028330163328174753", "1.7525338663788246", "1665374411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7622", "0.00040203676026812166", "3.5047336283246375", "1665374411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7622", "0.00028330163328174753", "1.7525338663788246", "1665374411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7622", "0.00040203676026812166", "3.5047336283246375", "1665374411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7623", "0.0002815286042937855", "1.7525305250244625", "1665378011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7623", "0.0003995207377154666", "3.50472903689225", "1665378011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7623", "0.0002815286042937855", "1.7525305250244625", "1665378011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7623", "0.0003995207377154666", "3.50472903689225", "1665378011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7624", "0.0002797439757808968", "1.7525271619925034", "1665381611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7624", "0.00039698818970177645", "3.5047244155430857", "1665381611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7624", "0.0002797439757808968", "1.7525271619925034", "1665381611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7624", "0.00039698818970177645", "3.5047244155430857", "1665381611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7625", "0.000277961669401375", "1.7525238033364559", "1665385211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7625", "0.0003944589364884672", "3.504719800206339", "1665385211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7625", "0.000277961669401375", "1.7525238033364559", "1665385211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7625", "0.0003944589364884672", "3.504719800206339", "1665385211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7626", "0.0002763503242953282", "1.75252076684729", "1665388811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7626", "0.000392172292270633", "3.5047156275783244", "1665388811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7626", "0.0002763503242953282", "1.75252076684729", "1665388811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7626", "0.000392172292270633", "3.5047156275783244", "1665388811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7627", "0.00027445298582835006", "1.7525171914197122", "1665392411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7627", "0.00038947979710748026", "3.504710714360797", "1665392411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7627", "0.00027445298582835006", "1.7525171914197122", "1665392411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7627", "0.00038947979710748026", "3.504710714360797", "1665392411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7628", "0.0002729039160339378", "1.7525142722848361", "1665396011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7628", "0.0003872815263074049", "3.5047067029952452", "1665396011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7628", "0.0002729039160339378", "1.7525142722848361", "1665396011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7628", "0.0003872815263074049", "3.5047067029952452", "1665396011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7629", "0.0002716374224604762", "1.7525118825207902", "1665399611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7629", "0.00038548536534972955", "3.504703421272892", "1665399611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7629", "0.0002716374224604762", "1.7525118825207902", "1665399611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7629", "0.00038548536534972955", "3.504703421272892", "1665399611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7630", "0.0002695371412516255", "1.7525079246831632", "1665403211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7630", "0.0003825048658392568", "3.5046979825423734", "1665403211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7630", "0.0002695371412516255", "1.7525079246831632", "1665403211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7630", "0.0003825048658392568", "3.5046979825423734", "1665403211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7631", "0.0002678603538997299", "1.7525047635621165", "1665406811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7631", "0.0003801258150488871", "3.504693639568313", "1665406811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7631", "0.0002678603538997299", "1.7525047635621165", "1665406811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7631", "0.0003801258150488871", "3.504693639568313", "1665406811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7632", "0.0002661934653411184", "1.752501622431809", "1665410411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7632", "0.00037776033718390996", "3.504689323122878", "1665410411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7632", "0.0002661934653411184", "1.752501622431809", "1665410411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7632", "0.00037776033718390996", "3.504689323122878", "1665410411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7633", "0.0002645003208208606", "1.7524984318240346", "1665414011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7633", "0.00037535759908076616", "3.5046849386863093", "1665414011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7633", "0.0002645003208208606", "1.7524984318240346", "1665414011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7633", "0.00037535759908076616", "3.5046849386863093", "1665414011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7634", "0.00026278370300015824", "1.7524951969825158", "1665417611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7634", "0.0003729215495881052", "3.5046804934643387", "1665417611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7634", "0.00026278370300015824", "1.7524951969825158", "1665417611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7634", "0.0003729215495881052", "3.5046804934643387", "1665417611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7635", "0.00026105392851610056", "1.752491935585691", "1665421211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7635", "0.00037046745373841254", "3.504676012990854", "1665421211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7635", "0.00026105392851610056", "1.752491935585691", "1665421211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7635", "0.00037046745373841254", "3.504676012990854", "1665421211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7636", "0.00025924665122905146", "1.7524885299151625", "1665424811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7636", "0.0003679027442000344", "3.504671333010633", "1665424811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7636", "0.00025924665122905146", "1.7524885299151625", "1665424811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7636", "0.0003679027442000344", "3.504671333010633", "1665424811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7637", "0.00025645974916846094", "1.7524832781004123", "1665428411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7637", "0.0003639478890521185", "3.504664116191254", "1665428411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7637", "0.00025645974916846094", "1.7524832781004123", "1665428411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7637", "0.0003639478890521185", "3.504664116191254", "1665428411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7638", "0.0002557483475479598", "1.7524819375208665", "1665432011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7638", "0.0003629383375075351", "3.504662274002193", "1665432011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7638", "0.0002557483475479598", "1.7524819375208665", "1665432011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7638", "0.0003629383375075351", "3.504662274002193", "1665432011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7639", "0.00025410214510489563", "1.7524788339457373", "1665435611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7639", "0.0003606027175447293", "3.5046580101629345", "1665435611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7639", "0.00025410214510489563", "1.7524788339457373", "1665435611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7639", "0.0003606027175447293", "3.5046580101629345", "1665435611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7640", "0.0002524466367132193", "1.752475712367877", "1665439211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7640", "0.00035825405635491126", "3.5046537219124163", "1665439211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7640", "0.0002524466367132193", "1.752475712367877", "1665439211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7640", "0.00035825405635491126", "3.5046537219124163", "1665439211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7641", "0.0002507987478736331", "1.7524726070747247", "1665442811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7641", "0.0003559155248859123", "3.5046494546832534", "1665442811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7641", "0.0002507987478736331", "1.7524726070747247", "1665442811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7641", "0.0003559155248859123", "3.5046494546832534", "1665442811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7642", "0.00025009703391411735", "1.7524712838293675", "1665446411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7642", "0.00035492004706653475", "3.504647636961999", "1665446411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7642", "0.00025009703391411735", "1.7524712838293675", "1665446411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7642", "0.00035492004706653475", "3.504647636961999", "1665446411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7643", "0.0002483200148650695", "1.7524679352222963", "1665450011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7643", "0.00035239825817170984", "3.504643035360793", "1665450011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7643", "0.0002483200148650695", "1.7524679352222963", "1665450011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7643", "0.00035239825817170984", "3.504643035360793", "1665450011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7644", "0.0002476457302032815", "1.7524666418820785", "1665453611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7644", "0.00035144942559138206", "3.5046412740664032", "1665453611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7644", "0.0002476457302032815", "1.7524666418820785", "1665453611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7644", "0.00035144942559138206", "3.5046412740664032", "1665453611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7645", "0.0002456952076237192", "1.75246294984774", "1665457211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7645", "0.00034868725469414417", "3.50463621212845", "1665457211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7645", "0.0002456952076237192", "1.75246294984774", "1665457211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7645", "0.00034868725469414417", "3.50463621212845", "1665457211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7646", "0.00024382993313449365", "1.75245943521575", "1665460811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7646", "0.0003460401196958371", "3.5046313821770325", "1665460811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7646", "0.00024382993313449365", "1.75245943521575", "1665460811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7646", "0.0003460401196958371", "3.5046313821770325", "1665460811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7647", "0.0002548278822510129", "1.7524801541063915", "1665464411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7647", "0.000361649423796291", "3.504659857677521", "1665464411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7647", "0.0002548278822510129", "1.7524801541063915", "1665464411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7647", "0.000361649423796291", "3.504659857677521", "1665464411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7648", "0.0002690724436116809", "1.7525069941126334", "1665468011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7648", "0.00038186486569387096", "3.504696742408401", "1665468011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7648", "0.0002690724436116809", "1.7525069941126334", "1665468011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7648", "0.00038186486569387096", "3.504696742408401", "1665468011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7649", "0.0002841980163018989", "1.752535494144289", "1665471611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7649", "0.00040333057563982517", "3.50473590836467", "1665471611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7649", "0.0002841980163018989", "1.752535494144289", "1665471611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7649", "0.00040333057563982517", "3.50473590836467", "1665471611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7650", "0.0002993802069804996", "1.752564097223463", "1665475211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7650", "0.00042487788593740085", "3.5047752184323104", "1665475211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7650", "0.0002993802069804996", "1.752564097223463", "1665475211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7650", "0.00042487788593740085", "3.5047752184323104", "1665475211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7651", "0.00031217041149092485", "1.7525881967311783", "1665478811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7651", "0.00044302931357683594", "3.504808337017704", "1665478811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7651", "0.00031217041149092485", "1.7525881967311783", "1665478811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7651", "0.00044302931357683594", "3.504808337017704", "1665478811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7652", "0.00031119821477283786", "1.7525863551656666", "1665482411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7652", "0.0004416530562081192", "3.5048058131124846", "1665482411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7652", "0.00031119821477283786", "1.7525863551656666", "1665482411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7652", "0.0004416530562081192", "3.5048058131124846", "1665482411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7653", "0.000308604161199449", "1.7525814674896871", "1665486011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7653", "0.0004379716356817869", "3.504799096202392", "1665486011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7653", "0.000308604161199449", "1.7525814674896871", "1665486011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7653", "0.0004379716356817869", "3.504799096202392", "1665486011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7654", "0.00030773878418479224", "1.7525798367416165", "1665489611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7654", "0.0004367435897351419", "3.5047968552927333", "1665489611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7654", "0.00030773878418479224", "1.7525798367416165", "1665489611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7654", "0.0004367435897351419", "3.5047968552927333", "1665489611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7655", "0.00030687420219663184", "1.7525782077100875", "1665493211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7655", "0.0004355165944962064", "3.5047946165880397", "1665493211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7655", "0.00030687420219663184", "1.7525782077100875", "1665493211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7655", "0.0004355165944962064", "3.5047946165880397", "1665493211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7656", "0.000305989578036988", "1.7525765409154161", "1665496811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7656", "0.00043426115573455765", "3.504792325986967", "1665496811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7656", "0.000305989578036988", "1.7525765409154161", "1665496811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7656", "0.00043426115573455765", "3.504792325986967", "1665496811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7657", "0.00030510448311965095", "1.752574873233746", "1665500411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7657", "0.00043300504875720046", "3.504790034166737", "1665500411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7657", "0.00030510448311965095", "1.752574873233746", "1665500411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7657", "0.00043300504875720046", "3.504790034166737", "1665500411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7658", "0.00030425814409178935", "1.7525732785752985", "1665504011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7658", "0.0004318039431555274", "3.5047878426988683", "1665504011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7658", "0.00030425814409178935", "1.7525732785752985", "1665504011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7658", "0.0004318039431555274", "3.5047878426988683", "1665504011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7659", "0.00031774628672233407", "1.752598692717255", "1665507623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7659", "0.0004509460025905013", "3.5048227681976316", "1665507623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7659", "0.00031774628672233407", "1.752598692717255", "1665507623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7659", "0.0004509460025905013", "3.5048227681976316", "1665507623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7660", "0.00033571178168702857", "1.7526325339523947", "1665511211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7660", "0.0004764453817392246", "3.504869280972886", "1665511211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7660", "0.00033571178168702857", "1.7526325339523947", "1665511211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7660", "0.0004764453817392246", "3.504869280972886", "1665511211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7661", "0.0003339154137015719", "1.7526291493133646", "1665514811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7661", "0.00047389600767740707", "3.504864629594028", "1665514811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7661", "0.0003339154137015719", "1.7526291493133646", "1665514811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7661", "0.00047389600767740707", "3.504864629594028", "1665514811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7662", "0.00034571905213977695", "1.752651389219167", "1665518411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7662", "0.0004906475155621554", "3.5048951930239682", "1665518411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7662", "0.00034571905213977695", "1.752651389219167", "1665518411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7662", "0.0004906475155621554", "3.5048951930239682", "1665518411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7663", "0.0003575325137613615", "1.7526736431560916", "1665522011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7663", "0.0005074145280452818", "3.5049257788517414", "1665522011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7663", "0.0003575325137613615", "1.7526736431560916", "1665522011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7663", "0.0005074145280452818", "3.5049257788517414", "1665522011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7664", "0.00036904007772283127", "1.7526953250656307", "1665525611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7664", "0.0005237458597269529", "3.504955575483436", "1665525611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7664", "0.00036904007772283127", "1.7526953250656307", "1665525611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7664", "0.0005237458597269529", "3.504955575483436", "1665525611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7665", "0.0003774564265181067", "1.7527111809887714", "1665529211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7665", "0.0005356907790095321", "3.504977366850453", "1665529211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7665", "0.0003774564265181067", "1.7527111809887714", "1665529211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7665", "0.0005356907790095321", "3.504977366850453", "1665529211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7666", "0.0003903094108836562", "1.7527353738189557", "1665532811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7666", "0.0005539399847236068", "3.505010630998578", "1665532811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7666", "0.0003903094108836562", "1.7527353738189557", "1665532811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7666", "0.0005539399847236068", "3.505010630998578", "1665532811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7667", "0.00039216851011308093", "1.7527388765070857", "1665536411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7667", "0.0005565784205524705", "3.505015444684268", "1665536411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7667", "0.00039216851011308093", "1.7527388765070857", "1665536411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7667", "0.0005565784205524705", "3.505015444684268", "1665536411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7668", "0.0004045597129176692", "1.7527622218013794", "1665540011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7668", "0.0005741642636213211", "3.5050475282014415", "1665540011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7668", "0.0004045597129176692", "1.7527622218013794", "1665540011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7668", "0.0005741642636213211", "3.5050475282014415", "1665540011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7669", "0.0004165941605811082", "1.7527848936657233", "1665543611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7669", "0.0005912442276204082", "3.5050786870960113", "1665543611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7669", "0.0004165941605811082", "1.7527848936657233", "1665543611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7669", "0.0005912442276204082", "3.5050786870960113", "1665543611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7670", "0.00042861901870278475", "1.7528075486245387", "1665547211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7670", "0.0006083101467266882", "3.50510982190351", "1665547211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7670", "0.00042861901870278475", "1.7528075486245387", "1665547211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7670", "0.0006083101467266882", "3.50510982190351", "1665547211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7671", "0.00044053136721509213", "1.7528299923198452", "1665550811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7671", "0.0006252161164818297", "3.505140665837994", "1665550811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7671", "0.00044053136721509213", "1.7528299923198452", "1665550811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7671", "0.0006252161164818297", "3.505140665837994", "1665550811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7672", "0.0004504823950007426", "1.7528487408543576", "1665554411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7672", "0.0006393385308968636", "3.50516643148394", "1665554411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7672", "0.0004504823950007426", "1.7528487408543576", "1665554411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7672", "0.0006393385308968636", "3.50516643148394", "1665554411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7673", "0.00046066444083256956", "1.7528679125339162", "1665558011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7673", "0.0006537930789736889", "3.505192787143563", "1665558011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7673", "0.00046066444083256956", "1.7528679125339162", "1665558011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7673", "0.0006537930789736889", "3.505192787143563", "1665558011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7674", "0.00047211014621991473", "1.7528894767434968", "1665561611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7674", "0.0006700368359308326", "3.505222422535239", "1665561611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7674", "0.00047211014621991473", "1.7528894767434968", "1665561611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7674", "0.0006700368359308326", "3.505222422535239", "1665561611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7675", "0.0004825635552539793", "1.7529091714227367", "1665565211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7675", "0.0006848723063234415", "3.5052494886290058", "1665565211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7675", "0.0004825635552539793", "1.7529091714227367", "1665565211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7675", "0.0006848723063234415", "3.5052494886290058", "1665565211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7676", "0.0004886269009023346", "1.7529205943092054", "1665568811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7676", "0.0006934776494746606", "3.5052651874206737", "1665568811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7676", "0.0004886269009023346", "1.7529205943092054", "1665568811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7676", "0.0006934776494746606", "3.5052651874206737", "1665568811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7677", "0.0004987551201891838", "1.7529396763009275", "1665572411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7677", "0.0007078515892707538", "3.5052914114767098", "1665572411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7677", "0.0004987551201891838", "1.7529396763009275", "1665572411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7677", "0.0007078515892707538", "3.5052914114767098", "1665572411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7678", "0.0005088835746212667", "1.7529587587351279", "1665576011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7678", "0.0007222258461586941", "3.505317636115289", "1665576011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7678", "0.0005088835746212667", "1.7529587587351279", "1665576011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7678", "0.0007222258461586941", "3.505317636115289", "1665576011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7679", "0.0005196869597429383", "1.7529791068238463", "1665579611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7679", "0.0007375600490582191", "3.505345604272791", "1665579611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7679", "0.0005196869597429383", "1.7529791068238463", "1665579611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7679", "0.0007375600490582191", "3.505345604272791", "1665579611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7680", "0.0005171655401689682", "1.7529743561183047", "1665583211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7680", "0.0007339817546113398", "3.505339075647174", "1665583211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7680", "0.0005171655401689682", "1.7529743561183047", "1665583211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7680", "0.0007339817546113398", "3.505339075647174", "1665583211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7681", "0.0005157357146356708", "1.7529716621495302", "1665586811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7681", "0.0007319525971904223", "3.505335373462516", "1665586811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7681", "0.0005157357146356708", "1.7529716621495302", "1665586811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7681", "0.0007319525971904223", "3.505335373462516", "1665586811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7682", "0.000536830365819499", "1.7530114113579056", "1665590411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7682", "0.0007618878279935036", "3.5053899957288173", "1665590411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7682", "0.000536830365819499", "1.7530114113579056", "1665590411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7682", "0.0007618878279935036", "3.5053899957288173", "1665590411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7683", "0.0005481063666744224", "1.7530326247127566", "1665594011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7683", "0.0007779016278080154", "3.5054191706274214", "1665594011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7683", "0.0005481063666744224", "1.7530326247127566", "1665594011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7683", "0.0007779016278080154", "3.5054191706274214", "1665594011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7684", "0.0005608979214833847", "1.7530567238038013", "1665597611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7684", "0.0007960554994009176", "3.5054522899195635", "1665597611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7684", "0.0005608979214833847", "1.7530567238038013", "1665597611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7684", "0.0007960554994009176", "3.5054522899195635", "1665597611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7685", "0.0005953697736159714", "1.7531216636984435", "1665601211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7685", "0.0008449796887076538", "3.5055415395665506", "1665601211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7685", "0.0005953697736159714", "1.7531216636984435", "1665601211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7685", "0.0008449796887076538", "3.5055415395665506", "1665601211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7686", "0.0006062229458731679", "1.7531421108214689", "1665604811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7686", "0.0008603825409603039", "3.505569639905549", "1665604811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7686", "0.0006062229458731679", "1.7531421108214689", "1665604811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7686", "0.0008603825409603039", "3.505569639905549", "1665604811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7687", "0.0006173327663263774", "1.753163031681328", "1665608411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7687", "0.0008761530752194924", "3.5055983981493886", "1665608411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7687", "0.0006173327663263774", "1.753163031681328", "1665608411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7687", "0.0008761530752194924", "3.5055983981493886", "1665608411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7688", "0.0006298635686974582", "1.753186639220284", "1665612011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7688", "0.0008939368488458772", "3.5056308418945714", "1665612011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7688", "0.0006298635686974582", "1.753186639220284", "1665612011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7688", "0.0008939368488458772", "3.5056308418945714", "1665612011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7689", "0.0006419912620486022", "1.753209417790156", "1665615611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7689", "0.0009111731379682565", "3.5056621952643807", "1665615611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7689", "0.0006419912620486022", "1.753209417790156", "1665615611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7689", "0.0009111731379682565", "3.5056621952643807", "1665615611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7690", "0.0006538702354868212", "1.7532317960213075", "1665619211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7690", "0.0009280322418756212", "3.505692950409873", "1665619211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7690", "0.0006538702354868212", "1.7532317960213075", "1665619211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7690", "0.0009280322418756212", "3.505692950409873", "1665619211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7691", "0.0006725550516990724", "1.7532669943174302", "1665622811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7691", "0.0009545508203367046", "3.5057413253239598", "1665622811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7691", "0.0006725550516990724", "1.7532669943174302", "1665622811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7691", "0.0009545508203367046", "3.5057413253239598", "1665622811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7692", "0.0006840979223796156", "1.7532887393593237", "1665626411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7692", "0.0009709328641126932", "3.5057712101828025", "1665626411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7692", "0.0006840979223796156", "1.7532887393593237", "1665626411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7692", "0.0009709328641126932", "3.5057712101828025", "1665626411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7693", "0.0006968550645815327", "1.7533127616353559", "1665630011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7693", "0.0009890418581038883", "3.505804231898814", "1665630011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7693", "0.0006968550645815327", "1.7533127616353559", "1665630011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7693", "0.0009890418581038883", "3.505804231898814", "1665630011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7694", "0.0007083288909876892", "1.7533343748701637", "1665633611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7694", "0.0010053264819863724", "3.505833936763511", "1665633611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7694", "0.0007083288909876892", "1.7533343748701637", "1665633611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7694", "0.0010053264819863724", "3.505833936763511", "1665633611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7695", "0.0007192363238992779", "1.753354922655477", "1665637211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7695", "0.0010208066932093371", "3.5058621762307487", "1665637211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7695", "0.0007192363238992779", "1.753354922655477", "1665637211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7695", "0.0010208066932093371", "3.5058621762307487", "1665637211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7696", "0.0007162821217062743", "1.753349357431078", "1665640811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7696", "0.0010166139877807712", "3.5058545277708495", "1665640811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7696", "0.0007162821217062743", "1.753349357431078", "1665640811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7696", "0.0010166139877807712", "3.5058545277708495", "1665640811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7697", "0.0007142680115012122", "1.7533455589966231", "1665644411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7697", "0.001013756975715711", "3.505849310408717", "1665644411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7697", "0.0007142680115012122", "1.7533455589966231", "1665644411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7697", "0.001013756975715711", "3.505849310408717", "1665644411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7698", "0.0007111299418501248", "1.753339647414895", "1665648011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7698", "0.0010093033101728017", "3.505841185922343", "1665648011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7698", "0.0007111299418501248", "1.753339647414895", "1665648011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7698", "0.0010093033101728017", "3.505841185922343", "1665648011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7699", "0.000707995198030751", "1.753333742098409", "1665651611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7699", "0.0010048543631812434", "3.5058330700440554", "1665651611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7699", "0.000707995198030751", "1.753333742098409", "1665651611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7699", "0.0010048543631812434", "3.5058330700440554", "1665651611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7700", "0.0007048549136182816", "1.7533278263443504", "1665655211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7700", "0.0010003975511739046", "3.5058249398186017", "1665655211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7700", "0.0007048549136182816", "1.7533278263443504", "1665655211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7700", "0.0010003975511739046", "3.5058249398186017", "1665655211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7701", "0.0007023275525152202", "1.7533230652320257", "1665658811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7701", "0.0009968106222605015", "3.5058183964554437", "1665658811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7701", "0.0007023275525152202", "1.7533230652320257", "1665658811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7701", "0.0009968106222605015", "3.5058183964554437", "1665658811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7702", "0.0007003417375524178", "1.7533193242991845", "1665662411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7702", "0.000993992275909724", "3.505813255159508", "1665662411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7702", "0.0007003417375524178", "1.7533193242991845", "1665662411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7702", "0.000993992275909724", "3.505813255159508", "1665662411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7703", "0.0006983124000929264", "1.7533155004136445", "1665666011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7703", "0.0009911125015292868", "3.5058080005357026", "1665666011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7703", "0.0006983124000929264", "1.7533155004136445", "1665666011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7703", "0.0009911125015292868", "3.5058080005357026", "1665666011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7704", "0.0006963753235532619", "1.753311851298218", "1665669611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7704", "0.0009883633244571874", "3.505802985423873", "1665669611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7704", "0.0006963753235532619", "1.753311851298218", "1665669611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7704", "0.0009883633244571874", "3.505802985423873", "1665669611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7705", "0.000693501531280567", "1.7533064375731693", "1665673211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7705", "0.000984284721555303", "3.5057955451432457", "1665673211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7705", "0.000693501531280567", "1.7533064375731693", "1665673211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7705", "0.000984284721555303", "3.5057955451432457", "1665673211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7706", "0.0006911301502601098", "1.75330196861578", "1665676823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7706", "0.0009809197580838583", "3.505789404477084", "1665676823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7706", "0.0006911301502601098", "1.75330196861578", "1665676823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7706", "0.0009809197580838583", "3.505789404477084", "1665676823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7707", "0.0006880071188159274", "1.7532960845913985", "1665680411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7707", "0.000976487697008492", "3.5057813183885185", "1665680411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7707", "0.0006880071188159274", "1.7532960845913985", "1665680411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7707", "0.000976487697008492", "3.5057813183885185", "1665680411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7708", "0.0006860501484794699", "1.7532923946321581", "1665684011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7708", "0.0009737114755476904", "3.5057762495071056", "1665684011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7708", "0.0006860501484794699", "1.7532923946321581", "1665684011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7708", "0.0009737114755476904", "3.5057762495071056", "1665684011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7709", "0.0006832134899923206", "1.753287050884659", "1665687611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7709", "0.0009696855611458059", "3.505768905374949", "1665687611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7709", "0.0006832134899923206", "1.753287050884659", "1665687611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7709", "0.0009696855611458059", "3.505768905374949", "1665687611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7710", "0.0006803172003436978", "1.753281589782302", "1665691211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7710", "0.0009655767928396145", "3.5057614034866433", "1665691211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7710", "0.0006803172003436978", "1.753281589782302", "1665691211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7710", "0.0009655767928396145", "3.5057614034866433", "1665691211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7711", "0.000677328514141269", "1.7532759416936212", "1665694811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7711", "0.0009613414697057346", "3.5057536537063636", "1665694811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7711", "0.000677328514141269", "1.7532759416936212", "1665694811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7711", "0.0009613414697057346", "3.5057536537063636", "1665694811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7712", "0.0006962969668349276", "1.7533116741574462", "1665698411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7712", "0.000988262579398969", "3.505802762744439", "1665698411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7712", "0.0006962969668349276", "1.7533116741574462", "1665698411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7712", "0.000988262579398969", "3.505802762744439", "1665698411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7713", "0.0007148968764038279", "1.7533467123639062", "1665702011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7713", "0.0010146605750602493", "3.505850917540458", "1665702011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7713", "0.0007148968764038279", "1.7533467123639062", "1665702011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7713", "0.0010146605750602493", "3.505850917540458", "1665702011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7714", "0.0007301210434996803", "1.7533753914003962", "1665705611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7714", "0.001036267493065323", "3.505890332540414", "1665705611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7714", "0.0007301210434996803", "1.7533753914003962", "1665705611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7714", "0.001036267493065323", "3.505890332540414", "1665705611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7715", "0.0007280162861284346", "1.7533714260451514", "1665709211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7715", "0.0010332804744661197", "3.505884883077578", "1665709211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7715", "0.0007280162861284346", "1.7533714260451514", "1665709211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7715", "0.0010332804744661197", "3.505884883077578", "1665709211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7716", "0.000724906325308482", "1.753365564165703", "1665712811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7716", "0.0010288678603814247", "3.5058768291953966", "1665712811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7716", "0.000724906325308482", "1.753365564165703", "1665712811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7716", "0.0010288678603814247", "3.5058768291953966", "1665712811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7717", "0.0007215757310856852", "1.7533592885107578", "1665716411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7717", "0.001024141455010545", "3.5058682053375225", "1665716411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7717", "0.0007215757310856852", "1.7533592885107578", "1665716411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7717", "0.001024141455010545", "3.5058682053375225", "1665716411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7718", "0.000717649630672263", "1.7533518298178992", "1665720011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7718", "0.0010185915665915435", "3.505857998635685", "1665720011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7718", "0.000717649630672263", "1.7533518298178992", "1665720011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7718", "0.0010185915665915435", "3.505857998635685", "1665720011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7719", "0.0007317494169469188", "1.7533783894256338", "1665723611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7719", "0.001038603174973914", "3.5058945017351246", "1665723611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7719", "0.0007317494169469188", "1.7533783894256338", "1665723611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7719", "0.001038603174973914", "3.5058945017351246", "1665723611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7720", "0.0007435009009400547", "1.7534005261174141", "1665727211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7720", "0.0010552816529826902", "3.5059249256214082", "1665727211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7720", "0.0007435009009400547", "1.7534005261174141", "1665727211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7720", "0.0010552816529826902", "3.5059249256214082", "1665727211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7721", "0.0007414384737137787", "1.7533966411452502", "1665730811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7721", "0.001052354488432758", "3.505919586188104", "1665730811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7721", "0.0007414384737137787", "1.7533966411452502", "1665730811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7721", "0.001052354488432758", "3.505919586188104", "1665730811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7722", "0.0007386010699877884", "1.7533912963580858", "1665734411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7722", "0.001048327413044214", "3.505912240410551", "1665734411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7722", "0.0007386010699877884", "1.7533912963580858", "1665734411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7722", "0.001048327413044214", "3.505912240410551", "1665734411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7723", "0.0007356254964152962", "1.7533856762452804", "1665738011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7723", "0.0010441095679049393", "3.5059045268173494", "1665738011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7723", "0.0007356254964152962", "1.7533856762452804", "1665738011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7723", "0.0010441095679049393", "3.5059045268173494", "1665738011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7724", "0.0007327722503415703", "1.7533803016743554", "1665741611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7724", "0.001040059984382875", "3.5058971400603345", "1665741611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7724", "0.0007327722503415703", "1.7533803016743554", "1665741611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7724", "0.001040059984382875", "3.5058971400603345", "1665741611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7725", "0.0007299368703007691", "1.7533749607570803", "1665745211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7725", "0.0010360357566353022", "3.5058897995545553", "1665745211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7725", "0.0007299368703007691", "1.7533749607570803", "1665745211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7725", "0.0010360357566353022", "3.5058897995545553", "1665745211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7726", "0.0007272430988118146", "1.7533698865833962", "1665748811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7726", "0.0010322125113429851", "3.5058828256567693", "1665748811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7726", "0.0007272430988118146", "1.7533698865833962", "1665748811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7726", "0.0010322125113429851", "3.5058828256567693", "1665748811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7727", "0.0007245492069910217", "1.7533648121830099", "1665752411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7727", "0.0010283890940889111", "3.5058758514456", "1665752411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7727", "0.0007245492069910217", "1.7533648121830099", "1665752411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7727", "0.0010283890940889111", "3.5058758514456", "1665752411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7728", "0.0007219631532081621", "1.753359940913753", "1665756011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7728", "0.0010247187293188338", "3.5058691564143643", "1665756011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7728", "0.0007219631532081621", "1.753359940913753", "1665756011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7728", "0.0010247187293188338", "3.5058691564143643", "1665756011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7729", "0.0007189350101936427", "1.7533541852272532", "1665759611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7729", "0.0010204392112002489", "3.505861282179444", "1665759611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7729", "0.0007189350101936427", "1.7533541852272532", "1665759611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7729", "0.0010204392112002489", "3.505861282179444", "1665759611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7730", "0.0007383310938672681", "1.753390719329925", "1665763211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7730", "0.001047968497088855", "3.505911495509055", "1665763211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7730", "0.0007383310938672681", "1.753390719329925", "1665763211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7730", "0.001047968497088855", "3.505911495509055", "1665763211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7731", "0.0007580420700883877", "1.7534278468573217", "1665766811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7731", "0.0010759445478225513", "3.5059625241479955", "1665766811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7731", "0.0007580420700883877", "1.7534278468573217", "1665766811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7731", "0.0010759445478225513", "3.5059625241479955", "1665766811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7732", "0.0007779937153567861", "1.7534654185801688", "1665770411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7732", "0.0011042653517403136", "3.5060141696148777", "1665770411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7732", "0.0007779937153567861", "1.7534654185801688", "1665770411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7732", "0.0011042653517403136", "3.5060141696148777", "1665770411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7733", "0.0007946353823676379", "1.7534967401808323", "1665774011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7733", "0.0011278936957989734", "3.506057235628336", "1665774011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7733", "0.0007946353823676379", "1.7534967401808323", "1665774011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7733", "0.0011278936957989734", "3.506057235628336", "1665774011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7734", "0.0007922775112219273", "1.7534922982145702", "1665777611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7734", "0.001124547399167446", "3.5060511310331464", "1665777611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7734", "0.0007922775112219273", "1.7534922982145702", "1665777611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7734", "0.001124547399167446", "3.5060511310331464", "1665777611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7735", "0.0007899236438638875", "1.7534878645807432", "1665781211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7735", "0.0011212065040854093", "3.506045037332594", "1665781211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7735", "0.0007899236438638875", "1.7534878645807432", "1665781211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7735", "0.0011212065040854093", "3.506045037332594", "1665781211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7736", "0.0007874289461775456", "1.7534831656612897", "1665784811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7736", "0.00111766573305563", "3.5060385790321638", "1665784811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7736", "0.0007874289461775456", "1.7534831656612897", "1665784811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7736", "0.00111766573305563", "3.5060385790321638", "1665784811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7737", "0.0007847167829285585", "1.7534780550152997", "1665788411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7737", "0.0011138170576003865", "3.5060315563320166", "1665788411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7737", "0.0007847167829285585", "1.7534780550152997", "1665788411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7737", "0.0011138170576003865", "3.5060315563320166", "1665788411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7738", "0.00078232660877415", "1.7534735400494297", "1665792011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7738", "0.0011104292140193368", "3.506025359945281", "1665792011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7738", "0.00078232660877415", "1.7534735400494297", "1665792011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7738", "0.0011104292140193368", "3.506025359945281", "1665792011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7739", "0.000779979742864759", "1.7534691196484116", "1665795611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7739", "0.0011070982364048201", "3.50601928439455", "1665795611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7739", "0.000779979742864759", "1.7534691196484116", "1665795611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7739", "0.0011070982364048201", "3.50601928439455", "1665795611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7740", "0.0007776227804690941", "1.753464679422977", "1665799211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7740", "0.0011037532135883322", "3.5060131821627474", "1665799211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7740", "0.0007776227804690941", "1.753464679422977", "1665799211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7740", "0.0011037532135883322", "3.5060131821627474", "1665799211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7741", "0.0007751905748636293", "1.753460096856616", "1665802811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7741", "0.0011003016136498466", "3.506006884725587", "1665802811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7741", "0.0007751905748636293", "1.753460096856616", "1665802811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7741", "0.0011003016136498466", "3.506006884725587", "1665802811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7742", "0.0007726951510604234", "1.753455396648894", "1665806411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7742", "0.0010967597778724317", "3.5060004245893954", "1665806411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7742", "0.0007726951510604234", "1.753455396648894", "1665806411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7742", "0.0010967597778724317", "3.5060004245893954", "1665806411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7743", "0.0007697685669043158", "1.7534498843373054", "1665810011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7743", "0.0010926059809645157", "3.5059928482661817", "1665810011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7743", "0.0007697685669043158", "1.7534498843373054", "1665810011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7743", "0.0010926059809645157", "3.5059928482661817", "1665810011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7744", "0.0007667642204654309", "1.7534441921848156", "1665813611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7744", "0.0010883536321979713", "3.50598504822615", "1665813611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7744", "0.0007667642204654309", "1.7534441921848156", "1665813611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7744", "0.0010883536321979713", "3.50598504822615", "1665813611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7745", "0.0007635484209931945", "1.753438099014095", "1665817211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7745", "0.0010838021292748636", "3.505976698933495", "1665817211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7745", "0.0007635484209931945", "1.753438099014095", "1665817211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7745", "0.0010838021292748636", "3.505976698933495", "1665817211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7746", "0.00076041902357877", "1.7534322049820492", "1665820811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7746", "0.0010793603673030763", "3.5059685977522466", "1665820811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7746", "0.00076041902357877", "1.7534322049820492", "1665820811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7746", "0.0010793603673030763", "3.5059685977522466", "1665820811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7747", "0.0007572548933239757", "1.7534262455327358", "1665824411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7747", "0.001074869305086598", "3.505960406654325", "1665824411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7747", "0.0007572548933239757", "1.7534262455327358", "1665824411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7747", "0.001074869305086598", "3.505960406654325", "1665824411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7748", "0.0007551543135028905", "1.753422289216766", "1665828011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7748", "0.0010718878104127257", "3.5059549688062925", "1665828011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7748", "0.0007551543135028905", "1.753422289216766", "1665828011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7748", "0.0010718878104127257", "3.5059549688062925", "1665828011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7749", "0.0007529599067831649", "1.753418141112424", "1665831611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7749", "0.0010687784775426723", "3.505949277944831", "1665831611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7749", "0.0007529599067831649", "1.753418141112424", "1665831611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7749", "0.0010687784775426723", "3.505949277944831", "1665831611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7750", "0.0007508712410925371", "1.753414207277755", "1665835211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7750", "0.0010658138771409836", "3.505943870965109", "1665835211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7750", "0.0007508712410925371", "1.753414207277755", "1665835211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7750", "0.0010658138771409836", "3.505943870965109", "1665835211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7751", "0.0007487896648239833", "1.7534102868308807", "1665838811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7751", "0.001062859326029377", "3.5059384823606448", "1665838811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7751", "0.0007487896648239833", "1.7534102868308807", "1665838811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7751", "0.001062859326029377", "3.5059384823606448", "1665838811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7752", "0.0007446363226989212", "1.7534024643430846", "1665842411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7752", "0.0010569641715510586", "3.505927730497116", "1665842411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7752", "0.0007446363226989212", "1.7534024643430846", "1665842411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7752", "0.0010569641715510586", "3.505927730497116", "1665842411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7753", "0.0007407023574836723", "1.7533950550340787", "1665846011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7753", "0.0010513803928341708", "3.505917546536165", "1665846011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7753", "0.0007407023574836723", "1.7533950550340787", "1665846011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7753", "0.0010513803928341708", "3.505917546536165", "1665846011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7754", "0.0007367381464732112", "1.7533875799766958", "1665849611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7754", "0.0010457567917605366", "3.5059072783759064", "1665849611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7754", "0.0007367381464732112", "1.7533875799766958", "1665849611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7754", "0.0010457567917605366", "3.5059072783759064", "1665849611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7755", "0.0007553205118794023", "1.753422486720544", "1665853211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7755", "0.0010721646161274245", "3.5059553214760952", "1665853211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7755", "0.0007553205118794023", "1.753422486720544", "1665853211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7755", "0.0010721646161274245", "3.5059553214760952", "1665853211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7756", "0.0007746721264289001", "1.7534589235231655", "1665856811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7756", "0.001099635465655372", "3.5060054104139207", "1665856811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7756", "0.0007746721264289001", "1.7534589235231655", "1665856811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7756", "0.001099635465655372", "3.5060054104139207", "1665856811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7757", "0.0007929423236565794", "1.7534933310263061", "1665860411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7757", "0.0011255686814090708", "3.506052704789872", "1665860411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7757", "0.0007929423236565794", "1.7534933310263061", "1665860411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7757", "0.0011255686814090708", "3.506052704789872", "1665860411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7758", "0.0007900702968615145", "1.7534879183527987", "1665864011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7758", "0.00112149343463093", "3.5060452676217744", "1665864011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7758", "0.0007900702968615145", "1.7534879183527987", "1665864011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7758", "0.00112149343463093", "3.5060452676217744", "1665864011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7759", "0.0007869768295384054", "1.7534820928110704", "1665867611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7759", "0.001117102394308632", "3.5060372600240797", "1665867611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7759", "0.0007869768295384054", "1.7534820928110704", "1665867611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7759", "0.001117102394308632", "3.5060372600240797", "1665867611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7760", "0.0007848444352462504", "1.7534780774667253", "1665871211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7760", "0.0011140754375906195", "3.506031740431918", "1665871211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7760", "0.0007848444352462504", "1.7534780774667253", "1665871211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7760", "0.0011140754375906195", "3.506031740431918", "1665871211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7761", "0.0007818105957451359", "1.7534723647695094", "1665874811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7761", "0.0011097688372734512", "3.506023887552561", "1665874811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7761", "0.0007818105957451359", "1.7534723647695094", "1665874811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7761", "0.0011097688372734512", "3.506023887552561", "1665874811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7762", "0.0007795763342356543", "1.7534681471026412", "1665878411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7762", "0.0011066009965837148", "3.5060180972243145", "1665878411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7762", "0.0007795763342356543", "1.7534681471026412", "1665878411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7762", "0.0011066009965837148", "3.5060180972243145", "1665878411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7763", "0.0007737684385078482", "1.7534572095206684", "1665882011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7763", "0.001098357038245686", "3.5060030629747563", "1665882011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7763", "0.0007737684385078482", "1.7534572095206684", "1665882011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7763", "0.001098357038245686", "3.5060030629747563", "1665882011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7764", "0.0007709258250539218", "1.753451856137014", "1665885611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7764", "0.0010943221527069632", "3.5059957045497407", "1665885611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7764", "0.0007709258250539218", "1.753451856137014", "1665885611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7764", "0.0010943221527069632", "3.5059957045497407", "1665885611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7765", "0.0007676827729350717", "1.753445742464295", "1665889211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7765", "0.001089721052296075", "3.5059873054053", "1665889211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7765", "0.0007676827729350717", "1.753445742464295", "1665889211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7765", "0.001089721052296075", "3.5059873054053", "1665889211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7766", "0.0007600833971406317", "1.7534314309152754", "1665892811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7766", "0.0010789342524090157", "3.5059676335898216", "1665892811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7766", "0.0007600833971406317", "1.7534314309152754", "1665892811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7766", "0.0010789342524090157", "3.5059676335898216", "1665892811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7767", "0.0007579749714598178", "1.7534274602157502", "1665896411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7767", "0.0010759414831194376", "3.5059621756967077", "1665896411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7767", "0.0007579749714598178", "1.7534274602157502", "1665896411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7767", "0.0010759414831194376", "3.5059621756967077", "1665896411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7768", "0.0007559079625090962", "1.7534235555498074", "1665900011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7768", "0.0010730117378953748", "3.5059568169779785", "1665900011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7768", "0.0007559079625090962", "1.7534235555498074", "1665900011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7768", "0.0010730117378953748", "3.5059568169779785", "1665900011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7769", "0.0007538111193184122", "1.7534196066961836", "1665903611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7769", "0.0010700353960078424", "3.505951389087468", "1665903611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7769", "0.0007538111193184122", "1.7534196066961836", "1665903611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7769", "0.0010700353960078424", "3.505951389087468", "1665903611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7770", "0.0007517200926752706", "1.7534156687964788", "1665907211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7770", "0.001067067309647723", "3.5059459762525598", "1665907211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7770", "0.0007517200926752706", "1.7534156687964788", "1665907211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7770", "0.001067067309647723", "3.5059459762525598", "1665907211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7771", "0.0007496348664446632", "1.7534117418203072", "1665910811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7771", "0.0010641074559182464", "3.505940578431496", "1665910811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7771", "0.0007496348664446632", "1.7534117418203072", "1665910811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7771", "0.0010641074559182464", "3.505940578431496", "1665910811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7772", "0.0007475391929561326", "1.7534077926818508", "1665914411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7772", "0.001061133653032716", "3.5059351518946285", "1665914411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7772", "0.0007475391929561326", "1.7534077926818508", "1665914411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7772", "0.001061133653032716", "3.5059351518946285", "1665914411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7773", "0.0007454604208406381", "1.7534038770793094", "1665918011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7773", "0.0010581832356474047", "3.505929770253916", "1665918011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7773", "0.0007454604208406381", "1.7534038770793094", "1665918011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7773", "0.0010581832356474047", "3.505929770253916", "1665918011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7774", "0.0007429608043833118", "1.753399136772662", "1665921611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7774", "0.0010546468386108628", "3.505923277613967", "1665921611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7774", "0.0007429608043833118", "1.753399136772662", "1665921611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7774", "0.0010546468386108628", "3.505923277613967", "1665921611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7775", "0.0007408998760878331", "1.753395255655589", "1665925211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7775", "0.0010517214358657277", "3.505917942753408", "1665925211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7775", "0.0007408998760878331", "1.753395255655589", "1665925211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7775", "0.0010517214358657277", "3.505917942753408", "1665925211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7776", "0.0007391927494880256", "1.7533920158880256", "1665928811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7776", "0.0010493070647027414", "3.5059135069884655", "1665928811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7776", "0.0007391927494880256", "1.7533920158880256", "1665928811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7776", "0.0010493070647027414", "3.5059135069884655", "1665928811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7777", "0.0007371142650729484", "1.753388095787185", "1665932411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7777", "0.0010463588372588357", "3.505908122702023", "1665932411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7777", "0.0007371142650729484", "1.753388095787185", "1665932411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7777", "0.0010463588372588357", "3.505908122702023", "1665932411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7778", "0.0007350754971013858", "1.753384256551447", "1665936011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7778", "0.001043464835378757", "3.5059028453023067", "1665936011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7778", "0.0007350754971013858", "1.753384256551447", "1665936011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7778", "0.001043464835378757", "3.5059028453023067", "1665936011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7779", "0.0007320800670481562", "1.7533786157160836", "1665939611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7779", "0.0010392128975721076", "3.5058950914945943", "1665939611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7779", "0.0007320800670481562", "1.7533786157160836", "1665939611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7779", "0.0010392128975721076", "3.5058950914945943", "1665939611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7780", "0.000729807090696417", "1.7533742975542088", "1665943211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7780", "0.0010359998509634535", "3.5058891823852347", "1665943211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7780", "0.000729807090696417", "1.7533742975542088", "1665943211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7780", "0.0010359998509634535", "3.5058891823852347", "1665943211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7781", "0.0007267327600208474", "1.7533685065175926", "1665946811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7781", "0.0010316364864633683", "3.505881223247201", "1665946811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7781", "0.0007267327600208474", "1.7533685065175926", "1665946811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7781", "0.0010316364864633683", "3.505881223247201", "1665946811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7782", "0.0007236501217076874", "1.7533627017387166", "1665950411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7782", "0.0010272606544711534", "3.505873243880148", "1665950411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7782", "0.0007236501217076874", "1.7533627017387166", "1665950411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7782", "0.0010272606544711534", "3.505873243880148", "1665950411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7783", "0.0007205412518443887", "1.7533568446938828", "1665954011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7783", "0.0010228486012197942", "3.5058651946820056", "1665954011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7783", "0.0007205412518443887", "1.7533568446938828", "1665954011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7783", "0.0010228486012197942", "3.5058651946820056", "1665954011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7784", "0.0007175211199229585", "1.7533511585396122", "1665957611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7784", "0.001018561168278477", "3.505857377726414", "1665957611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7784", "0.0007175211199229585", "1.7533511585396122", "1665957611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7784", "0.001018561168278477", "3.505857377726414", "1665957611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7785", "0.0007154709302228254", "1.7533472886913335", "1665961211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7785", "0.0010156541698970968", "3.5058520646340803", "1665961211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7785", "0.0007154709302228254", "1.7533472886913335", "1665961211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7785", "0.0010156541698970968", "3.5058520646340803", "1665961211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7786", "0.0007131551968446093", "1.753342927984994", "1665964811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7786", "0.001012366980430096", "3.5058460703486616", "1665964811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7786", "0.0007131551968446093", "1.753342927984994", "1665964811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7786", "0.001012366980430096", "3.5058460703486616", "1665964811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7787", "0.000710295571034604", "1.753337536919672", "1665968411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7787", "0.0010083099163437684", "3.505838664049758", "1665968411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7787", "0.000710295571034604", "1.753337536919672", "1665968411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7787", "0.0010083099163437684", "3.505838664049758", "1665968411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7788", "0.0007075472891850429", "1.7533323607841975", "1665972011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7788", "0.0010044090417613135", "3.5058315494978807", "1665972011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7788", "0.0007075472891850429", "1.7533323607841975", "1665972011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7788", "0.0010044090417613135", "3.5058315494978807", "1665972011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7789", "0.0007046803395978791", "1.7533269529928819", "1665975611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7789", "0.0010003426178277412", "3.5058241222652184", "1665975611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7789", "0.0007046803395978791", "1.7533269529928819", "1665975611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7789", "0.0010003426178277412", "3.5058241222652184", "1665975611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7790", "0.0007018305416222492", "1.753321580001802", "1665979211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7790", "0.0009962996534186547", "3.505816741108897", "1665979211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7790", "0.0007018305416222492", "1.753321580001802", "1665979211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7790", "0.0009962996534186547", "3.505816741108897", "1665979211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7791", "0.000699304562349578", "1.7533168211680885", "1665982811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7791", "0.000992714798854282", "3.5058102011019514", "1665982811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7791", "0.000699304562349578", "1.7533168211680885", "1665982811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7791", "0.000992714798854282", "3.5058102011019514", "1665982811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7792", "0.0006971952881393817", "1.7533128490744634", "1665986411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7792", "0.0009897207319111189", "3.5058047411168483", "1665986411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7792", "0.0006971952881393817", "1.7533128490744634", "1665986411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7792", "0.0009897207319111189", "3.5058047411168483", "1665986411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7793", "0.0006952581541036548", "1.7533092013698994", "1665990011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7793", "0.0009869709347580073", "3.505799726875391", "1665990011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7793", "0.0006952581541036548", "1.7533092013698994", "1665990011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7793", "0.0009869709347580073", "3.505799726875391", "1665990011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7794", "0.0006919424485250492", "1.7533028516455373", "1665993611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7794", "0.0009823017899605341", "3.505791072906657", "1665993611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7794", "0.0006919424485250492", "1.7533028516455373", "1665993611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7794", "0.0009823017899605341", "3.505791072906657", "1665993611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7795", "0.000690023043120993", "1.7532992376189642", "1665997211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7795", "0.000979577053101374", "3.505786104750646", "1665997211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7795", "0.000690023043120993", "1.7532992376189642", "1665997211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7795", "0.000979577053101374", "3.505786104750646", "1665997211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7796", "0.0006874141954841078", "1.753294325449437", "1666000811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7796", "0.0009758736014291179", "3.505779352052683", "1666000811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7796", "0.0006874141954841078", "1.753294325449437", "1666000811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7796", "0.0009758736014291179", "3.505779352052683", "1666000811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7797", "0.0006849951340708316", "1.7532897705251027", "1666004411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7797", "0.0009724396001003823", "3.5057730905247255", "1666004411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7797", "0.0006849951340708316", "1.7532897705251027", "1666004411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7797", "0.0009724396001003823", "3.5057730905247255", "1666004411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7798", "0.0006828383845714164", "1.7532857075664794", "1666008011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7798", "0.0009693786552816679", "3.505767506656556", "1666008011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7798", "0.0006828383845714164", "1.7532857075664794", "1666008011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7798", "0.0009693786552816679", "3.505767506656556", "1666008011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7799", "0.0006806908548292286", "1.753281664013829", "1666011611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7799", "0.0009663300735889587", "3.505761948026893", "1666011611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7799", "0.0006806908548292286", "1.753281664013829", "1666011611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7799", "0.0009663300735889587", "3.505761948026893", "1666011611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7800", "0.0006785314489054138", "1.7532775978113366", "1666015211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7800", "0.0009632647340540387", "3.5057563584621274", "1666015211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7800", "0.0006785314489054138", "1.7532775978113366", "1666015211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7800", "0.0009632647340540387", "3.5057563584621274", "1666015211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7801", "0.0006760671729024091", "1.753272957909983", "1666018811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7801", "0.0009597664880926834", "3.5057499800014535", "1666018811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7801", "0.0006760671729024091", "1.753272957909983", "1666018811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7801", "0.0009597664880926834", "3.5057499800014535", "1666018811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7802", "0.0006736989596511309", "1.7532684187909466", "1666022411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7802", "0.0009564329566172173", "3.505743796343773", "1666022411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7802", "0.0006736989596511309", "1.7532684187909466", "1666022411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7802", "0.0009564329566172173", "3.505743796343773", "1666022411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7803", "0.0007109866160626543", "1.7533386227348584", "1666026011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7803", "0.0010093671277130723", "3.5058403079965252", "1666026011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7803", "0.0007109866160626543", "1.7533386227348584", "1666026011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7803", "0.0010093671277130723", "3.5058403079965252", "1666026011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7804", "0.0007498282091136232", "1.7534117471280448", "1666029611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7804", "0.0010645089090655635", "3.5059408378013295", "1666029611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7804", "0.0007498282091136232", "1.7534117471280448", "1666029611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7804", "0.0010645089090655635", "3.5059408378013295", "1666029611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7805", "0.0007887119097380492", "1.7534849557649843", "1666033211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7805", "0.0011197084623332434", "3.506041479549968", "1666033211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7805", "0.0007887119097380492", "1.7534849557649843", "1666033211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7805", "0.0011197084623332434", "3.506041479549968", "1666033211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7806", "0.0008267088211060463", "1.7535564944952233", "1666036811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7806", "0.0011736489896898687", "3.506139825475887", "1666036811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7806", "0.0008267088211060463", "1.7535564944952233", "1666036811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7806", "0.0011736489896898687", "3.506139825475887", "1666036811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7807", "0.000864629938274299", "1.753627890793235", "1666040411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7807", "0.0012274815885177973", "3.5062379750448898", "1666040411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7807", "0.000864629938274299", "1.753627890793235", "1666040411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7807", "0.0012274815885177973", "3.5062379750448898", "1666040411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7808", "0.0009034118750010031", "1.7537009077997472", "1666044011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7808", "0.001282535960831193", "3.5063383522561056", "1666044011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7808", "0.0009034118750010031", "1.7537009077997472", "1666044011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7808", "0.001282535960831193", "3.5063383522561056", "1666044011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7809", "0.000940774620968312", "1.753771219233711", "1666047611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7809", "0.0013355873189161479", "3.506435033317511", "1666047611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7809", "0.000940774620968312", "1.753771219233711", "1666047611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7809", "0.0013355873189161479", "3.506435033317511", "1666047611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7810", "0.0009364735372266855", "1.7537630121829613", "1666051211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7810", "0.0013295202184967177", "3.5064238277181348", "1666051211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7810", "0.0009364735372266855", "1.7537630121829613", "1666051211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7810", "0.0013295202184967177", "3.5064238277181348", "1666051211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7811", "0.0009537996978935637", "1.7537956299705153", "1666054811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7811", "0.0013541171816367852", "3.506468669686442", "1666054811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7811", "0.0009537996978935637", "1.7537956299705153", "1666054811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7811", "0.0013541171816367852", "3.506468669686442", "1666054811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7812", "0.0009494270517715257", "1.753787385859266", "1666058423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7812", "0.0013479139350635004", "3.506457344557096", "1666058423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7812", "0.0009494270517715257", "1.753787385859266", "1666058423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7812", "0.0013479139350635004", "3.506457344557096", "1666058423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7813", "0.0009452763263886594", "1.753779526961305", "1666062011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7813", "0.0013420372584788262", "3.506446571873379", "1666062011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7813", "0.0009452763263886594", "1.753779526961305", "1666062011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7813", "0.0013420372584788262", "3.506446571873379", "1666062011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7814", "0.0009432878485276204", "1.7537757692202212", "1666065611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7814", "0.0013392193837087722", "3.5064414158715196", "1666065611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7814", "0.0009432878485276204", "1.7537757692202212", "1666065611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7814", "0.0013392193837087722", "3.5064414158715196", "1666065611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7815", "0.0009749600876516354", "1.753835385458414", "1666069211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7815", "0.0013841858085543838", "3.5065233807962066", "1666069211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7815", "0.0009749600876516354", "1.753835385458414", "1666069211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7815", "0.0013841858085543838", "3.5065233807962066", "1666069211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7816", "0.00101403536113424", "1.7539089455005217", "1666072811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7816", "0.0014396591652913759", "3.5066245099316844", "1666072811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7816", "0.00101403536113424", "1.7539089455005217", "1666072811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7816", "0.0014396591652913759", "3.5066245099316844", "1666072811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7817", "0.0010176025367514888", "1.7539156607849549", "1666076411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7817", "0.0014447233070478901", "3.5066337419752953", "1666076411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7817", "0.0010176025367514888", "1.7539156607849549", "1666076411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7817", "0.0014447233070478901", "3.5066337419752953", "1666076411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7818", "0.0010371866200421568", "1.7539525282398478", "1666080011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7818", "0.001472525819060248", "3.5066844265852906", "1666080011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7818", "0.0010371866200421568", "1.7539525282398478", "1666080011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7818", "0.001472525819060248", "3.5066844265852906", "1666080011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7819", "0.0010333848598114285", "1.75394537134518", "1666083611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7819", "0.0014671286611880174", "3.50667458744286", "1666083611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7819", "0.0010333848598114285", "1.75394537134518", "1666083611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7819", "0.0014671286611880174", "3.50667458744286", "1666083611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7820", "0.0010295319783839526", "1.7539381182038465", "1666087211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7820", "0.001461658930357145", "3.506664615985869", "1666087211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7820", "0.0010295319783839526", "1.7539381182038465", "1666087211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7820", "0.001461658930357145", "3.506664615985869", "1666087211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7821", "0.0010256924100473473", "1.7539308901345227", "1666090811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7821", "0.001456208093531133", "3.506654678986718", "1666090811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7821", "0.0010256924100473473", "1.7539308901345227", "1666090811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7821", "0.001456208093531133", "3.506654678986718", "1666090811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7822", "0.0010217721999238377", "1.7539235102552486", "1666094411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7822", "0.0014506427712619417", "3.5066445332786236", "1666094411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7822", "0.0010217721999238377", "1.7539235102552486", "1666094411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7822", "0.0014506427712619417", "3.5066445332786236", "1666094411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7823", "0.0010178088170235023", "1.753916039808526", "1666098011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7823", "0.0014450194448918602", "3.506634269582336", "1666098011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7823", "0.0010178088170235023", "1.753916039808526", "1666098011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7823", "0.0014450194448918602", "3.506634269582336", "1666098011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7824", "0.0010515572198959737", "1.7539795715879818", "1666101611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7824", "0.0014929303794849668", "3.506721611906414", "1666101611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7824", "0.0010515572198959737", "1.7539795715879818", "1666101611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7824", "0.0014929303794849668", "3.506721611906414", "1666101611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7825", "0.0010640403360179798", "1.7540027361710795", "1666105211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7825", "0.001510770529380752", "3.5067536932685215", "1666105211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7825", "0.0010640403360179798", "1.7540027361710795", "1666105211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7825", "0.001510770529380752", "3.5067536932685215", "1666105211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7826", "0.0011015462444056486", "1.754073326186617", "1666108811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7826", "0.00156402093251109", "3.5068507494239554", "1666108811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7826", "0.0011015462444056486", "1.754073326186617", "1666108811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7826", "0.00156402093251109", "3.5068507494239554", "1666108811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7827", "0.0011399848122356788", "1.7541456750238087", "1666112411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7827", "0.0016185940510200015", "3.506950221035798", "1666112411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7827", "0.0011399848122356788", "1.7541456750238087", "1666112411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7827", "0.0016185940510200015", "3.506950221035798", "1666112411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7828", "0.0011785257674790997", "1.754218216088706", "1666116011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7828", "0.0016733124631634027", "3.507049956906543", "1666116011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7828", "0.0011785257674790997", "1.754218216088706", "1666116011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7828", "0.0016733124631634027", "3.507049956906543", "1666116011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7829", "0.001212856731718799", "1.7542828335950142", "1666119611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7829", "0.0017220534038223875", "3.507138798167208", "1666119611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7829", "0.001212856731718799", "1.7542828335950142", "1666119611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7829", "0.0017220534038223875", "3.507138798167208", "1666119611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7830", "0.0012437289857404141", "1.7543409161781864", "1666123211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7830", "0.00176589255177581", "3.507218671966234", "1666123211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7830", "0.0012437289857404141", "1.7543409161781864", "1666123211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7830", "0.00176589255177581", "3.507218671966234", "1666123211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7831", "0.0012743199642333907", "1.7543984936872825", "1666126811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7831", "0.0018093235995868926", "3.5072978340304726", "1666126811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7831", "0.0012743199642333907", "1.7543984936872825", "1666126811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7831", "0.0018093235995868926", "3.5072978340304726", "1666126811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7832", "0.0013062368962259696", "1.7544585668659614", "1666130411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7832", "0.0018546369869040628", "3.5073804270883024", "1666130411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7832", "0.0013062368962259696", "1.7544585668659614", "1666130411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7832", "0.0018546369869040628", "3.5073804270883024", "1666130411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7833", "0.001302522381511053", "1.754451570269262", "1666134011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7833", "0.0018493652451349364", "3.5073708113386814", "1666134011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7833", "0.001302522381511053", "1.754451570269262", "1666134011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7833", "0.0018493652451349364", "3.5073708113386814", "1666134011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7834", "0.001297120125587247", "1.754441392484032", "1666137611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7834", "0.0018416989844244973", "3.5073568250613203", "1666137611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7834", "0.001297120125587247", "1.754441392484032", "1666137611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7834", "0.0018416989844244973", "3.5073568250613203", "1666137611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7835", "0.0012935581387531019", "1.7544346473072083", "1666141211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7835", "0.0018366564014093197", "3.5073475800045393", "1666141211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7835", "0.0012935581387531019", "1.7544346473072083", "1666141211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7835", "0.0018366564014093197", "3.5073475800045393", "1666141211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7836", "0.0013294316025809056", "1.754502165805831", "1666144811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7836", "0.001887587417303687", "3.507440410341235", "1666144811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7836", "0.0013294316025809056", "1.754502165805831", "1666144811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7836", "0.001887587417303687", "3.507440410341235", "1666144811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7837", "0.0013648671586832008", "1.7545687969875956", "1666148411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7837", "0.0019379188390556124", "3.507532064697544", "1666148411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7837", "0.0013648671586832008", "1.7545687969875956", "1666148411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7837", "0.0019379188390556124", "3.507532064697544", "1666148411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7838", "0.0014003149685149136", "1.7546354668333155", "1666152011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7838", "0.001988261933617475", "3.5076237609454317", "1666152011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7838", "0.0014003149685149136", "1.7546354668333155", "1666152011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7838", "0.001988261933617475", "3.5076237609454317", "1666152011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7839", "0.0014359500835248787", "1.7547025283927822", "1666155611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7839", "0.0020388568842377784", "3.50771596793689", "1666155611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7839", "0.0014359500835248787", "1.7547025283927822", "1666155611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7839", "0.0020388568842377784", "3.50771596793689", "1666155611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7840", "0.0014712965584951492", "1.754769009922181", "1666159211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7840", "0.002089054848429759", "3.5078074029496866", "1666159211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7840", "0.0014712965584951492", "1.754769009922181", "1666159211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7840", "0.002089054848429759", "3.5078074029496866", "1666159211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7841", "0.0015068612311953406", "1.7548359403352918", "1666162811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7841", "0.0021395488707764213", "3.5078994279898694", "1666162811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7841", "0.0015068612311953406", "1.7548359403352918", "1666162811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7841", "0.0021395488707764213", "3.5078994279898694", "1666162811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7842", "0.0015343930445813308", "1.7548877556222895", "1666166411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7842", "0.0021786370791076672", "3.5079706689384924", "1666166411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7842", "0.0015343930445813308", "1.7548877556222895", "1666166411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7842", "0.0021786370791076672", "3.5079706689384924", "1666166411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7843", "0.0017781217446615294", "1.7553464371995249", "1666170011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7843", "0.0025246716599976932", "3.508601316589675", "1666170011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7843", "0.0017781217446615294", "1.7553464371995249", "1666170011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7843", "0.0025246716599976932", "3.508601316589675", "1666170011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7844", "0.0018492129015940505", "1.755480180869819", "1666173611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7844", "0.002625617737925646", "3.5087852315694033", "1666173611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7844", "0.0018492129015940505", "1.755480180869819", "1666173611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7844", "0.002625617737925646", "3.5087852315694033", "1666173611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7845", "0.0018440942897479534", "1.7554705477657455", "1666177211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7845", "0.002618350805927892", "3.5087719872730725", "1666177211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7845", "0.0018440942897479534", "1.7554705477657455", "1666177211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7845", "0.002618350805927892", "3.5087719872730725", "1666177211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7846", "0.0018389967292649966", "1.7554609542797264", "1666180811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7846", "0.0026111137564946143", "3.508758797440066", "1666180811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7846", "0.0018389967292649966", "1.7554609542797264", "1666180811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7846", "0.0026111137564946143", "3.508758797440066", "1666180811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7847", "0.0018338140826537328", "1.7554511755288074", "1666184411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7847", "0.0026037647966597887", "3.5087453705229468", "1666184411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7847", "0.0018338140826537328", "1.7554511755288074", "1666184411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7847", "0.0026037647966597887", "3.5087453705229468", "1666184411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7848", "0.001828844427689691", "1.7554418228257667", "1666188011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7848", "0.00259670930345195", "3.508732511675732", "1666188011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7848", "0.001828844427689691", "1.7554418228257667", "1666188011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7848", "0.00259670930345195", "3.508732511675732", "1666188011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7849", "0.0018237566597776062", "1.755432221895109", "1666191611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7849", "0.0025894952966953803", "3.508719329744367", "1666191611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7849", "0.0018237566597776062", "1.755432221895109", "1666191611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7849", "0.0025894952966953803", "3.508719329744367", "1666191611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7850", "0.0018188521480587193", "1.7554229782348365", "1666195211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7850", "0.00258253707498492", "3.5087066303169085", "1666195211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7850", "0.0018188521480587193", "1.7554229782348365", "1666195211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7850", "0.00258253707498492", "3.5087066303169085", "1666195211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7851", "0.0018490548258311376", "1.755479813620334", "1666198811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7851", "0.0026254179921337967", "3.508784775597675", "1666198811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7851", "0.0018490548258311376", "1.755479813620334", "1666198811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7851", "0.0026254179921337967", "3.508784775597675", "1666198811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7852", "0.001931442964420634", "1.7556348568751168", "1666202411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7852", "0.002742387737587466", "3.508997945987869", "1666202411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7852", "0.001931442964420634", "1.7556348568751168", "1666202411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7852", "0.002742387737587466", "3.508997945987869", "1666202411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7853", "0.0019302162337012322", "1.7556325131362136", "1666206011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7853", "0.002740658558276742", "3.5089947482731683", "1666206011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7853", "0.0019302162337012322", "1.7556325131362136", "1666206011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7853", "0.002740658558276742", "3.5089947482731683", "1666206011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7854", "0.0019248417656461553", "1.7556223957903576", "1666209611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7854", "0.0027330294206792498", "3.5089808402281877", "1666209611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7854", "0.0019248417656461553", "1.7556223957903576", "1666209611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7854", "0.0027330294206792498", "3.5089808402281877", "1666209611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7855", "0.0019195023395767426", "1.7556123474445433", "1666213211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7855", "0.0027254489477507695", "3.5089670249001004", "1666213211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7855", "0.0019195023395767426", "1.7556123474445433", "1666213211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7855", "0.0027254489477507695", "3.5089670249001004", "1666213211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7856", "0.001914177725002988", "1.7556023269725927", "1666216811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7856", "0.0027178894983559635", "3.5089532478883334", "1666216811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7856", "0.001914177725002988", "1.7556023269725927", "1666216811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7856", "0.0027178894983559635", "3.5089532478883334", "1666216811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7857", "0.0019087485601341572", "1.7555920916833467", "1666220411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7857", "0.0027101880016726847", "3.5089391881943857", "1666220411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7857", "0.0019087485601341572", "1.7555920916833467", "1666220411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7857", "0.0027101880016726847", "3.5089391881943857", "1666220411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7858", "0.0019031757393601757", "1.7555815620410615", "1666224011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7858", "0.0027022910401494358", "3.5089247406338506", "1666224011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7858", "0.0019031757393601757", "1.7555815620410615", "1666224011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7858", "0.0027022910401494358", "3.5089247406338506", "1666224011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7859", "0.00189789345523273", "1.755571620948512", "1666227611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7859", "0.002694791774008765", "3.508911072936518", "1666227611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7859", "0.00189789345523273", "1.755571620948512", "1666227611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7859", "0.002694791774008765", "3.508911072936518", "1666227611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7860", "0.0018924634561980497", "1.7555613606521023", "1666231211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7860", "0.0026870973685774588", "3.508896995282052", "1666231211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7860", "0.0018924634561980497", "1.7555613606521023", "1666231211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7860", "0.0026870973685774588", "3.508896995282052", "1666231211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7861", "0.0018874098392687995", "1.7555517933634939", "1666234811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7861", "0.002679942731835348", "3.5088838811711365", "1666234811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7861", "0.0018874098392687995", "1.7555517933634939", "1666234811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7861", "0.002679942731835348", "3.5088838811711365", "1666234811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7862", "0.0019229947078230974", "1.7556187580718112", "1666238411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7862", "0.0027304643240173227", "3.5089759522483757", "1666238411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7862", "0.0019229947078230974", "1.7556187580718112", "1666238411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7862", "0.0027304643240173227", "3.5089759522483757", "1666238411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7863", "0.0019176604062873766", "1.7556087198181998", "1666242011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7863", "0.0027228909662121046", "3.508962150478708", "1666242011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7863", "0.0019176604062873766", "1.7556087198181998", "1666242011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7863", "0.0027228909662121046", "3.508962150478708", "1666242011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7864", "0.0019123181990153958", "1.755598662676855", "1666245611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7864", "0.0027153077981457337", "3.5089483255466627", "1666245611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7864", "0.0019123181990153958", "1.755598662676855", "1666245611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7864", "0.0027153077981457337", "3.5089483255466627", "1666245611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7865", "0.0019508307436940594", "1.7556711124189224", "1666249211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7865", "0.002769994406304271", "3.509047954938218", "1666249211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7865", "0.0019508307436940594", "1.7556711124189224", "1666249211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7865", "0.002769994406304271", "3.509047954938218", "1666249211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7866", "0.001985081103644066", "1.7557355653015954", "1666252811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7866", "0.0028186211590595614", "3.509136572272568", "1666252811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7866", "0.001985081103644066", "1.7557355653015954", "1666252811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7866", "0.0028186211590595614", "3.509136572272568", "1666252811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7867", "0.002019306746178058", "1.7557999716661015", "1666256411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7867", "0.0028672126297332855", "3.5092251253569406", "1666256411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7867", "0.002019306746178058", "1.7557999716661015", "1666256411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7867", "0.0028672126297332855", "3.5092251253569406", "1666256411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7868", "0.0020534394886868156", "1.755864201256794", "1666260011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7868", "0.0029156727070518127", "3.5093134364699625", "1666260011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7868", "0.0020534394886868156", "1.755864201256794", "1666260011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7868", "0.0029156727070518127", "3.5093134364699625", "1666260011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7869", "0.0020875282800404448", "1.755928350051219", "1666263611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7869", "0.00296406951946322", "3.509401634862007", "1666263611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7869", "0.0020875282800404448", "1.755928350051219", "1666263611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7869", "0.00296406951946322", "3.509401634862007", "1666263611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7870", "0.0021216131241830003", "1.755992491413231", "1666267211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7870", "0.003012460539869713", "3.5094898227463283", "1666267211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7870", "0.0021216131241830003", "1.755992491413231", "1666267211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7870", "0.003012460539869713", "3.5094898227463283", "1666267211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7871", "0.002155629034539266", "1.7560565030501494", "1666270811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7871", "0.003060753505976527", "3.5095778319837967", "1666270811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7871", "0.002155629034539266", "1.7560565030501494", "1666270811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7871", "0.003060753505976527", "3.5095778319837967", "1666270811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7872", "0.0021897392826418843", "1.7561206922087242", "1666274411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7872", "0.00310918021694971", "3.5096660850059163", "1666274411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7872", "0.0021897392826418843", "1.7561206922087242", "1666274411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7872", "0.00310918021694971", "3.5096660850059163", "1666274411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7873", "0.002223830428786086", "1.7561848454164624", "1666278011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7873", "0.0031575796205214265", "3.5097542883105777", "1666278011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7873", "0.002223830428786086", "1.7561848454164624", "1666278011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7873", "0.0031575796205214265", "3.5097542883105777", "1666278011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7874", "0.002257648219765807", "1.7562484554562843", "1666281611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7874", "0.0032056009277767836", "3.509841764715518", "1666281611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7874", "0.002257648219765807", "1.7562484554562843", "1666281611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7874", "0.0032056009277767836", "3.509841764715518", "1666281611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7875", "0.0022921444632787945", "1.7563133626309195", "1666285211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7875", "0.003254578021311874", "3.5099310099075334", "1666285211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7875", "0.0022921444632787945", "1.7563133626309195", "1666285211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7875", "0.003254578021311874", "3.5099310099075334", "1666285211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7876", "0.0023266014700806903", "1.7563781823615556", "1666288811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7876", "0.0033035040305192595", "3.510020144124164", "1666288811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7876", "0.0023266014700806903", "1.7563781823615556", "1666288811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7876", "0.0033035040305192595", "3.510020144124164", "1666288811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7877", "0.0023623090635274944", "1.7564453764984729", "1666292411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7877", "0.0033541978390632253", "3.510112527771601", "1666292411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7877", "0.0023623090635274944", "1.7564453764984729", "1666292411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7877", "0.0033541978390632253", "3.510112527771601", "1666292411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7878", "0.002355755941772444", "1.75643304488482", "1666296011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7878", "0.0033448944445350326", "3.5100955733657995", "1666296011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7878", "0.002355755941772444", "1.75643304488482", "1666296011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7878", "0.0033448944445350326", "3.5100955733657995", "1666296011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7879", "0.0023850290356911474", "1.7564881278755258", "1666299611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7879", "0.003386454100575255", "3.510171307440859", "1666299611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7879", "0.0023850290356911474", "1.7564881278755258", "1666299611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7879", "0.003386454100575255", "3.510171307440859", "1666299611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7880", "0.002378413054842006", "1.7564756780078945", "1666303211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7880", "0.003377061478227481", "3.5101541904648395", "1666303211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7880", "0.002378413054842006", "1.7564756780078945", "1666303211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7880", "0.003377061478227481", "3.5101541904648395", "1666303211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7881", "0.0023715697500495403", "1.7564627631449572", "1666306811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7881", "0.0033673592857666307", "3.5101364602827494", "1666306811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7881", "0.0023715697500495403", "1.7564627631449572", "1666306811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7881", "0.0033673592857666307", "3.5101364602827494", "1666306811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7882", "0.0023650269164573333", "1.7564504214643852", "1666310411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7882", "0.003358080916502293", "3.510119512697667", "1666310411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7882", "0.0023650269164573333", "1.7564504214643852", "1666310411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7882", "0.003358080916502293", "3.510119512697667", "1666310411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7883", "0.0024257170629111225", "1.7565646253576284", "1666314011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7883", "0.0034442425197264153", "3.5102765296740652", "1666314011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7883", "0.0024257170629111225", "1.7565646253576284", "1666314011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7883", "0.0034442425197264153", "3.5102765296740652", "1666314011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7884", "0.002517205390771262", "1.7567367306461277", "1666317611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7884", "0.0035741458805529677", "3.5105131898571558", "1666317611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7884", "0.002517205390771262", "1.7567367306461277", "1666317611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7884", "0.0035741458805529677", "3.5105131898571558", "1666317611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7885", "0.002510206057730182", "1.7567235572433608", "1666321211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7885", "0.0035642099284884667", "3.5104950798517165", "1666321211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7885", "0.002510206057730182", "1.7567235572433608", "1666321211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7885", "0.0035642099284884667", "3.5104950798517165", "1666321211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7886", "0.0025031871753822543", "1.7567103525636056", "1666324811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7886", "0.0035542442655788005", "3.5104769229664186", "1666324811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7886", "0.0025031871753822543", "1.7567103525636056", "1666324811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7886", "0.0035542442655788005", "3.5104769229664186", "1666324811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7887", "0.002496231252488255", "1.7566972614986014", "1666328411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7887", "0.0035443696959037226", "3.5104589256835586", "1666328411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7887", "0.002496231252488255", "1.7566972614986014", "1666328411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7887", "0.0035443696959037226", "3.5104589256835586", "1666328411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7888", "0.002489306797363383", "1.756684231498171", "1666332011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7888", "0.0035345391381261036", "3.5104410110464603", "1666332011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7888", "0.002489306797363383", "1.756684231498171", "1666332011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7888", "0.0035345391381261036", "3.5104410110464603", "1666332011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7889", "0.002482401550693119", "1.7566712376428097", "1666335611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7889", "0.0035247358426136258", "3.510423146092489", "1666335611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7889", "0.002482401550693119", "1.7566712376428097", "1666335611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7889", "0.0035247358426136258", "3.510423146092489", "1666335611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7890", "0.0024754796996216363", "1.7566582071201817", "1666339211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7890", "0.003514910884244255", "3.510405234517689", "1666339211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7890", "0.0024754796996216363", "1.7566582071201817", "1666339211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7890", "0.003514910884244255", "3.510405234517689", "1666339211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7891", "0.0024686128093836116", "1.7566452854561894", "1666342811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7891", "0.0035051620222363387", "3.510387468783857", "1666342811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7891", "0.0024686128093836116", "1.7566452854561894", "1666342811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7891", "0.0035051620222363387", "3.510387468783857", "1666342811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7892", "0.002461764967910471", "1.7566323996367352", "1666346411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7892", "0.003495440195990541", "3.510369752320283", "1666346411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7892", "0.002461764967910471", "1.7566323996367352", "1666346411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7892", "0.003495440195990541", "3.510369752320283", "1666346411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7893", "0.002454901156410106", "1.7566194784729279", "1666350011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7893", "0.003485697561862085", "3.510351990964161", "1666350011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7893", "0.002454901156410106", "1.7566194784729279", "1666350011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7893", "0.003485697561862085", "3.510351990964161", "1666350011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7894", "0.002448091351114921", "1.7566066642417764", "1666353611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7894", "0.0034760297149973433", "3.51033437289248", "1666353611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7894", "0.002448091351114921", "1.7566066642417764", "1666353611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7894", "0.0034760297149973433", "3.51033437289248", "1666353611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7895", "0.0024413004362263805", "1.7565938855571386", "1666357211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7895", "0.0034663886792778115", "3.510316803681627", "1666357211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7895", "0.0024413004362263805", "1.7565938855571386", "1666357211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7895", "0.0034663886792778115", "3.510316803681627", "1666357211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7896", "0.002434092993687246", "1.7565802564655588", "1666360811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7896", "0.0034561798555397504", "3.510298111981236", "1666360811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7896", "0.002434092993687246", "1.7565802564655588", "1666360811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7896", "0.0034561798555397504", "3.510298111981236", "1666360811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7897", "0.0024273409106793167", "1.7565675510364063", "1666364411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7897", "0.0034465938686605714", "3.510280643335085", "1666364411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7897", "0.0024273409106793167", "1.7565675510364063", "1666364411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7897", "0.0034465938686605714", "3.510280643335085", "1666364411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7898", "0.0024206075579496496", "1.756554880851942", "1666368011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7898", "0.003437034465963375", "3.510263223135437", "1666368011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7898", "0.0024206075579496496", "1.756554880851942", "1666368011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7898", "0.003437034465963375", "3.510263223135437", "1666368011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7899", "0.0024138434489183835", "1.7565421453490528", "1666371611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7899", "0.0034274340239460284", "3.5102457183407236", "1666371611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7899", "0.0024138434489183835", "1.7565421453490528", "1666371611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7899", "0.0034274340239460284", "3.5102457183407236", "1666371611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7900", "0.0024071475381908366", "1.7565295456396872", "1666375211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7900", "0.003417927756096851", "3.510228395000163", "1666375211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7900", "0.0024071475381908366", "1.7565295456396872", "1666375211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7900", "0.003417927756096851", "3.510228395000163", "1666375211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7901", "0.0024004702019152207", "1.7565169808817376", "1666378811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7901", "0.0034084478514043548", "3.5102111197032064", "1666378811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7901", "0.0024004702019152207", "1.7565169808817376", "1666378811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7901", "0.0034084478514043548", "3.5102111197032064", "1666378811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7902", "0.0023929692323566725", "1.756502833073622", "1666382411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7902", "0.0033978103642523572", "3.5101916911595987", "1666382411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7902", "0.0023929692323566725", "1.756502833073622", "1666382411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7902", "0.0033978103642523572", "3.5101916911595987", "1666382411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7903", "0.0023862139910519283", "1.7564901041232164", "1666386023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7903", "0.0033882260657542487", "3.5101742024359552", "1666386023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7903", "0.0023862139910519283", "1.7564901041232164", "1666386023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7903", "0.0033882260657542487", "3.5101742024359552", "1666386023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7904", "0.0023795761603007423", "1.7564776110451463", "1666389611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7904", "0.003378803164968722", "3.5101570275212515", "1666389611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7904", "0.0023795761603007423", "1.7564776110451463", "1666389611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7904", "0.003378803164968722", "3.5101570275212515", "1666389611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7905", "0.0023729718928080117", "1.756465183410949", "1666393211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7905", "0.0033694270981576434", "3.5101399409696104", "1666393211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7905", "0.0023729718928080117", "1.756465183410949", "1666393211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7905", "0.0033694270981576434", "3.5101399409696104", "1666393211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7906", "0.002366358396955091", "1.75645273423774", "1666396811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7906", "0.003360039398904398", "3.5101228277210508", "1666396811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7906", "0.002366358396955091", "1.75645273423774", "1666396811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7906", "0.003360039398904398", "3.5101228277210508", "1666396811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7907", "0.002359749371533503", "1.7564402560564827", "1666400411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7907", "0.003350671274750811", "3.510105700828649", "1666400411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7907", "0.002359749371533503", "1.7564402560564827", "1666400411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7907", "0.003350671274750811", "3.510105700828649", "1666400411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7908", "0.0024126997088289603", "1.756539890572999", "1666404011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7908", "0.0034258465323860317", "3.510242690225735", "1666404011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7908", "0.0024126997088289603", "1.756539890572999", "1666404011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7908", "0.0034258465323860317", "3.510242690225735", "1666404011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7909", "0.002447003960819273", "1.7566043531958333", "1666407611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7909", "0.0034745796392137655", "3.5103313812838963", "1666407611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7909", "0.002447003960819273", "1.7566043531958333", "1666407611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7909", "0.0034745796392137655", "3.5103313812838963", "1666407611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7910", "0.002489967640281701", "1.7566851722043524", "1666411211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7910", "0.003535584443310234", "3.5104425168404547", "1666411211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7910", "0.002489967640281701", "1.7566851722043524", "1666411211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7910", "0.003535584443310234", "3.5104425168404547", "1666411211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7911", "0.0025446706020395616", "1.7567880550462884", "1666414811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7911", "0.0036132643020918252", "3.510584005357946", "1666414811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7911", "0.0025446706020395616", "1.7567880550462884", "1666414811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7911", "0.0036132643020918252", "3.510584005357946", "1666414811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7912", "0.002603306222913394", "1.7568980076113176", "1666418411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7912", "0.0036966436387062917", "3.5107354448055905", "1666418411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7912", "0.002603306222913394", "1.7568980076113176", "1666418411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7912", "0.0036966436387062917", "3.5107354448055905", "1666418411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7913", "0.00266281609055594", "1.7570099331855096", "1666422011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7913", "0.0037811475759664172", "3.5108893660216345", "1666422011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7913", "0.00266281609055594", "1.7570099331855096", "1666422011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7913", "0.0037811475759664172", "3.5108893660216345", "1666422011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7914", "0.002720450419575657", "1.757118333272145", "1666425611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7914", "0.0038629869908403075", "3.5110384366952383", "1666425611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7914", "0.002720450419575657", "1.757118333272145", "1666425611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7914", "0.0038629869908403075", "3.5110384366952383", "1666425611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7915", "0.002780431456224073", "1.7572311742751454", "1666429211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7915", "0.00394814849268516", "3.5111935945245802", "1666429211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7915", "0.002780431456224073", "1.7572311742751454", "1666429211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7915", "0.00394814849268516", "3.5111935945245802", "1666429211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7916", "0.002840284176916819", "1.757343779266838", "1666432811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7916", "0.00403312532103705", "3.511348423157202", "1666432811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7916", "0.002840284176916819", "1.757343779266838", "1666432811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7916", "0.00403312532103705", "3.511348423157202", "1666432811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7917", "0.0028999952365698204", "1.7574561207842287", "1666436411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7917", "0.004117899366132729", "3.5115028864906193", "1666436411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7917", "0.0028999952365698204", "1.7574561207842287", "1666436411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7917", "0.004117899366132729", "3.5115028864906193", "1666436411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7918", "0.0029595572369368445", "1.7575681818458428", "1666440011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7918", "0.004202461211678489", "3.511656963330457", "1666440011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7918", "0.0029595572369368445", "1.7575681818458428", "1666440011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7918", "0.004202461211678489", "3.511656963330457", "1666440011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7919", "0.0030187558710851434", "1.7576795091277393", "1666443611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7919", "0.004286524335095757", "3.511810065550485", "1666443611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7919", "0.0030187558710851434", "1.7576795091277393", "1666443611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7919", "0.004286524335095757", "3.511810065550485", "1666443611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7920", "0.0030771963726883484", "1.7577894581514688", "1666447211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7920", "0.004369493549474854", "3.5119612381627516", "1666447211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7920", "0.0030771963726883484", "1.7577894581514688", "1666447211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7920", "0.004369493549474854", "3.5119612381627516", "1666447211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7921", "0.0031324591143704473", "1.7578929704679263", "1666450811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7921", "0.004448112739870436", "3.5121038812066803", "1666450811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7921", "0.0031324591143704473", "1.7578929704679263", "1666450811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7921", "0.004448112739870436", "3.5121038812066803", "1666450811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7922", "0.003189797563680243", "1.7580007218087892", "1666454411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7922", "0.004529560250091417", "3.5122521176835884", "1666454411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7922", "0.003189797563680243", "1.7580007218087892", "1666454411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7922", "0.004529560250091417", "3.5122521176835884", "1666454411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7923", "0.003247743996033134", "1.7581097307421738", "1666458011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7923", "0.004611830148252693", "3.5124020026614358", "1666458011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7923", "0.003247743996033134", "1.7581097307421738", "1666458011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7923", "0.004611830148252693", "3.5124020026614358", "1666458011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7924", "0.0033053578766520397", "1.7582180836877612", "1666461611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7924", "0.004693638108716704", "3.5125510061451526", "1666461611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7924", "0.0033053578766520397", "1.7582180836877612", "1666461611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7924", "0.004693638108716704", "3.5125510061451526", "1666461611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7925", "0.0033632989411577206", "1.7583269725901889", "1666465211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7925", "0.004775938172161449", "3.5127008014876875", "1666465211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7925", "0.0033632989411577206", "1.7583269725901889", "1666465211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7925", "0.004775938172161449", "3.5127008014876875", "1666465211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7926", "0.0033539578509839026", "1.758309398659197", "1666468811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7926", "0.004762676814003288", "3.512676639051954", "1666468811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7926", "0.0033539578509839026", "1.758309398659197", "1666468811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7926", "0.004762676814003288", "3.512676639051954", "1666468811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7927", "0.0033446540654378525", "1.7582918966169918", "1666472411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7927", "0.00474946779924523", "3.512652574238856", "1666472411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7927", "0.0033446540654378525", "1.7582918966169918", "1666472411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7927", "0.00474946779924523", "3.512652574238856", "1666472411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7928", "0.0033349947879105384", "1.7582736685120923", "1666476011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7928", "0.004735774331275855", "3.5126275512765903", "1666476011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7928", "0.0033349947879105384", "1.7582736685120923", "1666476011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7928", "0.004735774331275855", "3.5126275512765903", "1666476011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7929", "0.003325459718486332", "1.7582556887050211", "1666479623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7929", "0.004722252014862431", "3.512602859427896", "1666479623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7929", "0.003325459718486332", "1.7582556887050211", "1666479623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7929", "0.004722252014862431", "3.512602859427896", "1666479623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7930", "0.0033162239228381346", "1.7582383131702801", "1666483211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7930", "0.0047091399783132605", "3.5125789694697445", "1666483211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7930", "0.0033162239228381346", "1.7582383131702801", "1666483211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7930", "0.0047091399783132605", "3.5125789694697445", "1666483211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7931", "0.003307024812794442", "1.7582210083206984", "1666486811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7931", "0.0046960794207168395", "3.5125551755076367", "1666486811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7931", "0.003307024812794442", "1.7582210083206984", "1666486811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7931", "0.0046960794207168395", "3.5125551755076367", "1666486811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7932", "0.003297806961072919", "1.7582036615508745", "1666490411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7932", "0.004682994597211123", "3.5125313285569573", "1666490411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7932", "0.003297806961072919", "1.7582036615508745", "1666490411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7932", "0.004682994597211123", "3.5125313285569573", "1666490411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7933", "0.0032882858085244394", "1.758185694814588", "1666494011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7933", "0.004669496616720577", "3.512506663780727", "1666494011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7933", "0.0032882858085244394", "1.758185694814588", "1666494011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7933", "0.004669496616720577", "3.512506663780727", "1666494011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7934", "0.0032791641998308634", "1.7581685359291832", "1666497611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7934", "0.0046565459900033725", "3.512483070332394", "1666497611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7934", "0.0032791641998308634", "1.7581685359291832", "1666497611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7934", "0.0046565459900033725", "3.512483070332394", "1666497611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7935", "0.003269834524341909", "1.758150949436601", "1666501211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7935", "0.004643312744525563", "3.5124589142877496", "1666501211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7935", "0.003269834524341909", "1.758150949436601", "1666501211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7935", "0.004643312744525563", "3.5124589142877496", "1666501211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7936", "0.0032606539819188835", "1.7581336636311748", "1666504811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7936", "0.004630284095775758", "3.512435157539985", "1666504811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7936", "0.0032606539819188835", "1.7581336636311748", "1666504811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7936", "0.004630284095775758", "3.512435157539985", "1666504811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7937", "0.003251609024802925", "1.7581166490809386", "1666508411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7937", "0.004617442205394592", "3.512411762388714", "1666508411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7937", "0.003251609024802925", "1.7581166490809386", "1666508411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7937", "0.004617442205394592", "3.512411762388714", "1666508411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7938", "0.0032425785978705537", "1.7580996602748777", "1666512011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7938", "0.004604621493206299", "3.512388403729227", "1666512011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7938", "0.0032425785978705537", "1.7580996602748777", "1666512011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7938", "0.004604621493206299", "3.512388403729227", "1666512011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7939", "0.003233583782155386", "1.7580827400499301", "1666515611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7939", "0.004591850765004124", "3.512365138232617", "1666515611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7939", "0.003233583782155386", "1.7580827400499301", "1666515611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7939", "0.004591850765004124", "3.512365138232617", "1666515611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7940", "0.0032244145308279524", "1.7580654617649019", "1666519211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7940", "0.004578842944003338", "3.5123414013599494", "1666519211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7940", "0.0032244145308279524", "1.7580654617649019", "1666519211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7940", "0.004578842944003338", "3.5123414013599494", "1666519211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7941", "0.0032154701027535208", "1.7580486364069559", "1666522811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7941", "0.004566143699966886", "3.5123182662080175", "1666522811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7941", "0.0032154701027535208", "1.7580486364069559", "1666522811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7941", "0.004566143699966886", "3.5123182662080175", "1666522811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7942", "0.0032065048796351197", "1.7580317651259563", "1666526411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7942", "0.004553417324542554", "3.512295072662064", "1666526411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7942", "0.0032065048796351197", "1.7580317651259563", "1666526411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7942", "0.004553417324542554", "3.512295072662064", "1666526411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7943", "0.0031976101332392413", "1.758015033242501", "1666530023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7943", "0.004540788585853387", "3.512272065986393", "1666530023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7943", "0.0031976101332392413", "1.758015033242501", "1666530023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7943", "0.004540788585853387", "3.512272065986393", "1666530023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7944", "0.0031887400609896923", "1.7579983477732484", "1666533611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7944", "0.004528194866716941", "3.5122491231116135", "1666533611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7944", "0.0031887400609896923", "1.7579983477732484", "1666533611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7944", "0.004528194866716941", "3.5122491231116135", "1666533611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7945", "0.003179753129844204", "1.7579814213180778", "1666537211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7945", "0.004515442701303303", "3.5122258636923402", "1666537211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7945", "0.003179753129844204", "1.7579814213180778", "1666537211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7945", "0.004515442701303303", "3.5122258636923402", "1666537211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7946", "0.0031706906395868634", "1.7579643375809177", "1666540811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7946", "0.004502588599640002", "3.51220239860528", "1666540811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7946", "0.0031706906395868634", "1.7579643375809177", "1666540811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7946", "0.004502588599640002", "3.51220239860528", "1666540811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7947", "0.0031618296790220145", "1.7579476595303296", "1666544411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7947", "0.004490011215601666", "3.5121794726863014", "1666544411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7947", "0.0031618296790220145", "1.7579476595303296", "1666544411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7947", "0.004490011215601666", "3.5121794726863014", "1666544411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7948", "0.003151928522793201", "1.7579288644182658", "1666548011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7948", "0.0044760136382976535", "3.512153748136956", "1666548011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7948", "0.003151928522793201", "1.7579288644182658", "1666548011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7948", "0.0044760136382976535", "3.512153748136956", "1666548011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7949", "0.0031431851738871136", "1.7579124179840961", "1666551611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7949", "0.00446359954364252", "3.5121311333800316", "1666551611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7949", "0.0031431851738871136", "1.7579124179840961", "1666551611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7949", "0.00446359954364252", "3.5121311333800316", "1666551611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7950", "0.0031344345557409673", "1.7578959531347842", "1666555211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7950", "0.00445117679181044", "3.5121084966058027", "1666555211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7950", "0.0031344345557409673", "1.7578959531347842", "1666555211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7950", "0.00445117679181044", "3.5121084966058027", "1666555211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7951", "0.0031257383728826586", "1.757879595228447", "1666558811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7951", "0.004438829708391866", "3.512086003676419", "1666558811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7951", "0.0031257383728826586", "1.757879595228447", "1666558811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7951", "0.004438829708391866", "3.512086003676419", "1666558811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7952", "0.0031154693127969967", "1.7578599010704614", "1666562411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7952", "0.004424382887368367", "3.51205918786679", "1666562411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7952", "0.0031154693127969967", "1.7578599010704614", "1666562411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7952", "0.004424382887368367", "3.51205918786679", "1666562411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7953", "0.0031066805422812027", "1.7578433031777425", "1666566011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7953", "0.00441192758720668", "3.512036411030889", "1666566011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7953", "0.0031066805422812027", "1.7578433031777425", "1666566011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7953", "0.00441192758720668", "3.512036411030889", "1666566011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7954", "0.0030975162931859497", "1.7578259844279946", "1666569611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7954", "0.0043989443054858685", "3.5120126531626594", "1666569611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7954", "0.0030975162931859497", "1.7578259844279946", "1666569611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7954", "0.0043989443054858685", "3.5120126531626594", "1666569611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7955", "0.003088923888686", "1.7578098233890311", "1666573211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7955", "0.004386743932072474", "3.511990429694745", "1666573211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7955", "0.003088923888686", "1.7578098233890311", "1666573211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7955", "0.004386743932072474", "3.511990429694745", "1666573211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7956", "0.003080355319571622", "1.7577937071806558", "1666576811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7956", "0.004374577390685018", "3.5119682678562842", "1666576811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7956", "0.003080355319571622", "1.7577937071806558", "1666576811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7956", "0.004374577390685018", "3.5119682678562842", "1666576811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7957", "0.0030691334481632395", "1.7577721983651287", "1666580411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7957", "0.00435878553962226", "3.511938972256033", "1666580411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7957", "0.0030691334481632395", "1.7577721983651287", "1666580411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7957", "0.00435878553962226", "3.511938972256033", "1666580411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7958", "0.003060619781112648", "1.7577561865332594", "1666584011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7958", "0.004346696532384185", "3.511916953125064", "1666584011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7958", "0.003060619781112648", "1.7577561865332594", "1666584011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7958", "0.004346696532384185", "3.511916953125064", "1666584011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7959", "0.0030519162905161936", "1.757739785722997", "1666587611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7959", "0.004334349272969698", "3.5118944214633605", "1666587611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7959", "0.0030519162905161936", "1.757739785722997", "1666587611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7959", "0.004334349272969698", "3.5118944214633605", "1666587611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7960", "0.0031403226628721626", "1.7579059970220576", "1666591211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7960", "0.004459901658860738", "3.5121230305483344", "1666591211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7960", "0.0031403226628721626", "1.7579059970220576", "1666591211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7960", "0.004459901658860738", "3.5121230305483344", "1666591211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7961", "0.0032276462067479263", "1.758070221615123", "1666594811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7961", "0.004583897637446687", "3.512348870756234", "1666594811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7961", "0.0032276462067479263", "1.758070221615123", "1666594811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7961", "0.004583897637446687", "3.512348870756234", "1666594811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7962", "0.003319136309044497", "1.7582422865459697", "1666598411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7962", "0.0047138070349918475", "3.512585487710602", "1666598411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7962", "0.003319136309044497", "1.7582422865459697", "1666598411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7962", "0.0047138070349918475", "3.512585487710602", "1666598411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7963", "0.003404011493647755", "1.758401909412006", "1666602011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7963", "0.004834323008416604", "3.512804993948477", "1666602011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7963", "0.003404011493647755", "1.758401909412006", "1666602011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7963", "0.004834323008416604", "3.512804993948477", "1666602011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7964", "0.0034847653914130017", "1.7585537824701059", "1666605611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7964", "0.004948985640713585", "3.5130138406174978", "1666605611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7964", "0.0034847653914130017", "1.7585537824701059", "1666605611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7964", "0.004948985640713585", "3.5130138406174978", "1666605611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7965", "0.0035664664935906192", "1.7587074383173324", "1666609211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7965", "0.005064991638766334", "3.513225136233389", "1666609211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7965", "0.0035664664935906192", "1.7587074383173324", "1666609211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7965", "0.005064991638766334", "3.513225136233389", "1666609211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7966", "0.0036535517824070073", "1.7588712077272863", "1666612811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7966", "0.005188645779505074", "3.51345034616623", "1666612811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7966", "0.0036535517824070073", "1.7588712077272863", "1666612811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7966", "0.005188645779505074", "3.51345034616623", "1666612811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7967", "0.0037388757061511085", "1.7590314151856974", "1666616495"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7967", "0.005309885954569591", "3.513670830886188", "1666616495"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7967", "0.0037388757061511085", "1.7590314151856974", "1666616495"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7967", "0.005309885954569591", "3.513670830886188", "1666616495"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7968", "0.0038262921124767764", "1.7591957836920418", "1666620011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7968", "0.005434016142659054", "3.513896877432882", "1666620011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7968", "0.0038262921124767764", "1.7591957836920418", "1666620011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7968", "0.005434016142659054", "3.513896877432882", "1666620011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7969", "0.003913696554811901", "1.759360157300606", "1666623611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7969", "0.005558118343897774", "3.514122909743625", "1666623611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7969", "0.003913696554811901", "1.759360157300606", "1666623611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7969", "0.005558118343897774", "3.514122909743625", "1666623611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7970", "0.004002136477378963", "1.759526441668272", "1666627211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7970", "0.005683702447999496", "3.5143515932450247", "1666627211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7970", "0.004002136477378963", "1.759526441668272", "1666627211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7970", "0.005683702447999496", "3.5143515932450247", "1666627211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7971", "0.004091324507956393", "1.7596941427621864", "1666630811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7971", "0.005810343989312686", "3.514582216020987", "1666630811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7971", "0.004091324507956393", "1.7596941427621864", "1666630811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7971", "0.005810343989312686", "3.514582216020987", "1666630811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7972", "0.004193257160197214", "1.7598858272277493", "1666634411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7972", "0.005955073621675151", "3.5148458046322393", "1666634411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7972", "0.004193257160197214", "1.7598858272277493", "1666634411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7972", "0.005955073621675151", "3.5148458046322393", "1666634411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7973", "0.004313577791716951", "1.7601118762431693", "1666638011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7973", "0.006125985029501624", "3.515156795180545", "1666638011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7973", "0.004313577791716951", "1.7601118762431693", "1666638011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7973", "0.006125985029501624", "3.515156795180545", "1666638011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7974", "0.004437162340654705", "1.7603442375915965", "1666641611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7974", "0.006301466520713116", "3.515476339772695", "1666641611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7974", "0.004437162340654705", "1.7603442375915965", "1666641611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7974", "0.006301466520713116", "3.515476339772695", "1666641611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7975", "0.004558184692666717", "1.7605717589283951", "1666645211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7975", "0.006473315460530563", "3.5157892405029028", "1666645211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7975", "0.004558184692666717", "1.7605717589283951", "1666645211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7975", "0.006473315460530563", "3.5157892405029028", "1666645211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7976", "0.004663933594343018", "1.7607706078575622", "1666648811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7976", "0.0066234598017168396", "3.516062677102609", "1666648811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7976", "0.004663933594343018", "1.7607706078575622", "1666648811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7976", "0.0066234598017168396", "3.516062677102609", "1666648811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7977", "0.0047123976167359125", "1.7608615162857708", "1666652411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7977", "0.006692348093636244", "3.5161878401477304", "1666652411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7977", "0.0047123976167359125", "1.7608615162857708", "1666652411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7977", "0.006692348093636244", "3.5161878401477304", "1666652411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7978", "0.0047652768513896954", "1.7609609536556712", "1666656011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7978", "0.006767424577305037", "3.5163245717667486", "1666656011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7978", "0.0047652768513896954", "1.7609609536556712", "1666656011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7978", "0.006767424577305037", "3.5163245717667486", "1666656011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7979", "0.004817719408051866", "1.7610593548547082", "1666659611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7979", "0.006841956643620856", "3.5164600285457053", "1666659611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7979", "0.004817719408051866", "1.7610593548547082", "1666659611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7979", "0.006841956643620856", "3.5164600285457053", "1666659611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7980", "0.00486995511483797", "1.7611575787942757", "1666663211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7980", "0.006916119741062552", "3.5165950925776888", "1666663211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7980", "0.00486995511483797", "1.7611575787942757", "1666663211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7980", "0.006916119741062552", "3.5165950925776888", "1666663211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7981", "0.004921662830749111", "1.7612547974005717", "1666666811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7981", "0.006989537191382901", "3.5167287822994906", "1666666811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7981", "0.004921662830749111", "1.7612547974005717", "1666666811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7981", "0.006989537191382901", "3.5167287822994906", "1666666811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7982", "0.00496319970075037", "1.7613313432779214", "1666670411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7982", "0.0070490610829428545", "3.5168351292434292", "1666670411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7982", "0.00496319970075037", "1.7613313432779214", "1666670411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7982", "0.0070490610829428545", "3.5168351292434292", "1666670411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7983", "0.0050139034450480255", "1.7614263612653132", "1666674011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7983", "0.007121162903170184", "3.5169660108096483", "1666674011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7983", "0.0050139034450480255", "1.7614263612653132", "1666674011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7983", "0.007121162903170184", "3.5169660108096483", "1666674011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7984", "0.005063990244400767", "1.7615197751142886", "1666677611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7984", "0.007192545313301836", "3.5170949967825553", "1666677611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7984", "0.005063990244400767", "1.7615197751142886", "1666677611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7984", "0.007192545313301836", "3.5170949967825553", "1666677611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7985", "0.005115891666740162", "1.7616173145940333", "1666681211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7985", "0.007266251486932599", "3.517229155595159", "1666681211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7985", "0.005115891666740162", "1.7616173145940333", "1666681211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7985", "0.007266251486932599", "3.517229155595159", "1666681211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7986", "0.005164238000570553", "1.7617076914886263", "1666684811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7986", "0.007335078735621917", "3.517353799284301", "1666684811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7986", "0.005164238000570553", "1.7617076914886263", "1666684811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7986", "0.007335078735621917", "3.517353799284301", "1666684811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7987", "0.005214929721894802", "1.7618029810266345", "1666688411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7987", "0.007407057877787324", "3.5174848457618126", "1666688411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7987", "0.005214929721894802", "1.7618029810266345", "1666688411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7987", "0.007407057877787324", "3.5174848457618126", "1666688411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7988", "0.005265534004655961", "1.7618981000331226", "1666692011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7988", "0.007478914625291397", "3.5176156613929788", "1666692011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7988", "0.005265534004655961", "1.7618981000331226", "1666692011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7988", "0.007478914625291397", "3.5176156613929788", "1666692011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7989", "0.005315716453096398", "1.7619923811447613", "1666695611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7989", "0.0075501878656288645", "3.5177453555447094", "1666695611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7989", "0.005315716453096398", "1.7619923811447613", "1666695611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7989", "0.0075501878656288645", "3.5177453555447094", "1666695611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7990", "0.0053646819161814515", "1.7620841666676668", "1666699211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7990", "0.0076198061546155485", "3.5178717626176152", "1666699211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7990", "0.0053646819161814515", "1.7620841666676668", "1666699211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7990", "0.0076198061546155485", "3.5178717626176152", "1666699211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7991", "0.005413812821718614", "1.7621763826910517", "1666702811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7991", "0.00768961674051503", "3.517998677470745", "1666702811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7991", "0.005413812821718614", "1.7621763826910517", "1666702811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7991", "0.00768961674051503", "3.517998677470745", "1666702811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7992", "0.005463749306181995", "1.762270248318261", "1666706411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7992", "0.007760522969685191", "3.518127765579988", "1666706411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7992", "0.005463749306181995", "1.762270248318261", "1666706411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7992", "0.007760522969685191", "3.518127765579988", "1666706411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7993", "0.005514976657301728", "1.762366540381532", "1666710011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7993", "0.007833261718907978", "3.5182601899878376", "1666710011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7993", "0.005514976657301728", "1.762366540381532", "1666710011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7993", "0.007833261718907978", "3.5182601899878376", "1666710011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7994", "0.005564891671421921", "1.7624602125375475", "1666713611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7994", "0.007904190744803953", "3.518389117941203", "1666713611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7994", "0.005564891671421921", "1.7624602125375475", "1666713611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7994", "0.007904190744803953", "3.518389117941203", "1666713611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7995", "0.005636544410279966", "1.7625940742366284", "1666717211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7995", "0.008006221749441383", "3.5185737841785953", "1666717211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7995", "0.005636544410279966", "1.7625940742366284", "1666717211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7995", "0.008006221749441383", "3.5185737841785953", "1666717211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7996", "0.005717900018846143", "1.7627468783137685", "1666720823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7996", "0.008121780173311536", "3.518784006232482", "1666720823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7996", "0.005717900018846143", "1.7627468783137685", "1666720823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7996", "0.008121780173311536", "3.518784006232482", "1666720823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7997", "0.00579550540045934", "1.762892341888494", "1666724411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7997", "0.008232115568107446", "3.518984335751653", "1666724411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7997", "0.00579550540045934", "1.762892341888494", "1666724411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7997", "0.008232115568107446", "3.518984335751653", "1666724411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7998", "0.005875472520199543", "1.7630424068104478", "1666728011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7998", "0.008345746090383452", "3.519190878133267", "1666728011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7998", "0.005875472520199543", "1.7630424068104478", "1666728011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7998", "0.008345746090383452", "3.519190878133267", "1666728011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "7999", "0.005987967535355416", "1.7632538246068485", "1666731611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "7999", "0.00850548580068335", "3.5194816427080577", "1666731611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "7999", "0.005987967535355416", "1.7632538246068485", "1666731611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "7999", "0.00850548580068335", "3.5194816427080577", "1666731611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8000", "0.0061045263599225266", "1.763472884779641", "1666735211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8000", "0.008670992058149966", "3.5197829110449086", "1666735211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8000", "0.0061045263599225266", "1.763472884779641", "1666735211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8000", "0.008670992058149966", "3.5197829110449086", "1666735211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8001", "0.006222651516112901", "1.7636948890890483", "1666738811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8001", "0.00883872002834142", "3.5200882246629464", "1666738811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8001", "0.006222651516112901", "1.7636948890890483", "1666738811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8001", "0.00883872002834142", "3.5200882246629464", "1666738811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8002", "0.00633636173304584", "1.7639085426354542", "1666742411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8002", "0.009000195856365209", "3.5203820878453125", "1666742411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8002", "0.00633636173304584", "1.7639085426354542", "1666742411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8002", "0.009000195856365209", "3.5203820878453125", "1666742411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8003", "0.006451982058294945", "1.7641257515532696", "1666746011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8003", "0.009164393882246252", "3.5206808613616274", "1666746011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8003", "0.006451982058294945", "1.7641257515532696", "1666746011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8003", "0.009164393882246252", "3.5206808613616274", "1666746011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8004", "0.006565267773822717", "1.7643384587900852", "1666749611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8004", "0.009325315230264258", "3.520973520589821", "1666749611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8004", "0.006565267773822717", "1.7643384587900852", "1666749611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8004", "0.009325315230264258", "3.520973520589821", "1666749611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8005", "0.0066821899797761125", "1.764558154046884", "1666753211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8005", "0.009491343439669642", "3.5212756790112345", "1666753211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8005", "0.0066821899797761125", "1.764558154046884", "1666753211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8005", "0.009491343439669642", "3.5212756790112345", "1666753211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8006", "0.006809221414301611", "1.7647968121971136", "1666756811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8006", "0.00967173551289155", "3.5216039367820335", "1666756811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8006", "0.006809221414301611", "1.7647968121971136", "1666756811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8006", "0.00967173551289155", "3.5216039367820335", "1666756811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8007", "0.006971111617511709", "1.7651008571680007", "1666760411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8007", "0.009901661866610137", "3.5220221962265383", "1666760411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8007", "0.006971111617511709", "1.7651008571680007", "1666760411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8007", "0.009901661866610137", "3.5220221962265383", "1666760411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8008", "0.00707291436942098", "1.7652919488000625", "1666764011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8008", "0.010046282746075347", "3.522285140530091", "1666764011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8008", "0.00707291436942098", "1.7652919488000625", "1666764011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8008", "0.010046282746075347", "3.522285140530091", "1666764011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8009", "0.007180669608361476", "1.7654941030511282", "1666767611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8009", "0.010199396999636547", "3.5225633818330766", "1666767611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8009", "0.007180669608361476", "1.7654941030511282", "1666767611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8009", "0.010199396999636547", "3.5225633818330766", "1666767611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8010", "0.007291017619650105", "1.7657014259994763", "1666771211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8010", "0.010356085886998328", "3.5228485208043643", "1666771211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8010", "0.007291017619650105", "1.7657014259994763", "1666771211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8010", "0.010356085886998328", "3.5228485208043643", "1666771211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8011", "0.007383476624835835", "1.7658751510268118", "1666774811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8011", "0.010487367442530579", "3.523087440486954", "1666774811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8011", "0.007383476624835835", "1.7658751510268118", "1666774811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8011", "0.010487367442530579", "3.523087440486954", "1666774811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8012", "0.007485115725448066", "1.7660661520754772", "1666778411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8012", "0.010631672523080572", "3.523350097986259", "1666778411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8012", "0.007485115725448066", "1.7660661520754772", "1666778411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8012", "0.010631672523080572", "3.523350097986259", "1666778411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8013", "0.007594016154879282", "1.7662707986492487", "1666782011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8013", "0.010786285240988057", "3.5236315174652715", "1666782011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8013", "0.007594016154879282", "1.7662707986492487", "1666782011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8013", "0.010786285240988057", "3.5236315174652715", "1666782011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8014", "0.0077023371552537466", "1.766474314730822", "1666785611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8014", "0.010940088114392559", "3.523911408547541", "1666785611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8014", "0.0077023371552537466", "1.766474314730822", "1666785611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8014", "0.010940088114392559", "3.523911408547541", "1666785611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8015", "0.007807683655685766", "1.7666720555100364", "1666789211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8015", "0.01108973173048589", "3.5241834848814015", "1666789211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8015", "0.007807683655685766", "1.7666720555100364", "1666789211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8015", "0.01108973173048589", "3.5241834848814015", "1666789211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8016", "0.007911234398312197", "1.766866372987244", "1666792811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8016", "0.011236841324151656", "3.5244508851484624", "1666792811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8016", "0.007911234398312197", "1.766866372987244", "1666792811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8016", "0.011236841324151656", "3.5244508851484624", "1666792811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8017", "0.008016929349109298", "1.767064988445246", "1666796411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8017", "0.011386898371475293", "3.5247240049403827", "1666796411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8017", "0.008016929349109298", "1.767064988445246", "1666796411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8017", "0.011386898371475293", "3.5247240049403827", "1666796411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8018", "0.0081229436231727", "1.7672642039321589", "1666800011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8018", "0.01153740696146347", "3.524997947068183", "1666800011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8018", "0.0081229436231727", "1.7672642039321589", "1666800011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8018", "0.01153740696146347", "3.524997947068183", "1666800011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8019", "0.008255909012157269", "1.767513970954268", "1666803611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8019", "0.011726208501947052", "3.5253414642031187", "1666803611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8019", "0.008255909012157269", "1.767513970954268", "1666803611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8019", "0.011726208501947052", "3.5253414642031187", "1666803611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8020", "0.008420077736472176", "1.7678221881969065", "1666807211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8020", "0.011959370357690773", "3.52576547908126", "1666807211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8020", "0.008420077736472176", "1.7678221881969065", "1666807211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8020", "0.011959370357690773", "3.52576547908126", "1666807211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8021", "0.008584295278958405", "1.768130767752838", "1666810811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8021", "0.012192501528037502", "3.526189796147076", "1666810811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8021", "0.008584295278958405", "1.768130767752838", "1666810811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8021", "0.012192501528037502", "3.526189796147076", "1666810811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8022", "0.008747928283502255", "1.7684382665034786", "1666814411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8022", "0.012424792305566116", "3.526612608054631", "1666814411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8022", "0.008747928283502255", "1.7684382665034786", "1666814411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8022", "0.012424792305566116", "3.526612608054631", "1666814411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8023", "0.008910251881275746", "1.7687429644489239", "1666818011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8023", "0.012655340244211296", "3.5270318002894765", "1666818011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8023", "0.008910251881275746", "1.7687429644489239", "1666818011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8023", "0.012655340244211296", "3.5270318002894765", "1666818011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8024", "0.009074112620521988", "1.769050867602465", "1666821611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8024", "0.012887954009107838", "3.527455171465885", "1666821611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8024", "0.009074112620521988", "1.769050867602465", "1666821611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8024", "0.012887954009107838", "3.527455171465885", "1666821611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8025", "0.009235606953583522", "1.7693543512729983", "1666825211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8025", "0.01311719463423662", "3.527872440283621", "1666825211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8025", "0.009235606953583522", "1.7693543512729983", "1666825211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8025", "0.01311719463423662", "3.527872440283621", "1666825211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8026", "0.009400427211206078", "1.7696639544812958", "1666828811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8026", "0.013351198230046683", "3.528298207747202", "1666828811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8026", "0.009400427211206078", "1.7696639544812958", "1666828811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8026", "0.013351198230046683", "3.528298207747202", "1666828811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8027", "0.009562678373103628", "1.769968636770769", "1666832411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8027", "0.013581583676634722", "3.528717267898954", "1666832411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8027", "0.009562678373103628", "1.769968636770769", "1666832411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8027", "0.013581583676634722", "3.528717267898954", "1666832411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8028", "0.009724734569280078", "1.770273131237032", "1666836011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8028", "0.0138116250102485", "3.529135938357185", "1666836011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8028", "0.009724734569280078", "1.770273131237032", "1666836011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8028", "0.0138116250102485", "3.529135938357185", "1666836011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8029", "0.009890288825153647", "1.7705841658147796", "1666839611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8029", "0.014046639025292091", "3.529563617309503", "1666839611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8029", "0.009890288825153647", "1.7705841658147796", "1666839611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8029", "0.014046639025292091", "3.529563617309503", "1666839611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8030", "0.01003683275394383", "1.7708593977610858", "1666843211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8030", "0.01425469384708423", "3.5299421221473604", "1666843211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8030", "0.01003683275394383", "1.7708593977610858", "1666843211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8030", "0.01425469384708423", "3.5299421221473604", "1666843211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8031", "0.010187946461485535", "1.7711432448925513", "1666846811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8031", "0.014469221486408645", "3.530332446482433", "1666846811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8031", "0.010187946461485535", "1.7711432448925513", "1666846811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8031", "0.014469221486408645", "3.530332446482433", "1666846811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8032", "0.010351451102133823", "1.7714503436072717", "1666850411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8032", "0.014701343875616628", "3.530754754399327", "1666850411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8032", "0.010351451102133823", "1.7714503436072717", "1666850411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8032", "0.014701343875616628", "3.530754754399327", "1666850411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8033", "0.010515255934047011", "1.771758110379771", "1666854011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8033", "0.014933851256141587", "3.5311779013795235", "1666854011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8033", "0.010515255934047011", "1.771758110379771", "1666854011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8033", "0.014933851256141587", "3.5311779013795235", "1666854011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8034", "0.010678841736967738", "1.7720654854738167", "1666857611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8034", "0.015166036405480235", "3.5316004893088846", "1666857611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8034", "0.010678841736967738", "1.7720654854738167", "1666857611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8034", "0.015166036405480235", "3.5316004893088846", "1666857611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8035", "0.010649050401597476", "1.7720095007765932", "1666861211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8035", "0.015123755027080134", "3.5315235255447406", "1666861211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8035", "0.010649050401597476", "1.7720095007765932", "1666861211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8035", "0.015123755027080134", "3.5315235255447406", "1666861211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8036", "0.010616263273921844", "1.771947465248651", "1666864811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8036", "0.015077370605630218", "3.5314385378850393", "1666864811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8036", "0.010616263273921844", "1.771947465248651", "1666864811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8036", "0.015077370605630218", "3.5314385378850393", "1666864811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8037", "0.010586843082831329", "1.7718921442384348", "1666868411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8037", "0.015035627621270422", "3.5313625096840373", "1666868411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8037", "0.010586843082831329", "1.7718921442384348", "1666868411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8037", "0.015035627621270422", "3.5313625096840373", "1666868411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8038", "0.010557270054579642", "1.7718365493478405", "1666872011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8038", "0.01499366286431045", "3.5312860954222085", "1666872011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8038", "0.010557270054579642", "1.7718365493478405", "1666872011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8038", "0.01499366286431045", "3.5312860954222085", "1666872011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8039", "0.010527965731005146", "1.7717814856909675", "1666875611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8039", "0.01495207003935863", "3.53121039287026", "1666875611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8039", "0.010527965731005146", "1.7717814856909675", "1666875611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8039", "0.01495207003935863", "3.53121039287026", "1666875611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8040", "0.010497096732664008", "1.7717232441668638", "1666879211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8040", "0.01490834034727044", "3.531130487484698", "1666879211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8040", "0.010497096732664008", "1.7717232441668638", "1666879211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8040", "0.01490834034727044", "3.531130487484698", "1666879211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8041", "0.010466368155787487", "1.771664719157269", "1666882811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8041", "0.014865003340810807", "3.531050575041373", "1666882811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8041", "0.010466368155787487", "1.771664719157269", "1666882811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8041", "0.014865003340810807", "3.531050575041373", "1666882811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8042", "0.010441949070009638", "1.7716187001566237", "1666886411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8042", "0.014830391660271438", "3.53098740104307", "1666886411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8042", "0.010441949070009638", "1.7716187001566237", "1666886411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8042", "0.014830391660271438", "3.53098740104307", "1666886411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8043", "0.010407233882755279", "1.771552631129413", "1666890011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8043", "0.014781414661950073", "3.5308971533915856", "1666890011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8043", "0.010407233882755279", "1.771552631129413", "1666890011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8043", "0.014781414661950073", "3.5308971533915856", "1666890011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8044", "0.010378284404735398", "1.771498230676621", "1666893611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8044", "0.014740326036177235", "3.530822364023932", "1666893611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8044", "0.010378284404735398", "1.771498230676621", "1666893611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8044", "0.014740326036177235", "3.530822364023932", "1666893611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8045", "0.01035160923859114", "1.7714475703708858", "1666897211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8045", "0.014702653923039155", "3.53075308960124", "1666897211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8045", "0.01035160923859114", "1.7714475703708858", "1666897211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8045", "0.014702653923039155", "3.53075308960124", "1666897211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8046", "0.01041368262527457", "1.771564187063472", "1666900811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8046", "0.014790766251356322", "3.530913433593658", "1666900811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8046", "0.01041368262527457", "1.771564187063472", "1666900811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8046", "0.014790766251356322", "3.530913433593658", "1666900811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8047", "0.010578959484555105", "1.7718747220075672", "1666904411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8047", "0.015025360569314606", "3.5313403823560043", "1666904411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8047", "0.010578959484555105", "1.7718747220075672", "1666904411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8047", "0.015025360569314606", "3.5313403823560043", "1666904411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8048", "0.01074343648680693", "1.772183575888327", "1666908011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8048", "0.015258878209922618", "3.53176513780097", "1666908011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8048", "0.01074343648680693", "1.772183575888327", "1666908011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8048", "0.015258878209922618", "3.53176513780097", "1666908011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8049", "0.010897087599087632", "1.7724720625050634", "1666911611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8049", "0.01547703536806064", "3.5321619037697247", "1666911611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8049", "0.010897087599087632", "1.7724720625050634", "1666911611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8049", "0.01547703536806064", "3.5321619037697247", "1666911611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8050", "0.011059801011689862", "1.7727776081790587", "1666915211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8050", "0.01570803960543489", "3.5325820943630273", "1666915211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8050", "0.011059801011689862", "1.7727776081790587", "1666915211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8050", "0.01570803960543489", "3.5325820943630273", "1666915211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8051", "0.01122867054293912", "1.7730946818332347", "1666918811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8051", "0.0159477905176613", "3.5330181539079377", "1666918811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8051", "0.01122867054293912", "1.7730946818332347", "1666918811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8051", "0.0159477905176613", "3.5330181539079377", "1666918811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8052", "0.011404118593096771", "1.773424255191909", "1666922411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8052", "0.01619682412615368", "3.5334712929612926", "1666922411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8052", "0.011404118593096771", "1.773424255191909", "1666922411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8052", "0.01619682412615368", "3.5334712929612926", "1666922411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8053", "0.011444248718829911", "1.7734998002517215", "1666926011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8053", "0.016253727468201258", "3.5335750474676906", "1666926011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8053", "0.011444248718829911", "1.7734998002517215", "1666926011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8053", "0.016253727468201258", "3.5335750474676906", "1666926011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8054", "0.01137586174809033", "1.7733685555163743", "1666929611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8054", "0.016157642659450848", "3.533396543242011", "1666929611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8054", "0.01137586174809033", "1.7733685555163743", "1666929611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8054", "0.016157642659450848", "3.533396543242011", "1666929611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8055", "0.011344956323431627", "1.7733103882275447", "1666933211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8055", "0.01611381500481753", "3.533316646481171", "1666933211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8055", "0.011344956323431627", "1.7733103882275447", "1666933211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8055", "0.01611381500481753", "3.533316646481171", "1666933211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8056", "0.011443404077784419", "1.7734952439789846", "1666936811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8056", "0.01625357857708696", "3.5335708601843105", "1666936811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8056", "0.011443404077784419", "1.7734952439789846", "1666936811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8056", "0.01625357857708696", "3.5335708601843105", "1666936811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8057", "0.011606250190008542", "1.7738011218949616", "1666940411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8057", "0.016484727561014583", "3.5339914276186892", "1666940411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8057", "0.011606250190008542", "1.7738011218949616", "1666940411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8057", "0.016484727561014583", "3.5339914276186892", "1666940411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8058", "0.011769004593617627", "1.774106835775902", "1666944011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8058", "0.01671573919750458", "3.534411757200843", "1666944011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8058", "0.011769004593617627", "1.774106835775902", "1666944011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8058", "0.01671573919750458", "3.534411757200843", "1666944011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8059", "0.011929983949198818", "1.7744090385427262", "1666947611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8059", "0.01694428970803061", "3.5348273765896714", "1666947611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8059", "0.011929983949198818", "1.7744090385427262", "1666947611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8059", "0.01694428970803061", "3.5348273765896714", "1666947611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8060", "0.012081772451993746", "1.7746938378378858", "1666951211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8060", "0.017159840616793987", "3.535219159879671", "1666951211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8060", "0.012081772451993746", "1.7746938378378858", "1666951211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8060", "0.017159840616793987", "3.535219159879671", "1666951211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8061", "0.012234752392343173", "1.7749811655768153", "1666954811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8061", "0.017376976121934794", "3.5356142105419606", "1666954811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8061", "0.012234752392343173", "1.7749811655768153", "1666954811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8061", "0.017376976121934794", "3.5356142105419606", "1666954811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8062", "0.012387510629310247", "1.7752680977260222", "1666958411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8062", "0.01759378583031622", "3.5360086969663413", "1666958411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8062", "0.012387510629310247", "1.7752680977260222", "1666958411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8062", "0.01759378583031622", "3.5360086969663413", "1666958411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8063", "0.012539062747253036", "1.7755526052780028", "1666962011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8063", "0.01780893624475013", "3.5363999555202437", "1666962011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8063", "0.012539062747253036", "1.7755526052780028", "1666962011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8063", "0.01780893624475013", "3.5363999555202437", "1666962011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8064", "0.012682366586758483", "1.7758204447979051", "1666965611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8064", "0.018012792174773466", "3.5367691149740668", "1666965611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8064", "0.012682366586758483", "1.7758204447979051", "1666965611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8064", "0.018012792174773466", "3.5367691149740668", "1666965611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8065", "0.012836654206803477", "1.7761102080709392", "1666969211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8065", "0.018231776136997807", "3.537167505766709", "1666969211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8065", "0.012836654206803477", "1.7761102080709392", "1666969211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8065", "0.018231776136997807", "3.537167505766709", "1666969211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8066", "0.012981299251931616", "1.7763803478633948", "1666972811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8066", "0.018437606079574974", "3.5375399700277987", "1666972811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8066", "0.012981299251931616", "1.7763803478633948", "1666972811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8066", "0.018437606079574974", "3.5375399700277987", "1666972811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8067", "0.012942744478788315", "1.7763075884444843", "1666976423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8067", "0.01838300968269106", "3.537440181480921", "1666976423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8067", "0.012942744478788315", "1.7763075884444843", "1666976423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8067", "0.01838300968269106", "3.537440181480921", "1666976423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8068", "0.012906841302564726", "1.776240159519325", "1666980011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8068", "0.01833205248780108", "3.5373474761246793", "1666980011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8068", "0.012906841302564726", "1.776240159519325", "1666980011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8068", "0.01833205248780108", "3.5373474761246793", "1666980011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8069", "0.012871037724428715", "1.776172917645207", "1666983611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8069", "0.01828123644627112", "3.5372550276214625", "1666983611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8069", "0.012871037724428715", "1.776172917645207", "1666983611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8069", "0.01828123644627112", "3.5372550276214625", "1666983611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8070", "0.01283704984047906", "1.7761086076701247", "1666987211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8070", "0.01823316627330466", "3.537166944061762", "1666987211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8070", "0.01283704984047906", "1.7761086076701247", "1666987211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8070", "0.01823316627330466", "3.537166944061762", "1666987211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8071", "0.012979312947520786", "1.77637578344945", "1666990811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8071", "0.018435081827119167", "3.537534277736411", "1666990811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8071", "0.012979312947520786", "1.77637578344945", "1666990811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8071", "0.018435081827119167", "3.537534277736411", "1666990811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8072", "0.013135066852280679", "1.7766682954516264", "1666994411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8072", "0.018656141296129577", "3.537936439872526", "1666994411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8072", "0.013135066852280679", "1.7766682954516264", "1666994411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8072", "0.018656141296129577", "3.537936439872526", "1666994411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8073", "0.013289987344715244", "1.776959180505098", "1666998011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8073", "0.018876035887931363", "3.538336402428727", "1666998011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8073", "0.013289987344715244", "1.776959180505098", "1666998011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8073", "0.018876035887931363", "3.538336402428727", "1666998011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8074", "0.013475914014480565", "1.777308067079427", "1667001611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8074", "0.019140012364418785", "3.538816260101163", "1667001611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8074", "0.013475914014480565", "1.777308067079427", "1667001611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8074", "0.019140012364418785", "3.538816260101163", "1667001611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8075", "0.013682291268720033", "1.777695568893683", "1667005211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8075", "0.019432932885901654", "3.5393490509669085", "1667005211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8075", "0.013682291268720033", "1.777695568893683", "1667005211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8075", "0.019432932885901654", "3.5393490509669085", "1667005211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8076", "0.013631229800942918", "1.7775992636769247", "1667008811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8076", "0.01936061183322827", "3.5392169391543464", "1667008811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8076", "0.013631229800942918", "1.7775992636769247", "1667008811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8076", "0.01936061183322827", "3.5392169391543464", "1667008811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8077", "0.013592586642324881", "1.777526575935313", "1667012411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8077", "0.019305809985922923", "3.5391170891620187", "1667012411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8077", "0.013592586642324881", "1.777526575935313", "1667012411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8077", "0.019305809985922923", "3.5391170891620187", "1667012411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8078", "0.013554856676012052", "1.7774557168544574", "1667016011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8078", "0.019252263719176373", "3.5390196733707384", "1667016011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8078", "0.013554856676012052", "1.7774557168544574", "1667016011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8078", "0.019252263719176373", "3.5390196733707384", "1667016011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8079", "0.013517241939506907", "1.7773850758670875", "1667019611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8079", "0.019198880162742942", "3.538922555882287", "1667019611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8079", "0.013517241939506907", "1.7773850758670875", "1667019611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8079", "0.019198880162742942", "3.538922555882287", "1667019611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8080", "0.013479587959102951", "1.7773143424685338", "1667023211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8080", "0.019145447299049108", "3.5388253240773926", "1667023211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8080", "0.013479587959102951", "1.7773143424685338", "1667023211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8080", "0.019145447299049108", "3.5388253240773926", "1667023211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8081", "0.013442195590104454", "1.7772441208383405", "1667026811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8081", "0.01909237826124996", "3.538728781206305", "1667026811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8081", "0.013442195590104454", "1.7772441208383405", "1667026811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8081", "0.01909237826124996", "3.538728781206305", "1667026811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8082", "0.013404568708227697", "1.7771734129479648", "1667030411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8082", "0.019038992377967953", "3.538631601517635", "1667030411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8082", "0.013404568708227697", "1.7771734129479648", "1667030411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8082", "0.019038992377967953", "3.538631601517635", "1667030411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8083", "0.0133671915797789", "1.777103192020507", "1667034011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8083", "0.01898595439130102", "3.5385350784377496", "1667034011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8083", "0.0133671915797789", "1.777103192020507", "1667034011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8083", "0.01898595439130102", "3.5385350784377496", "1667034011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8084", "0.013330111009095272", "1.7770335561353432", "1667037611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8084", "0.018933327133636314", "3.5384393396997837", "1667037611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8084", "0.013330111009095272", "1.7770335561353432", "1667037611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8084", "0.018933327133636314", "3.5384393396997837", "1667037611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8085", "0.01329247273803589", "1.7769627814003555", "1667041211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8085", "0.018879940479674437", "3.5383420988440855", "1667041211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8085", "0.01329247273803589", "1.7769627814003555", "1667041211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8085", "0.018879940479674437", "3.5383420988440855", "1667041211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8086", "0.013255525877295626", "1.776893385268714", "1667044811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8086", "0.018827506561271325", "3.5382466969821755", "1667044811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8086", "0.013255525877295626", "1.776893385268714", "1667044811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8086", "0.018827506561271325", "3.5382466969821755", "1667044811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8087", "0.013218146220938535", "1.776823100865573", "1667048411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8087", "0.01877448485500413", "3.538150126309404", "1667048411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8087", "0.013218146220938535", "1.776823100865573", "1667048411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8087", "0.01877448485500413", "3.538150126309404", "1667048411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8088", "0.013181320591605096", "1.776753920276258", "1667052011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8088", "0.01872222684507851", "3.538055028587247", "1667052011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8088", "0.013181320591605096", "1.776753920276258", "1667052011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8088", "0.01872222684507851", "3.538055028587247", "1667052011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8089", "0.013144431610051837", "1.7766845995635796", "1667055611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8089", "0.01866988617901061", "3.537959752663121", "1667055611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8089", "0.013144431610051837", "1.7766845995635796", "1667055611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8089", "0.01866988617901061", "3.537959752663121", "1667055611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8090", "0.013100232604753955", "1.7766011019228152", "1667059211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8090", "0.018607328860411953", "3.537845298685291", "1667059211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8090", "0.013100232604753955", "1.7766011019228152", "1667059211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8090", "0.018607328860411953", "3.537845298685291", "1667059211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8091", "0.01306373604508995", "1.7765325428459813", "1667062811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8091", "0.018555535954123764", "3.5377510519225486", "1667062811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8091", "0.01306373604508995", "1.7765325428459813", "1667062811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8091", "0.018555535954123764", "3.5377510519225486", "1667062811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8092", "0.013026705559821982", "1.7764628976686827", "1667066411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8092", "0.018503014509739377", "3.537655369864161", "1667066411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8092", "0.013026705559821982", "1.7764628976686827", "1667066411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8092", "0.018503014509739377", "3.537655369864161", "1667066411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8093", "0.012989032213989069", "1.7763920968869016", "1667070011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8093", "0.01844956215161496", "3.5375580625174647", "1667070011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8093", "0.012989032213989069", "1.7763920968869016", "1667070011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8093", "0.01844956215161496", "3.5375580625174647", "1667070011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8094", "0.01296076676520942", "1.7763377082418164", "1667073611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8094", "0.01840990631152302", "3.5374841973661066", "1667073611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8094", "0.01296076676520942", "1.7763377082418164", "1667073611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8094", "0.01840990631152302", "3.5374841973661066", "1667073611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8095", "0.013175633910480003", "1.776741119410694", "1667077211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8095", "0.018714905780259628", "3.5380389119256055", "1667077211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8095", "0.013175633910480003", "1.776741119410694", "1667077211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8095", "0.018714905780259628", "3.5380389119256055", "1667077211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8096", "0.013390145531550957", "1.7771438966324549", "1667080811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8096", "0.01901938133512665", "3.538592719948543", "1667080811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8096", "0.013390145531550957", "1.7771438966324549", "1667080811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8096", "0.01901938133512665", "3.538592719948543", "1667080811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8097", "0.013597755650733474", "1.777532815123737", "1667084411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8097", "0.019314372165199056", "3.539128090980431", "1667084411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8097", "0.013597755650733474", "1.777532815123737", "1667084411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8097", "0.019314372165199056", "3.539128090980431", "1667084411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8098", "0.013809738117597024", "1.7779308193768013", "1667088011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8098", "0.0196152520841728", "3.5396753311694695", "1667088011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8098", "0.013809738117597024", "1.7779308193768013", "1667088011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8098", "0.0196152520841728", "3.5396753311694695", "1667088011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8099", "0.014023009683242067", "1.7783310783594903", "1667091611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8099", "0.019918012972765787", "3.540225776093686", "1667091611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8099", "0.014023009683242067", "1.7783310783594903", "1667091611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8099", "0.019918012972765787", "3.540225776093686", "1667091611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8100", "0.014236975115030422", "1.7787326889475765", "1667095211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8100", "0.020221734085941183", "3.5407780339746724", "1667095211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8100", "0.014236975115030422", "1.7787326889475765", "1667095211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8100", "0.020221734085941183", "3.5407780339746724", "1667095211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8101", "0.014445150616890003", "1.7791234072792808", "1667098811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8101", "0.020517238133311032", "3.541315320219947", "1667098811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8101", "0.014445150616890003", "1.7791234072792808", "1667098811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8101", "0.020517238133311032", "3.541315320219947", "1667098811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8102", "0.01465340161480421", "1.779514356045308", "1667102411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8102", "0.02081281101818114", "3.541852850604018", "1667102411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8102", "0.01465340161480421", "1.779514356045308", "1667102411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8102", "0.02081281101818114", "3.541852850604018", "1667102411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8103", "0.014861626921412135", "1.7799053341311262", "1667106011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8103", "0.021108313062834113", "3.5423903563937897", "1667106011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8103", "0.014861626921412135", "1.7799053341311262", "1667106011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8103", "0.021108313062834113", "3.5423903563937897", "1667106011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8104", "0.015069291225407518", "1.780295258790243", "1667109611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8104", "0.02140301205587585", "3.542926403348925", "1667109611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8104", "0.015069291225407518", "1.780295258790243", "1667109611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8104", "0.02140301205587585", "3.542926403348925", "1667109611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8105", "0.015272744623169972", "1.780676744694302", "1667113211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8105", "0.021691916777954578", "3.543451210804489", "1667113211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8105", "0.015272744623169972", "1.780676744694302", "1667113211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8105", "0.021691916777954578", "3.543451210804489", "1667113211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8106", "0.015382077092720322", "1.780882212630418", "1667116811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8106", "0.021847002607013645", "3.5437335427515695", "1667116811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8106", "0.015382077092720322", "1.780882212630418", "1667116811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8106", "0.021847002607013645", "3.5437335427515695", "1667116811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8107", "0.015339722962500286", "1.7808026674010322", "1667120411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8107", "0.021786906464521895", "3.5436242052156675", "1667120411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8107", "0.015339722962500286", "1.7808026674010322", "1667120411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8107", "0.021786906464521895", "3.5436242052156675", "1667120411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8108", "0.015403480930576606", "1.780922373458245", "1667124011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8108", "0.021877385666125394", "3.5437887713020793", "1667124011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8108", "0.015403480930576606", "1.780922373458245", "1667124011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8108", "0.021877385666125394", "3.5437887713020793", "1667124011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8109", "0.015371261626334395", "1.7808623374888892", "1667127611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8109", "0.021831501907308423", "3.5437059180894597", "1667127611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8109", "0.015371261626334395", "1.7808623374888892", "1667127611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8109", "0.021831501907308423", "3.5437059180894597", "1667127611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8110", "0.015507011636303893", "1.7811171469628109", "1667131211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8110", "0.022024165836047407", "3.544056259002643", "1667131211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8110", "0.015507011636303893", "1.7811171469628109", "1667131211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8110", "0.022024165836047407", "3.544056259002643", "1667131211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8111", "0.01571171650410907", "1.7815011723392131", "1667134811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8111", "0.0223147650609066", "3.544584402885158", "1667134811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8111", "0.01571171650410907", "1.7815011723392131", "1667134811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8111", "0.0223147650609066", "3.544584402885158", "1667134811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8112", "0.01591418030663689", "1.78188130114536", "1667138411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8112", "0.022602067442666213", "3.545106962469362", "1667138411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8112", "0.01591418030663689", "1.78188130114536", "1667138411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8112", "0.022602067442666213", "3.545106962469362", "1667138411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8113", "0.016118398905096008", "1.782264384406633", "1667142011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8113", "0.022891973634373335", "3.545633811148792", "1667142011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8113", "0.016118398905096008", "1.782264384406633", "1667142011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8113", "0.022891973634373335", "3.545633811148792", "1667142011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8114", "0.016322993789222032", "1.7826484699269203", "1667145611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8114", "0.0231823024497557", "3.5461618205251355", "1667145611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8114", "0.016322993789222032", "1.7826484699269203", "1667145611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8114", "0.0231823024497557", "3.5461618205251355", "1667145611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8115", "0.0165216692149824", "1.7830215018233269", "1667149211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8115", "0.02346420402955737", "3.546674583193713", "1667149211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8115", "0.0165216692149824", "1.7830215018233269", "1667149211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8115", "0.02346420402955737", "3.546674583193713", "1667149211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8116", "0.01670505541710948", "1.7833656139910785", "1667152811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8116", "0.023724481324354677", "3.547147733480249", "1667152811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8116", "0.01670505541710948", "1.7833656139910785", "1667152811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8116", "0.023724481324354677", "3.547147733480249", "1667152811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8117", "0.016894530312377087", "1.783721360347257", "1667156411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8117", "0.02399332055670361", "3.547636725636176", "1667156411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8117", "0.016894530312377087", "1.783721360347257", "1667156411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8117", "0.02399332055670361", "3.547636725636176", "1667156411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8118", "0.017081950329952373", "1.7840729503181931", "1667160011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8118", "0.024259344090166203", "3.548120204486989", "1667160011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8118", "0.017081950329952373", "1.7840729503181931", "1667160011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8118", "0.024259344090166203", "3.548120204486989", "1667160011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8119", "0.017279483954049275", "1.784443784461738", "1667163611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8119", "0.024539620674316535", "3.548629947019239", "1667163611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8119", "0.017279483954049275", "1.784443784461738", "1667163611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8119", "0.024539620674316535", "3.548629947019239", "1667163611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8120", "0.017231550620952128", "1.7843537857751177", "1667167211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8120", "0.024471613971141344", "3.5485062458559002", "1667167211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8120", "0.017231550620952128", "1.7843537857751177", "1667167211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8120", "0.024471613971141344", "3.5485062458559002", "1667167211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8121", "0.0171792106000186", "1.7842549076841716", "1667170811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8121", "0.02439756899991056", "3.5483707628196743", "1667170811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8121", "0.0171792106000186", "1.7842549076841716", "1667170811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8121", "0.02439756899991056", "3.5483707628196743", "1667170811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8122", "0.017131494730773012", "1.7841653108953746", "1667174411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8122", "0.024329872329080144", "3.548247617352896", "1667174411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8122", "0.017131494730773012", "1.7841653108953746", "1667174411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8122", "0.024329872329080144", "3.548247617352896", "1667174411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8123", "0.017080986557833536", "1.7840700547632742", "1667178011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8123", "0.02425836095746652", "3.5481169837720845", "1667178011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8123", "0.017080986557833536", "1.7840700547632742", "1667178011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8123", "0.02425836095746652", "3.5481169837720845", "1667178011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8124", "0.017033532890334314", "1.783980949475355", "1667181611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8124", "0.024191035833944705", "3.547994513280121", "1667181611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8124", "0.017033532890334314", "1.783980949475355", "1667181611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8124", "0.024191035833944705", "3.547994513280121", "1667181611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8125", "0.016976597908149066", "1.7838727788280673", "1667185211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8125", "0.024110705072713585", "3.5478467197783194", "1667185211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8125", "0.016976597908149066", "1.7838727788280673", "1667185211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8125", "0.024110705072713585", "3.5478467197783194", "1667185211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8126", "0.016934318678829448", "1.783792105243852", "1667188811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8126", "0.024051174940160625", "3.547736734785839", "1667188811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8126", "0.016934318678829448", "1.783792105243852", "1667188811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8126", "0.024051174940160625", "3.547736734785839", "1667188811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8127", "0.017138830279423863", "1.7841759169803562", "1667192411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8127", "0.024341400504825483", "3.5482644090137", "1667192411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8127", "0.017138830279423863", "1.7841759169803562", "1667192411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8127", "0.024341400504825483", "3.5482644090137", "1667192411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8128", "0.017330488462872995", "1.7845351012883544", "1667196011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8128", "0.02461355822713758", "3.5487585686749434", "1667196011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8128", "0.017330488462872995", "1.7845351012883544", "1667196011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8128", "0.02461355822713758", "3.5487585686749434", "1667196011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8129", "0.017530423290242448", "1.7849104185148126", "1667199611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8129", "0.024897242696000105", "3.549274478799918", "1667199611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8129", "0.017530423290242448", "1.7849104185148126", "1667199611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8129", "0.024897242696000105", "3.549274478799918", "1667199611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8130", "0.017731138271988224", "1.7852871988289765", "1667203211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8130", "0.02518202818751604", "3.5497923911894222", "1667203211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8130", "0.017731138271988224", "1.7852871988289765", "1667203211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8130", "0.02518202818751604", "3.5497923911894222", "1667203211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8131", "0.0179369937352613", "1.7856736557554929", "1667206811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8131", "0.02547409105398044", "3.550323575676119", "1667206811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8131", "0.0179369937352613", "1.7856736557554929", "1667206811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8131", "0.02547409105398044", "3.550323575676119", "1667206811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8132", "0.018144286854670268", "1.7860627858668363", "1667210411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8132", "0.02576819590429755", "3.5508584419343623", "1667210411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8132", "0.018144286854670268", "1.7860627858668363", "1667210411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8132", "0.02576819590429755", "3.5508584419343623", "1667210411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8133", "0.018351195178672914", "1.7864510558943945", "1667214011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8133", "0.026061796713637543", "3.5513922117654886", "1667214011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8133", "0.018351195178672914", "1.7864510558943945", "1667214011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8133", "0.026061796713637543", "3.5513922117654886", "1667214011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8134", "0.01830028906937816", "1.7863554892957858", "1667217611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8134", "0.025989576134796192", "3.551260861381069", "1667217611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8134", "0.01830028906937816", "1.7863554892957858", "1667217611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8134", "0.025989576134796192", "3.551260861381069", "1667217611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8135", "0.018249019223746523", "1.7862591662940375", "1667221211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8135", "0.02591686513466742", "3.551128522139634", "1667221211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8135", "0.018249019223746523", "1.7862591662940375", "1667221211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8135", "0.02591686513466742", "3.551128522139634", "1667221211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8136", "0.018198032244795", "1.786163397756289", "1667224811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8136", "0.025844546729668242", "3.5509969279549884", "1667224811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8136", "0.018198032244795", "1.786163397756289", "1667224811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8136", "0.025844546729668242", "3.5509969279549884", "1667224811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8137", "0.018147536350385324", "1.7860685994549965", "1667228411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8137", "0.025772907526843115", "3.5508666329093956", "1667228411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8137", "0.018147536350385324", "1.7860685994549965", "1667228411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8137", "0.025772907526843115", "3.5508666329093956", "1667228411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8138", "0.0179627612193378", "1.785702186165163", "1667232011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8138", "0.025517666701710198", "3.550376645948782", "1667232011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8138", "0.0179627612193378", "1.785702186165163", "1667232011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8138", "0.025517666701710198", "3.550376645948782", "1667232011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8139", "0.01791274641993502", "1.7856083213575131", "1667235611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8139", "0.02544669732559527", "3.5502476096371764", "1667235611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8139", "0.01791274641993502", "1.7856083213575131", "1667235611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8139", "0.02544669732559527", "3.5502476096371764", "1667235611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8140", "0.01785456749814898", "1.7854973325899455", "1667239211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8140", "0.025364779714805122", "3.55009628933442", "1667239211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8140", "0.01785456749814898", "1.7854973325899455", "1667239211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8140", "0.025364779714805122", "3.55009628933442", "1667239211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8141", "0.01805577469012454", "1.7858748214058378", "1667242811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8141", "0.025650329814836184", "3.5506153110344023", "1667242811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8141", "0.01805577469012454", "1.7858748214058378", "1667242811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8141", "0.025650329814836184", "3.5506153110344023", "1667242811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8142", "0.01825463906525839", "1.7862471515418084", "1667246411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8142", "0.02593281845881429", "3.5511277628065634", "1667246411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8142", "0.01825463906525839", "1.7862471515418084", "1667246411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8142", "0.02593281845881429", "3.5511277628065634", "1667246411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8143", "0.01817955763656146", "1.7861027912103624", "1667250011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8143", "0.025827503597862518", "3.550931722798019", "1667250011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8143", "0.01817955763656146", "1.7861027912103624", "1667250011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8143", "0.025827503597862518", "3.550931722798019", "1667250011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8144", "0.018126700362670268", "1.7860027177504956", "1667253611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8144", "0.025752811472484684", "3.5507947636007464", "1667253611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8144", "0.018126700362670268", "1.7860027177504956", "1667253611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8144", "0.025752811472484684", "3.5507947636007464", "1667253611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8145", "0.018322789138859367", "1.7863704168452152", "1667257211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8145", "0.026031155340287083", "3.5513004427921686", "1667257211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8145", "0.018322789138859367", "1.7863704168452152", "1667257211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8145", "0.026031155340287083", "3.5513004427921686", "1667257211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8146", "0.018273004496789255", "1.7862770159433075", "1667260811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8146", "0.02596050407445623", "3.551172026223153", "1667260811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8146", "0.018273004496789255", "1.7862770159433075", "1667260811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8146", "0.02596050407445623", "3.551172026223153", "1667260811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8147", "0.01822333325297527", "1.7861836337953145", "1667264411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8147", "0.02589008188926024", "3.551043770133334", "1667264411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8147", "0.01822333325297527", "1.7861836337953145", "1667264411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8147", "0.02589008188926024", "3.551043770133334", "1667264411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8148", "0.018298493798167104", "1.78632450685721", "1667268011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8148", "0.02599679339575282", "3.551237551224312", "1667268011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8148", "0.018298493798167104", "1.78632450685721", "1667268011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8148", "0.02599679339575282", "3.551237551224312", "1667268011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8149", "0.018246052291905825", "1.7862259232711906", "1667271611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8149", "0.025922441470621265", "3.551102146859786", "1667271611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8149", "0.018246052291905825", "1.7862259232711906", "1667271611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8149", "0.025922441470621265", "3.551102146859786", "1667271611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8150", "0.018195026990361966", "1.7861301363755255", "1667275211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8150", "0.025850049538137344", "3.550970489546591", "1667275211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8150", "0.018195026990361966", "1.7861301363755255", "1667275211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8150", "0.025850049538137344", "3.550970489546591", "1667275211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8151", "0.018144519071653653", "1.7860353052985791", "1667278811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8151", "0.025778396684103012", "3.5508401561157585", "1667278811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8151", "0.018144519071653653", "1.7860353052985791", "1667278811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8151", "0.025778396684103012", "3.5508401561157585", "1667278811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8152", "0.018094175287194415", "1.785940870677867", "1667282411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8152", "0.025706945079055053", "3.5507103054173768", "1667282411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8152", "0.018094175287194415", "1.785940870677867", "1667282411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8152", "0.025706945079055053", "3.5507103054173768", "1667282411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8153", "0.018244206883506482", "1.7862206841892356", "1667286011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8153", "0.025920450394292378", "3.5510961827864245", "1667286011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8153", "0.018244206883506482", "1.7862206841892356", "1667286011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8153", "0.025920450394292378", "3.5510961827864245", "1667286011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8154", "0.018463781303220544", "1.7866325384014152", "1667289611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8154", "0.026232086310658122", "3.551662498907902", "1667289611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8154", "0.018463781303220544", "1.7866325384014152", "1667289611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8154", "0.026232086310658122", "3.551662498907902", "1667289611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8155", "0.018686123591578563", "1.7870495863881037", "1667293223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8155", "0.026547642012795566", "3.5522359431815067", "1667293223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8155", "0.018686123591578563", "1.7870495863881037", "1667293223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8155", "0.026547642012795566", "3.5522359431815067", "1667293223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8156", "0.01931934594157402", "1.7882375836951587", "1667296811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8156", "0.027446197354543227", "3.5538692007592134", "1667296811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8156", "0.01931934594157402", "1.7882375836951587", "1667296811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8156", "0.027446197354543227", "3.5538692007592134", "1667296811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8157", "0.02005815955942329", "1.7896235122265423", "1667300411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8157", "0.028494568183213262", "3.555774568498306", "1667300411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8157", "0.02005815955942329", "1.7896235122265423", "1667300411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8157", "0.028494568183213262", "3.555774568498306", "1667300411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8158", "0.020325431404614173", "1.7901252670897898", "1667304011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8158", "0.028873667729099436", "3.556464077852094", "1667304011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8158", "0.020325431404614173", "1.7901252670897898", "1667304011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8158", "0.028873667729099436", "3.556464077852094", "1667304011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8159", "0.020545403315861983", "1.7905366752603153", "1667307611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8159", "0.02918621616435886", "3.5570305003169285", "1667307611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8159", "0.020545403315861983", "1.7905366752603153", "1667307611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8159", "0.02918621616435886", "3.5570305003169285", "1667307611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8160", "0.020484245058021128", "1.790421496312626", "1667311211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8160", "0.029099601314707842", "3.556872481371039", "1667311211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8160", "0.020484245058021128", "1.790421496312626", "1667311211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8160", "0.029099601314707842", "3.556872481371039", "1667311211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8161", "0.020426774103382138", "1.7903136121000018", "1667314811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8161", "0.029018084128196293", "3.55672422603336", "1667314811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8161", "0.020426774103382138", "1.7903136121000018", "1667314811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8161", "0.029018084128196293", "3.55672422603336", "1667314811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8162", "0.020384702117201833", "1.7902344612604706", "1667318411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8162", "0.028958469943366153", "3.556615576746443", "1667318411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8162", "0.020384702117201833", "1.7902344612604706", "1667318411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8162", "0.028958469943366153", "3.556615576746443", "1667318411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8163", "0.020576117106080587", "1.7905931048219628", "1667322011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8163", "0.029230213816410982", "3.5571089002613534", "1667322011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8163", "0.020576117106080587", "1.7905931048219628", "1667322011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8163", "0.029230213816410982", "3.5571089002613534", "1667322011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8164", "0.0208010335080454", "1.7910168427190738", "1667325611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8164", "0.029548688906105753", "3.5576901276422195", "1667325611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8164", "0.0208010335080454", "1.7910168427190738", "1667325611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8164", "0.029548688906105753", "3.5576901276422195", "1667325611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8165", "0.020889944832175704", "1.7911819625437109", "1667329211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8165", "0.029675426621154143", "3.557918271961202", "1667329211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8165", "0.020889944832175704", "1.7911819625437109", "1667329211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8165", "0.029675426621154143", "3.557918271961202", "1667329211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8166", "0.020831373519340453", "1.7910721047105729", "1667332811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8166", "0.02959231993777109", "3.557767246144696", "1667332811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8166", "0.020831373519340453", "1.7910721047105729", "1667332811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8166", "0.02959231993777109", "3.557767246144696", "1667332811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8167", "0.020777635701165385", "1.7909704954338295", "1667336411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8167", "0.02951635995391652", "3.5576281293428114", "1667336411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8167", "0.020777635701165385", "1.7909704954338295", "1667336411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8167", "0.02951635995391652", "3.5576281293428114", "1667336411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8168", "0.020719618197972273", "1.7908616283403191", "1667340011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8168", "0.02943405500049918", "3.557478497418635", "1667340011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8168", "0.020719618197972273", "1.7908616283403191", "1667340011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8168", "0.02943405500049918", "3.557478497418635", "1667340011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8169", "0.02065768451349204", "1.790743765470169", "1667343611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8169", "0.029346776199546506", "3.557317648858966", "1667343611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8169", "0.02065768451349204", "1.790743765470169", "1667343611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8169", "0.029346776199546506", "3.557317648858966", "1667343611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8170", "0.020717965582442717", "1.7908566288925414", "1667347211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8170", "0.029432381676310026", "3.557472949537422", "1667347211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8170", "0.020717965582442717", "1.7908566288925414", "1667347211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8170", "0.029432381676310026", "3.557472949537422", "1667347211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8171", "0.02078269508021533", "1.790977980246282", "1667350811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8171", "0.029524247471662178", "3.557639817433689", "1667350811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8171", "0.02078269508021533", "1.790977980246282", "1667350811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8171", "0.029524247471662178", "3.557639817433689", "1667350811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8172", "0.02082514638650359", "1.7910544309603889", "1667354411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8172", "0.02958560319093397", "3.5577471298978813", "1667354411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8172", "0.02082514638650359", "1.7910544309603889", "1667354411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8172", "0.02958560319093397", "3.5577471298978813", "1667354411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8173", "0.020883893135687552", "1.7911638261976355", "1667358011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8173", "0.029669238713771875", "3.557898071926323", "1667358011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8173", "0.020883893135687552", "1.7911638261976355", "1667358011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8173", "0.029669238713771875", "3.557898071926323", "1667358011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8174", "0.02095112828358384", "1.7912898353136864", "1667361611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8174", "0.029764672863438035", "3.5580713696199378", "1667361611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8174", "0.02095112828358384", "1.7912898353136864", "1667361611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8174", "0.029764672863438035", "3.5580713696199378", "1667361611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8175", "0.021015283906035503", "1.7914101445719173", "1667365211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8175", "0.029855709912728092", "3.558236777393082", "1667365211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8175", "0.021015283906035503", "1.7914101445719173", "1667365211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8175", "0.029855709912728092", "3.558236777393082", "1667365211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8176", "0.02111863982131595", "1.791604232186606", "1667368811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8176", "0.030002276509679373", "3.5585034312845845", "1667368811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8176", "0.02111863982131595", "1.791604232186606", "1667368811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8176", "0.030002276509679373", "3.5585034312845845", "1667368811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8177", "0.02118477172447425", "1.7917282546014806", "1667372411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8177", "0.030096113628283697", "3.558673936438517", "1667372411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8177", "0.02118477172447425", "1.7917282546014806", "1667372411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8177", "0.030096113628283697", "3.558673936438517", "1667372411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8178", "0.02117118635769525", "1.7917026290652327", "1667376011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8178", "0.030076889133746756", "3.5586388097997554", "1667376011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8178", "0.02117118635769525", "1.7917026290652327", "1667376011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8178", "0.030076889133746756", "3.5586388097997554", "1667376011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8179", "0.02111245976973272", "1.7915924980165059", "1667379611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8179", "0.029993558341529673", "3.5584873997522664", "1667379611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8179", "0.02111245976973272", "1.7915924980165059", "1667379611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8179", "0.029993558341529673", "3.5584873997522664", "1667379611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8180", "0.021053874091163167", "1.7914826323483062", "1667383211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8180", "0.029910426548630378", "3.5583363529271113", "1667383211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8180", "0.021053874091163167", "1.7914826323483062", "1667383211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8180", "0.029910426548630378", "3.5583363529271113", "1667383211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8181", "0.020995472910922096", "1.7913731115421372", "1667386811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8181", "0.029827556410441325", "3.5581857801815584", "1667386811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8181", "0.020995472910922096", "1.7913731115421372", "1667386811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8181", "0.029827556410441325", "3.5581857801815584", "1667386811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8182", "0.020937124177440446", "1.791263674039979", "1667390411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8182", "0.02974476547152866", "3.5580353316287123", "1667390411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8182", "0.020937124177440446", "1.791263674039979", "1667390411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8182", "0.02974476547152866", "3.5580353316287123", "1667390411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8183", "0.02087851951668454", "1.7911537072219228", "1667394011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8183", "0.02966162827979024", "3.5578841889420345", "1667394011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8183", "0.02087851951668454", "1.7911537072219228", "1667394011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8183", "0.02966162827979024", "3.5578841889420345", "1667394011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8184", "0.020820370232236103", "1.7910446232321648", "1667397611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8184", "0.029579126528264568", "3.5577342390590103", "1667397611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8184", "0.020820370232236103", "1.7910446232321648", "1667397611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8184", "0.029579126528264568", "3.5577342390590103", "1667397611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8185", "0.02075986291575284", "1.7909307818607818", "1667401211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8185", "0.02949339665290966", "3.5575779814089032", "1667401211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8185", "0.02075986291575284", "1.7909307818607818", "1667401211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8185", "0.02949339665290966", "3.5575779814089032", "1667401211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8186", "0.020704848652703545", "1.790826909906139", "1667404811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8186", "0.02941557827318008", "3.5574356608998805", "1667404811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8186", "0.020704848652703545", "1.790826909906139", "1667404811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8186", "0.02941557827318008", "3.5574356608998805", "1667404811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8187", "0.020864637748310686", "1.791126494463235", "1667408411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8187", "0.02964234705222598", "3.557847598255718", "1667408411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8187", "0.020864637748310686", "1.791126494463235", "1667408411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8187", "0.02964234705222598", "3.557847598255718", "1667408411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8188", "0.02081065188487628", "1.7910250758532709", "1667412011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8188", "0.029565803434645647", "3.557708286246972", "1667412011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8188", "0.02081065188487628", "1.7910250758532709", "1667412011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8188", "0.029565803434645647", "3.557708286246972", "1667412011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8189", "0.020991580502689823", "1.7913641332686678", "1667415611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8189", "0.0298226265048534", "3.5581746071449984", "1667415611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8189", "0.020991580502689823", "1.7913641332686678", "1667415611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8189", "0.0298226265048534", "3.5581746071449984", "1667415611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8190", "0.021174178458333238", "1.7917065480713663", "1667419211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8190", "0.03008173291882533", "3.5586453776745777", "1667419211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8190", "0.021174178458333238", "1.7917065480713663", "1667419211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8190", "0.03008173291882533", "3.5586453776745777", "1667419211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8191", "0.021115443665950164", "1.791596406298088", "1667422811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8191", "0.02999838885439346", "3.558493949651865", "1667422811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8191", "0.021115443665950164", "1.791596406298088", "1667422811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8191", "0.02999838885439346", "3.558493949651865", "1667422811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8192", "0.02105659406040649", "1.791486048986386", "1667426411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8192", "0.029914881404995878", "3.558342224617143", "1667426411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8192", "0.02105659406040649", "1.791486048986386", "1667426411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8192", "0.029914881404995878", "3.558342224617143", "1667426411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8193", "0.02114955985592884", "1.7916603577797297", "1667430011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8193", "0.030046808112388624", "3.558581890323611", "1667430011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8193", "0.02114955985592884", "1.7916603577797297", "1667430011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8193", "0.030046808112388624", "3.558581890323611", "1667430011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8194", "0.021236933406188613", "1.7918234776099267", "1667433611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8194", "0.030171046379495848", "3.5588066605646276", "1667433611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8194", "0.021236933406188613", "1.7918234776099267", "1667433611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8194", "0.030171046379495848", "3.5588066605646276", "1667433611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8195", "0.021329423006836476", "1.7919968881736756", "1667437211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8195", "0.030302296584828588", "3.5590450909500615", "1667437211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8195", "0.021329423006836476", "1.7919968881736756", "1667437211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8195", "0.030302296584828588", "3.5590450909500615", "1667437211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8196", "0.021414788142526398", "1.7921567710307125", "1667440811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8196", "0.030423495451227512", "3.559265038095631", "1667440811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8196", "0.021414788142526398", "1.7921567710307125", "1667440811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8196", "0.030423495451227512", "3.559265038095631", "1667440811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8197", "0.021353616164638534", "1.7920418150718975", "1667444411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8197", "0.030336781567633614", "3.55910716492043", "1667444411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8197", "0.021353616164638534", "1.7920418150718975", "1667444411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8197", "0.030336781567633614", "3.55910716492043", "1667444411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8198", "0.02129760671076765", "1.7919360350980509", "1667448011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8198", "0.030257571013256997", "3.5589622582919005", "1667448011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8198", "0.02129760671076765", "1.7919360350980509", "1667448011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8198", "0.030257571013256997", "3.5589622582919005", "1667448011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8199", "0.021453956552301492", "1.792229198255038", "1667451611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8199", "0.03047943478256265", "3.5593653248996677", "1667451611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8199", "0.021453956552301492", "1.792229198255038", "1667451611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8199", "0.03047943478256265", "3.5593653248996677", "1667451611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8200", "0.02160980057550323", "1.7925213927665915", "1667455211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8200", "0.03070058406603163", "3.5597670678888322", "1667455211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8200", "0.02160980057550323", "1.7925213927665915", "1667455211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8200", "0.03070058406603163", "3.5597670678888322", "1667455211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8201", "0.021765489652064866", "1.7928133323600663", "1667458811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8201", "0.03092149704141909", "3.560168429650649", "1667458811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8201", "0.021765489652064866", "1.7928133323600663", "1667458811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8201", "0.03092149704141909", "3.560168429650649", "1667458811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8202", "0.021921564217071775", "1.7931059948122416", "1667462411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8202", "0.031142953133141592", "3.5605707792639376", "1667462411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8202", "0.021921564217071775", "1.7931059948122416", "1667462411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8202", "0.031142953133141592", "3.5605707792639376", "1667462411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8203", "0.022077153554185214", "1.7933977260748881", "1667466011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8203", "0.031363724415674574", "3.5609718576384366", "1667466011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8203", "0.022077153554185214", "1.7933977260748881", "1667466011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8203", "0.031363724415674574", "3.5609718576384366", "1667466011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8204", "0.022231604250423743", "1.793687424089318", "1667469611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8204", "0.03158284028048798", "3.5613700638879426", "1667469611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8204", "0.022231604250423743", "1.793687424089318", "1667469611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8204", "0.03158284028048798", "3.5613700638879426", "1667469611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8205", "0.022268397643834932", "1.7937562565921947", "1667473211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8205", "0.031635101222867404", "3.561464802417478", "1667473211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8205", "0.022268397643834932", "1.7937562565921947", "1667473211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8205", "0.031635101222867404", "3.561464802417478", "1667473211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8206", "0.022209782745358085", "1.7936463160684049", "1667476811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8206", "0.03155194579588425", "3.5613136831451793", "1667476811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8206", "0.022209782745358085", "1.7936463160684049", "1667476811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8206", "0.03155194579588425", "3.5613136831451793", "1667476811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8207", "0.022146711883320156", "1.793527665605562", "1667480411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8207", "0.03146259269349683", "3.561150836130902", "1667480411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8207", "0.022146711883320156", "1.793527665605562", "1667480411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8207", "0.03146259269349683", "3.561150836130902", "1667480411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8208", "0.022084969443099383", "1.793411848124411", "1667484011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8208", "0.031375002915218796", "3.560991644331641", "1667484011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8208", "0.022084969443099383", "1.793411848124411", "1667484011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8208", "0.031375002915218796", "3.560991644331641", "1667484011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8209", "0.0220237938033101", "1.7932963034473117", "1667487611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8209", "0.031288496030294044", "3.560833377485072", "1667487611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8209", "0.0220237938033101", "1.7932963034473117", "1667487611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8209", "0.031288496030294044", "3.560833377485072", "1667487611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8210", "0.022156427081462517", "1.7935449463059912", "1667491283"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8210", "0.031476708370324166", "3.561175245910663", "1667491283"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8210", "0.022156427081462517", "1.7935449463059912", "1667491283"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8210", "0.031476708370324166", "3.561175245910663", "1667491283"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8211", "0.02226372400825853", "1.7937460678215815", "1667494811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8211", "0.03162897384589749", "3.5614517891895785", "1667494811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8211", "0.02226372400825853", "1.7937460678215815", "1667494811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8211", "0.03162897384589749", "3.5614517891895785", "1667494811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8212", "0.02239076114484401", "1.7939840331420713", "1667498411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8212", "0.03180930622847014", "3.561779099510041", "1667498411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8212", "0.02239076114484401", "1.7939840331420713", "1667498411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8212", "0.03180930622847014", "3.561779099510041", "1667498411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8213", "0.02254160735908638", "1.7942669277776655", "1667502011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8213", "0.032023316107162046", "3.5621679724074946", "1667502011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8213", "0.02254160735908638", "1.7942669277776655", "1667502011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8213", "0.032023316107162046", "3.5621679724074946", "1667502011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8214", "0.022691155842982483", "1.7945473654178157", "1667505611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8214", "0.03223548951411501", "3.562553478601463", "1667505611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8214", "0.022691155842982483", "1.7945473654178157", "1667505611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8214", "0.03223548951411501", "3.562553478601463", "1667505611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8215", "0.02285128730816647", "1.794847447705409", "1667509211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8215", "0.03246274471863209", "3.5629661235072523", "1667509211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8215", "0.02285128730816647", "1.794847447705409", "1667509211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8215", "0.03246274471863209", "3.5629661235072523", "1667509211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8216", "0.02301185531766935", "1.7951484970608054", "1667512811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8216", "0.03269056269619007", "3.5633799880099106", "1667512811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8216", "0.02301185531766935", "1.7951484970608054", "1667512811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8216", "0.03269056269619007", "3.5633799880099106", "1667512811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8217", "0.02316015422132505", "1.7954255447289815", "1667516411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8217", "0.032901322325742194", "3.5637615470819006", "1667516411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8217", "0.02316015422132505", "1.7954255447289815", "1667516411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8217", "0.032901322325742194", "3.5637615470819006", "1667516411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8218", "0.023299089998701315", "1.7956859881714688", "1667520011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8218", "0.03309845821865941", "3.5641196121584855", "1667520011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8218", "0.023299089998701315", "1.7956859881714688", "1667520011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8218", "0.03309845821865941", "3.5641196121584855", "1667520011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8219", "0.023436621244436403", "1.7959438491509832", "1667523611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8219", "0.03329358038221786", "3.5644740869994167", "1667523611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8219", "0.023436621244436403", "1.7959438491509832", "1667523611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8219", "0.03329358038221786", "3.5644740869994167", "1667523611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8220", "0.023572763890711744", "1.7961989615233136", "1667527211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8220", "0.033486780827712455", "3.56482488004655", "1667527211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8220", "0.023572763890711744", "1.7961989615233136", "1667527211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8220", "0.033486780827712455", "3.56482488004655", "1667527211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8221", "0.023710090427738823", "1.7964564033233943", "1667530811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8221", "0.03368161911624041", "3.565178794175613", "1667530811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8221", "0.023710090427738823", "1.7964564033233943", "1667530811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8221", "0.03368161911624041", "3.565178794175613", "1667530811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8222", "0.02384361066048558", "1.7967066363655742", "1667534411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8222", "0.03387108005977521", "3.565522844832667", "1667534411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8222", "0.02384361066048558", "1.7967066363655742", "1667534411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8222", "0.03387108005977521", "3.565522844832667", "1667534411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8223", "0.02397386677883124", "1.7969503513837484", "1667538011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8223", "0.03405604831831913", "3.5658582091009343", "1667538011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8223", "0.02397386677883124", "1.7969503513837484", "1667538011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8223", "0.03405604831831913", "3.5658582091009343", "1667538011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8224", "0.024106536584971368", "1.7971988788668345", "1667541611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8224", "0.034244336535158085", "3.566199984242008", "1667541611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8224", "0.024106536584971368", "1.7971988788668345", "1667541611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8224", "0.034244336535158085", "3.566199984242008", "1667541611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8225", "0.02424362532921649", "1.7974555644939452", "1667545211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8225", "0.03443893565013581", "3.566553057570916", "1667545211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8225", "0.02424362532921649", "1.7974555644939452", "1667545211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8225", "0.03443893565013581", "3.566553057570916", "1667545211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8226", "0.02434269406857124", "1.7976374280273009", "1667548811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8226", "0.034580848028574314", "3.5668057464224248", "1667548811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8226", "0.02434269406857124", "1.7976374280273009", "1667548811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8226", "0.034580848028574314", "3.5668057464224248", "1667548811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8227", "0.024489874020267297", "1.7979133417242503", "1667552411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8227", "0.03478964831234245", "3.567185026923796", "1667552411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8227", "0.024489874020267297", "1.7979133417242503", "1667552411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8227", "0.03478964831234245", "3.567185026923796", "1667552411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8228", "0.024635393500111177", "1.7981859632842385", "1667556011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8228", "0.03499615297166022", "3.5675599017906308", "1667556011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8228", "0.024635393500111177", "1.7981859632842385", "1667556011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8228", "0.03499615297166022", "3.5675599017906308", "1667556011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8229", "0.024765048423413868", "1.7984278868840289", "1667559611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8229", "0.03518048708001164", "3.5678932418461913", "1667559611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8229", "0.024765048423413868", "1.7984278868840289", "1667559611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8229", "0.03518048708001164", "3.5678932418461913", "1667559611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8230", "0.02490824104850277", "1.7986965143382694", "1667563211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8230", "0.03538355441192416", "3.568262360272989", "1667563211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8230", "0.02490824104850277", "1.7986965143382694", "1667563211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8230", "0.03538355441192416", "3.568262360272989", "1667563211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8231", "0.025051616825951507", "1.7989650481639534", "1667566811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8231", "0.035587032867440714", "3.5686316496935886", "1667566811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8231", "0.025051616825951507", "1.7989650481639534", "1667566811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8231", "0.035587032867440714", "3.5686316496935886", "1667566811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8232", "0.025195631022159302", "1.7992349159717003", "1667570411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8232", "0.035791365192560966", "3.5690026721011496", "1667570411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8232", "0.025195631022159302", "1.7992349159717003", "1667570411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8232", "0.035791365192560966", "3.5690026721011496", "1667570411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8233", "0.025340252134983227", "1.7995060423995497", "1667574011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8233", "0.03599651241961104", "3.569375335201657", "1667574011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8233", "0.025340252134983227", "1.7995060423995497", "1667574011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8233", "0.03599651241961104", "3.569375335201657", "1667574011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8234", "0.025483708395406566", "1.7997749051174228", "1667577611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8234", "0.03620003228819325", "3.5697449375405026", "1667577611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8234", "0.025483708395406566", "1.7997749051174228", "1667577611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8234", "0.03620003228819325", "3.5697449375405026", "1667577611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8235", "0.025622941344861584", "1.8000358940275496", "1667581211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8235", "0.03639754282315534", "3.570103682174627", "1667581211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8235", "0.025622941344861584", "1.8000358940275496", "1667581211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8235", "0.03639754282315534", "3.570103682174627", "1667581211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8236", "0.025840278186702054", "1.800444371242131", "1667584811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8236", "0.036705458788518545", "3.570664392458045", "1667584811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8236", "0.025840278186702054", "1.800444371242131", "1667584811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8236", "0.036705458788518545", "3.570664392458045", "1667584811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8237", "0.026067746315786365", "1.8008714683764917", "1667588411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8237", "0.0370278695115478", "3.571250942791307", "1667588411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8237", "0.026067746315786365", "1.8008714683764917", "1667588411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8237", "0.0370278695115478", "3.571250942791307", "1667588411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8238", "0.026202290727237416", "1.8011236846125966", "1667592011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8238", "0.037218711052322946", "3.5715975987385415", "1667592011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8238", "0.026202290727237416", "1.8011236846125966", "1667592011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8238", "0.037218711052322946", "3.5715975987385415", "1667592011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8239", "0.026123547786856972", "1.80097633060766", "1667595611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8239", "0.03710692925233175", "3.571394890800112", "1667595611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8239", "0.026123547786856972", "1.80097633060766", "1667595611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8239", "0.03710692925233175", "3.571394890800112", "1667595611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8240", "0.02605178461018379", "1.800841643920728", "1667599211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8240", "0.037005194376571876", "3.5712098827484295", "1667599211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8240", "0.02605178461018379", "1.800841643920728", "1667599211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8240", "0.037005194376571876", "3.5712098827484295", "1667599211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8241", "0.02618594950460808", "1.8010931762890368", "1667602811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8241", "0.03719548818457162", "3.5715555800523653", "1667602811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8241", "0.02618594950460808", "1.8010931762890368", "1667602811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8241", "0.03719548818457162", "3.5715555800523653", "1667602811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8242", "0.026319331524364734", "1.8013432296436747", "1667606411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8242", "0.03738467276744548", "3.5718992481861047", "1667606411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8242", "0.026319331524364734", "1.8013432296436747", "1667606411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8242", "0.03738467276744548", "3.5718992481861047", "1667606411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8243", "0.02645049563625195", "1.8015889100727775", "1667610011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8243", "0.03757078487624882", "3.5722370519931146", "1667610011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8243", "0.02645049563625195", "1.8015889100727775", "1667610011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8243", "0.03757078487624882", "3.5722370519931146", "1667610011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8244", "0.026567557018900945", "1.801808243137678", "1667613611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8244", "0.03773685986240121", "3.5725385778252274", "1667613611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8244", "0.026567557018900945", "1.801808243137678", "1667613611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8244", "0.03773685986240121", "3.5725385778252274", "1667613611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8245", "0.02671444313384841", "1.8020820070011807", "1667617211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8245", "0.0379457574637884", "3.5729159393977574", "1667617211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8245", "0.02671444313384841", "1.8020820070011807", "1667617211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8245", "0.0379457574637884", "3.5729159393977574", "1667617211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8246", "0.026637301980825465", "1.8019371659154866", "1667620811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8246", "0.03783642722126632", "3.572717036487154", "1667620811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8246", "0.026637301980825465", "1.8019371659154866", "1667620811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8246", "0.03783642722126632", "3.572717036487154", "1667620811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8247", "0.02655601374115381", "1.8017830549366431", "1667624411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8247", "0.03772174323124999", "3.5725064348135596", "1667624411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8247", "0.02655601374115381", "1.8017830549366431", "1667624411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8247", "0.03772174323124999", "3.5725064348135596", "1667624411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8248", "0.026459550921580265", "1.801598797540572", "1667628011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8248", "0.037586136378714254", "3.5722555835337073", "1667628011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8248", "0.026459550921580265", "1.801598797540572", "1667628011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8248", "0.037586136378714254", "3.5722555835337073", "1667628011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8249", "0.026582774847141426", "1.8018297405325272", "1667631611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8249", "0.03776093157174274", "3.572573025549705", "1667631611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8249", "0.026582774847141426", "1.8018297405325272", "1667631611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8249", "0.03776093157174274", "3.572573025549705", "1667631611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8250", "0.026743787987899083", "1.8021315354334886", "1667635211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8250", "0.03798931774652766", "3.5729878315185006", "1667635211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8250", "0.026743787987899083", "1.8021315354334886", "1667635211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8250", "0.03798931774652766", "3.5729878315185006", "1667635211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8251", "0.026901862122315802", "1.8024274694637508", "1667638811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8251", "0.03821365575317832", "3.5733948213683346", "1667638811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8251", "0.026901862122315802", "1.8024274694637508", "1667638811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8251", "0.03821365575317832", "3.5733948213683346", "1667638811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8252", "0.02706098381750786", "1.8027255856722277", "1667642411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8252", "0.038439398277663975", "3.573804651912647", "1667642411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8252", "0.02706098381750786", "1.8027255856722277", "1667642411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8252", "0.038439398277663975", "3.573804651912647", "1667642411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8253", "0.027033902109162913", "1.8026746537130653", "1667646011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8253", "0.03840104699525435", "3.573734769829516", "1667646011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8253", "0.027033902109162913", "1.8026746537130653", "1667646011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8253", "0.03840104699525435", "3.573734769829516", "1667646011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8254", "0.0269586057673572", "1.8025334689541714", "1667649611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8254", "0.038294267001929366", "3.5735407596737345", "1667649611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8254", "0.0269586057673572", "1.8025334689541714", "1667649611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8254", "0.038294267001929366", "3.5735407596737345", "1667649611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8255", "0.02688370720018842", "1.802393055562434", "1667653211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8255", "0.03818804118757937", "3.573347790347824", "1667653211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8255", "0.02688370720018842", "1.802393055562434", "1667653211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8255", "0.03818804118757937", "3.573347790347824", "1667653211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8256", "0.026807148488799323", "1.8022492763403282", "1667656811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8256", "0.03807954963679052", "3.5731503707035457", "1667656811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8256", "0.026807148488799323", "1.8022492763403282", "1667656811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8256", "0.03807954963679052", "3.5731503707035457", "1667656811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8257", "0.026726083360917068", "1.802096086187422", "1667660411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8257", "0.03796500631140229", "3.5729406870191327", "1667660411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8257", "0.026726083360917068", "1.802096086187422", "1667660411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8257", "0.03796500631140229", "3.5729406870191327", "1667660411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8258", "0.026651281248557965", "1.801955783734745", "1667664011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8258", "0.03785893925917381", "3.572747914617043", "1667664011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8258", "0.026651281248557965", "1.801955783734745", "1667664011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8258", "0.03785893925917381", "3.572747914617043", "1667664011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8259", "0.026570874387070335", "1.8018054580642147", "1667667611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8259", "0.03774475076313063", "3.5725410281490073", "1667667611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8259", "0.026570874387070335", "1.8018054580642147", "1667667611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8259", "0.03774475076313063", "3.5725410281490073", "1667667611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8260", "0.02669177293018168", "1.8020319176627817", "1667671211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8260", "0.037916289584427415", "3.5728523916627726", "1667671211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8260", "0.02669177293018168", "1.8020319176627817", "1667671211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8260", "0.037916289584427415", "3.5728523916627726", "1667671211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8261", "0.026846037599244657", "1.8023209946984053", "1667674811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8261", "0.038135125338810784", "3.573249761532637", "1667674811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8261", "0.026846037599244657", "1.8023209946984053", "1667674811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8261", "0.038135125338810784", "3.573249761532637", "1667674811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8262", "0.026993836259707565", "1.8025967560761247", "1667678411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8262", "0.03834520925036579", "3.5736296581686062", "1667678411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8262", "0.026993836259707565", "1.8025967560761247", "1667678411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8262", "0.03834520925036579", "3.5736296581686062", "1667678411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8263", "0.027157546358028483", "1.8029035968406673", "1667682011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8263", "0.0385774135240823", "3.574051389648185", "1667682011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8263", "0.027157546358028483", "1.8029035968406673", "1667682011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8263", "0.0385774135240823", "3.574051389648185", "1667682011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8264", "0.027320310140950134", "1.8032085906490891", "1667685611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8264", "0.038808297292103326", "3.5744706272664044", "1667685611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8264", "0.027320310140950134", "1.8032085906490891", "1667685611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8264", "0.038808297292103326", "3.5744706272664044", "1667685611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8265", "0.027482425630134574", "1.8035123376420357", "1667689211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8265", "0.039038268617097235", "3.5748881669893153", "1667689211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8265", "0.027482425630134574", "1.8035123376420357", "1667689211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8265", "0.039038268617097235", "3.5748881669893153", "1667689211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8266", "0.027644851819588798", "1.8038167700481689", "1667692811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8266", "0.039268639993700026", "3.5753065704957745", "1667692811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8266", "0.027644851819588798", "1.8038167700481689", "1667692811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8266", "0.039268639993700026", "3.5753065704957745", "1667692811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8267", "0.027794332921121583", "1.8040963286204814", "1667696411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8267", "0.03948086373199955", "3.57569120850851", "1667696411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8267", "0.027794332921121583", "1.8040963286204814", "1667696411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8267", "0.03948086373199955", "3.57569120850851", "1667696411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8268", "0.027935827854013932", "1.8043615133964594", "1667700011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8268", "0.03968154715208731", "3.576055672389001", "1667700011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8268", "0.027935827854013932", "1.8043615133964594", "1667700011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8268", "0.03968154715208731", "3.576055672389001", "1667700011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8269", "0.028081099581420365", "1.8046335047858653", "1667703611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8269", "0.03988768010392514", "3.576429675540273", "1667703611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8269", "0.028081099581420365", "1.8046335047858653", "1667703611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8269", "0.03988768010392514", "3.576429675540273", "1667703611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8270", "0.02820700858275353", "1.8048691379454798", "1667707211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8270", "0.040066373019033936", "3.5767537536425795", "1667707211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8270", "0.02820700858275353", "1.8048691379454798", "1667707211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8270", "0.040066373019033936", "3.5767537536425795", "1667707211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8271", "0.028331801138828622", "1.805100989314065", "1667710811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8271", "0.040244077917511945", "3.5770738083542044", "1667710811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8271", "0.028331801138828622", "1.805100989314065", "1667710811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8271", "0.040244077917511945", "3.5770738083542044", "1667710811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8272", "0.028473785383401028", "1.805367033882808", "1667714411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8272", "0.0404454635993813", "3.5774394754363716", "1667714411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8272", "0.028473785383401028", "1.805367033882808", "1667714411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8272", "0.0404454635993813", "3.5774394754363716", "1667714411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8273", "0.028614667667862914", "1.8056309235894685", "1667718023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8273", "0.04064531502954575", "3.577802238728765", "1667718023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8273", "0.028614667667862914", "1.8056309235894685", "1667718023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8273", "0.04064531502954575", "3.577802238728765", "1667718023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8274", "0.02875721409942848", "1.805898083482849", "1667721611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8274", "0.040847469827939735", "3.5781693858373718", "1667721611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8274", "0.02875721409942848", "1.805898083482849", "1667721611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8274", "0.040847469827939735", "3.5781693858373718", "1667721611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8275", "0.028901894220802478", "1.8061690397444208", "1667725211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8275", "0.041052718984856934", "3.578541886355949", "1667725211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8275", "0.028901894220802478", "1.8061690397444208", "1667725211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8275", "0.041052718984856934", "3.578541886355949", "1667725211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8276", "0.02904775234762409", "1.8064424149377327", "1667728811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8276", "0.04125956066736809", "3.578917558761078", "1667728811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8276", "0.02904775234762409", "1.8064424149377327", "1667728811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8276", "0.04125956066736809", "3.578917558761078", "1667728811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8277", "0.029183748733314602", "1.8066972778754573", "1667732411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8277", "0.041452424587886894", "3.5792678070846935", "1667732411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8277", "0.029183748733314602", "1.8066972778754573", "1667732411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8277", "0.041452424587886894", "3.5792678070846935", "1667732411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8278", "0.029319992929167274", "1.806952633708526", "1667736011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8278", "0.04164562693691407", "3.5796187084253024", "1667736011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8278", "0.029319992929167274", "1.806952633708526", "1667736011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8278", "0.04164562693691407", "3.5796187084253024", "1667736011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8279", "0.02943459629091575", "1.8071673101025574", "1667739611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8279", "0.04180818118994168", "3.5799137890077155", "1667739611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8279", "0.02943459629091575", "1.8071673101025574", "1667739611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8279", "0.04180818118994168", "3.5799137890077155", "1667739611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8280", "0.029533126514307326", "1.807352044831746", "1667743211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8280", "0.04194787651109787", "3.5801675948237426", "1667743211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8280", "0.029533126514307326", "1.807352044831746", "1667743211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8280", "0.04194787651109787", "3.5801675948237426", "1667743211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8281", "0.029624413370322768", "1.8075228077892571", "1667746811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8281", "0.04207743935257665", "3.5804024754461334", "1667746811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8281", "0.029624413370322768", "1.8075228077892571", "1667746811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8281", "0.04207743935257665", "3.5804024754461334", "1667746811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8282", "0.02971571036586432", "1.8076937916427467", "1667750411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8282", "0.04220694379248378", "3.580637516836833", "1667750411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8282", "0.02971571036586432", "1.8076937916427467", "1667750411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8282", "0.04220694379248378", "3.580637516836833", "1667750411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8283", "0.02964639751448046", "1.8075637278623695", "1667754011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8283", "0.04210871328927478", "3.58045890222141", "1667754011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8283", "0.02964639751448046", "1.8075637278623695", "1667754011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8283", "0.04210871328927478", "3.58045890222141", "1667754011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8284", "0.02962444067046793", "1.807517818337435", "1667757611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8284", "0.042079262322209106", "3.5803991331269973", "1667757611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8284", "0.02962444067046793", "1.807517818337435", "1667757611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8284", "0.042079262322209106", "3.5803991331269973", "1667757611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8285", "0.029534842963982826", "1.8073498436532087", "1667761211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8285", "0.0419522283444395", "3.580168347112429", "1667761211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8285", "0.029534842963982826", "1.8073498436532087", "1667761211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8285", "0.0419522283444395", "3.580168347112429", "1667761211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8286", "0.029450129990528852", "1.8071907007678083", "1667764811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8286", "0.04183223426015732", "3.57994992070138", "1667764811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8286", "0.029450129990528852", "1.8071907007678083", "1667764811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8286", "0.04183223426015732", "3.57994992070138", "1667764811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8287", "0.029367573160125976", "1.8070351455972953", "1667768411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8287", "0.04171545701295665", "3.579736738602805", "1667768411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8287", "0.029367573160125976", "1.8070351455972953", "1667768411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8287", "0.04171545701295665", "3.579736738602805", "1667768411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8288", "0.02962811597576689", "1.8075228558810101", "1667772011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8288", "0.04208512900745881", "3.5804073452731995", "1667772011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8288", "0.02962811597576689", "1.8075228558810101", "1667772011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8288", "0.04208512900745881", "3.5804073452731995", "1667772011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8289", "0.029893856524306206", "1.8080200638565158", "1667775611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8289", "0.04246224694015073", "3.5810911563770267", "1667775611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8289", "0.029893856524306206", "1.8080200638565158", "1667775611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8289", "0.04246224694015073", "3.5810911563770267", "1667775611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8290", "0.030165119558373733", "1.8085277579757368", "1667779211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8290", "0.04284713622000913", "3.5817892644575156", "1667779211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8290", "0.030165119558373733", "1.8085277579757368", "1667779211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8290", "0.04284713622000913", "3.5817892644575156", "1667779211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8291", "0.030440056420251868", "1.8090429027558357", "1667782811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8291", "0.04323702298181096", "3.5824971983988005", "1667782811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8291", "0.030440056420251868", "1.8090429027558357", "1667782811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8291", "0.04323702298181096", "3.5824971983988005", "1667782811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8292", "0.030704813204372135", "1.8095383293925338", "1667786411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8292", "0.04361269013805703", "3.5831784664940165", "1667786411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8292", "0.030704813204372135", "1.8095383293925338", "1667786411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8292", "0.04361269013805703", "3.5831784664940165", "1667786411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8293", "0.030959813615982205", "1.8100149366704434", "1667790011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8293", "0.04397470267468777", "3.5838342327050956", "1667790011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8293", "0.030959813615982205", "1.8100149366704434", "1667790011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8293", "0.04397470267468777", "3.5838342327050956", "1667790011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8294", "0.03120035638761587", "1.8104620570813243", "1667793611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8294", "0.044317053661929104", "3.584451135931255", "1667793611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8294", "0.03120035638761587", "1.8104620570813243", "1667793611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8294", "0.044317053661929104", "3.584451135931255", "1667793611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8295", "0.03146770014558458", "1.810962223986949", "1667797211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8295", "0.044696395301531584", "3.585138943815594", "1667797211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8295", "0.03146770014558458", "1.810962223986949", "1667797211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8295", "0.044696395301531584", "3.585138943815594", "1667797211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8296", "0.03171958467254437", "1.811433338319157", "1667800811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8296", "0.045053837286441314", "3.585786875086858", "1667800811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8296", "0.03171958467254437", "1.811433338319157", "1667800811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8296", "0.045053837286441314", "3.585786875086858", "1667800811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8297", "0.031978804461483386", "1.8119189907683064", "1667804411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8297", "0.045421388341304714", "3.5864542134169644", "1667804411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8297", "0.031978804461483386", "1.8119189907683064", "1667804411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8297", "0.045421388341304714", "3.5864542134169644", "1667804411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8298", "0.03223760667328333", "1.8124037422335542", "1667808011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8298", "0.045788378800410215", "3.5871203802526317", "1667808011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8298", "0.03223760667328333", "1.8124037422335542", "1667808011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8298", "0.045788378800410215", "3.5871203802526317", "1667808011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8299", "0.03248824483179757", "1.812871234419438", "1667811611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8299", "0.046144479071920756", "3.587764185129919", "1667811611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8299", "0.03248824483179757", "1.812871234419438", "1667811611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8299", "0.046144479071920756", "3.587764185129919", "1667811611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8300", "0.03273185042417245", "1.8133275585197146", "1667815211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8300", "0.04648988805510255", "3.5883912308507333", "1667815211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8300", "0.03273185042417245", "1.8133275585197146", "1667815211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8300", "0.04648988805510255", "3.5883912308507333", "1667815211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8301", "0.032961859312466674", "1.8137585262842557", "1667818811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8301", "0.04681596963364277", "3.588983341847777", "1667818811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8301", "0.032961859312466674", "1.8137585262842557", "1667818811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8301", "0.04681596963364277", "3.588983341847777", "1667818811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8302", "0.03321085808498692", "1.8142242751674038", "1667822411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8302", "0.047169247074731635", "3.58962378239997", "1667822411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8302", "0.03321085808498692", "1.8142242751674038", "1667822411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8302", "0.047169247074731635", "3.58962378239997", "1667822411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8303", "0.03347047823698142", "1.8147106894525145", "1667826011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8303", "0.047537300991359596", "3.5902920662817492", "1667826011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8303", "0.03347047823698142", "1.8147106894525145", "1667826011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8303", "0.047537300991359596", "3.5902920662817492", "1667826011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8304", "0.03373111948802149", "1.8151990365666273", "1667829611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8304", "0.04790678486387079", "3.590962975593923", "1667829611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8304", "0.03373111948802149", "1.8151990365666273", "1667829611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8304", "0.04790678486387079", "3.590962975593923", "1667829611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8305", "0.03398502138280574", "1.8156747594305123", "1667833211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8305", "0.048266703805606465", "3.5916165235292263", "1667833211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8305", "0.03398502138280574", "1.8156747594305123", "1667833211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8305", "0.048266703805606465", "3.5916165235292263", "1667833211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8306", "0.03417668602350128", "1.8160338473511346", "1667836811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8306", "0.048538400140015724", "3.592109845017616", "1667836811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8306", "0.03417668602350128", "1.8160338473511346", "1667836811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8306", "0.048538400140015724", "3.592109845017616", "1667836811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8307", "0.03434153311772329", "1.816342498134759", "1667840411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8307", "0.04877214504932636", "3.5925340031494155", "1667840411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8307", "0.03434153311772329", "1.816342498134759", "1667840411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8307", "0.04877214504932636", "3.5925340031494155", "1667840411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8308", "0.03450649739864491", "1.8166493374674249", "1667844011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8308", "0.04900677139302537", "3.59295708208636", "1667844011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8308", "0.03450649739864491", "1.8166493374674249", "1667844011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8308", "0.04900677139302537", "3.59295708208636", "1667844011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8309", "0.03468064673595783", "1.8169753470010301", "1667847611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8309", "0.04925371798604058", "3.5934051219174195", "1667847611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8309", "0.03468064673595783", "1.8169753470010301", "1667847611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8309", "0.04925371798604058", "3.5934051219174195", "1667847611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8310", "0.034823674597183746", "1.817242049856168", "1667851211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8310", "0.04945690120732297", "3.593772380636598", "1667851211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8310", "0.034823674597183746", "1.817242049856168", "1667851211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8310", "0.04945690120732297", "3.593772380636598", "1667851211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8311", "0.034870734065228205", "1.8173301948867506", "1667854811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8311", "0.04952361301565696", "3.5938934825253965", "1667854811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8311", "0.034870734065228205", "1.8173301948867506", "1667854811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8311", "0.04952361301565696", "3.5938934825253965", "1667854811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8312", "0.03491751522840384", "1.817417777581526", "1667858411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8312", "0.049589944500116244", "3.5940138399224932", "1667858411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8312", "0.03491751522840384", "1.817417777581526", "1667858411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8312", "0.049589944500116244", "3.5940138399224932", "1667858411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8313", "0.035043931499627354", "1.8176545733363678", "1667862011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8313", "0.04976914650325071", "3.5943391603812525", "1667862011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8313", "0.035043931499627354", "1.8176545733363678", "1667862011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8313", "0.04976914650325071", "3.5943391603812525", "1667862011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8314", "0.035017423489906226", "1.8176046133053083", "1667865611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8314", "0.04973167883489957", "3.594270737261733", "1667865611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8314", "0.035017423489906226", "1.8176046133053083", "1667865611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8314", "0.04973167883489957", "3.594270737261733", "1667865611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8315", "0.034916772925739636", "1.8174155512171888", "1667869211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8315", "0.049589188411734535", "3.5940113640147207", "1667869211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8315", "0.034916772925739636", "1.8174155512171888", "1667869211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8315", "0.049589188411734535", "3.5940113640147207", "1667869211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8316", "0.034819676342431556", "1.8172335806716875", "1667872811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8316", "0.04945158053069223", "3.5937614282658004", "1667872811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8316", "0.034819676342431556", "1.8172335806716875", "1667872811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8316", "0.04945158053069223", "3.5937614282658004", "1667872811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8317", "0.03472205954435296", "1.817050242245693", "1667876411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8317", "0.04931337310714652", "3.5935098852283764", "1667876411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8317", "0.03472205954435296", "1.817050242245693", "1667876411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8317", "0.04931337310714652", "3.5935098852283764", "1667876411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8318", "0.03462577743855764", "1.8168698594093518", "1667880011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8318", "0.04917689488017304", "3.5932620829819832", "1667880011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8318", "0.03462577743855764", "1.8168698594093518", "1667880011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8318", "0.04917689488017304", "3.5932620829819832", "1667880011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8319", "0.03485565371624199", "1.8172995978255957", "1667883611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8319", "0.04950306789581375", "3.593853084347687", "1667883611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8319", "0.03485565371624199", "1.8172995978255957", "1667883611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8319", "0.04950306789581375", "3.593853084347687", "1667883611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8320", "0.035111381674723836", "1.8177786621217984", "1667887211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8320", "0.04986555880965643", "3.594511209638556", "1667887211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8320", "0.035111381674723836", "1.8177786621217984", "1667887211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8320", "0.04986555880965643", "3.594511209638556", "1667887211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8321", "0.0353426897126452", "1.8182117477800934", "1667890811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8321", "0.0501935081845988", "3.595106318895852", "1667890811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8321", "0.0353426897126452", "1.8182117477800934", "1667890811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8321", "0.0501935081845988", "3.595106318895852", "1667890811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8322", "0.03556051598733654", "1.8186196433971742", "1667894411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8322", "0.05050231688945814", "3.5956667659380073", "1667894411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8322", "0.03556051598733654", "1.8186196433971742", "1667894411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8322", "0.05050231688945814", "3.5956667659380073", "1667894411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8323", "0.03572233885529045", "1.8189228096294499", "1667898011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8323", "0.05073167569543826", "3.596083209435409", "1667898011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8323", "0.03572233885529045", "1.8189228096294499", "1667898011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8323", "0.05073167569543826", "3.596083209435409", "1667898011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8324", "0.03565446707263223", "1.818796035047551", "1667901611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8324", "0.050635344004951205", "3.595908802119734", "1667901611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8324", "0.03565446707263223", "1.818796035047551", "1667901611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8324", "0.050635344004951205", "3.595908802119734", "1667901611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8325", "0.03555365351186866", "1.8186069093507082", "1667905211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8325", "0.05049254692389142", "3.5956491883763735", "1667905211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8325", "0.03555365351186866", "1.8186069093507082", "1667905211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8325", "0.05049254692389142", "3.5956491883763735", "1667905211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8326", "0.03545295650265322", "1.8184179966750262", "1667908811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8326", "0.05034991533336882", "3.5953898685143426", "1667908811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8326", "0.03545295650265322", "1.8184179966750262", "1667908811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8326", "0.05034991533336882", "3.5953898685143426", "1667908811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8327", "0.03535361576325142", "1.8182317233971872", "1667912411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8327", "0.050209169612183274", "3.5951341032449218", "1667912411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8327", "0.03535361576325142", "1.8182317233971872", "1667912411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8327", "0.050209169612183274", "3.5951341032449218", "1667912411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8328", "0.035253883302737744", "1.8180446600049436", "1667916011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8328", "0.05006788704461968", "3.594877289421154", "1667916011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8328", "0.035253883302737744", "1.8180446600049436", "1667916011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8328", "0.05006788704461968", "3.594877289421154", "1667916011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8329", "0.03513341432549466", "1.8178158004402014", "1667919611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8329", "0.04989825473739101", "3.594565111436661", "1667919611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8329", "0.03513341432549466", "1.8178158004402014", "1667919611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8329", "0.04989825473739101", "3.594565111436661", "1667919611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8330", "0.03502987677331555", "1.8176208478823928", "1667923211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8330", "0.049751844613969254", "3.594297984623826", "1667923211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8330", "0.03502987677331555", "1.8176208478823928", "1667923211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8330", "0.049751844613969254", "3.594297984623826", "1667923211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8331", "0.035012393836422545", "1.8175880675191833", "1667926811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8331", "0.049727073138412174", "3.594252972181196", "1667926811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8331", "0.035012393836422545", "1.8175880675191833", "1667926811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8331", "0.049727073138412174", "3.594252972181196", "1667926811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8332", "0.03505594545207882", "1.817669067650041", "1667930411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8332", "0.049789014465115765", "3.594364656259727", "1667930411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8332", "0.03505594545207882", "1.817669067650041", "1667930411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8332", "0.049789014465115765", "3.594364656259727", "1667930411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8333", "0.034958345776611166", "1.8174862550288298", "1667934011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8333", "0.049650659931931025", "3.5941134968052855", "1667934011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8333", "0.034958345776611166", "1.8174862550288298", "1667934011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8333", "0.049650659931931025", "3.5941134968052855", "1667934011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8334", "0.03486138248068098", "1.8173046141588984", "1667937611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8334", "0.049513213207206204", "3.593863959017305", "1667937611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8334", "0.03486138248068098", "1.8173046141588984", "1667937611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8334", "0.049513213207206204", "3.593863959017305", "1667937611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8335", "0.03476468810688954", "1.817123477075315", "1667941211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8335", "0.04937614621235925", "3.5936151110687566", "1667941211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8335", "0.03476468810688954", "1.817123477075315", "1667941211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8335", "0.04937614621235925", "3.5936151110687566", "1667941211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8336", "0.03466826190952197", "1.8169428423810063", "1667944811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8336", "0.04923945790242504", "3.593366951058952", "1667944811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8336", "0.03466826190952197", "1.8169428423810063", "1667944811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8336", "0.04923945790242504", "3.593366951058952", "1667944811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8337", "0.03457146282266395", "1.816760367080907", "1667948411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8337", "0.049102644049135794", "3.5931170558811525", "1667948411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8337", "0.03457146282266395", "1.816760367080907", "1667948411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8337", "0.049102644049135794", "3.5931170558811525", "1667948411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8338", "0.034820458712703686", "1.8172265614357428", "1667952011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8338", "0.049455695302120156", "3.5937576985237287", "1667952011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8338", "0.034820458712703686", "1.8172265614357428", "1667952011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8338", "0.049455695302120156", "3.5937576985237287", "1667952011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8339", "0.03507004266794401", "1.8176940130378048", "1667955611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8339", "0.049809515312987725", "3.594399945031345", "1667955611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8339", "0.03507004266794401", "1.8176940130378048", "1667955611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8339", "0.049809515312987725", "3.594399945031345", "1667955611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8340", "0.035316338392728054", "1.8181546696427433", "1667959211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8340", "0.050158889694276704", "3.5950332845742046", "1667959211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8340", "0.035316338392728054", "1.8181546696427433", "1667959211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8340", "0.050158889694276704", "3.5950332845742046", "1667959211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8341", "0.03557102561568965", "1.8186312101889113", "1667962811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8341", "0.05052009065023551", "3.5956883151912074", "1667962811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8341", "0.03557102561568965", "1.8186312101889113", "1667962811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8341", "0.05052009065023551", "3.5956883151912074", "1667962811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8342", "0.035616529125418156", "1.8187164997886214", "1667966411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8342", "0.05058457056907976", "3.5958054448723153", "1667966411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8342", "0.035616529125418156", "1.8187164997886214", "1667966411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8342", "0.05058457056907976", "3.5958054448723153", "1667966411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8343", "0.035626118870635576", "1.8187333812109172", "1667970011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8343", "0.050598546769532564", "3.5958293896121956", "1667970011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8343", "0.035626118870635576", "1.8187333812109172", "1667970011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8343", "0.050598546769532564", "3.5958293896121956", "1667970011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8344", "0.03552723964621567", "1.818548153066833", "1667973611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8344", "0.05045839381845911", "3.5955749381151447", "1667973611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8344", "0.03552723964621567", "1.818548153066833", "1667973611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8344", "0.05045839381845911", "3.5955749381151447", "1667973611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8345", "0.03542944953804332", "1.8183648993509152", "1667977211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8345", "0.05031980639894771", "3.595323242455193", "1667977211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8345", "0.03542944953804332", "1.8183648993509152", "1667977211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8345", "0.05031980639894771", "3.595323242455193", "1667977211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8346", "0.035331315888005865", "1.818181018571386", "1667980811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8346", "0.05018072468795471", "3.5950706715800673", "1667980811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8346", "0.035331315888005865", "1.818181018571386", "1667980811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8346", "0.05018072468795471", "3.5950706715800673", "1667980811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8347", "0.03523424560794804", "1.8179992231107949", "1667984411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8347", "0.050043115703150426", "3.5948208980970335", "1667984411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8347", "0.03523424560794804", "1.8179992231107949", "1667984411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8347", "0.050043115703150426", "3.5948208980970335", "1667984411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8348", "0.0351365174832433", "1.8178161600669323", "1667988011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8348", "0.04990458524975936", "3.594569405542069", "1667988011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8348", "0.0351365174832433", "1.8178161600669323", "1667988011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8348", "0.04990458524975936", "3.594569405542069", "1667988011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8349", "0.0350400113255452", "1.8176352259111819", "1667991611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8349", "0.04976784218136455", "3.594320946942113", "1667991611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8349", "0.0350400113255452", "1.8176352259111819", "1667991611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8349", "0.04976784218136455", "3.594320946942113", "1667991611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8350", "0.034940093151948924", "1.8174481532540643", "1667995211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8350", "0.04962617140622373", "3.594063876652958", "1667995211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8350", "0.034940093151948924", "1.8174481532540643", "1667995211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8350", "0.04962617140622373", "3.594063876652958", "1667995211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8351", "0.034843180841800686", "1.8172666186181992", "1667998811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8351", "0.04948879283975315", "3.593814476825637", "1667998811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8351", "0.034843180841800686", "1.8172666186181992", "1667998811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8351", "0.04948879283975315", "3.593814476825637", "1667998811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8352", "0.03474650915408899", "1.8170855310459941", "1668002411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8352", "0.04935175520346712", "3.5935656914991996", "1668002411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8352", "0.03474650915408899", "1.8170855310459941", "1668002411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8352", "0.04935175520346712", "3.5935656914991996", "1668002411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8353", "0.03464994941550958", "1.8169046468121193", "1668006011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8353", "0.049214877056634194", "3.59331718772107", "1668006011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8353", "0.03464994941550958", "1.8169046468121193", "1668006011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8353", "0.049214877056634194", "3.59331718772107", "1668006011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8354", "0.03455336708136289", "1.8167236667008269", "1668009611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8354", "0.049077984384213534", "3.593068587286009", "1668009611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8354", "0.03455336708136289", "1.8167236667008269", "1668009611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8354", "0.049077984384213534", "3.593068587286009", "1668009611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8355", "0.03445689185449752", "1.8165428690901209", "1668013211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8355", "0.04894124850926601", "3.5928202479745965", "1668013211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8355", "0.03445689185449752", "1.8165428690901209", "1668013211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8355", "0.04894124850926601", "3.5928202479745965", "1668013211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8356", "0.03436096335340578", "1.8163631279350816", "1668016811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8356", "0.04880527478368274", "3.592573335368821", "1668016811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8356", "0.03436096335340578", "1.8163631279350816", "1668016811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8356", "0.04880527478368274", "3.592573335368821", "1668016811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8357", "0.03426565723579212", "1.8161846026634056", "1668020411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8357", "0.04867016421909679", "3.5923280562144533", "1668020411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8357", "0.03426565723579212", "1.8161846026634056", "1668020411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8357", "0.04867016421909679", "3.5923280562144533", "1668020411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8358", "0.03413054685236147", "1.8159260963750075", "1668024011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8358", "0.04848054205278256", "3.591976661387808", "1668024011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8358", "0.03413054685236147", "1.8159260963750075", "1668024011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8358", "0.04848054205278256", "3.591976661387808", "1668024011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8359", "0.034038131683839463", "1.8157529258078844", "1668027611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8359", "0.04834954791005324", "3.5917387761254624", "1668027611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8359", "0.034038131683839463", "1.8157529258078844", "1668027611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8359", "0.04834954791005324", "3.5917387761254624", "1668027611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8360", "0.03394366773427452", "1.815575985654844", "1668031211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8360", "0.0482156237332248", "3.5914956620665275", "1668031211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8360", "0.03394366773427452", "1.815575985654844", "1668031211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8360", "0.0482156237332248", "3.5914956620665275", "1668031211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8361", "0.033849519451820555", "1.8153996442975113", "1668034811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8361", "0.048082143033873814", "3.591253363375173", "1668034811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8361", "0.033849519451820555", "1.8153996442975113", "1668034811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8361", "0.048082143033873814", "3.591253363375173", "1668034811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8362", "0.03375567126963119", "1.8152238507830711", "1668038411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8362", "0.04794909147136932", "3.5910118252409724", "1668038411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8362", "0.03375567126963119", "1.8152238507830711", "1668038411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8362", "0.04794909147136932", "3.5910118252409724", "1668038411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8363", "0.03366204437918123", "1.815048486073983", "1668042011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8363", "0.04781634720861128", "3.5907708642195533", "1668042011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8363", "0.03366204437918123", "1.815048486073983", "1668042011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8363", "0.04781634720861128", "3.5907708642195533", "1668042011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8364", "0.03356867715439874", "1.8148736077393102", "1668045611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8364", "0.047683969727172586", "3.5905305693937883", "1668045611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8364", "0.03356867715439874", "1.8148736077393102", "1668045611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8364", "0.047683969727172586", "3.5905305693937883", "1668045611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8365", "0.033475568875254096", "1.814699214430291", "1668049211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8365", "0.047551958017488974", "3.590290938927777", "1668049211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8365", "0.033475568875254096", "1.814699214430291", "1668049211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8365", "0.047551958017488974", "3.590290938927777", "1668049211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8366", "0.03338041475477936", "1.8145206941152872", "1668052811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8366", "0.04741714870903446", "3.590045840978798", "1668052811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8366", "0.03338041475477936", "1.8145206941152872", "1668052811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8366", "0.04741714870903446", "3.590045840978798", "1668052811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8367", "0.03328484442177867", "1.814341557139533", "1668056411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8367", "0.047281690178491625", "3.5897997800278443", "1668056411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8367", "0.03328484442177867", "1.814341557139533", "1668056411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8367", "0.047281690178491625", "3.5897997800278443", "1668056411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8368", "0.03319015516848502", "1.814164154268521", "1668060011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8368", "0.04714744981118866", "3.5895560413725245", "1668060011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8368", "0.03319015516848502", "1.814164154268521", "1668060011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8368", "0.04714744981118866", "3.5895560413725245", "1668060011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8369", "0.03308893917653", "1.8139731860567228", "1668063611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8369", "0.04700442827996443", "3.589294593466385", "1668063611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8369", "0.03308893917653", "1.8139731860567228", "1668063611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8369", "0.04700442827996443", "3.589294593466385", "1668063611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8370", "0.0329947477684343", "1.8137967154140053", "1668067211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8370", "0.04687089097736822", "3.5890521315019925", "1668067211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8370", "0.0329947477684343", "1.8137967154140053", "1668067211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8370", "0.04687089097736822", "3.5890521315019925", "1668067211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8371", "0.03290152573692548", "1.8136221144936344", "1668070811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8371", "0.04673870765619928", "3.588812199056128", "1668070811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8371", "0.03290152573692548", "1.8136221144936344", "1668070811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8371", "0.04673870765619928", "3.588812199056128", "1668070811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8372", "0.032810267913394045", "1.8134511924677759", "1668074411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8372", "0.04660930814094138", "3.588577320023693", "1668074411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8372", "0.032810267913394045", "1.8134511924677759", "1668074411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8372", "0.04660930814094138", "3.588577320023693", "1668074411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8373", "0.032719263185377254", "1.813280744494911", "1668078011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8373", "0.04648026619854947", "3.5883430904229847", "1668078011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8373", "0.032719263185377254", "1.813280744494911", "1668078011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8373", "0.04648026619854947", "3.5883430904229847", "1668078011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8374", "0.03262850346912738", "1.8131107544144671", "1668081611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8374", "0.04635157073802569", "3.5881094887725666", "1668081611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8374", "0.03262850346912738", "1.8131107544144671", "1668081611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8374", "0.04635157073802569", "3.5881094887725666", "1668081611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8375", "0.032537366929633854", "1.8129399806799353", "1668085211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8375", "0.0462223672073831", "3.587874862444439", "1668085211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8375", "0.032537366929633854", "1.8129399806799353", "1668085211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8375", "0.0462223672073831", "3.587874862444439", "1668085211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8376", "0.03244708398672297", "1.8127708801555416", "1668088811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8376", "0.04609434644248448", "3.587642481665167", "1668088811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8376", "0.03244708398672297", "1.8127708801555416", "1668088811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8376", "0.04609434644248448", "3.587642481665167", "1668088811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8377", "0.03236150659487608", "1.8126105762405085", "1668092411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8377", "0.045973002932006034", "3.5874221993011175", "1668092411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8377", "0.03236150659487608", "1.8126105762405085", "1668092411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8377", "0.045973002932006034", "3.5874221993011175", "1668092411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8378", "0.032271746477679684", "1.8124424597372562", "1668096011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8378", "0.04584571937401916", "3.587191163668616", "1668096011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8378", "0.032271746477679684", "1.8124424597372562", "1668096011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8378", "0.04584571937401916", "3.587191163668616", "1668096011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8379", "0.03218030432264925", "1.812271192871636", "1668099611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8379", "0.045716049312271766", "3.5869557966168437", "1668099611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8379", "0.03218030432264925", "1.812271192871636", "1668099611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8379", "0.045716049312271766", "3.5869557966168437", "1668099611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8380", "0.03210669911499321", "1.812128564446363", "1668103211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8380", "0.04561335938393395", "3.5867631049911175", "1668103211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8380", "0.03210669911499321", "1.812128564446363", "1668103211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8380", "0.04561335938393395", "3.5867631049911175", "1668103211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8381", "0.03235989080389455", "1.812602170249609", "1668106811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8381", "0.04597261505197883", "3.5874143922892374", "1668106811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8381", "0.03235989080389455", "1.812602170249609", "1668106811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8381", "0.04597261505197883", "3.5874143922892374", "1668106811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8382", "0.03254934865501654", "1.8129567427287168", "1668110411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8382", "0.04624136679434679", "3.587901850867317", "1668110411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8382", "0.03254934865501654", "1.8129567427287168", "1668110411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8382", "0.04624136679434679", "3.587901850867317", "1668110411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8383", "0.03251948783194062", "1.8129009698648626", "1668114011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8383", "0.04619896905413522", "3.5878250980963626", "1668114011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8383", "0.03251948783194062", "1.8129009698648626", "1668114011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8383", "0.04619896905413522", "3.5878250980963626", "1668114011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8384", "0.032615310113373895", "1.8130799198519878", "1668117611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8384", "0.0463350295133999", "3.588071378503281", "1668117611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8384", "0.032615310113373895", "1.8130799198519878", "1668117611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8384", "0.0463350295133999", "3.588071378503281", "1668117611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8385", "0.032853688020198966", "1.8135261032668413", "1668121211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8385", "0.04667314542239085", "3.5886847264495154", "1668121211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8385", "0.032853688020198966", "1.8135261032668413", "1668121211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8385", "0.04667314542239085", "3.5886847264495154", "1668121211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8386", "0.032938869759110014", "1.8136779856554102", "1668124811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8386", "0.046796638643353226", "3.5888987708896662", "1668124811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8386", "0.032938869759110014", "1.8136779856554102", "1668124811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8386", "0.046796638643353226", "3.5888987708896662", "1668124811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8387", "0.033082100124222906", "1.8139454837570639", "1668128411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8387", "0.04700000073075564", "3.589266891940453", "1668128411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8387", "0.033082100124222906", "1.8139454837570639", "1668128411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8387", "0.04700000073075564", "3.589266891940453", "1668128411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8388", "0.03322943716915628", "1.8142213236740583", "1668132011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8388", "0.04720895246720193", "3.5896460185881027", "1668132011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8388", "0.03322943716915628", "1.8142213236740583", "1668132011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8388", "0.04720895246720193", "3.5896460185881027", "1668132011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8389", "0.033329107211943654", "1.8144051176559925", "1668135611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8389", "0.047351293865037274", "3.589900582698225", "1668135611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8389", "0.033329107211943654", "1.8144051176559925", "1668135611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8389", "0.047351293865037274", "3.589900582698225", "1668135611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8390", "0.03325819401412031", "1.8142720647196295", "1668139211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8390", "0.047250830161337", "3.5897179139311732", "1668139211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8390", "0.03325819401412031", "1.8142720647196295", "1668139211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8390", "0.047250830161337", "3.5897179139311732", "1668139211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8391", "0.03348090020697554", "1.8146888393583849", "1668142811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8391", "0.04756672201511223", "3.5902908539317857", "1668142811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8391", "0.03348090020697554", "1.8146888393583849", "1668142811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8391", "0.04756672201511223", "3.5902908539317857", "1668142811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8392", "0.03370747147043815", "1.8151128695867866", "1668146411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8392", "0.047888080278713385", "3.590873740350253", "1668146411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8392", "0.03370747147043815", "1.8151128695867866", "1668146411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8392", "0.047888080278713385", "3.590873740350253", "1668146411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8393", "0.03361169501506385", "1.814933438552899", "1668150011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8393", "0.04775230160998621", "3.590627218279619", "1668150011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8393", "0.03361169501506385", "1.814933438552899", "1668150011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8393", "0.04775230160998621", "3.590627218279619", "1668150011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8394", "0.03351688093250419", "1.8147559081095648", "1668153611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8394", "0.047617851301258146", "3.590383237368681", "1668153611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8394", "0.03351688093250419", "1.8147559081095648", "1668153611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8394", "0.047617851301258146", "3.590383237368681", "1668153611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8395", "0.03341948358695679", "1.8145731560623821", "1668157211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8395", "0.047479872436330575", "3.59013234579556", "1668157211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8395", "0.03341948358695679", "1.8145731560623821", "1668157211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8395", "0.047479872436330575", "3.59013234579556", "1668157211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8396", "0.033325739030427806", "1.81439762931402", "1668160811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8396", "0.04734693555202277", "3.5898911134764537", "1668160811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8396", "0.033325739030427806", "1.81439762931402", "1668160811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8396", "0.04734693555202277", "3.5898911134764537", "1668160811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8397", "0.03323173055933054", "1.8142216084336984", "1668164411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8397", "0.04721362302845393", "3.5896491999211704", "1668164411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8397", "0.03323173055933054", "1.8142216084336984", "1668164411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8397", "0.04721362302845393", "3.5896491999211704", "1668164411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8398", "0.03313797836376545", "1.8140460674221515", "1668168011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8398", "0.0470806725419959", "3.5894079437430837", "1668168011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8398", "0.03313797836376545", "1.8140460674221515", "1668168011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8398", "0.0470806725419959", "3.5894079437430837", "1668168011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8399", "0.033044532423302596", "1.8138710998606289", "1668171611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8399", "0.04694815498126804", "3.5891674735752805", "1668171611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8399", "0.033044532423302596", "1.8138710998606289", "1668171611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8399", "0.04694815498126804", "3.5891674735752805", "1668171611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8400", "0.03295272314449297", "1.813699177367808", "1668175211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8400", "0.046817963935620335", "3.588931199916485", "1668175211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8400", "0.03295272314449297", "1.813699177367808", "1668175211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8400", "0.046817963935620335", "3.588931199916485", "1668175211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8401", "0.032868156302743874", "1.8135404141458167", "1668178811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8401", "0.04669818444892238", "3.5887132896040943", "1668178811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8401", "0.032868156302743874", "1.8135404141458167", "1668178811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8401", "0.04669818444892238", "3.5887132896040943", "1668178811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8402", "0.03277416515200999", "1.8133644270396014", "1668182411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8402", "0.04656488927439453", "3.5884714111879044", "1668182411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8402", "0.03277416515200999", "1.8133644270396014", "1668182411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8402", "0.04656488927439453", "3.5884714111879044", "1668182411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8403", "0.03268152482191452", "1.8131909692020725", "1668186011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8403", "0.046433508428776984", "3.5882330069322035", "1668186011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8403", "0.03268152482191452", "1.8131909692020725", "1668186011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8403", "0.046433508428776984", "3.5882330069322035", "1668186011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8404", "0.032551233331637924", "1.8129454130136207", "1668189611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8404", "0.046249295326514915", "3.587896619425376", "1668189611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8404", "0.032551233331637924", "1.8129454130136207", "1668189611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8404", "0.046249295326514915", "3.587896619425376", "1668189611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8405", "0.032456973224662296", "1.8127689152550348", "1668193211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8405", "0.04611561652850888", "3.587654036858741", "1668193211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8405", "0.032456973224662296", "1.8127689152550348", "1668193211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8405", "0.04611561652850888", "3.587654036858741", "1668193211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8406", "0.03236794013636568", "1.8126014897567262", "1668196811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8406", "0.045989602224664757", "3.5874244188394604", "1668196811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8406", "0.03236794013636568", "1.8126014897567262", "1668196811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8406", "0.045989602224664757", "3.5874244188394604", "1668196811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8407", "0.03259505444721107", "1.8130266585652104", "1668200411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8407", "0.04631172710275453", "3.5880088461437305", "1668200411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8407", "0.03259505444721107", "1.8130266585652104", "1668200411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8407", "0.04631172710275453", "3.5880088461437305", "1668200411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8408", "0.0328269780274187", "1.8134607522542647", "1668204011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8408", "0.04664069250873121", "3.588605583078711", "1668204011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8408", "0.0328269780274187", "1.8134607522542647", "1668204011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8408", "0.04664069250873121", "3.588605583078711", "1668204011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8409", "0.03305400981587686", "1.8138857179052184", "1668207611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8409", "0.046962701246156924", "3.5891897399694517", "1668207611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8409", "0.03305400981587686", "1.8138857179052184", "1668207611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8409", "0.046962701246156924", "3.5891897399694517", "1668207611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8410", "0.03322522605697235", "1.8141977570323833", "1668211211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8410", "0.04720852712159084", "3.5896245384168335", "1668211211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8410", "0.03322522605697235", "1.8141977570323833", "1668211211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8410", "0.04720852712159084", "3.5896245384168335", "1668211211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8411", "0.03348122619283805", "1.8146767172377374", "1668214811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8411", "0.04757168768886422", "3.5902830507710073", "1668214811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8411", "0.03348122619283805", "1.8146767172377374", "1668214811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8411", "0.04757168768886422", "3.5902830507710073", "1668214811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8412", "0.033733928519115025", "1.8151496882872498", "1668218411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8412", "0.04793009600551787", "3.590933187509017", "1668218411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8412", "0.033733928519115025", "1.8151496882872498", "1668218411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8412", "0.04793009600551787", "3.590933187509017", "1668218411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8413", "0.03398952077295142", "1.8156275801829378", "1668222011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8413", "0.04829276558790892", "3.5915904123324656", "1668222011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8413", "0.03398952077295142", "1.8156275801829378", "1668222011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8413", "0.04829276558790892", "3.5915904123324656", "1668222011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8414", "0.03425063975024221", "1.816116187136858", "1668225611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8414", "0.0486631317936132", "3.5922620913206935", "1668225611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8414", "0.03425063975024221", "1.816116187136858", "1668225611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8414", "0.0486631317936132", "3.5922620913206935", "1668225611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8415", "0.03447429781210101", "1.8165317720534957", "1668229211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8415", "0.048981390277513595", "3.592835410567401", "1668229211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8415", "0.03447429781210101", "1.8165317720534957", "1668229211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8415", "0.048981390277513595", "3.592835410567401", "1668229211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8416", "0.034715114547574234", "1.816982471136092", "1668232811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8416", "0.049322913469885835", "3.5934548941756104", "1668232811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8416", "0.034715114547574234", "1.816982471136092", "1668232811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8416", "0.049322913469885835", "3.5934548941756104", "1668232811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8417", "0.03462004757491196", "1.8168044081617356", "1668236411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8417", "0.04918814165586902", "3.5932102472351826", "1668236411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8417", "0.03462004757491196", "1.8168044081617356", "1668236411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8417", "0.04918814165586902", "3.5932102472351826", "1668236411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8418", "0.03452368472349354", "1.8166239790980652", "1668240011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8418", "0.04905150967448513", "3.592962304741602", "1668240011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8418", "0.03452368472349354", "1.8166239790980652", "1668240011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8418", "0.04905150967448513", "3.592962304741602", "1668240011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8419", "0.034422418431621325", "1.8164336607616984", "1668243611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8419", "0.04890817402962369", "3.592701262478854", "1668243611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8419", "0.034422418431621325", "1.8164336607616984", "1668243611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8419", "0.04890817402962369", "3.592701262478854", "1668243611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8420", "0.0343237985430205", "1.8162486404176972", "1668247211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8420", "0.04876846790890994", "3.5924472599022614", "1668247211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8420", "0.0343237985430205", "1.8162486404176972", "1668247211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8420", "0.04876846790890994", "3.5924472599022614", "1668247211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8421", "0.034228599601458964", "1.8160704389726365", "1668250811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8421", "0.04863346472242976", "3.592202338190479", "1668250811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8421", "0.034228599601458964", "1.8160704389726365", "1668250811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8421", "0.04863346472242976", "3.592202338190479", "1668250811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8422", "0.034133664665000826", "1.8158927317382467", "1668254411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8422", "0.04849883450714705", "3.5919580935457702", "1668254411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8422", "0.034133664665000826", "1.8158927317382467", "1668254411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8422", "0.04849883450714705", "3.5919580935457702", "1668254411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8423", "0.03403899300169527", "1.815715517344207", "1668258011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8423", "0.048364576236739995", "3.591714524102702", "1668258011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8423", "0.03403899300169527", "1.815715517344207", "1668258011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8423", "0.048364576236739995", "3.591714524102702", "1668258011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8424", "0.033888585258528475", "1.8154263593926612", "1668261611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8424", "0.04815396460199032", "3.5913223829875327", "1668261611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8424", "0.033888585258528475", "1.8154263593926612", "1668261611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8424", "0.04815396460199032", "3.5913223829875327", "1668261611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8425", "0.033812016262573776", "1.8152804836991974", "1668265211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8425", "0.04804627621246634", "3.5911236523801677", "1668265211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8425", "0.033812016262573776", "1.8152804836991974", "1668265211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8425", "0.04804627621246634", "3.5911236523801677", "1668265211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8426", "0.03406677592054579", "1.8157561186473086", "1668268811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8426", "0.048408009173876915", "3.5917782563541976", "1668268811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8426", "0.03406677592054579", "1.8157561186473086", "1668268811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8426", "0.048408009173876915", "3.5917782563541976", "1668268811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8427", "0.03433133460980541", "1.8162512255090328", "1668272411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8427", "0.04878322891486072", "3.5924588223830196", "1668272411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8427", "0.03433133460980541", "1.8162512255090328", "1668272411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8427", "0.04878322891486072", "3.5924588223830196", "1668272411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8428", "0.034572616307481666", "1.8167012884447955", "1668276011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8428", "0.04912594980062385", "3.593078487586561", "1668276011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8428", "0.034572616307481666", "1.8167012884447955", "1668276011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8428", "0.04912594980062385", "3.593078487586561", "1668276011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8429", "0.03481811081697811", "1.817160642622995", "1668279611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8429", "0.049474138670082136", "3.5937099316711745", "1668279611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8429", "0.03481811081697811", "1.817160642622995", "1668279611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8429", "0.049474138670082136", "3.5937099316711745", "1668279611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8430", "0.035063600913823476", "1.8176199388056504", "1668283211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8430", "0.0498223294649636", "3.5943413161918474", "1668283211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8430", "0.035063600913823476", "1.8176199388056504", "1668283211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8430", "0.0498223294649636", "3.5943413161918474", "1668283211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8431", "0.03529741768186444", "1.818056830656336", "1668286811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8431", "0.050154154202893333", "3.5949422809459257", "1668286811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8431", "0.03529741768186444", "1.818056830656336", "1668286811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8431", "0.050154154202893333", "3.5949422809459257", "1668286811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8432", "0.03519030788979835", "1.8178556232532357", "1668290411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8432", "0.05000252720386043", "3.5946662577469937", "1668290411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8432", "0.03519030788979835", "1.8178556232532357", "1668290411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8432", "0.05000252720386043", "3.5946662577469937", "1668290411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8433", "0.0352640895117328", "1.8179927899100992", "1668294011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8433", "0.050107481112537815", "3.5948554204559815", "1668294011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8433", "0.0352640895117328", "1.8179927899100992", "1668294011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8433", "0.050107481112537815", "3.5948554204559815", "1668294011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8434", "0.03515410627347465", "1.8177862664419284", "1668297611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8434", "0.04995175686235042", "3.5945720468814044", "1668297611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8434", "0.03515410627347465", "1.8177862664419284", "1668297611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8434", "0.04995175686235042", "3.5945720468814044", "1668297611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8435", "0.035052558974008684", "1.817595696014791", "1668301211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8435", "0.049807935590373345", "3.594310482304483", "1668301211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8435", "0.035052558974008684", "1.817595696014791", "1668301211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8435", "0.049807935590373345", "3.594310482304483", "1668301211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8436", "0.03495929492612404", "1.8174202401781703", "1668304811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8436", "0.04967599657928698", "3.5940699590316876", "1668304811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8436", "0.03495929492612404", "1.8174202401781703", "1668304811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8436", "0.04967599657928698", "3.5940699590316876", "1668304811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8437", "0.035182357147075856", "1.8178376710326274", "1668308411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8437", "0.04999233851855793", "3.5946437188846794", "1668308411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8437", "0.035182357147075856", "1.8178376710326274", "1668308411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8437", "0.04999233851855793", "3.5946437188846794", "1668308411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8438", "0.03540343512326963", "1.8182512221140172", "1668312011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8438", "0.050305917667658524", "3.5952122499735473", "1668312011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8438", "0.03540343512326963", "1.8182512221140172", "1668312011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8438", "0.050305917667658524", "3.5952122499735473", "1668312011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8439", "0.03564108918169573", "1.8186955374817901", "1668315611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8439", "0.05064308597165815", "3.5958232304281434", "1668315611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8439", "0.03564108918169573", "1.8186955374817901", "1668315611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8439", "0.05064308597165815", "3.5958232304281434", "1668315611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8440", "0.035866697526830804", "1.8191172462352534", "1668319211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8440", "0.050963186901306204", "3.596403171830195", "1668319211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8440", "0.035866697526830804", "1.8191172462352534", "1668319211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8440", "0.050963186901306204", "3.596403171830195", "1668319211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8441", "0.036097012075470135", "1.8195481092482966", "1668322811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8441", "0.05128983059779949", "3.5969954411129805", "1668322811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8441", "0.036097012075470135", "1.8195481092482966", "1668322811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8441", "0.05128983059779949", "3.5969954411129805", "1668322811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8442", "0.03632678390414471", "1.8199780778528418", "1668326423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8442", "0.051615653591292825", "3.597586384243647", "1668326423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8442", "0.03632678390414471", "1.8199780778528418", "1668326423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8442", "0.051615653591292825", "3.597586384243647", "1668326423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8443", "0.03656197541325019", "1.8204182382090255", "1668330011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8443", "0.05194913564452889", "3.5981912869612276", "1668330011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8443", "0.03656197541325019", "1.8204182382090255", "1668330011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8443", "0.05194913564452889", "3.5981912869612276", "1668330011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8444", "0.03679799458946097", "1.8208599085322292", "1668333611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8444", "0.052283796392866594", "3.598798278611658", "1668333611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8444", "0.03679799458946097", "1.8208599085322292", "1668333611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8444", "0.052283796392866594", "3.598798278611658", "1668333611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8445", "0.03703276791373934", "1.821299109747582", "1668337211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8445", "0.052616730703103055", "3.599401959467498", "1668337211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8445", "0.03703276791373934", "1.821299109747582", "1668337211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8445", "0.052616730703103055", "3.599401959467498", "1668337211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8446", "0.03726796843286124", "1.8217391791706434", "1668340811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8446", "0.05295023779737806", "3.6000067724694693", "1668340811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8446", "0.03726796843286124", "1.8217391791706434", "1668340811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8446", "0.05295023779737806", "3.6000067724694693", "1668340811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8447", "0.03750334405581595", "1.8221796133318349", "1668344411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8447", "0.05328397143217721", "3.6006120477217305", "1668344411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8447", "0.03750334405581595", "1.8221796133318349", "1668344411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8447", "0.05328397143217721", "3.6006120477217305", "1668344411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8448", "0.03772207456887867", "1.822588934561649", "1668348011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8448", "0.05359408482134974", "3.601174530371965", "1668348011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8448", "0.03772207456887867", "1.822588934561649", "1668348011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8448", "0.05359408482134974", "3.601174530371965", "1668348011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8449", "0.03792758168070058", "1.8229732257107572", "1668351611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8449", "0.053885544112442695", "3.601702804465192", "1668351611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8449", "0.03792758168070058", "1.8229732257107572", "1668351611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8449", "0.053885544112442695", "3.601702804465192", "1668351611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8450", "0.03813226726293259", "1.823355483104539", "1668355211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8450", "0.054176007806668126", "3.602228618982415", "1668355211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8450", "0.03813226726293259", "1.823355483104539", "1668355211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8450", "0.054176007806668126", "3.602228618982415", "1668355211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8451", "0.038343442293569965", "1.8237501640852716", "1668358811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8451", "0.054475566005196104", "3.6027713003352075", "1668358811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8451", "0.038343442293569965", "1.8237501640852716", "1668358811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8451", "0.054475566005196104", "3.6027713003352075", "1668358811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8452", "0.0385461603440686", "1.8241290657567941", "1668362411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8452", "0.05476311180599661", "3.6032922568573555", "1668362411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8452", "0.0385461603440686", "1.8241290657567941", "1668362411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8452", "0.05476311180599661", "3.6032922568573555", "1668362411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8453", "0.03876028407095909", "1.824529618798503", "1668366011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8453", "0.05506671125356798", "3.6038427397306485", "1668366011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8453", "0.03876028407095909", "1.824529618798503", "1668366011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8453", "0.05506671125356798", "3.6038427397306485", "1668366011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8454", "0.03897518188969507", "1.8249317559290201", "1668369611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8454", "0.0553713529551241", "3.604395294027554", "1668369611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8454", "0.03897518188969507", "1.8249317559290201", "1668369611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8454", "0.0553713529551241", "3.604395294027554", "1668369611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8455", "0.03921876485728544", "1.8253872537703162", "1668373211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8455", "0.0557167628210626", "3.60502137587656", "1668373211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8455", "0.03921876485728544", "1.8253872537703162", "1668373211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8455", "0.0557167628210626", "3.60502137587656", "1668373211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8456", "0.039354210327299445", "1.8256319781892214", "1668376811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8456", "0.05591185439478334", "3.6053636967713865", "1668376811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8456", "0.039354210327299445", "1.8256319781892214", "1668376811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8456", "0.05591185439478334", "3.6053636967713865", "1668376811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8457", "0.03953825663381095", "1.8259759877320965", "1668380411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8457", "0.056172884163701496", "3.6058366309729637", "1668380411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8457", "0.03953825663381095", "1.8259759877320965", "1668380411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8457", "0.056172884163701496", "3.6058366309729637", "1668380411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8458", "0.03972250559702682", "1.8263204153452395", "1668384011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8458", "0.056434182198389915", "3.6063101045339354", "1668384011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8458", "0.03972250559702682", "1.8263204153452395", "1668384011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8458", "0.056434182198389915", "3.6063101045339354", "1668384011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8459", "0.039894850694678255", "1.8266421685890013", "1668387611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8459", "0.05667874293730629", "3.6067526945286574", "1668387611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8459", "0.039894850694678255", "1.8266421685890013", "1668387611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8459", "0.05667874293730629", "3.6067526945286574", "1668387611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8460", "0.03992711877969689", "1.8267031427786358", "1668391211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8460", "0.056724272144431265", "3.6068360569065234", "1668391211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8460", "0.03992711877969689", "1.8267031427786358", "1668391211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8460", "0.056724272144431265", "3.6068360569065234", "1668391211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8461", "0.03981721946578588", "1.8264975155455094", "1668394811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8461", "0.05656848513808838", "3.606553523408521", "1668394811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8461", "0.03981721946578588", "1.8264975155455094", "1668394811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8461", "0.05656848513808838", "3.606553523408521", "1668394811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8462", "0.03969551862617845", "1.826268375975305", "1668398411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8462", "0.05639647326217382", "3.6062396751280663", "1668398411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8462", "0.03969551862617845", "1.826268375975305", "1668398411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8462", "0.05639647326217382", "3.6062396751280663", "1668398411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8463", "0.03958360681004314", "1.8260585969982135", "1668402011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8463", "0.05623796608145883", "3.6059516993132497", "1668402011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8463", "0.03958360681004314", "1.8260585969982135", "1668402011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8463", "0.05623796608145883", "3.6059516993132497", "1668402011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8464", "0.03945977788047278", "1.8258253685982222", "1668405611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8464", "0.056062970798418967", "3.605632300148212", "1668405611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8464", "0.03945977788047278", "1.8258253685982222", "1668405611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8464", "0.056062970798418967", "3.605632300148212", "1668405611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8465", "0.039351520535374766", "1.8256228321105654", "1668409211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8465", "0.05590949691007608", "3.60535398835695", "1668409211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8465", "0.039351520535374766", "1.8256228321105654", "1668409211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8465", "0.05590949691007608", "3.60535398835695", "1668409211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8466", "0.039240578505395446", "1.825415015389312", "1668412811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8466", "0.05575230623817992", "3.605068596904247", "1668412811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8466", "0.039240578505395446", "1.825415015389312", "1668412811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8466", "0.05575230623817992", "3.605068596904247", "1668412811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8467", "0.03913009246622913", "1.8252080832196944", "1668416411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8467", "0.05559574898734764", "3.6047843961682355", "1668416411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8467", "0.03913009246622913", "1.8252080832196944", "1668416411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8467", "0.05559574898734764", "3.6047843961682355", "1668416411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8468", "0.039021241355724975", "1.8250043896785166", "1668420011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8468", "0.05544144408909023", "3.604504517960402", "1668420011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8468", "0.039021241355724975", "1.8250043896785166", "1668420011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8468", "0.05544144408909023", "3.604504517960402", "1668420011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8469", "0.03891081520127201", "1.8247974748082376", "1668423611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8469", "0.05528500148464324", "3.60422040104071", "1668423611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8469", "0.03891081520127201", "1.8247974748082376", "1668423611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8469", "0.05528500148464324", "3.60422040104071", "1668423611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8470", "0.038802725192986616", "1.824595221348214", "1668427211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8470", "0.055131766226167396", "3.603942484879295", "1668427211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8470", "0.038802725192986616", "1.824595221348214", "1668427211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8470", "0.055131766226167396", "3.603942484879295", "1668427211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8471", "0.03868002834894117", "1.8243628404886516", "1668430811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8471", "0.05495881022297554", "3.6036251097025818", "1668430811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8471", "0.03868002834894117", "1.8243628404886516", "1668430811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8471", "0.05495881022297554", "3.6036251097025818", "1668430811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8472", "0.03863968413912078", "1.824285674413975", "1668434411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8472", "0.05490220722890839", "3.603520238075294", "1668434411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8472", "0.03863968413912078", "1.824285674413975", "1668434411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8472", "0.05490220722890839", "3.603520238075294", "1668434411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8473", "0.03861073908607495", "1.8242313874098155", "1668438011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8473", "0.054861216484035955", "3.603445728452242", "1668438011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8473", "0.03861073908607495", "1.8242313874098155", "1668438011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8473", "0.054861216484035955", "3.603445728452242", "1668438011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8474", "0.03855955128653452", "1.8241340158328354", "1668441611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8474", "0.05478921003465927", "3.603313032150941", "1668441611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8474", "0.03855955128653452", "1.8241340158328354", "1668441611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8474", "0.05478921003465927", "3.603313032150941", "1668441611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8475", "0.038762480560821114", "1.824513503962848", "1668445211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8475", "0.055076981205910085", "3.603834651958872", "1668445211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8475", "0.038762480560821114", "1.824513503962848", "1668445211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8475", "0.055076981205910085", "3.603834651958872", "1668445211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8476", "0.03896131233829036", "1.8248847518076596", "1668448811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8476", "0.05535913995426716", "3.6043453372870924", "1668448811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8476", "0.03896131233829036", "1.8248847518076596", "1668448811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8476", "0.05535913995426716", "3.6043453372870924", "1668448811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8477", "0.039161911173895066", "1.8252588051985992", "1668452411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8477", "0.055643974795343165", "3.60486021616485", "1668452411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8477", "0.039161911173895066", "1.8252588051985992", "1668452411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8477", "0.055643974795343165", "3.60486021616485", "1668452411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8478", "0.039389652098978906", "1.8256833674226907", "1668456011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8478", "0.05596737806544744", "3.6054446796504314", "1668456011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8478", "0.039389652098978906", "1.8256833674226907", "1668456011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8478", "0.05596737806544744", "3.6054446796504314", "1668456011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8479", "0.039628418715698124", "1.8261300124704465", "1668459611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8479", "0.056305889050909115", "3.606058464171118", "1668459611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8479", "0.039628418715698124", "1.8261300124704465", "1668459611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8479", "0.056305889050909115", "3.606058464171118", "1668459611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8480", "0.039819497687721084", "1.826487463115457", "1668463211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8480", "0.056576780423550584", "3.6065496588247115", "1668463211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8480", "0.039819497687721084", "1.826487463115457", "1668463211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8480", "0.056576780423550584", "3.6065496588247115", "1668463211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8481", "0.040036967749461215", "1.8268940592699148", "1668466811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8481", "0.056885158698165766", "3.607108532513661", "1668466811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8481", "0.040036967749461215", "1.8268940592699148", "1668466811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8481", "0.056885158698165766", "3.607108532513661", "1668466811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8482", "0.04025530138751191", "1.8273023959602435", "1668470411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8482", "0.05719470960918979", "3.607669699736537", "1668470411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8482", "0.04025530138751191", "1.8273023959602435", "1668470411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8482", "0.05719470960918979", "3.607669699736537", "1668470411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8483", "0.04041762445084786", "1.8276059960687447", "1668474011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8483", "0.05742483866106286", "3.608086911032925", "1668474011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8483", "0.04041762445084786", "1.8276059960687447", "1668474011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8483", "0.05742483866106286", "3.608086911032925", "1668474011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8484", "0.040655609226289795", "1.828051020593506", "1668477611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8484", "0.05776225915944634", "3.6086985202227426", "1668477611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8484", "0.040655609226289795", "1.828051020593506", "1668477611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8484", "0.05776225915944634", "3.6086985202227426", "1668477611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8485", "0.04089503232947483", "1.8284987075341252", "1668481211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8485", "0.058101719728794736", "3.6093137937815847", "1668481211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8485", "0.04089503232947483", "1.8284987075341252", "1668481211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8485", "0.058101719728794736", "3.6093137937815847", "1668481211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8486", "0.04113835171597748", "1.8289538670558048", "1668484811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8486", "0.05844662923725391", "3.6099391931725786", "1668484811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8486", "0.04113835171597748", "1.8289538670558048", "1668484811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8486", "0.05844662923725391", "3.6099391931725786", "1668484811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8487", "0.041381134547812365", "1.8294079436409367", "1668488411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8487", "0.058790797072009036", "3.6105631456262635", "1668488411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8487", "0.041381134547812365", "1.8294079436409367", "1668488411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8487", "0.058790797072009036", "3.6105631456262635", "1668488411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8488", "0.04159189373039845", "1.8297997736276848", "1668492011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8488", "0.05909039377080992", "3.6111031883059304", "1668492011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8488", "0.04159189373039845", "1.8297997736276848", "1668492011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8488", "0.05909039377080992", "3.6111031883059304", "1668492011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8489", "0.041548666321766695", "1.8297187193826254", "1668495611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8489", "0.05902918979734705", "3.610991957011198", "1668495611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8489", "0.041548666321766695", "1.8297187193826254", "1668495611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8489", "0.05902918979734705", "3.610991957011198", "1668495611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8490", "0.04141687994653676", "1.8294698188013245", "1668499211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8490", "0.05884323130827152", "3.6106516287182844", "1668499211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8490", "0.04141687994653676", "1.8294698188013245", "1668499211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8490", "0.05884323130827152", "3.6106516287182844", "1668499211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8491", "0.041307404926913184", "1.8292650025875312", "1668502811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8491", "0.0586880647584898", "3.61037023595179", "1668502811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8491", "0.041307404926913184", "1.8292650025875312", "1668502811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8491", "0.0586880647584898", "3.61037023595179", "1668502811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8492", "0.04126751474745116", "1.829190364913556", "1668506411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8492", "0.05863152777771559", "3.6102676971941303", "1668506411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8492", "0.04126751474745116", "1.829190364913556", "1668506411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8492", "0.05863152777771559", "3.6102676971941303", "1668506411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8493", "0.04122822622224758", "1.8291168733724006", "1668510011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8493", "0.05857583607340466", "3.6101667184837587", "1668510011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8493", "0.04122822622224758", "1.8291168733724006", "1668510011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8493", "0.05857583607340466", "3.6101667184837587", "1668510011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8494", "0.0411788254994649", "1.8290230576245587", "1668513611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8494", "0.0585063084859352", "3.610038792168768", "1668513611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8494", "0.0411788254994649", "1.8290230576245587", "1668513611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8494", "0.0585063084859352", "3.610038792168768", "1668513611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8495", "0.0411374559358529", "1.8289456747853956", "1668517211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8495", "0.058447665817793044", "3.609932464869273", "1668517211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8495", "0.0411374559358529", "1.8289456747853956", "1668517211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8495", "0.058447665817793044", "3.609932464869273", "1668517211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8496", "0.0410968590051758", "1.8288696447162025", "1668520811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8496", "0.058390150843711526", "3.609828060173922", "1668520811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8496", "0.0410968590051758", "1.8288696447162025", "1668520811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8496", "0.058390150843711526", "3.609828060173922", "1668520811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8497", "0.04106974198010508", "1.8288185038811906", "1668524411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8497", "0.05835185911553681", "3.6097580802339717", "1668524411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8497", "0.04106974198010508", "1.8288185038811906", "1668524411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8497", "0.05835185911553681", "3.6097580802339717", "1668524411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8498", "0.04094404577750387", "1.828582439160933", "1668528011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8498", "0.05817401281730146", "3.6094343704431044", "1668528011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8498", "0.04094404577750387", "1.828582439160933", "1668528011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8498", "0.05817401281730146", "3.6094343704431044", "1668528011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8499", "0.04082892364731391", "1.8283669007930619", "1668531611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8499", "0.05801088925387787", "3.6091383426601373", "1668531611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8499", "0.04082892364731391", "1.8283669007930619", "1668531611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8499", "0.05801088925387787", "3.6091383426601373", "1668531611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8500", "0.040716078153318645", "1.8281557968614641", "1668535211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8500", "0.05785092874195795", "3.6088482828560124", "1668535211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8500", "0.040716078153318645", "1.8281557968614641", "1668535211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8500", "0.05785092874195795", "3.6088482828560124", "1668535211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8501", "0.040593249465594554", "1.827920545926649", "1668538811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8501", "0.05767875027279581", "3.6085288407445066", "1668538811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8501", "0.040593249465594554", "1.827920545926649", "1668538811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8501", "0.05767875027279581", "3.6085288407445066", "1668538811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8502", "0.04068088246259581", "1.8280846868381506", "1668542411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8502", "0.05780290174257908", "3.608754234765257", "1668542411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8502", "0.04068088246259581", "1.8280846868381506", "1668542411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8502", "0.05780290174257908", "3.608754234765257", "1668542411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8503", "0.04061171615589092", "1.8279553445379735", "1668546011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8503", "0.057704838363952835", "3.6085764800824873", "1668546011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8503", "0.04061171615589092", "1.8279553445379735", "1668546011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8503", "0.057704838363952835", "3.6085764800824873", "1668546011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8504", "0.04056220553474234", "1.8278627084893828", "1668549611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8504", "0.057634659964881554", "3.6084492048856913", "1668549611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8504", "0.04056220553474234", "1.8278627084893828", "1668549611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8504", "0.057634659964881554", "3.6084492048856913", "1668549611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8505", "0.04046740262551884", "1.8276853463756406", "1668553211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8505", "0.05750027521056369", "3.6082055085672295", "1668553211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8505", "0.04046740262551884", "1.8276853463756406", "1668553211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8505", "0.05750027521056369", "3.6082055085672295", "1668553211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8506", "0.04035517352264043", "1.8274754383212328", "1668556811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8506", "0.05734116696028311", "3.607917052427039", "1668556811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8506", "0.04035517352264043", "1.8274754383212328", "1668556811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8506", "0.05734116696028311", "3.607917052427039", "1668556811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8507", "0.04048798955578815", "1.8277227910106228", "1668560411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8507", "0.05752983633276363", "3.6082577010764405", "1668560411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8507", "0.04048798955578815", "1.8277227910106228", "1668560411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8507", "0.05752983633276363", "3.6082577010764405", "1668560411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8508", "0.040376766269529935", "1.8275149339879637", "1668564011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8508", "0.05737209432440756", "3.6079719460766517", "1668564011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8508", "0.040376766269529935", "1.8275149339879637", "1668564011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8508", "0.05737209432440756", "3.6079719460766517", "1668564011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8509", "0.040263846769217675", "1.8273034628998563", "1668567611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8509", "0.0572121018116734", "3.6076815282606165", "1668567611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8509", "0.040263846769217675", "1.8273034628998563", "1668567611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8509", "0.0572121018116734", "3.6076815282606165", "1668567611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8510", "0.04014786014875104", "1.827085967957165", "1668571211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8510", "0.05704786050992863", "3.607383028681325", "1668571211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8510", "0.04014786014875104", "1.827085967957165", "1668571211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8510", "0.05704786050992863", "3.607383028681325", "1668571211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8511", "0.04014801191685729", "1.8270835257291536", "1668574811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8511", "0.057049039889630414", "3.607381565459099", "1668574811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8511", "0.04014801191685729", "1.8270835257291536", "1668574811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8511", "0.057049039889630414", "3.607381565459099", "1668574811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8512", "0.040037492434334465", "1.8268768274773033", "1668578411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8512", "0.05689234555359212", "3.607097503271637", "1668578411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8512", "0.040037492434334465", "1.8268768274773033", "1668578411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8512", "0.05689234555359212", "3.607097503271637", "1668578411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8513", "0.04014156263259816", "1.8270714640013224", "1668582011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8513", "0.05703989615776273", "3.6073649892951196", "1668582011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8513", "0.04014156263259816", "1.8270714640013224", "1668582011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8513", "0.05703989615776273", "3.6073649892951196", "1668582011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8514", "0.040315992935977166", "1.8273972243492271", "1668585611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8514", "0.05728736452210556", "3.607812995076257", "1668585611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8514", "0.040315992935977166", "1.8273972243492271", "1668585611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8514", "0.05728736452210556", "3.607812995076257", "1668585611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8515", "0.04049296896172929", "1.8277258581469822", "1668589211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8515", "0.057539105026583874", "3.6082662531728036", "1668589211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8515", "0.04049296896172929", "1.8277258581469822", "1668589211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8515", "0.057539105026583874", "3.6082662531728036", "1668589211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8516", "0.040692888933488644", "1.8280997436322004", "1668592811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8516", "0.057822540511455425", "3.608780063811717", "1668592811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8516", "0.040692888933488644", "1.8280997436322004", "1668592811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8516", "0.057822540511455425", "3.608780063811717", "1668592811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8517", "0.04077702480704304", "1.8282572612256938", "1668596411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8517", "0.05794176216808503", "3.6089964117337274", "1668596411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8517", "0.04077702480704304", "1.8282572612256938", "1668596411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8517", "0.05794176216808503", "3.6089964117337274", "1668596411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8518", "0.04062163089301499", "1.8279525769973535", "1668600011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8518", "0.05772643181028065", "3.6085874714724593", "1668600011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8518", "0.04062163089301499", "1.8279525769973535", "1668600011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8518", "0.05772643181028065", "3.6085874714724593", "1668600011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8519", "0.040569770971761614", "1.8278555437741435", "1668603611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8519", "0.0576529239097863", "3.608454155773049", "1668603611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8519", "0.040569770971761614", "1.8278555437741435", "1668603611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8519", "0.0576529239097863", "3.608454155773049", "1668603611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8520", "0.040517041392673606", "1.8277567475165846", "1668607211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8520", "0.057578230933728096", "3.608318511371556", "1668607211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8520", "0.040517041392673606", "1.8277567475165846", "1668607211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8520", "0.057578230933728096", "3.608318511371556", "1668607211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8521", "0.04040467697644522", "1.8275466450319842", "1668610811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8521", "0.05741891071299125", "3.6080297480952024", "1668610811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8521", "0.04040467697644522", "1.8275466450319842", "1668610811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8521", "0.05741891071299125", "3.6080297480952024", "1668610811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8522", "0.04025217614390092", "1.8272560633165995", "1668614411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8522", "0.057204598356448026", "3.6076341383760226", "1668614411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8522", "0.04025217614390092", "1.8272560633165995", "1668614411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8522", "0.057204598356448026", "3.6076341383760226", "1668614411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8523", "0.0400907121671864", "1.8269542005550043", "1668618011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8523", "0.056975636264946", "3.6072192161249084", "1668618011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8523", "0.0400907121671864", "1.8269542005550043", "1668618011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8523", "0.056975636264946", "3.6072192161249084", "1668618011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8524", "0.039973708906555105", "1.8267353390454246", "1668621611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8524", "0.056809760943950016", "3.6069184615286183", "1668621611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8524", "0.039973708906555105", "1.8267353390454246", "1668621611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8524", "0.056809760943950016", "3.6069184615286183", "1668621611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8525", "0.03985726695664402", "1.8265175167192687", "1668625211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8525", "0.05664468309368091", "3.6066191391961415", "1668625211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8525", "0.03985726695664402", "1.8265175167192687", "1668625211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8525", "0.05664468309368091", "3.6066191391961415", "1668625211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8526", "0.03968107641754423", "1.8261847490816274", "1668628811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8526", "0.05639601929464426", "3.60616406014982", "1668628811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8526", "0.03968107641754423", "1.8261847490816274", "1668628811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8526", "0.05639601929464426", "3.60616406014982", "1668628811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8527", "0.03957031324895999", "1.825975689725827", "1668632411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8527", "0.05623964445480504", "3.6058780612585886", "1668632411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8527", "0.03957031324895999", "1.825975689725827", "1668632411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8527", "0.05623964445480504", "3.6058780612585886", "1668632411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8528", "0.03978471075785843", "1.8263752178271513", "1668636011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8528", "0.05654414279416799", "3.6064281526078354", "1668636011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8528", "0.03978471075785843", "1.8263752178271513", "1668636011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8528", "0.05654414279416799", "3.6064281526078354", "1668636011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8529", "0.03997153047192524", "1.8267239010479637", "1668639611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8529", "0.05680927495913244", "3.6069078491344024", "1668639611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8529", "0.03997153047192524", "1.8267239010479637", "1668639611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8529", "0.05680927495913244", "3.6069078491344024", "1668639611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8530", "0.039910668855318125", "1.8266098045904051", "1668643211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8530", "0.056723079414607566", "3.6067512330423255", "1668643211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8530", "0.039910668855318125", "1.8266098045904051", "1668643211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8530", "0.056723079414607566", "3.6067512330423255", "1668643211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8531", "0.03979370944787883", "1.8263906630485836", "1668646811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8531", "0.05655739083995235", "3.6064503393662255", "1668646811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8531", "0.03979370944787883", "1.8263906630485836", "1668646811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8531", "0.05655739083995235", "3.6064503393662255", "1668646811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8532", "0.039686479001039866", "1.8261901357861048", "1668650411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8532", "0.056405346512164514", "3.6061747344299704", "1668650411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8532", "0.039686479001039866", "1.8261901357861048", "1668650411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8532", "0.056405346512164514", "3.6061747344299704", "1668650411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8533", "0.03957501718025292", "1.825981606616051", "1668654011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8533", "0.056247331983249285", "3.6058881904635505", "1668654011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8533", "0.03957501718025292", "1.825981606616051", "1668654011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8533", "0.056247331983249285", "3.6058881904635505", "1668654011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8534", "0.03944142272138637", "1.8257290669134363", "1668657611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8534", "0.056058858335757446", "3.605542971109017", "1668657611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8534", "0.03944142272138637", "1.8257290669134363", "1668657611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8534", "0.056058858335757446", "3.605542971109017", "1668657611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8535", "0.03932394636867751", "1.8255088824027506", "1668661211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8535", "0.05589245508857575", "3.6052406835334425", "1668661211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8535", "0.03932394636867751", "1.8255088824027506", "1668661211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8535", "0.05589245508857575", "3.6052406835334425", "1668661211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8536", "0.0392093948741221", "1.825294687792944", "1668664811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8536", "0.055730013353091766", "3.604946264928668", "1668664811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8536", "0.0392093948741221", "1.825294687792944", "1668664811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8536", "0.055730013353091766", "3.604946264928668", "1668664811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8537", "0.03909957720858725", "1.8250893644766093", "1668668411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8537", "0.055574275627140346", "3.6046640236490957", "1668668411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8537", "0.03909957720858725", "1.8250893644766093", "1668668411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8537", "0.055574275627140346", "3.6046640236490957", "1668668411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8538", "0.038988055468452035", "1.824880843848727", "1668672011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8538", "0.055416123329146076", "3.6043773921474522", "1668672011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8538", "0.038988055468452035", "1.824880843848727", "1668672011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8538", "0.055416123329146076", "3.6043773921474522", "1668672011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8539", "0.038879233418678966", "1.824677406306", "1668675611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8539", "0.05526178522304927", "3.6040977205276508", "1668675611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8539", "0.038879233418678966", "1.824677406306", "1668675611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8539", "0.05526178522304927", "3.6040977205276508", "1668675611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8540", "0.03876963718330941", "1.8244724070869691", "1668679211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8540", "0.05510638766397126", "3.603815978484458", "1668679211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8540", "0.03876963718330941", "1.8244724070869691", "1668679211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8540", "0.05510638766397126", "3.603815978484458", "1668679211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8541", "0.03866211946210081", "1.8242714143771326", "1668682823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8541", "0.05495389352381911", "3.603539657804411", "1668682823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8541", "0.03866211946210081", "1.8242714143771326", "1668682823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8541", "0.05495389352381911", "3.603539657804411", "1668682823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8542", "0.0385547502978879", "1.8240706372951667", "1668686411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8542", "0.05480163022352705", "3.6032636738696215", "1668686411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8542", "0.0385547502978879", "1.8240706372951667", "1668686411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8542", "0.05480163022352705", "3.6032636738696215", "1668686411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8543", "0.0384471105832542", "1.8238694147432495", "1668690011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8543", "0.05464896009981473", "3.6029870329446463", "1668690011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8543", "0.0384471105832542", "1.8238694147432495", "1668690011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8543", "0.05464896009981473", "3.6029870329446463", "1668690011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8544", "0.03833585749537903", "1.82366143950655", "1668693611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8544", "0.05449116230974881", "3.6027011040130668", "1668693611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8544", "0.03833585749537903", "1.82366143950655", "1668693611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8544", "0.05449116230974881", "3.6027011040130668", "1668693611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8545", "0.03831879623283192", "1.8236278283186946", "1668697211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8545", "0.054467569425673", "3.6026560848522906", "1668697211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8545", "0.03831879623283192", "1.8236278283186946", "1668697211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8545", "0.054467569425673", "3.6026560848522906", "1668697211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8546", "0.038523611861769495", "1.824010532516442", "1668700811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8546", "0.05475813447936699", "3.603182355510326", "1668700811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8546", "0.038523611861769495", "1.824010532516442", "1668700811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8546", "0.05475813447936699", "3.603182355510326", "1668700811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8547", "0.03840631362247652", "1.823790856159174", "1668704411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8547", "0.05459190516179098", "3.6028806192105196", "1668704411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8547", "0.03840631362247652", "1.823790856159174", "1668704411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8547", "0.05459190516179098", "3.6028806192105196", "1668704411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8548", "0.03829380227961279", "1.8235804342360022", "1668708011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8548", "0.05443235533332382", "3.6025913908799194", "1668708011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8548", "0.03829380227961279", "1.8235804342360022", "1668708011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8548", "0.05443235533332382", "3.6025913908799194", "1668708011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8549", "0.03819185642867698", "1.8233882947161253", "1668711611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8549", "0.05428830825847103", "3.6023283131774857", "1668711611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8549", "0.03819185642867698", "1.8233882947161253", "1668711611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8549", "0.05428830825847103", "3.6023283131774857", "1668711611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8550", "0.03837669140627314", "1.82373376054522", "1668715283"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8550", "0.05455049746678749", "3.602803315441353", "1668715283"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8550", "0.03837669140627314", "1.82373376054522", "1668715283"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8550", "0.05455049746678749", "3.602803315441353", "1668715283"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8551", "0.03838920923911125", "1.823757389444874", "1668718811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8551", "0.054568171785433585", "3.6028356428054167", "1668718811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8551", "0.03838920923911125", "1.823757389444874", "1668718811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8551", "0.054568171785433585", "3.6028356428054167", "1668718811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8552", "0.038277761628252256", "1.8235489879383198", "1668722411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8552", "0.05441011916006807", "3.6025491696097705", "1668722411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8552", "0.038277761628252256", "1.8235489879383198", "1668722411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8552", "0.05441011916006807", "3.6025491696097705", "1668722411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8553", "0.038167456886909853", "1.8233417919366792", "1668726011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8553", "0.05425401440631491", "3.602264996195995", "1668726011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8553", "0.038167456886909853", "1.8233417919366792", "1668726011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8553", "0.05425401440631491", "3.602264996195995", "1668726011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8554", "0.038058749601206476", "1.8231382765358708", "1668729611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8554", "0.05409992841897501", "3.601985398848166", "1668729611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8554", "0.038058749601206476", "1.8231382765358708", "1668729611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8554", "0.05409992841897501", "3.601985398848166", "1668729611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8555", "0.03795225690072005", "1.8229391557166155", "1668733211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8555", "0.05394889191783729", "3.6017116641683202", "1668733211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8555", "0.03795225690072005", "1.8229391557166155", "1668733211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8555", "0.05394889191783729", "3.6017116641683202", "1668733211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8556", "0.03784134397857998", "1.8227317303181045", "1668736811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8556", "0.053791598418934536", "3.601426537628501", "1668736811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8556", "0.03784134397857998", "1.8227317303181045", "1668736811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8556", "0.053791598418934536", "3.601426537628501", "1668736811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8557", "0.03773002273982859", "1.8225234465770994", "1668740411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8557", "0.05363375737907032", "3.6011402938905204", "1668740411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8557", "0.03773002273982859", "1.8225234465770994", "1668740411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8557", "0.05363375737907032", "3.6011402938905204", "1668740411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8558", "0.03762233731129978", "1.8223219460701297", "1668744011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8558", "0.053481076532682165", "3.6008633829648584", "1668744011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8558", "0.03762233731129978", "1.8223219460701297", "1668744011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8558", "0.053481076532682165", "3.6008633829648584", "1668744011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8559", "0.03751305449677681", "1.822117662785928", "1668747611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8559", "0.053326056186614214", "3.600582502187441", "1668747611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8559", "0.03751305449677681", "1.822117662785928", "1668747611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8559", "0.053326056186614214", "3.600582502187441", "1668747611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8560", "0.03740216070265283", "1.8219103879031084", "1668751211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8560", "0.05316874173411542", "3.6002974914484835", "1668751211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8560", "0.03740216070265283", "1.8219103879031084", "1668751211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8560", "0.05316874173411542", "3.6002974914484835", "1668751211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8561", "0.037574278309669466", "1.8222324178534186", "1668754811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8561", "0.05341279483982888", "3.6007400717520537", "1668754811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8561", "0.037574278309669466", "1.8222324178534186", "1668754811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8561", "0.05341279483982888", "3.6007400717520537", "1668754811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8562", "0.037884341753315925", "1.8228118555810662", "1668758411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8562", "0.05385267841120793", "3.6015368772985132", "1668758411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8562", "0.037884341753315925", "1.8228118555810662", "1668758411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8562", "0.05385267841120793", "3.6015368772985132", "1668758411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8563", "0.03789368223908544", "1.8228292981873795", "1668762011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8563", "0.05386593388204404", "3.6015608716514893", "1668762011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8563", "0.03789368223908544", "1.8228292981873795", "1668762011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8563", "0.05386593388204404", "3.6015608716514893", "1668762011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8564", "0.037842541498117374", "1.822730889046727", "1668765611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8564", "0.05379438447352822", "3.6014275156074524", "1668765611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8564", "0.037842541498117374", "1.822730889046727", "1668765611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8564", "0.05379438447352822", "3.6014275156074524", "1668765611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8565", "0.03782148214452943", "1.8226913316129376", "1668769211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8565", "0.05376457955931193", "3.601373259523816", "1668769211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8565", "0.03782148214452943", "1.8226913316129376", "1668769211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8565", "0.05376457955931193", "3.601373259523816", "1668769211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8566", "0.03780403658609762", "1.822658697951159", "1668772811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8566", "0.05373984122140622", "3.6013284062570805", "1668772811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8566", "0.03780403658609762", "1.822658697951159", "1668772811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8566", "0.05373984122140622", "3.6013284062570805", "1668772811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8567", "0.0377740717593748", "1.822600877656797", "1668776411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8567", "0.05369797427256909", "3.601250159564341", "1668776411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8567", "0.0377740717593748", "1.822600877656797", "1668776411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8567", "0.05369797427256909", "3.601250159564341", "1668776411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8568", "0.037758679498588306", "1.8225720943568062", "1668780011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8568", "0.05367614411871096", "3.6012105916878525", "1668780011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8568", "0.037758679498588306", "1.8225720943568062", "1668780011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8568", "0.05367614411871096", "3.6012105916878525", "1668780011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8569", "0.037742087794575295", "1.8225408995879", "1668783611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8569", "0.053652672301992485", "3.601167825488912", "1668783611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8569", "0.037742087794575295", "1.8225408995879", "1668783611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8569", "0.053652672301992485", "3.601167825488912", "1668783611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8570", "0.0377285657036784", "1.8225155928334835", "1668787211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8570", "0.053633501748808945", "3.6011330509561974", "1668787211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8570", "0.0377285657036784", "1.8225155928334835", "1668787211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8570", "0.053633501748808945", "3.6011330509561974", "1668787211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8571", "0.03770981220035473", "1.8224805082144524", "1668790811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8571", "0.053606909951058324", "3.601084831535947", "1668790811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8571", "0.03770981220035473", "1.8224805082144524", "1668790811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8571", "0.053606909951058324", "3.601084831535947", "1668790811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8572", "0.03767078384260906", "1.8224068095346067", "1668794411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8572", "0.05355181015670262", "3.6009840147198355", "1668794411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8572", "0.03767078384260906", "1.8224068095346067", "1668794411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8572", "0.05355181015670262", "3.6009840147198355", "1668794411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8573", "0.03761016482854979", "1.8222931371614122", "1668798011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8573", "0.05346594718038637", "3.6008279682323687", "1668798011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8573", "0.03761016482854979", "1.8222931371614122", "1668798011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8573", "0.05346594718038637", "3.6008279682323687", "1668798011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8574", "0.03749642134777287", "1.8220793214302384", "1668801611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8574", "0.05330502043406091", "3.600534807545297", "1668801611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8574", "0.03749642134777287", "1.8220793214302384", "1668801611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8574", "0.05330502043406091", "3.600534807545297", "1668801611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8575", "0.037391173937104595", "1.8218824400878761", "1668805211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8575", "0.053155772234729504", "3.600264198851759", "1668805211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8575", "0.037391173937104595", "1.8218824400878761", "1668805211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8575", "0.053155772234729504", "3.600264198851759", "1668805211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8576", "0.03728680468531834", "1.8216873226876709", "1668808811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8576", "0.05300772484197389", "3.599995928126765", "1668808811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8576", "0.03728680468531834", "1.8216873226876709", "1668808811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8576", "0.05300772484197389", "3.599995928126765", "1668808811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8577", "0.0371828309776648", "1.821492924180673", "1668812411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8577", "0.05286024410560661", "3.5997286574948335", "1668812411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8577", "0.0371828309776648", "1.821492924180673", "1668812411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8577", "0.05286024410560661", "3.5997286574948335", "1668812411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8578", "0.03707174453134224", "1.821284265095434", "1668816011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8578", "0.0527030120036871", "3.5994424440103874", "1668816011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8578", "0.03707174453134224", "1.821284265095434", "1668816011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8578", "0.0527030120036871", "3.5994424440103874", "1668816011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8579", "0.036961221099845364", "1.821076735482236", "1668819611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8579", "0.05254654947318486", "3.5991577272060136", "1668819611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8579", "0.036961221099845364", "1.821076735482236", "1668819611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8579", "0.05254654947318486", "3.5991577272060136", "1668819611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8580", "0.03685786283986361", "1.8208835005507586", "1668823211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8580", "0.05239993192201103", "3.5988920393484953", "1668823211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8580", "0.03685786283986361", "1.8208835005507586", "1668823211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8580", "0.05239993192201103", "3.5988920393484953", "1668823211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8581", "0.036755139285116145", "1.820691445223125", "1668826811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8581", "0.052254215555435905", "3.598627975723495", "1668826811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8581", "0.036755139285116145", "1.820691445223125", "1668826811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8581", "0.052254215555435905", "3.598627975723495", "1668826811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8582", "0.036646138945162714", "1.820487466101513", "1668830411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8582", "0.05209966010997234", "3.5983476454562826", "1668830411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8582", "0.036646138945162714", "1.820487466101513", "1668830411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8582", "0.05209966010997234", "3.5983476454562826", "1668830411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8583", "0.03654834074851238", "1.8203044043134424", "1668834011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8583", "0.051961003212097415", "3.5980960914223057", "1668834011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8583", "0.03654834074851238", "1.8203044043134424", "1668834011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8583", "0.051961003212097415", "3.5980960914223057", "1668834011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8584", "0.03644149992412262", "1.8201040145344483", "1668837611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8584", "0.0518096658357766", "3.5978210013936227", "1668837611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8584", "0.03644149992412262", "1.8201040145344483", "1668837611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8584", "0.0518096658357766", "3.5978210013936227", "1668837611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8585", "0.03633501264889562", "1.8199049910154814", "1668841211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8585", "0.051658579386717494", "3.5975472988252686", "1668841211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8585", "0.03633501264889562", "1.8199049910154814", "1668841211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8585", "0.051658579386717494", "3.5975472988252686", "1668841211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8586", "0.036231503689187095", "1.819711496436361", "1668844811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8586", "0.0515117301771781", "3.5972812231933857", "1668844811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8586", "0.036231503689187095", "1.819711496436361", "1668844811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8586", "0.0515117301771781", "3.5972812231933857", "1668844811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8587", "0.036126126400436484", "1.8195145526033893", "1668848411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8587", "0.05136221336000384", "3.5970103718547857", "1668848411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8587", "0.036126126400436484", "1.8195145526033893", "1668848411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8587", "0.05136221336000384", "3.5970103718547857", "1668848411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8588", "0.036019506948962166", "1.8193150823051125", "1668852011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8588", "0.05121100461622211", "3.596736185206066", "1668852011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8588", "0.036019506948962166", "1.8193150823051125", "1668852011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8588", "0.05121100461622211", "3.596736185206066", "1668852011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8589", "0.03591471112158663", "1.8191192258785358", "1668855611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8589", "0.051062309124520325", "3.5964668235819715", "1668855611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8589", "0.03591471112158663", "1.8191192258785358", "1668855611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8589", "0.051062309124520325", "3.5964668235819715", "1668855611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8590", "0.03580750680095874", "1.8189185059618649", "1668859211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8590", "0.050910322200457034", "3.5961910213506916", "1668859211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8590", "0.03580750680095874", "1.8189185059618649", "1668859211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8590", "0.050910322200457034", "3.5961910213506916", "1668859211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8591", "0.03570310424318487", "1.8187233647443495", "1668862811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8591", "0.050762188259834175", "3.595922651784197", "1668862811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8591", "0.03570310424318487", "1.8187233647443495", "1668862811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8591", "0.050762188259834175", "3.595922651784197", "1668862811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8592", "0.0355975702856445", "1.818525977200266", "1668866423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8592", "0.05061249370456373", "3.5956512814401647", "1668866423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8592", "0.0355975702856445", "1.818525977200266", "1668866423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8592", "0.05061249370456373", "3.5956512814401647", "1668866423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8593", "0.03549389806504127", "1.818332222454932", "1668870011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8593", "0.05046538509743609", "3.59538479864335", "1668870011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8593", "0.03549389806504127", "1.818332222454932", "1668870011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8593", "0.05046538509743609", "3.59538479864335", "1668870011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8594", "0.03538856732614864", "1.8181350616692755", "1668873611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8594", "0.0503160294504913", "3.5951138409059933", "1668873611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8594", "0.03538856732614864", "1.8181350616692755", "1668873611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8594", "0.0503160294504913", "3.5951138409059933", "1668873611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8595", "0.035259872953990204", "1.8178911018310768", "1668877211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8595", "0.050134624001550054", "3.594780683893744", "1668877211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8595", "0.035259872953990204", "1.8178911018310768", "1668877211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8595", "0.050134624001550054", "3.594780683893744", "1668877211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8596", "0.03515701010799213", "1.8176988662394684", "1668880811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8596", "0.04998865615069612", "3.59451627762601", "1668880811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8596", "0.03515701010799213", "1.8176988662394684", "1668880811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8596", "0.04998865615069612", "3.59451627762601", "1668880811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8597", "0.03505308014949987", "1.8175044802637372", "1668884411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8597", "0.0498412273882678", "3.5942490191953067", "1668884411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8597", "0.03505308014949987", "1.8175044802637372", "1668884411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8597", "0.0498412273882678", "3.5942490191953067", "1668884411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8598", "0.0349540692122403", "1.817317899405621", "1668888011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8598", "0.049701266856300094", "3.593993454771045", "1668888011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8598", "0.0349540692122403", "1.817317899405621", "1668888011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8598", "0.049701266856300094", "3.593993454771045", "1668888011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8599", "0.03487326444928901", "1.817164998166985", "1668891611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8599", "0.049587262913482956", "3.593784452129454", "1668891611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8599", "0.03487326444928901", "1.817164998166985", "1668891611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8599", "0.049587262913482956", "3.593784452129454", "1668891611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8600", "0.03484262239307619", "1.8171076638213786", "1668895211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8600", "0.04954380279152235", "3.593705637913792", "1668895211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8600", "0.03484262239307619", "1.8171076638213786", "1668895211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8600", "0.04954380279152235", "3.593705637913792", "1668895211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8601", "0.034795113068170576", "1.8170165366410012", "1668898811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8601", "0.04947720634664929", "3.593581913780189", "1668898811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8601", "0.034795113068170576", "1.8170165366410012", "1668898811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8601", "0.04947720634664929", "3.593581913780189", "1668898811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8602", "0.03476570721128949", "1.8169615483891381", "1668902411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8602", "0.049435487533011156", "3.5935063011928103", "1668902411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8602", "0.03476570721128949", "1.8169615483891381", "1668902411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8602", "0.049435487533011156", "3.5935063011928103", "1668902411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8603", "0.03472862297429104", "1.8168922412020978", "1668906011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8603", "0.04938286111153414", "3.593410971508092", "1668906011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8603", "0.03472862297429104", "1.8168922412020978", "1668906011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8603", "0.04938286111153414", "3.593410971508092", "1668906011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8604", "0.03468921999350959", "1.8168186086489042", "1668909611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8604", "0.049326941037363396", "3.593309686419813", "1668909611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8604", "0.03468921999350959", "1.8168186086489042", "1668909611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8604", "0.049326941037363396", "3.593309686419813", "1668909611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8605", "0.034660628344181994", "1.816764936108076", "1668913211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8605", "0.049286449807185995", "3.593236025387428", "1668913211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8605", "0.034660628344181994", "1.816764936108076", "1668913211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8605", "0.049286449807185995", "3.593236025387428", "1668913211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8606", "0.03463223707049825", "1.816711669356997", "1668916811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8606", "0.04924623176950555", "3.5931629006425987", "1668916811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8606", "0.03463223707049825", "1.816711669356997", "1668916811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8606", "0.04924623176950555", "3.5931629006425987", "1668916811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8607", "0.03460564846163426", "1.816661902085717", "1668920411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8607", "0.04920852582623298", "3.593094498884898", "1668920411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8607", "0.03460564846163426", "1.816661902085717", "1668920411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8607", "0.04920852582623298", "3.593094498884898", "1668920411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8608", "0.03462354247570195", "1.816695192183922", "1668924011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8608", "0.04923397334876233", "3.593140394227345", "1668924011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8608", "0.03462354247570195", "1.816695192183922", "1668924011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8608", "0.04923397334876233", "3.593140394227345", "1668924011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8609", "0.03467244420034889", "1.8167865628334132", "1668927611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8609", "0.04930337867427566", "3.5932660881142167", "1668927611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8609", "0.03467244420034889", "1.8167865628334132", "1668927611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8609", "0.04930337867427566", "3.5932660881142167", "1668927611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8610", "0.034720122272239425", "1.8168754990970999", "1668931211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8610", "0.049371099124714005", "3.593388535091141", "1668931211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8610", "0.034720122272239425", "1.8168754990970999", "1668931211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8610", "0.049371099124714005", "3.593388535091141", "1668931211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8611", "0.03469243969967249", "1.8168235629746654", "1668934811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8611", "0.04933188491488156", "3.5933172367450297", "1668934811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8611", "0.03469243969967249", "1.8168235629746654", "1668934811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8611", "0.04933188491488156", "3.5933172367450297", "1668934811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8612", "0.03461965158354157", "1.8166873306291242", "1668938411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8612", "0.04922865961048683", "3.593129989032986", "1668938411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8612", "0.03461965158354157", "1.8166873306291242", "1668938411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8612", "0.04922865961048683", "3.593129989032986", "1668938411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8613", "0.034523642850480075", "1.8165079288877095", "1668942011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8613", "0.04909239988199612", "3.592883203102661", "1668942011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8613", "0.034523642850480075", "1.8165079288877095", "1668942011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8613", "0.04909239988199612", "3.592883203102661", "1668942011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8614", "0.034427900309211557", "1.816329024595515", "1668945611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8614", "0.04895651650107632", "3.5926370992487304", "1668945611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8614", "0.034427900309211557", "1.816329024595515", "1668945611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8614", "0.04895651650107632", "3.5926370992487304", "1668945611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8615", "0.03433257981349997", "1.8161488350670565", "1668949211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8615", "0.048821961680896704", "3.5923906606646248", "1668949211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8615", "0.03433257981349997", "1.8161488350670565", "1668949211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8615", "0.048821961680896704", "3.5923906606646248", "1668949211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8616", "0.03426987010277036", "1.8160316671678847", "1668952811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8616", "0.048732954706274006", "3.5922294719914882", "1668952811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8616", "0.03426987010277036", "1.8160316671678847", "1668952811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8616", "0.048732954706274006", "3.5922294719914882", "1668952811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8617", "0.03419461848261744", "1.815890531203081", "1668956411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8617", "0.04862633397480258", "3.592035679043033", "1668956411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8617", "0.03419461848261744", "1.815890531203081", "1668956411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8617", "0.04862633397480258", "3.592035679043033", "1668956411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8618", "0.034123877163170856", "1.8157582464091933", "1668960011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8618", "0.0485259647206678", "3.5918537680339306", "1668960011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8618", "0.034123877163170856", "1.8157582464091933", "1668960011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8618", "0.0485259647206678", "3.5918537680339306", "1668960011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8619", "0.034035012510338726", "1.8155907506078344", "1668963611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8619", "0.04840034605422978", "3.591624348347554", "1668963611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8619", "0.034035012510338726", "1.8155907506078344", "1668963611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8619", "0.04840034605422978", "3.591624348347554", "1668963611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8620", "0.03393442915338217", "1.8154001460425357", "1668967211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8620", "0.048258520067342464", "3.5913639743000467", "1668967211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8620", "0.03393442915338217", "1.8154001460425357", "1668967211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8620", "0.048258520067342464", "3.5913639743000467", "1668967211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8621", "0.033839741819252124", "1.815223157751892", "1668970811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8621", "0.04812414520126178", "3.5911205312671086", "1668970811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8621", "0.033839741819252124", "1.815223157751892", "1668970811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8621", "0.04812414520126178", "3.5911205312671086", "1668970811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8622", "0.033745896079197917", "1.8150478168707562", "1668974411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8622", "0.04799093711508448", "3.590879300695568", "1668974411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8622", "0.033745896079197917", "1.8150478168707562", "1668974411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8622", "0.04799093711508448", "3.590879300695568", "1668974411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8623", "0.033651571771177835", "1.8148714962168218", "1668978011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8623", "0.04785707851792932", "3.590636779298751", "1668978011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8623", "0.033651571771177835", "1.8148714962168218", "1668978011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8623", "0.04785707851792932", "3.590636779298751", "1668978011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8624", "0.03357412969573046", "1.8147264550359814", "1668981611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8624", "0.0477472751247781", "3.5904374724899544", "1668981611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8624", "0.03357412969573046", "1.8147264550359814", "1668981611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8624", "0.0477472751247781", "3.5904374724899544", "1668981611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8625", "0.03351602095875611", "1.8146178445413537", "1668985211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8625", "0.047664805456406265", "3.5902880728278594", "1668985211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8625", "0.03351602095875611", "1.8146178445413537", "1668985211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8625", "0.047664805456406265", "3.5902880728278594", "1668985211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8626", "0.033460244328094385", "1.814513591350285", "1668988811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8626", "0.04758564565743808", "3.5901446672330444", "1668988811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8626", "0.033460244328094385", "1.814513591350285", "1668988811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8626", "0.04758564565743808", "3.5901446672330444", "1668988811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8627", "0.03340513578183935", "1.8144106244495386", "1668992411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8627", "0.04750742031402739", "3.5900030042892093", "1668992411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8627", "0.03340513578183935", "1.8144106244495386", "1668992411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8627", "0.04750742031402739", "3.5900030042892093", "1668992411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8628", "0.03334495893630437", "1.8142981913978564", "1668996011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8628", "0.0474219988070513", "3.5898483143618525", "1668996011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8628", "0.03334495893630437", "1.8142981913978564", "1668996011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8628", "0.0474219988070513", "3.5898483143618525", "1668996011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8629", "0.033288122348677986", "1.8141918232286132", "1668999611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8629", "0.047341380301659935", "3.589702089708161", "1668999611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8629", "0.033288122348677986", "1.8141918232286132", "1668999611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8629", "0.047341380301659935", "3.589702089708161", "1668999611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8630", "0.033222331951448504", "1.8140687757803444", "1669003211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8630", "0.047248033531238576", "3.589532881471396", "1669003211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8630", "0.033222331951448504", "1.8140687757803444", "1669003211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8630", "0.047248033531238576", "3.589532881471396", "1669003211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8631", "0.03312091743759933", "1.8138790745372364", "1669006811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8631", "0.04710414934943403", "3.589272030588533", "1669006811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8631", "0.03312091743759933", "1.8138790745372364", "1669006811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8631", "0.04710414934943403", "3.589272030588533", "1669006811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8632", "0.033020351457933354", "1.8136911378349478", "1669010411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8632", "0.04696140499822185", "3.5890134810985104", "1669010411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8632", "0.033020351457933354", "1.8136911378349478", "1669010411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8632", "0.04696140499822185", "3.5890134810985104", "1669010411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8633", "0.03292052434990212", "1.813504625020075", "1669014011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8633", "0.04681969267127605", "3.5887568582963514", "1669014011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8633", "0.03292052434990212", "1.813504625020075", "1669014011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8633", "0.04681969267127605", "3.5887568582963514", "1669014011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8634", "0.032820764478050796", "1.8133181831505412", "1669017611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8634", "0.04667809349998725", "3.588500368559016", "1669017611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8634", "0.032820764478050796", "1.8133181831505412", "1669017611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8634", "0.04667809349998725", "3.588500368559016", "1669017611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8635", "0.0327209409681139", "1.8131316917695068", "1669021211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8635", "0.046536377995649796", "3.588243760318073", "1669021211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8635", "0.0327209409681139", "1.8131316917695068", "1669021211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8635", "0.046536377995649796", "3.588243760318073", "1669021211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8636", "0.0326218746460337", "1.8129466006415205", "1669024811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8636", "0.046395740955473", "3.5879890863636215", "1669024811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8636", "0.0326218746460337", "1.8129466006415205", "1669024811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8636", "0.046395740955473", "3.5879890863636215", "1669024811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8637", "0.03252308247467763", "1.8127620217727705", "1669028411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8637", "0.046255491567141656", "3.587735114881669", "1669028411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8637", "0.03252308247467763", "1.8127620217727705", "1669028411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8637", "0.046255491567141656", "3.587735114881669", "1669028411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8638", "0.032424511436113905", "1.8125778514793072", "1669032011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8638", "0.046115556205375385", "3.5874817064267277", "1669032011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8638", "0.032424511436113905", "1.8125778514793072", "1669032011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8638", "0.046115556205375385", "3.5874817064267277", "1669032011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8639", "0.03232622282616572", "1.8123942109674958", "1669035611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8639", "0.04597601954646338", "3.587229023167898", "1669035611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8639", "0.03232622282616572", "1.8123942109674958", "1669035611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8639", "0.04597601954646338", "3.587229023167898", "1669035611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8640", "0.03222833715015733", "1.8122112834445103", "1669039211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8640", "0.045837067454150955", "3.586977346229411", "1669039211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8640", "0.03222833715015733", "1.8122112834445103", "1669039211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8640", "0.045837067454150955", "3.586977346229411", "1669039211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8641", "0.03212994141433633", "1.8120273733962384", "1669042811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8641", "0.04569740013829591", "3.5867243354833356", "1669042811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8641", "0.03212994141433633", "1.8120273733962384", "1669042811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8641", "0.04569740013829591", "3.5867243354833356", "1669042811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8642", "0.032026497366628645", "1.8118332637706889", "1669046411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8642", "0.04555083438235094", "3.586457818516656", "1669046411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8642", "0.032026497366628645", "1.8118332637706889", "1669046411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8642", "0.04555083438235094", "3.586457818516656", "1669046411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8643", "0.03192985454133903", "1.8116526457369395", "1669050011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8643", "0.04541364666804529", "3.5862093211980803", "1669050011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8643", "0.03192985454133903", "1.8116526457369395", "1669050011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8643", "0.04541364666804529", "3.5862093211980803", "1669050011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8644", "0.03183227480605191", "1.8114702728754641", "1669053611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8644", "0.04527512884373642", "3.5859584099314805", "1669053611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8644", "0.03183227480605191", "1.8114702728754641", "1669053611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8644", "0.04527512884373642", "3.5859584099314805", "1669053611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8645", "0.03173568226732828", "1.811289798256692", "1669057211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8645", "0.045137992180481395", "3.5857100712637355", "1669057211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8645", "0.03173568226732828", "1.811289798256692", "1669057211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8645", "0.045137992180481395", "3.5857100712637355", "1669057211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8646", "0.03164237781657674", "1.811114923992961", "1669060811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8646", "0.045005713619674204", "3.58546981238674", "1669060811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8646", "0.03164237781657674", "1.811114923992961", "1669060811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8646", "0.045005713619674204", "3.58546981238674", "1669060811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8647", "0.031555010656745965", "1.8109516906184395", "1669064411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8647", "0.04488167053921594", "3.5852451912590717", "1669064411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8647", "0.031555010656745965", "1.8109516906184395", "1669064411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8647", "0.04488167053921594", "3.5852451912590717", "1669064411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8648", "0.03148976267001529", "1.8108302989527088", "1669068011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8648", "0.04478884991653928", "3.585077789952339", "1669068011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8648", "0.03148976267001529", "1.8108302989527088", "1669068011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8648", "0.04478884991653928", "3.585077789952339", "1669068011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8649", "0.03140183300730325", "1.8106659188085017", "1669071611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8649", "0.044664039840969595", "3.584851653849253", "1669071611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8649", "0.03140183300730325", "1.8106659188085017", "1669071611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8649", "0.044664039840969595", "3.584851653849253", "1669071611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8650", "0.031313669260253536", "1.8105010517112676", "1669075211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8650", "0.044538913658563745", "3.5846248800978673", "1669075211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8650", "0.031313669260253536", "1.8105010517112676", "1669075211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8650", "0.044538913658563745", "3.5846248800978673", "1669075211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8651", "0.031226770418165278", "1.8103386914411077", "1669078811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8651", "0.04441553170513495", "3.5844014549176357", "1669078811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8651", "0.031226770418165278", "1.8103386914411077", "1669078811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8651", "0.04441553170513495", "3.5844014549176357", "1669078811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8652", "0.03114016966067217", "1.8101768947995613", "1669082411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8652", "0.04429256945452208", "3.5841787989283747", "1669082411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8652", "0.03114016966067217", "1.8101768947995613", "1669082411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8652", "0.04429256945452208", "3.5841787989283747", "1669082411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8653", "0.0310537387109631", "1.8100154063256118", "1669086011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8653", "0.04416985034169512", "3.583956571520495", "1669086011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8653", "0.0310537387109631", "1.8100154063256118", "1669086011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8653", "0.04416985034169512", "3.583956571520495", "1669086011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8654", "0.03096641776184438", "1.8098521048854284", "1669089611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8654", "0.044045919210967746", "3.583731951229188", "1669089611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8654", "0.03096641776184438", "1.8098521048854284", "1669089611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8654", "0.044045919210967746", "3.583731951229188", "1669089611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8655", "0.030880538888823836", "1.8096916575176578", "1669093211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8655", "0.04392397825982734", "3.5835111463068814", "1669093211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8655", "0.030880538888823836", "1.8096916575176578", "1669093211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8655", "0.04392397825982734", "3.5835111463068814", "1669093211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8656", "0.03079460668037401", "1.8095310588045288", "1669096811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8656", "0.04380197862331424", "3.5832901670947765", "1669096811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8656", "0.03079460668037401", "1.8095310588045288", "1669096811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8656", "0.04380197862331424", "3.5832901670947765", "1669096811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8657", "0.03070920418734943", "1.8093715016716387", "1669100411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8657", "0.0436807117304682", "3.583070583648786", "1669100411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8657", "0.03070920418734943", "1.8093715016716387", "1669100411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8657", "0.0436807117304682", "3.583070583648786", "1669100411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8658", "0.030620716043253896", "1.8092057678445645", "1669104011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8658", "0.0435552071219689", "3.582842782721133", "1669104011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8658", "0.030620716043253896", "1.8092057678445645", "1669104011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8658", "0.0435552071219689", "3.582842782721133", "1669104011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8659", "0.03053558385828635", "1.8090466886625403", "1669107611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8659", "0.04343433126584833", "3.5826238722067316", "1669107611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8659", "0.03053558385828635", "1.8090466886625403", "1669107611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8659", "0.04343433126584833", "3.5826238722067316", "1669107611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8660", "0.030450663823621816", "1.808888002426436", "1669111211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8660", "0.04331375673151444", "3.5824055031097433", "1669111211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8660", "0.030450663823621816", "1.808888002426436", "1669111211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8660", "0.04331375673151444", "3.5824055031097433", "1669111211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8661", "0.030366215013069377", "1.8087302284880364", "1669114811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8661", "0.04319383898072423", "3.58218836577592", "1669114811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8661", "0.030366215013069377", "1.8087302284880364", "1669114811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8661", "0.04319383898072423", "3.58218836577592", "1669114811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8662", "0.030281981866442806", "1.808572822479115", "1669118411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8662", "0.04307423867981117", "3.581971757305188", "1669118411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8662", "0.030281981866442806", "1.808572822479115", "1669118411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8662", "0.04307423867981117", "3.581971757305188", "1669118411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8663", "0.03019800076137388", "1.8084159225117342", "1669122011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8663", "0.04295498280616977", "3.5817558192827876", "1669122011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8663", "0.03019800076137388", "1.8084159225117342", "1669122011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8663", "0.04295498280616977", "3.5817558192827876", "1669122011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8664", "0.030114244032367652", "1.8082594390273246", "1669125611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8664", "0.0428360454121932", "3.5815404546544616", "1669125611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8664", "0.030114244032367652", "1.8082594390273246", "1669125611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8664", "0.0428360454121932", "3.5815404546544616", "1669125611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8665", "0.03003066724292695", "1.8081032877194738", "1669129211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8665", "0.04271736385663613", "3.5813255482917916", "1669129211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8665", "0.03003066724292695", "1.8081032877194738", "1669129211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8665", "0.04271736385663613", "3.5813255482917916", "1669129211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8666", "0.029947382957994467", "1.8079476897355453", "1669132811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8666", "0.04259909418094574", "3.5811113970749995", "1669132811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8666", "0.029947382957994467", "1.8079476897355453", "1669132811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8666", "0.04259909418094574", "3.5811113970749995", "1669132811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8667", "0.029864329595717123", "1.8077925232131986", "1669136411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8667", "0.04248115134137141", "3.580897838008538", "1669136411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8667", "0.029864329595717123", "1.8077925232131986", "1669136411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8667", "0.04248115134137141", "3.580897838008538", "1669136411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8668", "0.029781355463243828", "1.807637484701434", "1669140011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8668", "0.042363326981459684", "3.5806844673163876", "1669140011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8668", "0.029781355463243828", "1.807637484701434", "1669140011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8668", "0.042363326981459684", "3.5806844673163876", "1669140011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8669", "0.02969835582282477", "1.807482363814613", "1669143611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8669", "0.042245477538750784", "3.5804710056066993", "1669143611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8669", "0.02969835582282477", "1.807482363814613", "1669143611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8669", "0.042245477538750784", "3.5804710056066993", "1669143611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8670", "0.029615394960921276", "1.8073272897460786", "1669147211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8670", "0.0421276911083441", "3.580257624407968", "1669147211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8670", "0.029615394960921276", "1.8073272897460786", "1669147211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8670", "0.0421276911083441", "3.580257624407968", "1669147211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8671", "0.029533262118140734", "1.8071738435697022", "1669150811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8671", "0.04201105103307", "3.58004642618927", "1669150811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8671", "0.029533262118140734", "1.8071738435697022", "1669150811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8671", "0.04201105103307", "3.58004642618927", "1669150811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8672", "0.029451357006688002", "1.8070208228900693", "1669154411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8672", "0.04189473330687791", "3.5798358119805784", "1669154411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8672", "0.029451357006688002", "1.8070208228900693", "1669154411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8672", "0.04189473330687791", "3.5798358119805784", "1669154411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8673", "0.029372831204498247", "1.806874123879274", "1669158011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8673", "0.0417832108401374", "3.5796338915886214", "1669158011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8673", "0.029372831204498247", "1.806874123879274", "1669158011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8673", "0.0417832108401374", "3.5796338915886214", "1669158011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8674", "0.02928710452092916", "1.8067134719225981", "1669161611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8674", "0.04166163667125876", "3.5794131103725526", "1669161611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8674", "0.02928710452092916", "1.8067134719225981", "1669161611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8674", "0.04166163667125876", "3.5794131103725526", "1669161611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8675", "0.02920588197513847", "1.8065617278859087", "1669165211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8675", "0.04154628466662718", "3.5792042475353227", "1669165211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8675", "0.02920588197513847", "1.8065617278859087", "1669165211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8675", "0.04154628466662718", "3.5792042475353227", "1669165211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8676", "0.029124547710813947", "1.8064097319041168", "1669168811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8676", "0.041430788174523545", "3.578995066220215", "1669168811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8676", "0.029124547710813947", "1.8064097319041168", "1669168811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8676", "0.041430788174523545", "3.578995066220215", "1669168811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8677", "0.029043775894795655", "1.8062588301278864", "1669172411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8677", "0.041316074180919135", "3.578787359418722", "1669172411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8677", "0.029043775894795655", "1.8062588301278864", "1669172411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8677", "0.041316074180919135", "3.578787359418722", "1669172411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8678", "0.028959782934714108", "1.806101455871363", "1669176011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8678", "0.041196944281569406", "3.5785710562587982", "1669176011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8678", "0.028959782934714108", "1.806101455871363", "1669176011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8678", "0.041196944281569406", "3.5785710562587982", "1669176011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8679", "0.02887948631777046", "1.805951442889558", "1669179611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8679", "0.041082902754750225", "3.578364568963396", "1669179611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8679", "0.02887948631777046", "1.805951442889558", "1669179611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8679", "0.041082902754750225", "3.578364568963396", "1669179611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8680", "0.028787371684671995", "1.8057793514680356", "1669183211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8680", "0.04095207527224648", "3.578127689342314", "1669183211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8680", "0.028787371684671995", "1.8057793514680356", "1669183211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8680", "0.04095207527224648", "3.578127689342314", "1669183211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8681", "0.028694472935444085", "1.8056055984383834", "1669186811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8681", "0.040820201981434656", "3.577888656473835", "1669186811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8681", "0.028694472935444085", "1.8056055984383834", "1669186811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8681", "0.040820201981434656", "3.577888656473835", "1669186811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8682", "0.028602415561350902", "1.805433606599126", "1669190411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8682", "0.040689455758039984", "3.5776519149553114", "1669190411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8682", "0.028602415561350902", "1.805433606599126", "1669190411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8682", "0.040689455758039984", "3.5776519149553114", "1669190411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8683", "0.028511456529300042", "1.8052636748770003", "1669194011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8683", "0.04056026533504984", "3.5774180015534003", "1669194011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8683", "0.028511456529300042", "1.8052636748770003", "1669194011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8683", "0.04056026533504984", "3.5774180015534003", "1669194011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8684", "0.02842132490892055", "1.805095285411452", "1669197611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8684", "0.040432250063423734", "3.5771862115781894", "1669197611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8684", "0.02842132490892055", "1.805095285411452", "1669197611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8684", "0.040432250063423734", "3.5771862115781894", "1669197611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8685", "0.028331205564306013", "1.8049269225054791", "1669201211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8685", "0.04030424968223469", "3.5769544537126956", "1669201211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8685", "0.028331205564306013", "1.8049269225054791", "1669201211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8685", "0.04030424968223469", "3.5769544537126956", "1669201211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8686", "0.028240715000659566", "1.8047578225434937", "1669204811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8686", "0.04017573607707473", "3.576721709399382", "1669204811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8686", "0.028240715000659566", "1.8047578225434937", "1669204811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8686", "0.04017573607707473", "3.576721709399382", "1669204811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8687", "0.028148722340815446", "1.8045857486257024", "1669208411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8687", "0.040045146627347546", "3.576484985198424", "1669208411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8687", "0.028148722340815446", "1.8045857486257024", "1669208411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8687", "0.040045146627347546", "3.576484985198424", "1669208411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8688", "0.028056626850731806", "1.804413444216489", "1669212011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8688", "0.03991442328820787", "3.5762479682001245", "1669212011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8688", "0.028056626850731806", "1.804413444216489", "1669212011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8688", "0.03991442328820787", "3.5762479682001245", "1669212011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8689", "0.027964442865825244", "1.8042409311366276", "1669215611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8689", "0.03978358816032203", "3.576010691860761", "1669215611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8689", "0.027964442865825244", "1.8042409311366276", "1669215611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8689", "0.03978358816032203", "3.576010691860761", "1669215611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8690", "0.027874575737784867", "1.8040730421736928", "1669219211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8690", "0.03965593862020437", "3.575779574654382", "1669219211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8690", "0.027874575737784867", "1.8040730421736928", "1669219211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8690", "0.03965593862020437", "3.575779574654382", "1669219211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8691", "0.027784643423007162", "1.8039050034796236", "1669222811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8691", "0.03952820505105815", "3.5755482687086526", "1669222811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8691", "0.027784643423007162", "1.8039050034796236", "1669222811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8691", "0.03952820505105815", "3.5755482687086526", "1669222811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8692", "0.02770810756539236", "1.8037611795386777", "1669226411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8692", "0.03941978500326122", "3.575350857182151", "1669226411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8692", "0.02770810756539236", "1.8037611795386777", "1669226411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8692", "0.03941978500326122", "3.575350857182151", "1669226411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8693", "0.027602825522620705", "1.8035644560767083", "1669230011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8693", "0.039270248201797815", "3.5750800647292853", "1669230011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8693", "0.027602825522620705", "1.8035644560767083", "1669230011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8693", "0.039270248201797815", "3.5750800647292853", "1669230011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8694", "0.0275094591268304", "1.803390033017838", "1669233611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8694", "0.03913762176989209", "3.5748399422789725", "1669233611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8694", "0.0275094591268304", "1.803390033017838", "1669233611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8694", "0.03913762176989209", "3.5748399422789725", "1669233611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8695", "0.027416590368851967", "1.8032165396682598", "1669237211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8695", "0.03900570086113591", "3.574601097627299", "1669237211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8695", "0.027416590368851967", "1.8032165396682598", "1669237211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8695", "0.03900570086113591", "3.574601097627299", "1669237211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8696", "0.027332986600083146", "1.8030588857232275", "1669240811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8696", "0.038887456283259104", "3.574385072140914", "1669240811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8696", "0.027332986600083146", "1.8030588857232275", "1669240811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8696", "0.038887456283259104", "3.574385072140914", "1669240811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8697", "0.027244475543443326", "1.8028928863716136", "1669244411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8697", "0.03876195051082233", "3.574156987553833", "1669244411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8697", "0.027244475543443326", "1.8028928863716136", "1669244411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8697", "0.03876195051082233", "3.574156987553833", "1669244411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8698", "0.027159341132259946", "1.8027336587129152", "1669248011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8698", "0.03864107724261663", "3.5739379034418155", "1669248011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8698", "0.027159341132259946", "1.8027336587129152", "1669248011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8698", "0.03864107724261663", "3.5739379034418155", "1669248011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8699", "0.02706932778581817", "1.802564718344792", "1669251611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8699", "0.03851348220946492", "3.5737058590477178", "1669251611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8699", "0.02706932778581817", "1.802564718344792", "1669251611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8699", "0.03851348220946492", "3.5737058590477178", "1669251611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8700", "0.026978853608487327", "1.8023948136314756", "1669255211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8700", "0.0383852675946028", "3.573472556457375", "1669255211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8700", "0.026978853608487327", "1.8023948136314756", "1669255211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8700", "0.0383852675946028", "3.573472556457375", "1669255211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8701", "0.026896678280359288", "1.8022412317632484", "1669258811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8701", "0.03826855303664886", "3.573261158362882", "1669258811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8701", "0.026896678280359288", "1.8022412317632484", "1669258811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8701", "0.03826855303664886", "3.573261158362882", "1669258811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8702", "0.0268138418492372", "1.802086478523596", "1669262411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8702", "0.038150875870593196", "3.573048101960304", "1669262411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8702", "0.0268138418492372", "1.802086478523596", "1669262411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8702", "0.038150875870593196", "3.573048101960304", "1669262411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8703", "0.026731111068195965", "1.801931922932248", "1669266011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8703", "0.03803334762167105", "3.5728353158385544", "1669266011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8703", "0.026731111068195965", "1.801931922932248", "1669266011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8703", "0.03803334762167105", "3.5728353158385544", "1669266011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8704", "0.026648363974301734", "1.8017773455204995", "1669269611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8704", "0.03791579208463074", "3.572622492055811", "1669269611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8704", "0.026648363974301734", "1.8017773455204995", "1669269611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8704", "0.03791579208463074", "3.572622492055811", "1669269611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8705", "0.02656623944644312", "1.8016239367350213", "1669273211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8705", "0.037799117964305406", "3.5724112717389342", "1669273211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8705", "0.02656623944644312", "1.8016239367350213", "1669273211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8705", "0.037799117964305406", "3.5724112717389342", "1669273211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8706", "0.0264840290908669", "1.8014703257282738", "1669276811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8706", "0.037682335574785356", "3.5721998003183058", "1669276811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8706", "0.0264840290908669", "1.8014703257282738", "1669276811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8706", "0.037682335574785356", "3.5721998003183058", "1669276811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8707", "0.026402495178053067", "1.801318020410123", "1669280411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8707", "0.03756649837596448", "3.571990095964372", "1669280411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8707", "0.026402495178053067", "1.801318020410123", "1669280411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8707", "0.03756649837596448", "3.571990095964372", "1669280411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8708", "0.02632229128449727", "1.8011681901026073", "1669284011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8708", "0.037452553078126984", "3.5717838043580694", "1669284011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8708", "0.02632229128449727", "1.8011681901026073", "1669284011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8708", "0.037452553078126984", "3.5717838043580694", "1669284011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8709", "0.026241191292876928", "1.801016695445956", "1669287611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8709", "0.037337330276126124", "3.57157521297177", "1669287611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8709", "0.026241191292876928", "1.801016695445956", "1669287611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8709", "0.037337330276126124", "3.57157521297177", "1669287611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8710", "0.026160212344191653", "1.800865426931322", "1669291211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8710", "0.03722227840610174", "3.5713669313616276", "1669291211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8710", "0.026160212344191653", "1.800865426931322", "1669291211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8710", "0.03722227840610174", "3.5713669313616276", "1669291211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8711", "0.026079373198822475", "1.8007143913799148", "1669294811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8711", "0.037107434044574665", "3.5711589884235355", "1669294811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8711", "0.026079373198822475", "1.8007143913799148", "1669294811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8711", "0.037107434044574665", "3.5711589884235355", "1669294811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8712", "0.02599896290802454", "1.8005641834513706", "1669298411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8712", "0.03699318865299624", "3.570952165170895", "1669298411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8712", "0.02599896290802454", "1.8005641834513706", "1669298411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8712", "0.03699318865299624", "3.570952165170895", "1669298411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8713", "0.025916742070137198", "1.8004103453360742", "1669302011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8713", "0.03687645698362059", "3.5707405132071766", "1669302011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8713", "0.025916742070137198", "1.8004103453360742", "1669302011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8713", "0.03687645698362059", "3.5707405132071766", "1669302011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8714", "0.025836445797014006", "1.800260330306165", "1669305611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8714", "0.03676237859737671", "3.5705339663005518", "1669305611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8714", "0.025836445797014006", "1.800260330306165", "1669305611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8714", "0.03676237859737671", "3.5705339663005518", "1669305611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8715", "0.025757583406624367", "1.800113030720925", "1669309211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8715", "0.0366503235230575", "3.5703311313709802", "1669309211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8715", "0.025757583406624367", "1.800113030720925", "1669309211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8715", "0.0366503235230575", "3.5703311313709802", "1669309211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8716", "0.025672364072904567", "1.799953625095751", "1669312811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8716", "0.036529316504414135", "3.5701117850853263", "1669312811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8716", "0.025672364072904567", "1.799953625095751", "1669312811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8716", "0.036529316504414135", "3.5701117850853263", "1669312811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8717", "0.025588934285270957", "1.7997977802860152", "1669316411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8717", "0.03641077446236852", "3.5698971896730134", "1669316411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8717", "0.025588934285270957", "1.7997977802860152", "1669316411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8717", "0.03641077446236852", "3.5698971896730134", "1669316411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8718", "0.025505779260510036", "1.7996424487626355", "1669320011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8718", "0.036292621721839086", "3.5696832993606904", "1669320011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8718", "0.025505779260510036", "1.7996424487626355", "1669320011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8718", "0.036292621721839086", "3.5696832993606904", "1669320011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8719", "0.02541693781514315", "1.7994762248105183", "1669323611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8719", "0.03616648307586435", "3.5694545951452783", "1669323611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8719", "0.02541693781514315", "1.7994762248105183", "1669323611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8719", "0.03616648307586435", "3.5694545951452783", "1669323611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8720", "0.025329837415403914", "1.7993135244220946", "1669327211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8720", "0.036042721730196806", "3.569230553633869", "1669327211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8720", "0.025329837415403914", "1.7993135244220946", "1669327211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8720", "0.036042721730196806", "3.569230553633869", "1669327211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8721", "0.025242381764194632", "1.7991501189461425", "1669330811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8721", "0.03591846898530382", "3.569005568029261", "1669330811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8721", "0.025242381764194632", "1.7991501189461425", "1669330811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8721", "0.03591846898530382", "3.569005568029261", "1669330811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8722", "0.025155461967555106", "1.798987685071579", "1669334411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8722", "0.03579498676935754", "3.56878193880406", "1669334411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8722", "0.025155461967555106", "1.798987685071579", "1669334411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8722", "0.03579498676935754", "3.56878193880406", "1669334411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8723", "0.02506899352414702", "1.7988261656556053", "1669338011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8723", "0.03567211965636284", "3.568559517749008", "1669338011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8723", "0.02506899352414702", "1.7988261656556053", "1669338011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8723", "0.03567211965636284", "3.568559517749008", "1669338011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8724", "0.0249827086742042", "1.7986649589700086", "1669341611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8724", "0.03554952286494964", "3.5683375464201275", "1669341611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8724", "0.0249827086742042", "1.7986649589700086", "1669341611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8724", "0.03554952286494964", "3.5683375464201275", "1669341611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8725", "0.024896527143068857", "1.7985039756751304", "1669345211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8725", "0.03542706104302752", "3.5681158599385596", "1669345211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8725", "0.024896527143068857", "1.7985039756751304", "1669345211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8725", "0.03542706104302752", "3.5681158599385596", "1669345211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8726", "0.024809204966806983", "1.7983408617450165", "1669348811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8726", "0.03530297719089974", "3.5678912375621348", "1669348811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8726", "0.024809204966806983", "1.7983408617450165", "1669348811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8726", "0.03530297719089974", "3.5678912375621348", "1669348811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8727", "0.024717425389143614", "1.798169394233072", "1669352411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8727", "0.03517256773962627", "3.5676551284805806", "1669352411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8727", "0.024717425389143614", "1.798169394233072", "1669352411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8727", "0.03517256773962627", "3.5676551284805806", "1669352411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8728", "0.02463348142429455", "1.7980125908211315", "1669356011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8728", "0.03505328189329821", "3.567439192556791", "1669356011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8728", "0.02463348142429455", "1.7980125908211315", "1669356011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8728", "0.03505328189329821", "3.567439192556791", "1669356011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8729", "0.024548968031662816", "1.797854723781777", "1669359611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8729", "0.03493318575059059", "3.567221790164477", "1669359611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8729", "0.024548968031662816", "1.797854723781777", "1669359611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8729", "0.03493318575059059", "3.567221790164477", "1669359611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8730", "0.0244595675549924", "1.797687095830769", "1669363211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8730", "0.03480636567781199", "3.566991380412542", "1669363211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8730", "0.0244595675549924", "1.797687095830769", "1669363211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8730", "0.03480636567781199", "3.566991380412542", "1669363211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8731", "0.02437764294094587", "1.7975340666817783", "1669366811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8731", "0.03468994528215178", "3.5667806354845766", "1669366811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8731", "0.02437764294094587", "1.7975340666817783", "1669366811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8731", "0.03468994528215178", "3.5667806354845766", "1669366811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8732", "0.024293695748383668", "1.7973771136161065", "1669370411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8732", "0.034570700807692374", "3.566564585784149", "1669370411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8732", "0.024293695748383668", "1.7973771136161065", "1669370411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8732", "0.034570700807692374", "3.566564585784149", "1669370411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8733", "0.024210128722131338", "1.7972210171328569", "1669374011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8733", "0.034451944046516955", "3.5663496129192094", "1669374011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8733", "0.024210128722131338", "1.7972210171328569", "1669374011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8733", "0.034451944046516955", "3.5663496129192094", "1669374011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8734", "0.024126525947546433", "1.7970648191194436", "1669377611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8734", "0.03433314759190227", "3.5661345225505476", "1669377611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8734", "0.024126525947546433", "1.7970648191194436", "1669377611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8734", "0.03433314759190227", "3.5661345225505476", "1669377611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8735", "0.024043597550250137", "1.7969099157348516", "1669381211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8735", "0.034215296145307696", "3.5659211893420593", "1669381211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8735", "0.024043597550250137", "1.7969099157348516", "1669381211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8735", "0.034215296145307696", "3.5659211893420593", "1669381211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8736", "0.023961047549544763", "1.7967557191995842", "1669384811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8736", "0.03409798136242963", "3.5657088279430575", "1669384811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8736", "0.023961047549544763", "1.7967557191995842", "1669384811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8736", "0.03409798136242963", "3.5657088279430575", "1669384811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8737", "0.023878648260610223", "1.796601804216995", "1669388411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8737", "0.033980879682488786", "3.5654968526455417", "1669388411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8737", "0.023878648260610223", "1.796601804216995", "1669388411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8737", "0.033980879682488786", "3.5654968526455417", "1669388411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8738", "0.023794965284806718", "1.7964452941155937", "1669392011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8738", "0.03386202187828822", "3.5652814378519406", "1669392011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8738", "0.023794965284806718", "1.7964452941155937", "1669392011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8738", "0.03386202187828822", "3.5652814378519406", "1669392011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8739", "0.023709443720443694", "1.796285547762377", "1669395611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8739", "0.03374048045376048", "3.5650614274703676", "1669395611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8739", "0.023709443720443694", "1.796285547762377", "1669395611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8739", "0.03374048045376048", "3.5650614274703676", "1669395611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8740", "0.02361992196098685", "1.7961183294567262", "1669399211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8740", "0.03361325279293415", "3.5648311244454587", "1669399211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8740", "0.02361992196098685", "1.7961183294567262", "1669399211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8740", "0.03361325279293415", "3.5648311244454587", "1669399211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8741", "0.02353097104639065", "1.7959521774777591", "1669402811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8741", "0.03348683515191351", "3.5646022880940134", "1669402811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8741", "0.02353097104639065", "1.7959521774777591", "1669402811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8741", "0.03348683515191351", "3.5646022880940134", "1669402811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8742", "0.023442095745138572", "1.7957861612918768", "1669406411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8742", "0.03336052564437196", "3.5643736406282014", "1669406411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8742", "0.023442095745138572", "1.7957861612918768", "1669406411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8742", "0.03336052564437196", "3.5643736406282014", "1669406411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8743", "0.023352893954587867", "1.7956194616907637", "1669410023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8743", "0.033233776702871476", "3.5641441007885404", "1669410023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8743", "0.023352893954587867", "1.7956194616907637", "1669410023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8743", "0.033233776702871476", "3.5641441007885404", "1669410023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8744", "0.023261993579966563", "1.7954493751939964", "1669413611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8744", "0.03310468755027729", "3.5639100420418717", "1669413611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8744", "0.023261993579966563", "1.7954493751939964", "1669413611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8744", "0.03310468755027729", "3.5639100420418717", "1669413611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8745", "0.023174114945236093", "1.795285227714655", "1669417211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8745", "0.03297978835066732", "3.5636839577858925", "1669417211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8745", "0.023174114945236093", "1.795285227714655", "1669417211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8745", "0.03297978835066732", "3.5636839577858925", "1669417211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8746", "0.02308569259603344", "1.795120040556187", "1669420811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8746", "0.03285412361587363", "3.56345645630746", "1669420811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8746", "0.02308569259603344", "1.795120040556187", "1669420811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8746", "0.03285412361587363", "3.56345645630746", "1669420811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8747", "0.022999413339389527", "1.7949580431490897", "1669424411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8747", "0.03273178912981172", "3.563233907839633", "1669424411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8747", "0.022999413339389527", "1.7949580431490897", "1669424411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8747", "0.03273178912981172", "3.563233907839633", "1669424411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8748", "0.022911824306036045", "1.7947944116389698", "1669428011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8748", "0.032607306679509784", "3.563008545938509", "1669428011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8748", "0.022911824306036045", "1.7947944116389698", "1669428011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8748", "0.032607306679509784", "3.563008545938509", "1669428011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8749", "0.022827901888581532", "1.794637465635115", "1669431611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8749", "0.03248809182429161", "3.562792503382971", "1669431611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8749", "0.022827901888581532", "1.794637465635115", "1669431611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8749", "0.03248809182429161", "3.562792503382971", "1669431611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8750", "0.022742254670022746", "1.7944774397327024", "1669435211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8750", "0.03236637454003427", "3.5625721190087267", "1669435211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8750", "0.022742254670022746", "1.7944774397327024", "1669435211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8750", "0.03236637454003427", "3.5625721190087267", "1669435211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8751", "0.02265661052613813", "1.7943174565932605", "1669438811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8751", "0.03224464747952181", "3.5623517662165396", "1669438811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8751", "0.02265661052613813", "1.7943174565932605", "1669438811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8751", "0.03224464747952181", "3.5623517662165396", "1669438811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8752", "0.022569637496865157", "1.7941550076483141", "1669442411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8752", "0.03212102466979851", "3.562128003918595", "1669442411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8752", "0.022569637496865157", "1.7941550076483141", "1669442411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8752", "0.03212102466979851", "3.562128003918595", "1669442411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8753", "0.02248136043653311", "1.7939899212914074", "1669446011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8753", "0.031995617904230465", "3.561900746158109", "1669446011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8753", "0.02248136043653311", "1.7939899212914074", "1669446011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8753", "0.031995617904230465", "3.561900746158109", "1669446011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8754", "0.022394284207916892", "1.7938272019916819", "1669449611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8754", "0.03187187324029264", "3.561676661353858", "1669449611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8754", "0.022394284207916892", "1.7938272019916819", "1669449611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8754", "0.03187187324029264", "3.561676661353858", "1669449611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8755", "0.022328576089090273", "1.793704035023971", "1669453211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8755", "0.03177862690180123", "3.5615073047965233", "1669453211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8755", "0.022328576089090273", "1.793704035023971", "1669453211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8755", "0.03177862690180123", "3.5615073047965233", "1669453211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8756", "0.022267213310594065", "1.793589402109363", "1669456811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8756", "0.031691409936297744", "3.5613494142654614", "1669456811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8756", "0.022267213310594065", "1.793589402109363", "1669456811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8756", "0.031691409936297744", "3.5613494142654614", "1669456811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8757", "0.022205456556542637", "1.7934740527634068", "1669460411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8757", "0.03160362553798423", "3.5611905225381557", "1669460411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8757", "0.022205456556542637", "1.7934740527634068", "1669460411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8757", "0.03160362553798423", "3.5611905225381557", "1669460411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8758", "0.022143871051541614", "1.7933590232968708", "1669464011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8758", "0.03151608395834814", "3.561032070512104", "1669464011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8758", "0.022143871051541614", "1.7933590232968708", "1669464011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8758", "0.03151608395834814", "3.561032070512104", "1669464011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8759", "0.02208245632088541", "1.7932443128229332", "1669467611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8759", "0.031428784527603226", "3.560874056973381", "1669467611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8759", "0.02208245632088541", "1.7932443128229332", "1669467611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8759", "0.031428784527603226", "3.560874056973381", "1669467611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8760", "0.022021124111651934", "1.793129761141411", "1669471211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8760", "0.03134160017246412", "3.5607162580503817", "1669471211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8760", "0.022021124111651934", "1.793129761141411", "1669471211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8760", "0.03134160017246412", "3.5607162580503817", "1669471211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8761", "0.02195940178057494", "1.7930144761586928", "1669474811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8761", "0.03125386229380467", "3.5605574512835534", "1669474811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8761", "0.02195940178057494", "1.7930144761586928", "1669474811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8761", "0.03125386229380467", "3.5605574512835534", "1669474811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8762", "0.02189779872252075", "1.79289941397438", "1669478411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8762", "0.031166293356712102", "3.560398950497376", "1669478411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8762", "0.02189779872252075", "1.79289941397438", "1669478411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8762", "0.031166293356712102", "3.560398950497376", "1669478411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8763", "0.021836772685570105", "1.792785392256044", "1669482011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8763", "0.031079557154288437", "3.560241907816471", "1669482011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8763", "0.021836772685570105", "1.792785392256044", "1669482011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8763", "0.031079557154288437", "3.560241907816471", "1669482011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8764", "0.021775852082481062", "1.792671552245688", "1669485611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8764", "0.03099297558366712", "3.5600851250546834", "1669485611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8764", "0.021775852082481062", "1.792671552245688", "1669485611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8764", "0.03099297558366712", "3.5600851250546834", "1669485611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8765", "0.021715457863290256", "1.7925587482367509", "1669489211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8765", "0.030907123169638465", "3.559929732086697", "1669489211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8765", "0.021715457863290256", "1.7925587482367509", "1669489211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8765", "0.030907123169638465", "3.559929732086697", "1669489211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8766", "0.02164385853343439", "1.7924250154054933", "1669492811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8766", "0.0308053415620847", "3.5597455075016646", "1669492811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8766", "0.02164385853343439", "1.7924250154054933", "1669492811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8766", "0.0308053415620847", "3.5597455075016646", "1669492811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8767", "0.021559282894502818", "1.7922670224734687", "1669496411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8767", "0.030685120597370497", "3.5595278775475965", "1669496411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8767", "0.021559282894502818", "1.7922670224734687", "1669496411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8767", "0.030685120597370497", "3.5595278775475965", "1669496411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8768", "0.021473361884249875", "1.792106305508858", "1669500011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8768", "0.030563060039833903", "3.559306639016547", "1669500011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8768", "0.021473361884249875", "1.792106305508858", "1669500011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8768", "0.030563060039833903", "3.559306639016547", "1669500011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8769", "0.02139041368681567", "1.7919513410807075", "1669503611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8769", "0.03044515429580458", "3.5590931853815344", "1669503611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8769", "0.02139041368681567", "1.7919513410807075", "1669503611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8769", "0.03044515429580458", "3.5590931853815344", "1669503611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8770", "0.021306789964262725", "1.7917951504351883", "1669507211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8770", "0.03032627467805029", "3.558878016330609", "1669507211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8770", "0.021306789964262725", "1.7917951504351883", "1669507211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8770", "0.03032627467805029", "3.558878016330609", "1669507211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8771", "0.021222529877369976", "1.791637771239401", "1669510811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8771", "0.03020648927798221", "3.5586612081987585", "1669510811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8771", "0.021222529877369976", "1.791637771239401", "1669510811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8771", "0.03020648927798221", "3.5586612081987585", "1669510811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8772", "0.02113725512537937", "1.791478428674995", "1669514411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8772", "0.030085284201589714", "3.558441740621869", "1669514411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8772", "0.02113725512537937", "1.791478428674995", "1669514411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8772", "0.030085284201589714", "3.558441740621869", "1669514411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8773", "0.021069302205060546", "1.791351507934053", "1669518011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8773", "0.029988679490937406", "3.5582668897206013", "1669518011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8773", "0.021069302205060546", "1.791351507934053", "1669518011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8773", "0.029988679490937406", "3.5582668897206013", "1669518011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8774", "0.021009425438941423", "1.7912394963270846", "1669521611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8774", "0.029903617068799456", "3.5581126982656035", "1669521611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8774", "0.021009425438941423", "1.7912394963270846", "1669521611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8774", "0.029903617068799456", "3.5581126982656035", "1669521611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8775", "0.02095097603765617", "1.7911303265407452", "1669525211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8775", "0.029820521641590426", "3.557962299668666", "1669525211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8775", "0.02095097603765617", "1.7911303265407452", "1669525211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8775", "0.029820521641590426", "3.557962299668666", "1669525211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8776", "0.02087646851545539", "1.790991163973614", "1669528811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8776", "0.029714596168519316", "3.557770580075898", "1669528811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8776", "0.02087646851545539", "1.790991163973614", "1669528811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8776", "0.029714596168519316", "3.557770580075898", "1669528811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8777", "0.020794088071068587", "1.7908372966699257", "1669532411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8777", "0.029597476930743095", "3.5575586006824143", "1669532411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8777", "0.020794088071068587", "1.7908372966699257", "1669532411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8777", "0.029597476930743095", "3.5575586006824143", "1669532411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8778", "0.020711898116436547", "1.7906837851925148", "1669536011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8778", "0.029480627432917354", "3.5573471098496228", "1669536011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8778", "0.020711898116436547", "1.7906837851925148", "1669536011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8778", "0.029480627432917354", "3.5573471098496228", "1669536011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8779", "0.020629729149921925", "1.7905302685481796", "1669539611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8779", "0.029363822272635322", "3.5571356408875316", "1669539611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8779", "0.020629729149921925", "1.7905302685481796", "1669539611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8779", "0.029363822272635322", "3.5571356408875316", "1669539611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8780", "0.020549077956888435", "1.7903796331949777", "1669543211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8780", "0.029249157626618734", "3.5569281078427775", "1669543211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8780", "0.020549077956888435", "1.7903796331949777", "1669543211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8780", "0.029249157626618734", "3.5569281078427775", "1669543211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8781", "0.02046860248606713", "1.790229324239599", "1669546811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8781", "0.029134742423816504", "3.556721024167076", "1669546811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8781", "0.02046860248606713", "1.790229324239599", "1669546811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8781", "0.029134742423816504", "3.556721024167076", "1669546811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8782", "0.02038834716756615", "1.7900794265107067", "1669550411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8782", "0.029020639193040182", "3.5565145054696434", "1669550411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8782", "0.02038834716756615", "1.7900794265107067", "1669550411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8782", "0.029020639193040182", "3.5565145054696434", "1669550411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8783", "0.020308265308262585", "1.7899298527964709", "1669554011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8783", "0.028906781555680997", "3.556308431607546", "1669554011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8783", "0.020308265308262585", "1.7899298527964709", "1669554011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8783", "0.028906781555680997", "3.556308431607546", "1669554011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8784", "0.02022839108080046", "1.7897806669229561", "1669557611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8784", "0.028793218104446936", "3.5561028905276637", "1669557611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8784", "0.02022839108080046", "1.7897806669229561", "1669557611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8784", "0.028793218104446936", "3.5561028905276637", "1669557611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8785", "0.02014836514643833", "1.7896311977316632", "1669561211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8785", "0.028679437940271536", "3.555896957541815", "1669561211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8785", "0.02014836514643833", "1.7896311977316632", "1669561211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8785", "0.028679437940271536", "3.555896957541815", "1669561211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8786", "0.02006834509428084", "1.789481739561221", "1669564811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8786", "0.02856566511908489", "3.5556910381742206", "1669564811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8786", "0.02006834509428084", "1.789481739561221", "1669564811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8786", "0.02856566511908489", "3.5556910381742206", "1669564811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8787", "0.020012685849182324", "1.789377781526986", "1669568411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8787", "0.02848652798639796", "3.5555478067228314", "1669568411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8787", "0.020012685849182324", "1.789377781526986", "1669568411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8787", "0.02848652798639796", "3.5555478067228314", "1669568411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8788", "0.01995718094999545", "1.789274111790188", "1669572011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8788", "0.028407609813381703", "3.5554049717278113", "1669572011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8788", "0.01995718094999545", "1.789274111790188", "1669572011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8788", "0.028407609813381703", "3.5554049717278113", "1669572011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8789", "0.01990860737347045", "1.7891832063070254", "1669575611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8789", "0.028338610103076707", "3.555279847987717", "1669575611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8789", "0.01990860737347045", "1.7891832063070254", "1669575611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8789", "0.028338610103076707", "3.555279847987717", "1669575611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8790", "0.019852964923747787", "1.7890792105774362", "1669579211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8790", "0.028259519667081946", "3.5551366101060444", "1669579211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8790", "0.019852964923747787", "1.7890792105774362", "1669579211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8790", "0.028259519667081946", "3.5551366101060444", "1669579211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8791", "0.019775479228206907", "1.7889344870692838", "1669582811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8791", "0.028149346228762348", "3.554937207776446", "1669582811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8791", "0.019775479228206907", "1.7889344870692838", "1669582811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8791", "0.028149346228762348", "3.554937207776446", "1669582811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8792", "0.019689675925912874", "1.7887733217591317", "1669586411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8792", "0.028027663140489302", "3.554715775451256", "1669586411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8792", "0.019689675925912874", "1.7887733217591317", "1669586411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8792", "0.028027663140489302", "3.554715775451256", "1669586411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8793", "0.01961267776024882", "1.7886295109485426", "1669590011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8793", "0.027918180172084656", "3.554517626149819", "1669590011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8793", "0.01961267776024882", "1.7886295109485426", "1669590011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8793", "0.027918180172084656", "3.554517626149819", "1669590011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8794", "0.01952971635429651", "1.788474547281967", "1669593611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8794", "0.02780022241519787", "3.55430411881148", "1669593611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8794", "0.01952971635429651", "1.788474547281967", "1669593611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8794", "0.02780022241519787", "3.55430411881148", "1669593611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8795", "0.01944430901754566", "1.7883149733733628", "1669597211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8795", "0.027678800350191487", "3.5540842864117237", "1669597211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8795", "0.01944430901754566", "1.7883149733733628", "1669597211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8795", "0.027678800350191487", "3.5540842864117237", "1669597211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8796", "0.019390348320607258", "1.7882141870370707", "1669600823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8796", "0.027602073207671197", "3.5539454172875367", "1669600823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8796", "0.019390348320607258", "1.7882141870370707", "1669600823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8796", "0.027602073207671197", "3.5539454172875367", "1669600823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8797", "0.019336486992661196", "1.7881135795348666", "1669604411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8797", "0.027525489272678724", "3.553806798537511", "1669604411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8797", "0.019336486992661196", "1.7881135795348666", "1669604411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8797", "0.027525489272678724", "3.553806798537511", "1669604411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8798", "0.019281867473711255", "1.788011310160273", "1669608011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8798", "0.02744791293567224", "3.553666058749247", "1669608011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8798", "0.019281867473711255", "1.788011310160273", "1669608011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8798", "0.02744791293567224", "3.553666058749247", "1669608011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8799", "0.01922838926043801", "1.7879114300723065", "1669611611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8799", "0.027371868691883385", "3.553528432708583", "1669611611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8799", "0.01922838926043801", "1.7879114300723065", "1669611611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8799", "0.027371868691883385", "3.553528432708583", "1669611611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8800", "0.019175059346338855", "1.7878118269748802", "1669615211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8800", "0.02729603487042341", "3.5533911876397117", "1669615211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8800", "0.019175059346338855", "1.7878118269748802", "1669615211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8800", "0.02729603487042341", "3.5533911876397117", "1669615211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8801", "0.019121314587321307", "1.7877113736215", "1669618811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8801", "0.02721963714817662", "3.5532528223439455", "1669618811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8801", "0.019121314587321307", "1.7877113736215", "1669618811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8801", "0.02721963714817662", "3.5532528223439455", "1669618811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8802", "0.019067925167165014", "1.7876116115231948", "1669622411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8802", "0.027143734586733304", "3.553115389819898", "1669622411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8802", "0.019067925167165014", "1.7876116115231948", "1669622411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8802", "0.027143734586733304", "3.553115389819898", "1669622411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8803", "0.019013640843562232", "1.7875100574675902", "1669626011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8803", "0.027066601280309986", "3.5529755705540564", "1669626011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8803", "0.019013640843562232", "1.7875100574675902", "1669626011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8803", "0.027066601280309986", "3.5529755705540564", "1669626011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8804", "0.01896090645948823", "1.7874115674939413", "1669629611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8804", "0.026991612200594123", "3.5528398559540264", "1669629611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8804", "0.01896090645948823", "1.7874115674939413", "1669629611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8804", "0.026991612200594123", "3.5528398559540264", "1669629611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8805", "0.018908318312421887", "1.7873133506565342", "1669633211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8805", "0.02691683063034528", "3.5527045170451363", "1669633211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8805", "0.018908318312421887", "1.7873133506565342", "1669633211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8805", "0.02691683063034528", "3.5527045170451363", "1669633211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8806", "0.018855879108200465", "1.7872154119844395", "1669636811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8806", "0.026842260429569203", "3.5525695607797383", "1669636811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8806", "0.018855879108200465", "1.7872154119844395", "1669636811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8806", "0.026842260429569203", "3.5525695607797383", "1669636811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8807", "0.01880328340371667", "1.7871171407353692", "1669640411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8807", "0.026767481366075166", "3.5524341733563216", "1669640411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8807", "0.01880328340371667", "1.7871171407353692", "1669640411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8807", "0.026767481366075166", "3.5524341733563216", "1669640411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8808", "0.018751540688444285", "1.7870205009230309", "1669644011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8808", "0.02669390142244669", "3.552301006912604", "1669644011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8808", "0.018751540688444285", "1.7870205009230309", "1669644011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8808", "0.02669390142244669", "3.552301006912604", "1669644011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8809", "0.018699977644108978", "1.7869241074775815", "1669647611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8809", "0.026620607822726027", "3.5521682408373985", "1669647611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8809", "0.018699977644108978", "1.7869241074775815", "1669647611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8809", "0.026620607822726027", "3.5521682408373985", "1669647611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8810", "0.01864811308374121", "1.7868272424963934", "1669651211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8810", "0.026546852923900566", "3.5520347611687733", "1669651211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8810", "0.01864811308374121", "1.7868272424963934", "1669651211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8810", "0.026546852923900566", "3.5520347611687733", "1669651211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8811", "0.01859636413117846", "1.7867305896365289", "1669654811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8811", "0.02647326333419534", "3.551901575773055", "1669654811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8811", "0.01859636413117846", "1.7867305896365289", "1669654811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8811", "0.02647326333419534", "3.551901575773055", "1669654811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8812", "0.018544759072829677", "1.78663420349155", "1669658411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8812", "0.026399878663741338", "3.5517687586681608", "1669658411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8812", "0.018544759072829677", "1.78663420349155", "1669658411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8812", "0.026399878663741338", "3.5517687586681608", "1669658411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8813", "0.018491414718705454", "1.7865343679999874", "1669662011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8813", "0.02632409055273819", "3.5516313262439323", "1669662011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8813", "0.018491414718705454", "1.7865343679999874", "1669662011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8813", "0.02632409055273819", "3.5516313262439323", "1669662011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8814", "0.018426621766187853", "1.7864116627560975", "1669665611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8814", "0.026232542240617003", "3.5514634039401534", "1669665611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8814", "0.018426621766187853", "1.7864116627560975", "1669665611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8814", "0.026232542240617003", "3.5514634039401534", "1669665611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8815", "0.01833787779483796", "1.786245270023223", "1669669211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8815", "0.02610656593777267", "3.5512345569909765", "1669669211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8815", "0.01833787779483796", "1.786245270023223", "1669669211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8815", "0.02610656593777267", "3.5512345569909765", "1669669211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8816", "0.018254154214250112", "1.7860887081568448", "1669672811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8816", "0.02598756878457008", "3.551018942150475", "1669672811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8816", "0.018254154214250112", "1.7860887081568448", "1669672811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8816", "0.02598756878457008", "3.551018942150475", "1669672811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8817", "0.018173260582409558", "1.7859371051318382", "1669676411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8817", "0.02587270952832164", "3.5508103843212293", "1669676411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8817", "0.018173260582409558", "1.7859371051318382", "1669676411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8817", "0.02587270952832164", "3.5508103843212293", "1669676411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8818", "0.018090007603261706", "1.7857814618847265", "1669680011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8818", "0.025754365549934054", "3.550596004678422", "1669680011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8818", "0.018090007603261706", "1.7857814618847265", "1669680011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8818", "0.025754365549934054", "3.550596004678422", "1669680011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8819", "0.018006949778798048", "1.7856259728249149", "1669683611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8819", "0.025636371693810153", "3.550381980812947", "1669683611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8819", "0.018006949778798048", "1.7856259728249149", "1669683611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8819", "0.025636371693810153", "3.550381980812947", "1669683611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8820", "0.0179244550874336", "1.7854718723812917", "1669687211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8820", "0.02551905960156586", "3.5501696366721487", "1669687211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8820", "0.0179244550874336", "1.7854718723812917", "1669687211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8820", "0.02551905960156586", "3.5501696366721487", "1669687211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8821", "0.017843051203917874", "1.7853198305715707", "1669690811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8821", "0.025403290289701008", "3.549960113160893", "1669690811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8821", "0.017843051203917874", "1.7853198305715707", "1669690811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8821", "0.025403290289701008", "3.549960113160893", "1669690811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8822", "0.017762163009732747", "1.7851687772036215", "1669694411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8822", "0.0252882444840126", "3.5497519327876823", "1669694411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8822", "0.017762163009732747", "1.7851687772036215", "1669694411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8822", "0.0252882444840126", "3.5497519327876823", "1669694411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8823", "0.017681341180519304", "1.7850178286347211", "1669698023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8823", "0.025173298739689907", "3.5495439084619766", "1669698023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8823", "0.017681341180519304", "1.7850178286347211", "1669698023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8823", "0.025173298739689907", "3.5495439084619766", "1669698023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8824", "0.01760089863513897", "1.7848676076457315", "1669701611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8824", "0.025058884667139597", "3.5493368720225202", "1669701611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8824", "0.01760089863513897", "1.7848676076457315", "1669701611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8824", "0.025058884667139597", "3.5493368720225202", "1669701611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8825", "0.017520675457680563", "1.7847177963474146", "1669705211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8825", "0.024944781574055032", "3.549130398644508", "1669705211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8825", "0.017520675457680563", "1.7847177963474146", "1669705211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8825", "0.024944781574055032", "3.549130398644508", "1669705211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8826", "0.017452737209468418", "1.7845909263425341", "1669708811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8826", "0.024848150787357706", "3.5489555422514334", "1669708811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8826", "0.017452737209468418", "1.7845909263425341", "1669708811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8826", "0.024848150787357706", "3.5489555422514334", "1669708811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8827", "0.01740427429868476", "1.7845004252062904", "1669712411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8827", "0.024779219957866", "3.548830809932124", "1669712411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8827", "0.01740427429868476", "1.7845004252062904", "1669712411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8827", "0.024779219957866", "3.548830809932124", "1669712411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8828", "0.017342228271693398", "1.7843845205416418", "1669716011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8828", "0.024690982061234386", "3.5486710908119785", "1669716011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8828", "0.017342228271693398", "1.7843845205416418", "1669716011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8828", "0.024690982061234386", "3.5486710908119785", "1669716011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8829", "0.017297661760749254", "1.784301007554013", "1669719611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8829", "0.024627693393736997", "3.5485561872813554", "1669719611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8829", "0.017297661760749254", "1.784301007554013", "1669719611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8829", "0.024627693393736997", "3.5485561872813554", "1669719611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8830", "0.017226923700641234", "1.784168891962302", "1669723211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8830", "0.024527083835892", "3.548374109221805", "1669723211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8830", "0.017226923700641234", "1.784168891962302", "1669723211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8830", "0.024527083835892", "3.548374109221805", "1669723211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8831", "0.017147896195907782", "1.784021134434185", "1669726811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8831", "0.024414739430086183", "3.5481705826984715", "1669726811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8831", "0.017147896195907782", "1.784021134434185", "1669726811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8831", "0.024414739430086183", "3.5481705826984715", "1669726811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8832", "0.017069223348291723", "1.783874220853539", "1669730411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8832", "0.02430283488029213", "3.547968092647659", "1669730411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8832", "0.017069223348291723", "1.783874220853539", "1669730411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8832", "0.02430283488029213", "3.547968092647659", "1669730411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8833", "0.01699016565160394", "1.7837265848980157", "1669734011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8833", "0.024190383234389035", "3.5477646080036593", "1669734011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8833", "0.01699016565160394", "1.7837265848980157", "1669734011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8833", "0.024190383234389035", "3.5477646080036593", "1669734011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8834", "0.01691193288597342", "1.783580307810776", "1669737611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8834", "0.024079167612808452", "3.547563119987569", "1669737611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8834", "0.01691193288597342", "1.783580307810776", "1669737611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8834", "0.024079167612808452", "3.547563119987569", "1669737611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8835", "0.01683400017593096", "1.783434769425347", "1669741211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8835", "0.023968315367091757", "3.54736252570632", "1669741211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8835", "0.01683400017593096", "1.783434769425347", "1669741211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8835", "0.023968315367091757", "3.54736252570632", "1669741211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8836", "0.016754981056467805", "1.7832867903627765", "1669744811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8836", "0.023856061036280043", "3.5471588497967086", "1669744811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8836", "0.016754981056467805", "1.7832867903627765", "1669744811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8836", "0.023856061036280043", "3.5471588497967086", "1669744811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8837", "0.016678526240361025", "1.7831439983307245", "1669748411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8837", "0.023747313832863198", "3.546962047268959", "1669748411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8837", "0.016678526240361025", "1.7831439983307245", "1669748411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8837", "0.023747313832863198", "3.546962047268959", "1669748411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8838", "0.016602357782622135", "1.7830017608003077", "1669752011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8838", "0.02363896612837131", "3.5467659940151797", "1669752011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8838", "0.016602357782622135", "1.7830017608003077", "1669752011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8838", "0.02363896612837131", "3.5467659940151797", "1669752011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8839", "0.016525221969419305", "1.7828577132294696", "1669755611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8839", "0.023529242709997646", "3.5465674469396804", "1669755611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8839", "0.016525221969419305", "1.7828577132294696", "1669755611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8839", "0.023529242709997646", "3.5465674469396804", "1669755611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8840", "0.016478691196325966", "1.7827707445594883", "1669759211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8840", "0.023463079724520584", "3.5464476249302903", "1669759211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8840", "0.016478691196325966", "1.7827707445594883", "1669759211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8840", "0.023463079724520584", "3.5464476249302903", "1669759211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8841", "0.016432941706673053", "1.782685314520465", "1669762811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8841", "0.023397999886706843", "3.5463298683120126", "1669762811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8841", "0.016432941706673053", "1.782685314520465", "1669762811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8841", "0.023397999886706843", "3.5463298683120126", "1669762811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8842", "0.01638736418360852", "1.782600205262576", "1669766411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8842", "0.023333164466115445", "3.546212553589537", "1669766411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8842", "0.01638736418360852", "1.782600205262576", "1669766411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8842", "0.023333164466115445", "3.546212553589537", "1669766411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8843", "0.01634188480061681", "1.7825152808460707", "1669770011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8843", "0.023268467772805945", "3.5460954920642704", "1669770011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8843", "0.01634188480061681", "1.7825152808460707", "1669770011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8843", "0.023268467772805945", "3.5460954920642704", "1669770011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8844", "0.0162929576865127", "1.7824236325183993", "1669773623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8844", "0.02319896624741402", "3.545969358651513", "1669773623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8844", "0.0162929576865127", "1.7824236325183993", "1669773623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8844", "0.02319896624741402", "3.545969358651513", "1669773623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8845", "0.016246358904770226", "1.7823364575365388", "1669777211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8845", "0.02313273257419716", "3.545849304298952", "1669777211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8845", "0.016246358904770226", "1.7823364575365388", "1669777211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8845", "0.02313273257419716", "3.545849304298952", "1669777211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8846", "0.016201298827963333", "1.782252315797633", "1669780811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8846", "0.02306863146577632", "3.545733320302428", "1669780811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8846", "0.016201298827963333", "1.782252315797633", "1669780811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8846", "0.02306863146577632", "3.545733320302428", "1669780811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8847", "0.01612485958555996", "1.7821094615811055", "1669784411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8847", "0.022959931678239065", "3.54553648471845", "1669784411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8847", "0.01612485958555996", "1.7821094615811055", "1669784411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8847", "0.022959931678239065", "3.54553648471845", "1669784411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8848", "0.016049303921902087", "1.7819683753230613", "1669788011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8848", "0.022852446621270457", "3.5453420034359504", "1669788011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8848", "0.016049303921902087", "1.7819683753230613", "1669788011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8848", "0.022852446621270457", "3.5453420034359504", "1669788011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8849", "0.015973379882224713", "1.7818265998236265", "1669791611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8849", "0.022744437084947458", "3.545146571617574", "1669791611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8849", "0.015973379882224713", "1.7818265998236265", "1669791611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8849", "0.022744437084947458", "3.545146571617574", "1669791611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8850", "0.015897257622999404", "1.781684435590267", "1669795211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8850", "0.022636151155808835", "3.5449506153593053", "1669795211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8850", "0.015897257622999404", "1.781684435590267", "1669795211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8850", "0.022636151155808835", "3.5449506153593053", "1669795211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8851", "0.015820905457034837", "1.7815418104492537", "1669798811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8851", "0.02252754829892246", "3.544754044119259", "1669798811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8851", "0.015820905457034837", "1.7815418104492537", "1669798811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8851", "0.02252754829892246", "3.544754044119259", "1669798811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8852", "0.0157408256697248", "1.7813918837623195", "1669802411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8852", "0.02241376075621677", "3.5445476411901047", "1669802411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8852", "0.0157408256697248", "1.7813918837623195", "1669802411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8852", "0.02241376075621677", "3.5445476411901047", "1669802411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8853", "0.015663867611822303", "1.7812480786623566", "1669806011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8853", "0.02230431102849438", "3.544349473932179", "1669806011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8853", "0.015663867611822303", "1.7812480786623566", "1669806011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8853", "0.02230431102849438", "3.544349473932179", "1669806011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8854", "0.0156204229231746", "1.7811669553952", "1669809611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8854", "0.022242503220220464", "3.5442376432037204", "1669809611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8854", "0.0156204229231746", "1.7811669553952", "1669809611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8854", "0.022242503220220464", "3.5442376432037204", "1669809611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8855", "0.0155769669903143", "1.7810857965810876", "1669813211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8855", "0.022180684209862165", "3.5441257730429876", "1669813211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8855", "0.0155769669903143", "1.7810857965810876", "1669813211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8855", "0.022180684209862165", "3.5441257730429876", "1669813211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8856", "0.015535875781929609", "1.781007989921591", "1669816811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8856", "0.02212260139510471", "3.544019256233166", "1669816811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8856", "0.015535875781929609", "1.781007989921591", "1669816811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8856", "0.02212260139510471", "3.544019256233166", "1669816811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8857", "0.015492598465460385", "1.7809271362664052", "1669820411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8857", "0.022061045844608305", "3.5439078253918677", "1669820411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8857", "0.015492598465460385", "1.7809271362664052", "1669820411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8857", "0.022061045844608305", "3.5439078253918677", "1669820411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8858", "0.015448485283512468", "1.7808446139968601", "1669824011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8858", "0.021998338540315462", "3.543794168105833", "1669824011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8858", "0.015448485283512468", "1.7808446139968601", "1669824011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8858", "0.021998338540315462", "3.543794168105833", "1669824011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8859", "0.015402515960990083", "1.7807583639372353", "1669827611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8859", "0.021933081809179886", "3.543675551762506", "1669827611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8859", "0.015402515960990083", "1.7807583639372353", "1669827611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8859", "0.021933081809179886", "3.543675551762506", "1669827611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8860", "0.015362537544524404", "1.7806837330884042", "1669831211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8860", "0.021876196768736648", "3.5435726547656903", "1669831211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8860", "0.015362537544524404", "1.7806837330884042", "1669831211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8860", "0.021876196768736648", "3.5435726547656903", "1669831211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8861", "0.015288351719620542", "1.7805452144925071", "1669834811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8861", "0.021770648081309678", "3.543381692495376", "1669834811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8861", "0.015288351719620542", "1.7805452144925071", "1669834811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8861", "0.021770648081309678", "3.543381692495376", "1669834811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8862", "0.01521354284953775", "1.780405477254835", "1669838411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8862", "0.02166423142140345", "3.543189086951467", "1669838411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8862", "0.01521354284953775", "1.780405477254835", "1669838411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8862", "0.02166423142140345", "3.543189086951467", "1669838411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8863", "0.015170997440871454", "1.7803259910096214", "1669842011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8863", "0.02160371472749053", "3.5430795373179165", "1669842011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8863", "0.015170997440871454", "1.7803259910096214", "1669842011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8863", "0.02160371472749053", "3.5430795373179165", "1669842011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8864", "0.015128919657795817", "1.780247425117226", "1669845611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8864", "0.021543846560622196", "3.542971223548908", "1669845611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8864", "0.015128919657795817", "1.780247425117226", "1669845611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8864", "0.021543846560622196", "3.542971223548908", "1669845611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8865", "0.01505503361813411", "1.7801093166990756", "1669849211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8865", "0.0214387740091889", "3.542780925616584", "1669849211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8865", "0.01505503361813411", "1.7801093166990756", "1669849211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8865", "0.0214387740091889", "3.542780925616584", "1669849211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8866", "0.015013277433930784", "1.7800313517287474", "1669852823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8866", "0.021379362491331804", "3.5426734388233165", "1669852823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8866", "0.015013277433930784", "1.7800313517287474", "1669852823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8866", "0.021379362491331804", "3.5426734388233165", "1669852823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8867", "0.014971603683766209", "1.7799535366565538", "1669856411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8867", "0.02132006939353632", "3.5425661610359565", "1669856411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8867", "0.014971603683766209", "1.7799535366565538", "1669856411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8867", "0.02132006939353632", "3.5425661610359565", "1669856411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8868", "0.014911476882854203", "1.7798408797390262", "1669860011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8868", "0.021234655834856734", "3.54241111420625", "1669860011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8868", "0.014911476882854203", "1.7798408797390262", "1669860011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8868", "0.021234655834856734", "3.54241111420625", "1669860011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8869", "0.014870118829160752", "1.779763659262589", "1669863611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8869", "0.02117580945207796", "3.5423046516014396", "1669863611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8869", "0.014870118829160752", "1.779763659262589", "1669863611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8869", "0.02117580945207796", "3.5423046516014396", "1669863611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8870", "0.014830124244337762", "1.7796889047033326", "1669867211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8870", "0.021118930762689968", "3.542201643321432", "1669867211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8870", "0.014830124244337762", "1.7796889047033326", "1669867211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8870", "0.021118930762689968", "3.542201643321432", "1669867211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8871", "0.014788776932932382", "1.779611683793614", "1669870811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8871", "0.02106010630173375", "3.542095193419712", "1669870811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8871", "0.014788776932932382", "1.779611683793614", "1669870811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8871", "0.02106010630173375", "3.542095193419712", "1669870811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8872", "0.014747759157820998", "1.7795350989644867", "1669874411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8872", "0.021001743182820998", "3.541989605745045", "1669874411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8872", "0.014747759157820998", "1.7795350989644867", "1669874411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8872", "0.021001743182820998", "3.541989605745045", "1669874411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8873", "0.014676595854938183", "1.7794017738648433", "1669878011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8873", "0.02090064539381649", "3.5418061026723713", "1669878011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8873", "0.014676595854938183", "1.7794017738648433", "1669878011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8873", "0.02090064539381649", "3.5418061026723713", "1669878011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8874", "0.014601378024159438", "1.7792613360383958", "1669881611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8874", "0.020793617537399674", "3.5416124767318684", "1669881611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8874", "0.014601378024159438", "1.7792613360383958", "1669881611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8874", "0.020793617537399674", "3.5416124767318684", "1669881611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8875", "0.014525943281144814", "1.7791204932522127", "1669885211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8875", "0.02068628012532852", "3.5414182910648466", "1669885211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8875", "0.014525943281144814", "1.7791204932522127", "1669885211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8875", "0.02068628012532852", "3.5414182910648466", "1669885211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8876", "0.014395489165718063", "1.778876684493994", "1669888811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8876", "0.02050073664140564", "3.5410823043129174", "1669888811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8876", "0.014395489165718063", "1.778876684493994", "1669888811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8876", "0.02050073664140564", "3.5410823043129174", "1669888811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8877", "0.014253415331480229", "1.7786113145616156", "1669892411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8877", "0.02029860919908739", "3.5407164931728548", "1669892411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8877", "0.014253415331480229", "1.7786113145616156", "1669892411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8877", "0.02029860919908739", "3.5407164931728548", "1669892411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8878", "0.014174035601535614", "1.7784631082508993", "1669896011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8878", "0.020185653270382704", "3.5405121469577163", "1669896011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8878", "0.014174035601535614", "1.7784631082508993", "1669896011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8878", "0.020185653270382704", "3.5405121469577163", "1669896011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8879", "0.014098305032359043", "1.7783217149425912", "1669899611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8879", "0.020077889166109916", "3.5403171931852753", "1669899611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8879", "0.014098305032359043", "1.7783217149425912", "1669899611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8879", "0.020077889166109916", "3.5403171931852753", "1669899611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8880", "0.01405694942298351", "1.7782442246589032", "1669903211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8880", "0.02001913690826116", "3.5402105393818237", "1669903211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8880", "0.01405694942298351", "1.7782442246589032", "1669903211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8880", "0.02001913690826116", "3.5402105393818237", "1669903211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8881", "0.014017038247190633", "1.7781695884803717", "1669906823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8881", "0.01996238481637109", "3.540107712150824", "1669906823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8881", "0.014017038247190633", "1.7781695884803717", "1669906823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8881", "0.01996238481637109", "3.540107712150824", "1669906823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8882", "0.013976228222108871", "1.778093395127469", "1669910411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8882", "0.01990431106035141", "3.5400026541137963", "1669910411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8882", "0.013976228222108871", "1.778093395127469", "1669910411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8882", "0.01990431106035141", "3.5400026541137963", "1669910411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8883", "0.013911413204816857", "1.7779712857712706", "1669914011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8883", "0.01981246106132117", "3.539835040793168", "1669914011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8883", "0.013911413204816857", "1.7779712857712706", "1669914011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8883", "0.01981246106132117", "3.539835040793168", "1669914011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8884", "0.01382890468074368", "1.7778167150899458", "1669917611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8884", "0.019695231226050915", "3.5396222724095368", "1669917611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8884", "0.01382890468074368", "1.7778167150899458", "1669917611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8884", "0.019695231226050915", "3.5396222724095368", "1669917611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8885", "0.013771092977064752", "1.7777084513800103", "1669921211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8885", "0.019613076445633204", "3.5394732175441384", "1669921211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8885", "0.013771092977064752", "1.7777084513800103", "1669921211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8885", "0.019613076445633204", "3.5394732175441384", "1669921211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8886", "0.013732897610831865", "1.777637145103307", "1669924811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8886", "0.019558720029433836", "3.539374891953338", "1669924811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8886", "0.013732897610831865", "1.777637145103307", "1669924811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8886", "0.019558720029433836", "3.539374891953338", "1669924811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8887", "0.013694765896411942", "1.7775659543605804", "1669928411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8887", "0.0195044551196178", "3.539276727592312", "1669928411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8887", "0.013694765896411942", "1.7775659543605804", "1669928411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8887", "0.0195044551196178", "3.539276727592312", "1669928411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8888", "0.01365670469892788", "1.7774948881669121", "1669932011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8888", "0.019450292816487982", "3.5391787395110494", "1669932011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8888", "0.01365670469892788", "1.7774948881669121", "1669932011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8888", "0.019450292816487982", "3.5391787395110494", "1669932011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8889", "0.013618394645846658", "1.7774233097772962", "1669935611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8889", "0.01939579277713161", "3.539080077573428", "1669935611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8889", "0.013618394645846658", "1.7774233097772962", "1669935611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8889", "0.01939579277713161", "3.539080077573428", "1669935611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8890", "0.01356493695546642", "1.7773234460208287", "1669939211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8890", "0.01931973751115579", "3.5389424158635046", "1669939211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8890", "0.01356493695546642", "1.7773234460208287", "1669939211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8890", "0.01931973751115579", "3.5389424158635046", "1669939211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8891", "0.01351033445963198", "1.7772213615623311", "1669942823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8891", "0.0192420817489751", "3.538801748697357", "1669942823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8891", "0.01351033445963198", "1.7772213615623311", "1669942823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8891", "0.0192420817489751", "3.538801748697357", "1669942823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8892", "0.013457194064908019", "1.7771221558657178", "1669946411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8892", "0.019166454155663277", "3.5386649477868204", "1669946411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8892", "0.013457194064908019", "1.7771221558657178", "1669946411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8892", "0.019166454155663277", "3.5386649477868204", "1669946411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8893", "0.013403638733769348", "1.777022094644385", "1669950011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8893", "0.01909026387179787", "3.538527022140515", "1669950011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8893", "0.013403638733769348", "1.777022094644385", "1669950011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8893", "0.01909026387179787", "3.538527022140515", "1669950011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8894", "0.013347981621438503", "1.7769178708384161", "1669953611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8894", "0.019011165415186406", "3.5383835201065015", "1669953611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8894", "0.013347981621438503", "1.7769178708384161", "1669953611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8894", "0.019011165415186406", "3.5383835201065015", "1669953611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8895", "0.013295302554346656", "1.776819528001487", "1669957211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8895", "0.018936192445460805", "3.5382479058575913", "1669957211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8895", "0.013295302554346656", "1.776819528001487", "1669957211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8895", "0.018936192445460805", "3.5382479058575913", "1669957211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8896", "0.013235035761936874", "1.7767067925312918", "1669960811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8896", "0.01885049965601119", "3.5380926001250144", "1669960811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8896", "0.013235035761936874", "1.7767067925312918", "1669960811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8896", "0.01885049965601119", "3.5380926001250144", "1669960811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8897", "0.013182273605706177", "1.7766082955204596", "1669964411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8897", "0.018775407160425743", "3.53795677117987", "1669964411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8897", "0.013182273605706177", "1.7766082955204596", "1669964411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8897", "0.018775407160425743", "3.53795677117987", "1669964411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8898", "0.013139757162748674", "1.7765289213811934", "1669968011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8898", "0.018714897693737756", "3.537847315205218", "1669968011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8898", "0.013139757162748674", "1.7765289213811934", "1669968011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8898", "0.018714897693737756", "3.537847315205218", "1669968011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8899", "0.013101773173849907", "1.7764578130319015", "1669971611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8899", "0.018660907054800363", "3.5377493921040983", "1669971611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8899", "0.013101773173849907", "1.7764578130319015", "1669971611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8899", "0.018660907054800363", "3.5377493921040983", "1669971611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8900", "0.01306474087442267", "1.7763885987908916", "1669975211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8900", "0.018608229606204944", "3.5376539998203866", "1669975211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8900", "0.01306474087442267", "1.7763885987908916", "1669975211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8900", "0.018608229606204944", "3.5376539998203866", "1669975211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8901", "0.013028504458385005", "1.7763209530484705", "1669978811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8901", "0.018556655762699416", "3.537560713276063", "1669978811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8901", "0.013028504458385005", "1.7763209530484705", "1669978811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8901", "0.018556655762699416", "3.537560713276063", "1669978811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8902", "0.012991906729209909", "1.7762525707571295", "1669982411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8902", "0.018504589157988343", "3.5374664533879545", "1669982411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8902", "0.012991906729209909", "1.7762525707571295", "1669982411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8902", "0.018504589157988343", "3.5374664533879545", "1669982411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8903", "0.012955872305353732", "1.7761853022786718", "1669986011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8903", "0.01845330232133697", "3.537373686344409", "1669986011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8903", "0.012955872305353732", "1.7761853022786718", "1669986011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8903", "0.01845330232133697", "3.537373686344409", "1669986011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8904", "0.01291971029750909", "1.776117765323055", "1669989611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8904", "0.018401844284870017", "3.5372805695995213", "1669989611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8904", "0.01291971029750909", "1.776117765323055", "1669989611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8904", "0.018401844284870017", "3.5372805695995213", "1669989611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8905", "0.012883876096375885", "1.7760508707164258", "1669993211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8905", "0.018350841976086177", "3.537188317452869", "1669993211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8905", "0.012883876096375885", "1.7760508707164258", "1669993211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8905", "0.018350841976086177", "3.537188317452869", "1669993211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8906", "0.012848079598626041", "1.7759840386174122", "1669996823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8906", "0.01829989588025695", "3.537096156619594", "1669996823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8906", "0.012848079598626041", "1.7759840386174122", "1669996823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8906", "0.01829989588025695", "3.537096156619594", "1669996823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8907", "0.012784603985622919", "1.7758655346438454", "1670000411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8907", "0.018209554196681382", "3.536932736512568", "1670000411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8907", "0.012784603985622919", "1.7758655346438454", "1670000411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8907", "0.018209554196681382", "3.536932736512568", "1670000411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8908", "0.012747384579310772", "1.7757960520868694", "1670004011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8908", "0.018156580270324647", "3.5368369156146278", "1670004011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8908", "0.012747384579310772", "1.7757960520868694", "1670004011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8908", "0.018156580270324647", "3.5368369156146278", "1670004011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8909", "0.01268122217170919", "1.775672541532615", "1670007611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8909", "0.018062410232216847", "3.5366665831609763", "1670007611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8909", "0.01268122217170919", "1.775672541532615", "1670007611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8909", "0.018062410232216847", "3.5366665831609763", "1670007611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8910", "0.012615198612221816", "1.7755492902033565", "1670011211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8910", "0.017968437118752706", "3.5364966071286115", "1670011211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8910", "0.012615198612221816", "1.7755492902033565", "1670011211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8910", "0.017968437118752706", "3.5364966071286115", "1670011211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8911", "0.012580208913746067", "1.7754839722141902", "1670014811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8911", "0.017918635053365", "3.5364065265890066", "1670014811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8911", "0.012580208913746067", "1.7754839722141902", "1670014811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8911", "0.017918635053365", "3.5364065265890066", "1670014811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8912", "0.012543365381518946", "1.7754149313605447", "1670018411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8912", "0.017866285784928382", "3.5363114919379703", "1670018411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8912", "0.012543365381518946", "1.7754149313605447", "1670018411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8912", "0.017866285784928382", "3.5363114919379703", "1670018411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8913", "0.012489149240024842", "1.7753137215874444", "1670022011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8913", "0.017789117448742665", "3.536171911890778", "1670022011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8913", "0.012489149240024842", "1.7753137215874444", "1670022011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8913", "0.017789117448742665", "3.536171911890778", "1670022011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8914", "0.012435091477904692", "1.7752128089377845", "1670025611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8914", "0.017712173566254867", "3.5360327398959464", "1670025611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8914", "0.012435091477904692", "1.7752128089377845", "1670025611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8914", "0.017712173566254867", "3.5360327398959464", "1670025611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8915", "0.012380223650897505", "1.7751102577842095", "1670029211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8915", "0.017634120338162015", "3.5358913943925057", "1670029211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8915", "0.012380223650897505", "1.7751102577842095", "1670029211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8915", "0.017634120338162015", "3.5358913943925057", "1670029211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8916", "0.012327126258458485", "1.7750111384847906", "1670032811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8916", "0.017558542298044596", "3.5357546938763376", "1670032811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8916", "0.012327126258458485", "1.7750111384847906", "1670032811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8916", "0.017558542298044596", "3.5357546938763376", "1670032811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8917", "0.012292935487795397", "1.7749473130387745", "1670036411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8917", "0.017509875423172835", "3.53566666855859", "1670036411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8917", "0.012292935487795397", "1.7749473130387745", "1670036411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8917", "0.017509875423172835", "3.53566666855859", "1670036411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8918", "0.01225872540799946", "1.7748834367979538", "1670040011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8918", "0.017461186033209702", "3.53557858305449", "1670040011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8918", "0.01225872540799946", "1.7748834367979538", "1670040011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8918", "0.017461186033209702", "3.53557858305449", "1670040011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8919", "0.01219710625859299", "1.77476840967093", "1670043611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8919", "0.017373476981022328", "3.535419941277543", "1670043611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8919", "0.01219710625859299", "1.77476840967093", "1670043611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8919", "0.017373476981022328", "3.535419941277543", "1670043611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8920", "0.01213560356990268", "1.7746535937179753", "1670047211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8920", "0.017285935276489653", "3.5352615941150005", "1670047211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8920", "0.01213560356990268", "1.7746535937179753", "1670047211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8920", "0.017285935276489653", "3.5352615941150005", "1670047211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8921", "0.012074261754263745", "1.7745390783842807", "1670050811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8921", "0.017198621855670854", "3.5351036604335406", "1670050811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8921", "0.012074261754263745", "1.7745390783842807", "1670050811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8921", "0.017198621855670854", "3.5351036604335406", "1670050811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8922", "0.012012898211794017", "1.7744245119430433", "1670054411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8922", "0.017111280598246677", "3.534945662613532", "1670054411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8922", "0.012012898211794017", "1.7744245119430433", "1670054411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8922", "0.017111280598246677", "3.534945662613532", "1670054411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8923", "0.011950282849401778", "1.7743074238557617", "1670058011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8923", "0.01702222142529374", "3.534784313203517", "1670058011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8923", "0.011950282849401778", "1.7743074238557617", "1670058011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8923", "0.01702222142529374", "3.534784313203517", "1670058011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8924", "0.011888601586559423", "1.7741921847539524", "1670061611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8924", "0.016934454498791184", "3.5346254405435618", "1670061611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8924", "0.011888601586559423", "1.7741921847539524", "1670061611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8924", "0.016934454498791184", "3.5346254405435618", "1670061611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8925", "0.011842864587834697", "1.7741068068740529", "1670065211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8925", "0.016869349093435314", "3.534507685128112", "1670065211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8925", "0.011842864587834697", "1.7741068068740529", "1670065211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8925", "0.016869349093435314", "3.534507685128112", "1670065211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8926", "0.011810016845567347", "1.7740454895529887", "1670068811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8926", "0.016822590995750234", "3.5344231143497913", "1670068811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8926", "0.011810016845567347", "1.7740454895529887", "1670068811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8926", "0.016822590995750234", "3.5344231143497913", "1670068811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8927", "0.011777260201287056", "1.7739843422922927", "1670072411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8927", "0.016775962401669134", "3.5343387778594497", "1670072411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8927", "0.011777260201287056", "1.7739843422922927", "1670072411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8927", "0.016775962401669134", "3.5343387778594497", "1670072411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8928", "0.011744594402400534", "1.773923364620392", "1670076011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8928", "0.016729462953059587", "3.5342546750088712", "1670076011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8928", "0.011744594402400534", "1.773923364620392", "1670076011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8928", "0.016729462953059587", "3.5342546750088712", "1670076011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8929", "0.011712019197014586", "1.77386255606702", "1670079611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8929", "0.016683092292776567", "3.5341708051516285", "1670079611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8929", "0.011712019197014586", "1.77386255606702", "1670079611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8929", "0.016683092292776567", "3.5341708051516285", "1670079611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8930", "0.011654369784263631", "1.773754938525425", "1670083211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8930", "0.01660102912128968", "3.5340223754487843", "1670083211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8930", "0.011654369784263631", "1.773754938525425", "1670083211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8930", "0.01660102912128968", "3.5340223754487843", "1670083211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8931", "0.011600197635853474", "1.773653792779599", "1670086811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8931", "0.016523922093749546", "3.5338828844901795", "1670086811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8931", "0.011600197635853474", "1.773653792779599", "1670086811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8931", "0.016523922093749546", "3.5338828844901795", "1670086811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8932", "0.01154394441548853", "1.7735487722525731", "1670090411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8932", "0.016443848655883653", "3.533738041588837", "1670090411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8932", "0.01154394441548853", "1.7735487722525731", "1670090411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8932", "0.016443848655883653", "3.533738041588837", "1670090411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8933", "0.011484469931328853", "1.7734377440729072", "1670094011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8933", "0.016359187208711826", "3.533584907911213", "1670094011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8933", "0.011484469931328853", "1.7734377440729072", "1670094011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8933", "0.016359187208711826", "3.533584907911213", "1670094011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8934", "0.011423793391200195", "1.7733242819741815", "1670097611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8934", "0.01627288041180128", "3.5334285470654154", "1670097611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8934", "0.011423793391200195", "1.7733242819741815", "1670097611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8934", "0.01627288041180128", "3.5334285470654154", "1670097611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8935", "0.011363399883947094", "1.7732115460248534", "1670101211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8935", "0.016186906833153537", "3.533273050786549", "1670101211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8935", "0.011363399883947094", "1.7732115460248534", "1670101211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8935", "0.016186906833153537", "3.533273050786549", "1670101211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8936", "0.01130317043623172", "1.7730991163459577", "1670104811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8936", "0.016101166219001137", "3.53311797605038", "1670104811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8936", "0.01130317043623172", "1.7730991163459577", "1670104811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8936", "0.016101166219001137", "3.53311797605038", "1670104811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8937", "0.011243645450302892", "1.7729880017002342", "1670108411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8937", "0.016016427880328695", "3.5329647142668907", "1670108411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8937", "0.011243645450302892", "1.7729880017002342", "1670108411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8937", "0.016016427880328695", "3.5329647142668907", "1670108411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8938", "0.011186364648961205", "1.7728810762699467", "1670112011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8938", "0.015934883771394775", "3.5328172298949347", "1670112011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8938", "0.011186364648961205", "1.7728810762699467", "1670112011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8938", "0.015934883771394775", "3.5328172298949347", "1670112011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8939", "0.011129420895570447", "1.7727747800231315", "1670115611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8939", "0.01585381895644651", "3.532670612566857", "1670115611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8939", "0.011129420895570447", "1.7727747800231315", "1670115611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8939", "0.01585381895644651", "3.532670612566857", "1670115611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8940", "0.0110726326386125", "1.7726687740594105", "1670119211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8940", "0.015772974986478155", "3.5325243948384117", "1670119211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8940", "0.0110726326386125", "1.7726687740594105", "1670119211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8940", "0.015772974986478155", "3.5325243948384117", "1670119211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8941", "0.011015823146206418", "1.7725627198846008", "1670122811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8941", "0.015692103268156146", "3.5323781157262446", "1670122811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8941", "0.011015823146206418", "1.7725627198846008", "1670122811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8941", "0.015692103268156146", "3.5323781157262446", "1670122811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8942", "0.010958944320457523", "1.7724564683400466", "1670126411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8942", "0.01561115606808527", "3.532231610338023", "1670126411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8942", "0.010958944320457523", "1.7724564683400466", "1670126411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8942", "0.01561115606808527", "3.532231610338023", "1670126411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8943", "0.010902701353159325", "1.772351453876254", "1670130011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8943", "0.015531096072891541", "3.5320867760529806", "1670130011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8943", "0.010902701353159325", "1.772351453876254", "1670130011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8943", "0.015531096072891541", "3.5320867760529806", "1670130011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8944", "0.010846707957522413", "1.7722469323190442", "1670133611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8944", "0.01545138143375908", "3.5319426023006755", "1670133611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8944", "0.010846707957522413", "1.7722469323190442", "1670133611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8944", "0.01545138143375908", "3.5319426023006755", "1670133611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8945", "0.010789145802446857", "1.772139363176806", "1670137211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8945", "0.015369474564685442", "3.5317943060342496", "1670137211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8945", "0.010789145802446857", "1.772139363176806", "1670137211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8945", "0.015369474564685442", "3.5317943060342496", "1670137211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8946", "0.010731648820179868", "1.772032035583037", "1670140811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8946", "0.015287618075819022", "3.531646259665992", "1670140811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8946", "0.010731648820179868", "1.772032035583037", "1670140811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8946", "0.015287618075819022", "3.531646259665992", "1670140811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8947", "0.010674286518575316", "1.7719249594130737", "1670144411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8947", "0.015205952797684698", "3.5314985592965638", "1670144411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8947", "0.010674286518575316", "1.7719249594130737", "1670144411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8947", "0.015205952797684698", "3.5314985592965638", "1670144411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8948", "0.010617080067070794", "1.7718181741830015", "1670148011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8948", "0.015124508872672608", "3.5313512594403904", "1670148011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8948", "0.010617080067070794", "1.7718181741830015", "1670148011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8948", "0.015124508872672608", "3.5313512594403904", "1670148011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8949", "0.010560287968533286", "1.7717121624305479", "1670151611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8949", "0.015043654335073542", "3.5312050257234175", "1670151611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8949", "0.010560287968533286", "1.7717121624305479", "1670151611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8949", "0.015043654335073542", "3.5312050257234175", "1670151611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8950", "0.010502864054268273", "1.7716049713106345", "1670155211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8950", "0.014961899758365609", "3.5310571643661426", "1670155211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8950", "0.010502864054268273", "1.7716049713106345", "1670155211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8950", "0.014961899758365609", "3.5310571643661426", "1670155211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8951", "0.010446174739870315", "1.7714991514612095", "1670158811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8951", "0.014881190513383994", "3.5309111937665185", "1670158811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8951", "0.010446174739870315", "1.7714991514612095", "1670158811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8951", "0.014881190513383994", "3.5309111937665185", "1670158811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8952", "0.010389628012979076", "1.7713935977942084", "1670162411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8952", "0.014800683757161448", "3.530765589556296", "1670162411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8952", "0.010389628012979076", "1.7713935977942084", "1670162411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8952", "0.014800683757161448", "3.530765589556296", "1670162411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8953", "0.01033110131503461", "1.7712840718896172", "1670166011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8953", "0.014717454035376666", "3.530614695165267", "1670166011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8953", "0.01033110131503461", "1.7712840718896172", "1670166011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8953", "0.014717454035376666", "3.530614695165267", "1670166011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8954", "0.010275097611234414", "1.7711795353563367", "1670169611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8954", "0.014637718150930285", "3.530470490058153", "1670169611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8954", "0.010275097611234414", "1.7711795353563367", "1670169611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8954", "0.014637718150930285", "3.530470490058153", "1670169611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8955", "0.010212726632278948", "1.7710622633512891", "1670173211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8955", "0.014549213139570128", "3.5303093007352113", "1670173211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8955", "0.010212726632278948", "1.7710622633512891", "1670173211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8955", "0.014549213139570128", "3.5303093007352113", "1670173211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8956", "0.01014315453574224", "1.7709324034140002", "1670176811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8956", "0.014450156545640703", "3.5301301582913425", "1670176811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8956", "0.01014315453574224", "1.7709324034140002", "1670176811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8956", "0.014450156545640703", "3.5301301582913425", "1670176811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8957", "0.010075616025685971", "1.7708063393003455", "1670180411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8957", "0.014353994622891957", "3.5299562510635183", "1670180411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8957", "0.010075616025685971", "1.7708063393003455", "1670180411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8957", "0.014353994622891957", "3.5299562510635183", "1670180411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8958", "0.010020600740145349", "1.7707036504522673", "1670184011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8958", "0.0142756628347905", "3.529814589513673", "1670184011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8958", "0.010020600740145349", "1.7707036504522673", "1670184011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8958", "0.0142756628347905", "3.529814589513673", "1670184011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8959", "0.009992806877888623", "1.770651771792028", "1670187611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8959", "0.014236089231004459", "3.5297430214641734", "1670187611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8959", "0.009992806877888623", "1.770651771792028", "1670187611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8959", "0.014236089231004459", "3.5297430214641734", "1670187611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8960", "0.009961557097507238", "1.7705930281151532", "1670191211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8960", "0.014191739537757982", "3.5296622677005454", "1670191211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8960", "0.009961557097507238", "1.7705930281151532", "1670191211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8960", "0.014191739537757982", "3.5296622677005454", "1670191211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8961", "0.009907365834084669", "1.770491879631447", "1670194811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8961", "0.014114579230148461", "3.5295227280479042", "1670194811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8961", "0.009907365834084669", "1.770491879631447", "1670194811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8961", "0.014114579230148461", "3.5295227280479042", "1670194811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8962", "0.009852409839428375", "1.770389183650864", "1670198411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8962", "0.014036371520964071", "3.5293811354246625", "1670198411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8962", "0.009852409839428375", "1.770389183650864", "1670198411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8962", "0.014036371520964071", "3.5293811354246625", "1670198411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8963", "0.009798599951130882", "1.770288747697763", "1670202011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8963", "0.013959753062668825", "3.5292425768478126", "1670202011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8963", "0.009798599951130882", "1.770288747697763", "1670202011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8963", "0.013959753062668825", "3.5292425768478126", "1670202011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8964", "0.009745852847374144", "1.770190172192821", "1670205611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8964", "0.013884690452776025", "3.5291066689608352", "1670205611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8964", "0.009745852847374144", "1.770190172192821", "1670205611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8964", "0.013884690452776025", "3.5291066689608352", "1670205611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8965", "0.009692216260479856", "1.7700900604178513", "1670209211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8965", "0.013808317598170174", "3.5289685557354264", "1670209211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8965", "0.009692216260479856", "1.7700900604178513", "1670209211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8965", "0.013808317598170174", "3.5289685557354264", "1670209211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8966", "0.009665154022032928", "1.7700395351964084", "1670212811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8966", "0.013769788538244742", "3.5288988610074035", "1670212811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8966", "0.009665154022032928", "1.7700395351964084", "1670212811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8966", "0.013769788538244742", "3.5288988610074035", "1670212811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8967", "0.009640110413926957", "1.769992826074065", "1670216411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8967", "0.013734116821946021", "3.5288343975368854", "1670216411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8967", "0.009640110413926957", "1.769992826074065", "1670216411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8967", "0.013734116821946021", "3.5288343975368854", "1670216411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8968", "0.009612775914248615", "1.7699417266353652", "1670220011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8968", "0.013695222919242744", "3.528763955694449", "1670220011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8968", "0.009612775914248615", "1.7699417266353652", "1670220011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8968", "0.013695222919242744", "3.528763955694449", "1670220011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8969", "0.009560616636401419", "1.7698443582491832", "1670223611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8969", "0.013620957382812136", "3.52862963516297", "1670223611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8969", "0.009560616636401419", "1.7698443582491832", "1670223611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8969", "0.013620957382812136", "3.52862963516297", "1670223611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8970", "0.009501604390514454", "1.7697335940999535", "1670227211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8970", "0.013537144403562691", "3.5284772488269964", "1670227211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8970", "0.009501604390514454", "1.7697335940999535", "1670227211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8970", "0.013537144403562691", "3.5284772488269964", "1670227211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8971", "0.0094450001280932", "1.769627947409372", "1670230811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8971", "0.01345654221299997", "3.5283314934162613", "1670230811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8971", "0.0094450001280932", "1.769627947409372", "1670230811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8971", "0.01345654221299997", "3.5283314934162613", "1670230811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8972", "0.009388260353806762", "1.7695220131538347", "1670234411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8972", "0.013375758641311483", "3.528185364308344", "1670234411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8972", "0.009388260353806762", "1.7695220131538347", "1670234411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8972", "0.013375758641311483", "3.528185364308344", "1670234411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8973", "0.009350858182879998", "1.7694516084174492", "1670238011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8973", "0.013322707214062625", "3.5280886399634923", "1670238011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8973", "0.009350858182879998", "1.7694516084174492", "1670238011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8973", "0.013322707214062625", "3.5280886399634923", "1670238011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8974", "0.009324921859056656", "1.7694032024044826", "1670241611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8974", "0.013285773756575598", "3.528021854557208", "1670241611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8974", "0.009324921859056656", "1.7694032024044826", "1670241611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8974", "0.013285773756575598", "3.528021854557208", "1670241611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8975", "0.00929905746819007", "1.769354930647157", "1670245211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8975", "0.013248942624163592", "3.5279552542170696", "1670245211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8975", "0.00929905746819007", "1.769354930647157", "1670245211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8975", "0.013248942624163592", "3.5279552542170696", "1670245211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8976", "0.009265046604679613", "1.7692903908957252", "1670248811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8976", "0.013200881975871884", "3.5278669401262452", "1670248811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8976", "0.009265046604679613", "1.7692903908957252", "1670248811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8976", "0.013200881975871884", "3.5278669401262452", "1670248811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8977", "0.009239349635661049", "1.7692424345475053", "1670252411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8977", "0.013164287979742246", "3.5278007725525478", "1670252411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8977", "0.009239349635661049", "1.7692424345475053", "1670252411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8977", "0.013164287979742246", "3.5278007725525478", "1670252411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8978", "0.009213321066477546", "1.7691938082655803", "1670256011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8978", "0.01312723948847654", "3.5277337155990263", "1670256011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8978", "0.009213321066477546", "1.7691938082655803", "1670256011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8978", "0.01312723948847654", "3.5277337155990263", "1670256011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8979", "0.009187766222400121", "1.769146117312799", "1670259611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8979", "0.01309084762174937", "3.527667913774537", "1670259611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8979", "0.009187766222400121", "1.769146117312799", "1670259611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8979", "0.01309084762174937", "3.527667913774537", "1670259611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8980", "0.00913695615763098", "1.7690512945827501", "1670263211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8980", "0.013018490260429852", "3.527537081171818", "1670263211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8980", "0.00913695615763098", "1.7690512945827501", "1670263211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8980", "0.013018490260429852", "3.527537081171818", "1670263211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8981", "0.009082229902479304", "1.7689491362816725", "1670266811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8981", "0.012940564947259628", "3.527396145170503", "1670266811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8981", "0.009082229902479304", "1.7689491362816725", "1670266811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8981", "0.012940564947259628", "3.527396145170503", "1670266811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8982", "0.009027150951347051", "1.7688463470749993", "1670270411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8982", "0.012862127357951643", "3.5272543191656083", "1670270411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8982", "0.009027150951347051", "1.7688463470749993", "1670270411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8982", "0.012862127357951643", "3.5272543191656083", "1670270411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8983", "0.00897138656298363", "1.7687422787144165", "1670274011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8983", "0.012782713144196385", "3.5271107274528197", "1670274011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8983", "0.00897138656298363", "1.7687422787144165", "1670274011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8983", "0.012782713144196385", "3.5271107274528197", "1670274011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8984", "0.008915590161765302", "1.7686381332054328", "1670277611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8984", "0.012703258920097662", "3.5269670405012943", "1670277611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8984", "0.008915590161765302", "1.7686381332054328", "1670277611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8984", "0.012703258920097662", "3.5269670405012943", "1670277611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8985", "0.00886011826566546", "1.7685346101380002", "1670281211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8985", "0.01262426045952904", "3.526824200060903", "1670281211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8985", "0.00886011826566546", "1.7685346101380002", "1670281211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8985", "0.01262426045952904", "3.526824200060903", "1670281211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8986", "0.008804805070200443", "1.7684313839720354", "1670284811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8986", "0.01254548726588016", "3.526681768038226", "1670284811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8986", "0.008804805070200443", "1.7684313839720354", "1670284811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8986", "0.01254548726588016", "3.526681768038226", "1670284811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8987", "0.008734578213765616", "1.768298448256053", "1670288411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8987", "0.012446129389723828", "3.5264996317619315", "1670288411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8987", "0.008734578213765616", "1.768298448256053", "1670288411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8987", "0.012446129389723828", "3.5264996317619315", "1670288411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8988", "0.008681952519855764", "1.7682002101372263", "1670292011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8988", "0.012371192057572155", "3.5263640994893173", "1670292011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8988", "0.008681952519855764", "1.7682002101372263", "1670292011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8988", "0.012371192057572155", "3.5263640994893173", "1670292011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8989", "0.008628964517568538", "1.7681013349284138", "1670295611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8989", "0.012295724676007435", "3.5262276606345497", "1670295611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8989", "0.008628964517568538", "1.7681013349284138", "1670295611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8989", "0.012295724676007435", "3.5262276606345497", "1670295611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8990", "0.008577189163481373", "1.7680045764767953", "1670299223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8990", "0.012222034899684117", "3.526094242397854", "1670299223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8990", "0.008577189163481373", "1.7680045764767953", "1670299223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8990", "0.012222034899684117", "3.526094242397854", "1670299223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8991", "0.008525177677519367", "1.7679075243587914", "1670302811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8991", "0.012147957124687182", "3.5259603172957017", "1670302811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8991", "0.008525177677519367", "1.7679075243587914", "1670302811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8991", "0.012147957124687182", "3.5259603172957017", "1670302811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8992", "0.008472705368457121", "1.7678095622632377", "1670306411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8992", "0.012073240056051041", "3.5258251702423693", "1670306411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8992", "0.008472705368457121", "1.7678095622632377", "1670306411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8992", "0.012073240056051041", "3.5258251702423693", "1670306411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8993", "0.008420771246450545", "1.7677126548464455", "1670310011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8993", "0.011999271486413802", "3.5256914432669633", "1670310011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8993", "0.008420771246450545", "1.7677126548464455", "1670310011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8993", "0.011999271486413802", "3.5256914432669633", "1670310011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8994", "0.008359548802655565", "1.7675972422511081", "1670313611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8994", "0.011912482486424908", "3.5255329854579114", "1670313611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8994", "0.008359548802655565", "1.7675972422511081", "1670313611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8994", "0.011912482486424908", "3.5255329854579114", "1670313611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8995", "0.00830732580754931", "1.7674998031557683", "1670317211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8995", "0.011838098971993706", "3.525398518296768", "1670317211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8995", "0.00830732580754931", "1.7674998031557683", "1670317211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8995", "0.011838098971993706", "3.525398518296768", "1670317211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8996", "0.008255246803750286", "1.767402632741518", "1670320811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8996", "0.01176392011315128", "3.5252644212479654", "1670320811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8996", "0.008255246803750286", "1.767402632741518", "1670320811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8996", "0.01176392011315128", "3.5252644212479654", "1670320811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8997", "0.008204489552375509", "1.7673079285061541", "1670324411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8997", "0.011691623475168219", "3.525133726928957", "1670324411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8997", "0.008204489552375509", "1.7673079285061541", "1670324411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8997", "0.011691623475168219", "3.525133726928957", "1670324411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8998", "0.008153828711546005", "1.7672134041733425", "1670328011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8998", "0.011619463746651404", "3.52500328024553", "1670328011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8998", "0.008153828711546005", "1.7672134041733425", "1670328011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8998", "0.011619463746651404", "3.52500328024553", "1670328011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "8999", "0.008105845444212887", "1.767123875743601", "1670331611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "8999", "0.011551117489327314", "3.5248797274877215", "1670331611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "8999", "0.008105845444212887", "1.767123875743601", "1670331611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "8999", "0.011551117489327314", "3.5248797274877215", "1670331611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9000", "0.008060049726521697", "1.7670384289153116", "1670335211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9000", "0.011485886781140865", "3.5247618069700852", "1670335211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9000", "0.008060049726521697", "1.7670384289153116", "1670335211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9000", "0.011485886781140865", "3.5247618069700852", "1670335211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9001", "0.00801511339431962", "1.7669545855642148", "1670338811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9001", "0.011421879839764894", "3.5246460988203827", "1670338811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9001", "0.00801511339431962", "1.7669545855642148", "1670338811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9001", "0.011421879839764894", "3.5246460988203827", "1670338811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9002", "0.007970710503335617", "1.766871738638062", "1670342411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9002", "0.011358632023235902", "3.524531764540441", "1670342411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9002", "0.007970710503335617", "1.766871738638062", "1670342411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9002", "0.011358632023235902", "3.524531764540441", "1670342411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9003", "0.007946790411770379", "1.7668271079323803", "1670346011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9003", "0.011324560139144051", "3.5244701714006155", "1670346011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9003", "0.007946790411770379", "1.7668271079323803", "1670346011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9003", "0.011324560139144051", "3.5244701714006155", "1670346011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9004", "0.007913435207974485", "1.7667647751947768", "1670349611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9004", "0.011277082776620359", "3.5243842152806026", "1670349611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9004", "0.007913435207974485", "1.7667647751947768", "1670349611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9004", "0.011277082776620359", "3.5243842152806026", "1670349611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9005", "0.007891485637595869", "1.7667238214155885", "1670353211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9005", "0.01124581741793701", "3.524327696035621", "1670353211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9005", "0.007891485637595869", "1.7667238214155885", "1670353211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9005", "0.01124581741793701", "3.524327696035621", "1670353211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9006", "0.007869596944253302", "1.766682981224739", "1670356811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9006", "0.011214638696258415", "3.5242713334323925", "1670356811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9006", "0.007869596944253302", "1.766682981224739", "1670356811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9006", "0.011214638696258415", "3.5242713334323925", "1670356811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9007", "0.007847673750117393", "1.7666420690554425", "1670360411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9007", "0.011183413406828761", "3.524214876601622", "1670360411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9007", "0.007847673750117393", "1.7666420690554425", "1670360411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9007", "0.011183413406828761", "3.524214876601622", "1670360411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9008", "0.007779455041058333", "1.7665147828621817", "1670364011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9008", "0.011086241505888689", "3.5240392127487854", "1670364011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9008", "0.007779455041058333", "1.7665147828621817", "1670364011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9008", "0.011086241505888689", "3.5240392127487854", "1670364011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9009", "0.007711386651083201", "1.7663877426013395", "1670367611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9009", "0.01098929502831565", "3.523863910898926", "1670367611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9009", "0.007711386651083201", "1.7663877426013395", "1670367611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9009", "0.01098929502831565", "3.523863910898926", "1670367611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9010", "0.007643766921013288", "1.7662615773967232", "1670371223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9010", "0.010892973683416468", "3.5236897895357657", "1670371223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9010", "0.007643766921013288", "1.7662615773967232", "1670371223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9010", "0.010892973683416468", "3.5236897895357657", "1670371223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9011", "0.007575568473607306", "1.766134243452299", "1670374811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9011", "0.010795858262770876", "3.5235141151689873", "1670374811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9011", "0.007575568473607306", "1.766134243452299", "1670374811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9011", "0.010795858262770876", "3.5235141151689873", "1670374811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9012", "0.007509201172891721", "1.76601031296927", "1670378411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9012", "0.01070135510626126", "3.523343145879967", "1670378411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9012", "0.007509201172891721", "1.76601031296927", "1670378411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9012", "0.01070135510626126", "3.523343145879967", "1670378411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9013", "0.007443322796787003", "1.765887398552397", "1670382011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9013", "0.010607511521190887", "3.523173506518862", "1670382011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9013", "0.007443322796787003", "1.765887398552397", "1670382011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9013", "0.010607511521190887", "3.523173506518862", "1670382011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9014", "0.007377913875290712", "1.7657653500642092", "1670385611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9014", "0.010514339466259084", "3.5230050680676523", "1670385611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9014", "0.007377913875290712", "1.7657653500642092", "1670385611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9014", "0.010514339466259084", "3.5230050680676523", "1670385611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9015", "0.007311131703143185", "1.765640749514107", "1670389211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9015", "0.010419206975772307", "3.5228330993660224", "1670389211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9015", "0.007311131703143185", "1.765640749514107", "1670389211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9015", "0.010419206975772307", "3.5228330993660224", "1670389211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9016", "0.007246278650021619", "1.7655197482960028", "1670392811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9016", "0.010326821864151136", "3.522666097263327", "1670392811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9016", "0.007246278650021619", "1.7655197482960028", "1670392811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9016", "0.010326821864151136", "3.522666097263327", "1670392811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9017", "0.0071812486366816634", "1.7653984169383181", "1670396411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9017", "0.010234183986337303", "3.522498638468139", "1670396411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9017", "0.0071812486366816634", "1.7653984169383181", "1670396411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9017", "0.010234183986337303", "3.522498638468139", "1670396411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9018", "0.007116388092300681", "1.7652774017998762", "1670400011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9018", "0.01014178684451318", "3.5223316150700454", "1670400011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9018", "0.007116388092300681", "1.7652774017998762", "1670400011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9018", "0.01014178684451318", "3.5223316150700454", "1670400011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9019", "0.007050791125224763", "1.7651550126916626", "1670403623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9019", "0.01004833994099922", "3.5221626942800954", "1670403623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9019", "0.007050791125224763", "1.7651550126916626", "1670403623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9019", "0.01004833994099922", "3.5221626942800954", "1670403623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9020", "0.0069876771536680204", "1.765037209259975", "1670407235"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9020", "0.00995844596513744", "3.522000133929353", "1670407235"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9020", "0.0069876771536680204", "1.765037209259975", "1670407235"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9020", "0.00995844596513744", "3.522000133929353", "1670407235"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9021", "0.006926815156710208", "1.7649236549960228", "1670410811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9021", "0.00987174293380161", "3.5218434047609386", "1670410811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9021", "0.006926815156710208", "1.7649236549960228", "1670410811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9021", "0.00987174293380161", "3.5218434047609386", "1670410811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9022", "0.006862317909322845", "1.7648033182314837", "1670414411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9022", "0.009779860530451915", "3.5216773132914363", "1670414411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9022", "0.006862317909322845", "1.7648033182314837", "1670414411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9022", "0.009779860530451915", "3.5216773132914363", "1670414411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9023", "0.006797853125117322", "1.7646830420636337", "1670418011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9023", "0.009688023703356327", "3.5215113044307493", "1670418011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9023", "0.006797853125117322", "1.7646830420636337", "1670418011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9023", "0.009688023703356327", "3.5215113044307493", "1670418011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9024", "0.006733361656440028", "1.764562716136822", "1670421611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9024", "0.009596148190546548", "3.5213452258627007", "1670421611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9024", "0.006733361656440028", "1.764562716136822", "1670421611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9024", "0.009596148190546548", "3.5213452258627007", "1670421611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9025", "0.006669682824008801", "1.7644439059451533", "1670425211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9025", "0.009505429880586436", "3.5211812386924333", "1670425211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9025", "0.006669682824008801", "1.7644439059451533", "1670425211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9025", "0.009505429880586436", "3.5211812386924333", "1670425211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9026", "0.006614240769721412", "1.7643404641493852", "1670428811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9026", "0.009426445191647531", "3.5210384625664597", "1670428811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9026", "0.006614240769721412", "1.7643404641493852", "1670428811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9026", "0.009426445191647531", "3.5210384625664597", "1670428811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9027", "0.006562161384312572", "1.7642432963194261", "1670432411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9027", "0.009352250626564139", "3.520904345424799", "1670432411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9027", "0.006562161384312572", "1.7642432963194261", "1670432411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9027", "0.009352250626564139", "3.520904345424799", "1670432411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9028", "0.006508254532891394", "1.7641427132046905", "1670436023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9028", "0.00927545409368039", "3.5207655174891386", "1670436023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9028", "0.006508254532891394", "1.7641427132046905", "1670436023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9028", "0.00927545409368039", "3.5207655174891386", "1670436023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9029", "0.006455082744831631", "1.7640435072939522", "1670439611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9029", "0.009199702313798668", "3.520628585827105", "1670439611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9029", "0.006455082744831631", "1.7640435072939522", "1670439611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9029", "0.009199702313798668", "3.520628585827105", "1670439611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9030", "0.006405005192940709", "1.7639500745094256", "1670443211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9030", "0.009128358354695646", "3.520499622040241", "1670443211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9030", "0.006405005192940709", "1.7639500745094256", "1670443211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9030", "0.009128358354695646", "3.520499622040241", "1670443211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9031", "0.006368646663470658", "1.7638822381637744", "1670446811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9031", "0.009076559214326933", "3.5204059882221754", "1670446811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9031", "0.006368646663470658", "1.7638822381637744", "1670446811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9031", "0.009076559214326933", "3.5204059882221754", "1670446811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9032", "0.0063323738441501435", "1.7638145617416998", "1670450411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9032", "0.00902488197057758", "3.5203125748190605", "1670450411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9032", "0.0063323738441501435", "1.7638145617416998", "1670450411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9032", "0.00902488197057758", "3.5203125748190605", "1670450411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9033", "0.006284721697060653", "1.7637255368622857", "1670454011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9033", "0.008957033376331426", "3.5201897743470445", "1670454011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9033", "0.006284721697060653", "1.7637255368622857", "1670454011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9033", "0.008957033376331426", "3.5201897743470445", "1670454011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9034", "0.006257086767989876", "1.7636739742088354", "1670457623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9034", "0.008917662893328944", "3.5201186038553334", "1670457623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9034", "0.006257086767989876", "1.7636739742088354", "1670457623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9034", "0.008917662893328944", "3.5201186038553334", "1670457623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9035", "0.006239358804044925", "1.763640848631461", "1670461211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9035", "0.008892423112944439", "3.520072914296439", "1670461211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9035", "0.006239358804044925", "1.763640848631461", "1670461211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9035", "0.008892423112944439", "3.520072914296439", "1670461211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9036", "0.006221293247661525", "1.7636070457403903", "1670464811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9036", "0.008866718847151223", "3.520026322334359", "1670464811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9036", "0.006221293247661525", "1.7636070457403903", "1670464811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9036", "0.008866718847151223", "3.520026322334359", "1670464811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9037", "0.006204036910621308", "1.763574850287584", "1670468411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9037", "0.008842133407949001", "3.519981882027594", "1670468411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9037", "0.006204036910621308", "1.763574850287584", "1670468411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9037", "0.008842133407949001", "3.519981882027594", "1670468411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9038", "0.006185939771709218", "1.7635409696232285", "1670472011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9038", "0.008816390611348002", "3.519935195496286", "1670472011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9038", "0.006185939771709218", "1.7635409696232285", "1670472011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9038", "0.008816390611348002", "3.519935195496286", "1670472011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9039", "0.006126376467173052", "1.7634298424562875", "1670475611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9039", "0.008731528678002242", "3.5197818018777114", "1670475611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9039", "0.006126376467173052", "1.7634298424562875", "1670475611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9039", "0.008731528678002242", "3.5197818018777114", "1670475611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9040", "0.006063800335098975", "1.7633130942566195", "1670479223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9040", "0.00864237365719067", "3.519620648380813", "1670479223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9040", "0.006063800335098975", "1.7633130942566195", "1670479223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9040", "0.00864237365719067", "3.519620648380813", "1670479223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9041", "0.00600420852724261", "1.7632019139607509", "1670482811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9041", "0.00855746993884383", "3.519467179624312", "1670482811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9041", "0.00600420852724261", "1.7632019139607509", "1670482811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9041", "0.00855746993884383", "3.519467179624312", "1670482811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9042", "0.005946677342929095", "1.7630945781882363", "1670486411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9042", "0.008475501559950752", "3.5193190168575286", "1670486411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9042", "0.005946677342929095", "1.7630945781882363", "1670486411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9042", "0.008475501559950752", "3.5193190168575286", "1670486411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9043", "0.005896153357791847", "1.763000266792683", "1670490011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9043", "0.00840353340446288", "3.519188865446139", "1670490011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9043", "0.005896153357791847", "1.763000266792683", "1670490011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9043", "0.00840353340446288", "3.519188865446139", "1670490011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9044", "0.005877226100692456", "1.7629649446766038", "1670493611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9044", "0.00837656959588408", "3.5191401141319973", "1670493611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9044", "0.005877226100692456", "1.7629649446766038", "1670493611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9044", "0.00837656959588408", "3.5191401141319973", "1670493611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9045", "0.005860924068582186", "1.7629345301939288", "1670497211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9045", "0.00835334270556477", "3.519098130440665", "1670497211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9045", "0.005860924068582186", "1.7629345301939288", "1670497211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9045", "0.00835334270556477", "3.519098130440665", "1670497211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9046", "0.005844667251818882", "1.7629042000707176", "1670500811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9046", "0.008330180194656325", "3.519056263132347", "1670500811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9046", "0.005844667251818882", "1.7629042000707176", "1670500811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9046", "0.008330180194656325", "3.519056263132347", "1670500811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9047", "0.005828455525007666", "1.7628739540730076", "1670504411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9047", "0.00830708188485264", "3.5190145118846288", "1670504411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9047", "0.005828455525007666", "1.7628739540730076", "1670504411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9047", "0.00830708188485264", "3.5190145118846288", "1670504411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9048", "0.005812288763101336", "1.762843791967485", "1670508011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9048", "0.008284047598340682", "3.518972876375988", "1670508011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9048", "0.005812288763101336", "1.762843791967485", "1670508011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9048", "0.008284047598340682", "3.518972876375988", "1670508011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9049", "0.005796000205382877", "1.7628133803576116", "1670511611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9049", "0.008260847495652833", "3.518930911680123", "1670511611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9049", "0.005796000205382877", "1.7628133803576116", "1670511611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9049", "0.008260847495652833", "3.518930911680123", "1670511611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9050", "0.005779923462065049", "1.762783386263732", "1670515211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9050", "0.008237941361314153", "3.518889507921889", "1670515211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9050", "0.005779923462065049", "1.762783386263732", "1670515211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9050", "0.008237941361314153", "3.518889507921889", "1670515211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9051", "0.005753557785910044", "1.762734196294779", "1670518811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9051", "0.008200375471218057", "3.5188216060961235", "1670518811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9051", "0.005753557785910044", "1.762734196294779", "1670518811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9051", "0.008200375471218057", "3.5188216060961235", "1670518811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9052", "0.005719387684165619", "1.7626704457560567", "1670522411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9052", "0.008151689646398773", "3.518733604605988", "1670522411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9052", "0.005719387684165619", "1.7626704457560567", "1670522411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9052", "0.008151689646398773", "3.518733604605988", "1670522411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9053", "0.005702390078669843", "1.7626385629371122", "1670526011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9053", "0.008127530726983677", "3.518689710519367", "1670526011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9053", "0.005702390078669843", "1.7626385629371122", "1670526011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9053", "0.008127530726983677", "3.518689710519367", "1670526011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9054", "0.005686091892631646", "1.7626081001697746", "1670529611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9054", "0.00810432818433351", "3.5186476975555996", "1670529611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9054", "0.005686091892631646", "1.7626081001697746", "1670529611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9054", "0.00810432818433351", "3.5186476975555996", "1670529611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9055", "0.005670161064270044", "1.7625783591624038", "1670533211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9055", "0.008081636340282196", "3.5186066558734246", "1670533211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9055", "0.005670161064270044", "1.7625783591624038", "1670533211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9055", "0.008081636340282196", "3.5186066558734246", "1670533211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9056", "0.0056542730891410535", "1.7625487004321179", "1670536811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9056", "0.008059004703394684", "3.5185657261087", "1670536811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9056", "0.0056542730891410535", "1.7625487004321179", "1670536811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9056", "0.008059004703394684", "3.5185657261087", "1670536811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9057", "0.005638589445561241", "1.7625194404784834", "1670540411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9057", "0.00803665804546901", "3.5185253347065855", "1670540411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9057", "0.005638589445561241", "1.7625194404784834", "1670540411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9057", "0.00803665804546901", "3.5185253347065855", "1670540411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9058", "0.005578119430051852", "1.7624066255197306", "1670544011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9058", "0.007950497672269737", "3.518369600657896", "1670544011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9058", "0.005578119430051852", "1.7624066255197306", "1670544011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9058", "0.007950497672269737", "3.518369600657896", "1670544011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9059", "0.0055156397979923", "1.7622897839753453", "1670547611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9059", "0.007861569921719457", "3.518208497624888", "1670547611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9059", "0.0055156397979923", "1.7622897839753453", "1670547611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9059", "0.007861569921719457", "3.518208497624888", "1670547611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9060", "0.005455251844692262", "1.76217712519692", "1670551211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9060", "0.007775524217642219", "3.5180529752507264", "1670551211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9060", "0.005455251844692262", "1.76217712519692", "1670551211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9060", "0.007775524217642219", "3.5180529752507264", "1670551211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9061", "0.005393975456513836", "1.7620628089944879", "1670554811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9061", "0.007688211996592026", "3.517895163924838", "1670554811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9061", "0.005393975456513836", "1.7620628089944879", "1670554811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9061", "0.007688211996592026", "3.517895163924838", "1670554811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9062", "0.005359555654514804", "1.7619985960002589", "1670558411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9062", "0.007639167238029142", "3.5178065187095013", "1670558411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9062", "0.005359555654514804", "1.7619985960002589", "1670558411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9062", "0.007639167238029142", "3.5178065187095013", "1670558411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9063", "0.0053317303441610155", "1.7619466855828585", "1670562011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9063", "0.007599518827389533", "3.5177348568293008", "1670562011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9063", "0.0053317303441610155", "1.7619466855828585", "1670562011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9063", "0.007599518827389533", "3.5177348568293008", "1670562011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9064", "0.005316878395260518", "1.7619189696409265", "1670565611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9064", "0.007578359094758253", "3.517696600903239", "1670565611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9064", "0.005316878395260518", "1.7619189696409265", "1670565611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9064", "0.007578359094758253", "3.517696600903239", "1670565611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9065", "0.0053021305608198675", "1.7618914563631776", "1670569223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9065", "0.00755734474449979", "3.5176586189143593", "1670569223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9065", "0.0053021305608198675", "1.7618914563631776", "1670569223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9065", "0.00755734474449979", "3.5176586189143593", "1670569223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9066", "0.005287423631409263", "1.7618640193985564", "1670572811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9066", "0.0075363886452710525", "3.5176207422218595", "1670572811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9066", "0.005287423631409263", "1.7618640193985564", "1670572811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9066", "0.0075363886452710525", "3.5176207422218595", "1670572811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9067", "0.0052726684112292714", "1.7618364611430215", "1670576411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9067", "0.007515374569011075", "3.517582719450654", "1670576411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9067", "0.0052726684112292714", "1.7618364611430215", "1670576411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9067", "0.007515374569011075", "3.517582719450654", "1670576411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9068", "0.005258043199393242", "1.7618091767184838", "1670580011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9068", "0.0074945348105762725", "3.5175450531735546", "1670580011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9068", "0.005258043199393242", "1.7618091767184838", "1670580011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9068", "0.0074945348105762725", "3.5175450531735546", "1670580011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9069", "0.005243458552510849", "1.7617819679723585", "1670583611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9069", "0.007473752819543647", "3.5175074913181064", "1670583611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9069", "0.005243458552510849", "1.7617819679723585", "1670583611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9069", "0.007473752819543647", "3.5175074913181064", "1670583611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9070", "0.005228679358813237", "1.761754364895328", "1670587211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9070", "0.007452704513090518", "3.5174694065787615", "1670587211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9070", "0.005228679358813237", "1.761754364895328", "1670587211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9070", "0.007452704513090518", "3.5174694065787615", "1670587211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9071", "0.005213854918099554", "1.7617266532240992", "1670590811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9071", "0.007431600120846511", "3.5174311884686076", "1670590811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9071", "0.005213854918099554", "1.7617266532240992", "1670590811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9071", "0.007431600120846511", "3.5174311884686076", "1670590811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9072", "0.005199392834550595", "1.7616996733741945", "1670594423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9072", "0.007410992585937764", "3.5173939422822795", "1670594423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9072", "0.005199392834550595", "1.7616996733741945", "1670594423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9072", "0.007410992585937764", "3.5173939422822795", "1670594423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9073", "0.005184970863537689", "1.7616727683579698", "1670598011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9073", "0.007390442175147536", "3.517356799353655", "1670598011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9073", "0.005184970863537689", "1.7616727683579698", "1670598011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9073", "0.007390442175147536", "3.517356799353655", "1670598011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9074", "0.005170588893814875", "1.7616459379678768", "1670601611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9074", "0.007369948730236849", "3.51731975939664", "1670601611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9074", "0.005170588893814875", "1.7616459379678768", "1670601611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9074", "0.007369948730236849", "3.51731975939664", "1670601611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9075", "0.005156246814444656", "1.7616191819969438", "1670605223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9075", "0.007349512093404463", "3.5172828221259302", "1670605223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9075", "0.005156246814444656", "1.7616191819969438", "1670605223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9075", "0.007349512093404463", "3.5172828221259302", "1670605223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9076", "0.005141944514797139", "1.7615925002387725", "1670608811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9076", "0.0073291321072856625", "3.5172459872570117", "1670608811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9076", "0.005141944514797139", "1.7615925002387725", "1670608811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9076", "0.0073291321072856625", "3.5172459872570117", "1670608811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9077", "0.00512766445609371", "1.761565857645806", "1670612411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9077", "0.00730878459112003", "3.5172092080039667", "1670612411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9077", "0.00512766445609371", "1.761565857645806", "1670612411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9077", "0.00730878459112003", "3.5172092080039667", "1670612411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9078", "0.005113441433600863", "1.761539323792941", "1670616095"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9078", "0.007288517502714327", "3.5171725772172273", "1670616095"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9078", "0.005113441433600863", "1.761539323792941", "1670616095"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9078", "0.007288517502714327", "3.5171725772172273", "1670616095"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9079", "0.005099257860643818", "1.761512863536803", "1670619611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9079", "0.007268306595350347", "3.517136047983096", "1670619611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9079", "0.005099257860643818", "1.761512863536803", "1670619611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9079", "0.007268306595350347", "3.517136047983096", "1670619611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9080", "0.005085113627814971", "1.7614864766732734", "1670623211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9080", "0.007248151713397982", "3.5170996200201965", "1670623211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9080", "0.005085113627814971", "1.7614864766732734", "1670623211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9080", "0.007248151713397982", "3.5170996200201965", "1670623211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9081", "0.0050710347380152464", "1.761460209054027", "1670626823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9081", "0.007228090835971334", "3.5170633584533455", "1670626823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9081", "0.0050710347380152464", "1.761460209054027", "1670626823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9081", "0.007228090835971334", "3.5170633584533455", "1670626823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9082", "0.005056968786044", "1.761433968237938", "1670630411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9082", "0.007208047434013595", "3.5170271320106465", "1670630411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9082", "0.005056968786044", "1.761433968237938", "1670630411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9082", "0.007208047434013595", "3.5170271320106465", "1670630411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9083", "0.005042941847995527", "1.7614078002058489", "1670634011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9083", "0.007188059593448041", "3.5169910060002163", "1670634011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9083", "0.005042941847995527", "1.7614078002058489", "1670634011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9083", "0.007188059593448041", "3.5169910060002163", "1670634011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9084", "0.005028953815670092", "1.7613817047558957", "1670637611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9084", "0.007168127160358792", "3.516954980143779", "1670637611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9084", "0.005028953815670092", "1.7613817047558957", "1670637611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9084", "0.007168127160358792", "3.516954980143779", "1670637611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9085", "0.0050150045811679774", "1.7613556816867744", "1670641211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9085", "0.007148249981255775", "3.516919054163829", "1670641211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9085", "0.0050150045811679774", "1.7613556816867744", "1670641211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9085", "0.007148249981255775", "3.516919054163829", "1670641211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9086", "0.0050010940368886495", "1.761329730797739", "1670644811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9086", "0.00712842790307355", "3.5168832277836297", "1670644811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9086", "0.0050010940368886495", "1.761329730797739", "1670644811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9086", "0.00712842790307355", "3.5168832277836297", "1670644811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9087", "0.0049870802702693725", "1.7613035686573144", "1670648411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9087", "0.007108465212606197", "3.5168471225377504", "1670648411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9087", "0.0049870802702693725", "1.7613035686573144", "1670648411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9087", "0.007108465212606197", "3.5168471225377504", "1670648411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9088", "0.004973247178398411", "1.7612777623144251", "1670652011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9088", "0.007088753421224667", "3.5168114955789327", "1670652011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9088", "0.004973247178398411", "1.7612777623144251", "1670652011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9088", "0.007088753421224667", "3.5168114955789327", "1670652011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9089", "0.004959452454642541", "1.761252027550536", "1670655611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9089", "0.00706909627259899", "3.51677596739133", "1670655611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9089", "0.004959452454642541", "1.761252027550536", "1670655611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9089", "0.00706909627259899", "3.51677596739133", "1670655611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9090", "0.004945695992592739", "1.7612263641671242", "1670659211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9090", "0.007049493615354743", "3.516740537701265", "1670659211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9090", "0.004945695992592739", "1.7612263641671242", "1670659211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9090", "0.007049493615354743", "3.516740537701265", "1670659211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9091", "0.004931977686135034", "1.7612007719662184", "1670662811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9091", "0.007029945298536301", "3.516705206235816", "1670662811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9091", "0.004931977686135034", "1.7612007719662184", "1670662811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9091", "0.007029945298536301", "3.516705206235816", "1670662811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9092", "0.004918297429449691", "1.7611752507503955", "1670666411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9092", "0.007010451171605673", "3.5166699727228177", "1670666411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9092", "0.004918297429449691", "1.7611752507503955", "1670666411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9092", "0.007010451171605673", "3.5166699727228177", "1670666411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9093", "0.004904655117010396", "1.7611498003227801", "1670670011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9093", "0.006991011084441359", "3.516634836890858", "1670670011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9093", "0.004904655117010396", "1.7611498003227801", "1670670011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9093", "0.006991011084441359", "3.516634836890858", "1670670011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9094", "0.00489105064358344", "1.7611244204870427", "1670673611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9094", "0.006971624887337194", "3.5165997984692763", "1670673611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9094", "0.00489105064358344", "1.7611244204870427", "1670673611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9094", "0.006971624887337194", "3.5165997984692763", "1670673611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9095", "0.0048774839042269105", "1.7610991110473981", "1670677211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9095", "0.006952292431001205", "3.5165648571881607", "1670677211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9095", "0.0048774839042269105", "1.7610991110473981", "1670677211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9095", "0.006952292431001205", "3.5165648571881607", "1670677211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9096", "0.004863954794289883", "1.7610738718086043", "1670680811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9096", "0.006933013566554466", "3.5165300127783463", "1670680811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9096", "0.004863954794289883", "1.7610738718086043", "1670680811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9096", "0.006933013566554466", "3.5165300127783463", "1670680811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9097", "0.004850317051763564", "1.76104841038776", "1670684411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9097", "0.00691358667104738", "3.516494874985583", "1670684411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9097", "0.004850317051763564", "1.76104841038776", "1670684411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9097", "0.00691358667104738", "3.516494874985583", "1670684411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9098", "0.0048346291005996874", "1.7610188614929547", "1670688011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9098", "0.0068913296919106345", "3.516454274396725", "1670688011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9098", "0.0048346291005996874", "1.7610188614929547", "1670688011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9098", "0.0068913296919106345", "3.516454274396725", "1670688011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9099", "0.004821218859038069", "1.7609938448487248", "1670691611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9099", "0.006872219829649435", "3.516419736576529", "1670691611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9099", "0.004821218859038069", "1.7609938448487248", "1670691611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9099", "0.006872219829649435", "3.516419736576529", "1670691611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9100", "0.004807845812845448", "1.760968897593249", "1670695211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9100", "0.006853162942585232", "3.516385294509636", "1670695211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9100", "0.004807845812845448", "1.760968897593249", "1670695211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9100", "0.006853162942585232", "3.516385294509636", "1670695211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9101", "0.004749705174451218", "1.7608604369518939", "1670698811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9101", "0.0067703109089000315", "3.5162355537287935", "1670698811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9101", "0.004749705174451218", "1.7608604369518939", "1670698811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9101", "0.0067703109089000315", "3.5162355537287935", "1670698811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9102", "0.004699982192107539", "1.7607676793623028", "1670702411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9102", "0.006699453836723303", "3.5161074919195783", "1670702411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9102", "0.004699982192107539", "1.7607676793623028", "1670702411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9102", "0.006699453836723303", "3.5161074919195783", "1670702411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9103", "0.004678339550577582", "1.7607272833777863", "1670706011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9103", "0.0066686197868296845", "3.516051735776612", "1670706011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9103", "0.004678339550577582", "1.7607272833777863", "1670706011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9103", "0.0066686197868296845", "3.516051735776612", "1670706011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9104", "0.00464053891966536", "1.7606567583026462", "1670709611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9104", "0.006614755061516144", "3.5159543735583823", "1670709611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9104", "0.00464053891966536", "1.7606567583026462", "1670709611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9104", "0.006614755061516144", "3.5159543735583823", "1670709611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9105", "0.004584320004839452", "1.7605518529161708", "1670713211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9105", "0.006534650388807068", "3.5158095592679475", "1670713211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9105", "0.004584320004839452", "1.7605518529161708", "1670713211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9105", "0.006534650388807068", "3.5158095592679475", "1670713211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9106", "0.004536136687553719", "1.760461968298438", "1670716811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9106", "0.006465985872435748", "3.515685461464202", "1670716811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9106", "0.004536136687553719", "1.760461968298438", "1670716811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9106", "0.006465985872435748", "3.515685461464202", "1670716811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9107", "0.004492389942768017", "1.7603803599404684", "1670720423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9107", "0.006403643468747681", "3.5155727896895237", "1670720423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9107", "0.004492389942768017", "1.7603803599404684", "1670720423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9107", "0.006403643468747681", "3.5155727896895237", "1670720423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9108", "0.004448645272203306", "1.760298755465182", "1670724011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9108", "0.006341303711569099", "3.515460122801177", "1670724011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9108", "0.004448645272203306", "1.760298755465182", "1670724011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9108", "0.006341303711569099", "3.515460122801177", "1670724011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9109", "0.004408498306187553", "1.7602238624200985", "1670727611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9109", "0.006284090707290389", "3.5153567216044004", "1670727611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9109", "0.004408498306187553", "1.7602238624200985", "1670727611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9109", "0.006284090707290389", "3.5153567216044004", "1670727611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9110", "0.00439296758969332", "1.7601948903047548", "1670731211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9110", "0.006261957982351118", "3.515316721102061", "1670731211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9110", "0.00439296758969332", "1.7601948903047548", "1670731211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9110", "0.006261957982351118", "3.515316721102061", "1670731211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9111", "0.004339113137806541", "1.760094426350564", "1670734811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9111", "0.0061852100446146", "3.5151780145560148", "1670734811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9111", "0.004339113137806541", "1.760094426350564", "1670734811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9111", "0.0061852100446146", "3.5151780145560148", "1670734811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9112", "0.00428522570167392", "1.7599939008853478", "1670738411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9112", "0.006108414631615351", "3.5150392223646287", "1670738411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9112", "0.00428522570167392", "1.7599939008853478", "1670738411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9112", "0.006108414631615351", "3.5150392223646287", "1670738411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9113", "0.00427315796224919", "1.7599713664140966", "1670742011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9113", "0.006091224553346742", "3.5150081250721663", "1670742011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9113", "0.00427315796224919", "1.7599713664140966", "1670742011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9113", "0.006091224553346742", "3.5150081250721663", "1670742011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9114", "0.004261305056828725", "1.7599492552251705", "1670745611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9114", "0.006074332775922102", "3.514977596708761", "1670745611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9114", "0.004261305056828725", "1.7599492552251705", "1670745611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9114", "0.006074332775922102", "3.514977596708761", "1670745611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9115", "0.004249485027632494", "1.759927205366686", "1670749211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9115", "0.006057487828338557", "3.5149471529880763", "1670749211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9115", "0.004249485027632494", "1.759927205366686", "1670749211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9115", "0.006057487828338557", "3.5149471529880763", "1670749211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9116", "0.004237697783480058", "1.7599052166685407", "1670752811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9116", "0.006040689580841159", "3.5149167936755443", "1670752811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9116", "0.004237697783480058", "1.7599052166685407", "1670752811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9116", "0.006040689580841159", "3.5149167936755443", "1670752811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9117", "0.004225943233443816", "1.759883288961105", "1670756411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9117", "0.006023937904034081", "3.5148865185372475", "1670756411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9117", "0.004225943233443816", "1.759883288961105", "1670756411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9117", "0.006023937904034081", "3.5148865185372475", "1670756411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9118", "0.004214172265575747", "1.7598613240817973", "1670760023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9118", "0.006007165086467969", "3.5148561965339136", "1670760023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9118", "0.004214172265575747", "1.7598613240817973", "1670760023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9118", "0.006007165086467969", "3.5148561965339136", "1670760023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9119", "0.00420248296804191", "1.7598395181206916", "1670763635"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9119", "0.005990506351753137", "3.514826089407757", "1670763635"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9119", "0.00420248296804191", "1.7598395181206916", "1670763635"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9119", "0.005990506351753137", "3.514826089407757", "1670763635"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9120", "0.0041900777152160795", "1.7598162766568968", "1670767211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9120", "0.005972862051703776", "3.5147940688284387", "1670767211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9120", "0.0041900777152160795", "1.7598162766568968", "1670767211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9120", "0.005972862051703776", "3.5147940688284387", "1670767211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9121", "0.004178455249600757", "1.7597945956470116", "1670770811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9121", "0.0059562984192571165", "3.5147641339608433", "1670770811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9121", "0.004178455249600757", "1.7597945956470116", "1670770811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9121", "0.0059562984192571165", "3.5147641339608433", "1670770811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9122", "0.004166865021089614", "1.7597729747744402", "1670774411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9122", "0.005939780707417773", "3.514734282091205", "1670774411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9122", "0.004166865021089614", "1.7597729747744402", "1670774411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9122", "0.005939780707417773", "3.514734282091205", "1670774411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9123", "0.004155306940274515", "1.7597514138723893", "1670778011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9123", "0.005923308788947337", "3.5147045129895096", "1670778011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9123", "0.004155306940274515", "1.7597514138723893", "1670778011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9123", "0.005923308788947337", "3.5147045129895096", "1670778011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9124", "0.00414378091799525", "1.7597299127745283", "1670781611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9124", "0.005906882536959562", "3.5146748264263805", "1670781611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9124", "0.00414378091799525", "1.7597299127745283", "1670781611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9124", "0.005906882536959562", "3.5146748264263805", "1670781611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9125", "0.004132118400758658", "1.7597081475032161", "1670785211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9125", "0.005890265063254646", "3.5146447816391317", "1670785211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9125", "0.004132118400758658", "1.7597081475032161", "1670785211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9125", "0.005890265063254646", "3.5146447816391317", "1670785211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9126", "0.004120656696435211", "1.7596867664149187", "1670788811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9126", "0.005873930421523535", "3.5146152606892156", "1670788811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9126", "0.004120656696435211", "1.7596867664149187", "1670788811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9126", "0.005873930421523535", "3.5146152606892156", "1670788811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9127", "0.004067770230784796", "1.7595881100524746", "1670792423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9127", "0.005798559028320837", "3.5144790450525982", "1670792423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9127", "0.004067770230784796", "1.7595881100524746", "1670792423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9127", "0.005798559028320837", "3.5144790450525982", "1670792423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9128", "0.004014123658286338", "1.7594880326177662", "1670796023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9128", "0.005722105003473051", "3.5143408687903235", "1670796023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9128", "0.004014123658286338", "1.7594880326177662", "1670796023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9128", "0.005722105003473051", "3.5143408687903235", "1670796023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9129", "0.003960470383624602", "1.7593879199610447", "1670799611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9129", "0.005645648877513013", "3.514202658784814", "1670799611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9129", "0.003960470383624602", "1.7593879199610447", "1670799611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9129", "0.005645648877513013", "3.514202658784814", "1670799611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9130", "0.0039046326512481816", "1.759283602017892", "1670803211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9130", "0.005566124401895152", "3.5140587311121987", "1670803211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9130", "0.0039046326512481816", "1.759283602017892", "1670803211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9130", "0.005566124401895152", "3.5140587311121987", "1670803211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9131", "0.0038477530183416934", "1.7591774878779258", "1670806811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9131", "0.005485063205561538", "3.5139122214645537", "1670806811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9131", "0.0038477530183416934", "1.7591774878779258", "1670806811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9131", "0.005485063205561538", "3.5139122214645537", "1670806811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9132", "0.003791573502049728", "1.759072660832045", "1670810411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9132", "0.005405005890859547", "3.5137675011681995", "1670810411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9132", "0.003791573502049728", "1.759072660832045", "1670810411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9132", "0.005405005890859547", "3.5137675011681995", "1670810411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9133", "0.003733283572449563", "1.7589637361520156", "1670814011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9133", "0.005321996253016849", "3.5136172325762005", "1670814011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9133", "0.003733283572449563", "1.7589637361520156", "1670814011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9133", "0.005321996253016849", "3.5136172325762005", "1670814011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9134", "0.0036762185801356576", "1.7588572914353438", "1670817611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9134", "0.005240664033087779", "3.5134702536794964", "1670817611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9134", "0.0036762185801356576", "1.7588572914353438", "1670817611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9134", "0.005240664033087779", "3.5134702536794964", "1670817611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9135", "0.0036212608333401892", "1.7587547656761635", "1670821211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9135", "0.005162338772504278", "3.5133286933845174", "1670821211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9135", "0.0036212608333401892", "1.7587547656761635", "1670821211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9135", "0.005162338772504278", "3.5133286933845174", "1670821211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9136", "0.0035687952614305613", "1.7586569005808539", "1670824811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9136", "0.005087560913061556", "3.51319355968697", "1670824811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9136", "0.0035687952614305613", "1.7586569005808539", "1670824811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9136", "0.005087560913061556", "3.51319355968697", "1670824811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9137", "0.003558896054744857", "1.7586384353920375", "1670828411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9137", "0.0050734517729153815", "3.5131680625807205", "1670828411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9137", "0.003558896054744857", "1.7586384353920375", "1670828411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9137", "0.0050734517729153815", "3.5131680625807205", "1670828411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9138", "0.003549024305702379", "1.7586200214212016", "1670832011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9138", "0.0050593817518033175", "3.5131426361730904", "1670832011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9138", "0.003549024305702379", "1.7586200214212016", "1670832011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9138", "0.0050593817518033175", "3.5131426361730904", "1670832011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9139", "0.003539112423879056", "1.7586015230881453", "1670835611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9139", "0.005045257821540349", "3.5131170997704464", "1670835611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9139", "0.003539112423879056", "1.7586015230881453", "1670835611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9139", "0.005045257821540349", "3.5131170997704464", "1670835611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9140", "0.00352929554922897", "1.7585832115033038", "1670839211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9140", "0.005031265971324384", "3.513091814673417", "1670839211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9140", "0.00352929554922897", "1.7585832115033038", "1670839211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9140", "0.005031265971324384", "3.513091814673417", "1670839211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9141", "0.0035195059038720202", "1.7585649507104069", "1670842811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9141", "0.00501731291509697", "3.513066599687378", "1670842811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9141", "0.0035195059038720202", "1.7585649507104069", "1670842811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9141", "0.00501731291509697", "3.513066599687378", "1670842811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9142", "0.003509743412287148", "1.7585467405685777", "1670846411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9142", "0.005003398545348008", "3.5130414546180027", "1670846411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9142", "0.003509743412287148", "1.7585467405685777", "1670846411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9142", "0.005003398545348008", "3.5130414546180027", "1670846411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9143", "0.0035000079991627238", "1.7585285809373312", "1670850011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9143", "0.004989522754865062", "3.5130163792715", "1670850011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9143", "0.0035000079991627238", "1.7585285809373312", "1670850011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9143", "0.004989522754865062", "3.5130163792715", "1670850011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9144", "0.0034903348868938217", "1.7585105372058776", "1670853611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9144", "0.004975735854485345", "3.5129914641533415", "1670853611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9144", "0.0034903348868938217", "1.7585105372058776", "1670853611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9144", "0.004975735854485345", "3.5129914641533415", "1670853611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9145", "0.0034806533076876113", "1.7584924779941382", "1670857211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9145", "0.004961936762298043", "3.5129665274218755", "1670857211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9145", "0.0034806533076876113", "1.7584924779941382", "1670857211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9145", "0.004961936762298043", "3.5129665274218755", "1670857211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9146", "0.003424406328629027", "1.7583875595757332", "1670860811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9146", "0.004881768006973623", "3.5128216522872866", "1670860811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9146", "0.003424406328629027", "1.7583875595757332", "1670860811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9146", "0.004881768006973623", "3.5128216522872866", "1670860811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9147", "0.0033680474295882104", "1.7582824324135073", "1670864411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9147", "0.004801439218650007", "3.512676488124578", "1670864411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9147", "0.0033680474295882104", "1.7582824324135073", "1670864411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9147", "0.004801439218650007", "3.512676488124578", "1670864411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9148", "0.003313273395765143", "1.7581802495284906", "1670868011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9148", "0.004723373041464022", "3.5125353970372686", "1670868011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9148", "0.003313273395765143", "1.7581802495284906", "1670868011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9148", "0.004723373041464022", "3.5125353970372686", "1670868011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9149", "0.0032595411853086243", "1.758080013843532", "1670871611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9149", "0.0046467899809561055", "3.51239699137857", "1670871611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9149", "0.0032595411853086243", "1.758080013843532", "1670871611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9149", "0.0046467899809561055", "3.51239699137857", "1670871611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9150", "0.0032057331947935794", "1.7579796453270264", "1670875211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9150", "0.004570095482119509", "3.51225839574875", "1670875211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9150", "0.0032057331947935794", "1.7579796453270264", "1670875211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9150", "0.004570095482119509", "3.51225839574875", "1670875211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9151", "0.0031529418174110874", "1.7578811710192628", "1670878811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9151", "0.00449485027744811", "3.5121224165185216", "1670878811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9151", "0.0031529418174110874", "1.7578811710192628", "1670878811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9151", "0.00449485027744811", "3.5121224165185216", "1670878811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9152", "0.003143414594237675", "1.757863295780785", "1670882411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9152", "0.004481306848757396", "3.5120978043365034", "1670882411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9152", "0.003143414594237675", "1.757863295780785", "1670882411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9152", "0.004481306848757396", "3.5120978043365034", "1670882411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9153", "0.003109704530088435", "1.7578001103784295", "1670886011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9153", "0.004433364469588641", "3.5120107624589596", "1670886011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9153", "0.003109704530088435", "1.7578001103784295", "1670886011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9153", "0.004433364469588641", "3.5120107624589596", "1670886011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9154", "0.0031010787228756376", "1.7577840217336642", "1670889611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9154", "0.004421069215551479", "3.511988545115184", "1670889611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9154", "0.0031010787228756376", "1.7577840217336642", "1670889611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9154", "0.004421069215551479", "3.511988545115184", "1670889611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9155", "0.0030924234672092344", "1.757767871380023", "1670893211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9155", "0.004408734333523619", "3.511966247188699", "1670893211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9155", "0.0030924234672092344", "1.757767871380023", "1670893211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9155", "0.004408734333523619", "3.511966247188699", "1670893211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9156", "0.0030838455933247903", "1.7577518721591832", "1670896811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9156", "0.004396507373298764", "3.511944153283758", "1670896811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9156", "0.0030838455933247903", "1.7577518721591832", "1670896811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9156", "0.004396507373298764", "3.511944153283758", "1670896811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9157", "0.0030335503778538713", "1.7576580628796825", "1670900411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9157", "0.0043248159887570884", "3.5118146082764032", "1670900411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9157", "0.0030335503778538713", "1.7576580628796825", "1670900411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9157", "0.0043248159887570884", "3.5118146082764032", "1670900411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9158", "0.002969913869507502", "1.7575378285210015", "1670904011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9158", "0.004234643297983152", "3.5116496273621833", "1670904011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9158", "0.002969913869507502", "1.7575378285210015", "1670904011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9158", "0.004234643297983152", "3.5116496273621833", "1670904011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9159", "0.0029173153377778246", "1.7574397504713786", "1670907611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9159", "0.004159658265291911", "3.511514167225504", "1670907611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9159", "0.0029173153377778246", "1.7574397504713786", "1670907611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9159", "0.004159658265291911", "3.511514167225504", "1670907611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9160", "0.0028657228116256363", "1.7573434895932833", "1670911211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9160", "0.004086127381726722", "3.5113812564267737", "1670911211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9160", "0.0028657228116256363", "1.7573434895932833", "1670911211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9160", "0.004086127381726722", "3.5113812564267737", "1670911211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9161", "0.0028139171409631027", "1.7572467606245787", "1670914811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9161", "0.004012316773014876", "3.5112477468782037", "1670914811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9161", "0.0028139171409631027", "1.7572467606245787", "1670914811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9161", "0.004012316773014876", "3.5112477468782037", "1670914811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9162", "0.0027631959719711073", "1.757152175535932", "1670918411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9162", "0.003940009541635461", "3.5111171143733926", "1670918411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9162", "0.0027631959719711073", "1.757152175535932", "1670918411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9162", "0.003940009541635461", "3.5111171143733926", "1670918411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9163", "0.0027119050493083947", "1.7570565373277032", "1670922011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9163", "0.003866886407824674", "3.5109850203449513", "1670922011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9163", "0.0027119050493083947", "1.7570565373277032", "1670922011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9163", "0.003866886407824674", "3.5109850203449513", "1670922011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9164", "0.002660581846269597", "1.7569608410969912", "1670925611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9164", "0.0037937160798777623", "3.510852844051143", "1670925611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9164", "0.002660581846269597", "1.7569608410969912", "1670925611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9164", "0.0037937160798777623", "3.510852844051143", "1670925611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9165", "0.0026093399457271065", "1.7568652964811469", "1670929211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9165", "0.0037206612374201735", "3.5107208765165865", "1670929211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9165", "0.0026093399457271065", "1.7568652964811469", "1670929211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9165", "0.0037206612374201735", "3.5107208765165865", "1670929211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9166", "0.0025581547576297406", "1.7567698576299773", "1670932811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9166", "0.003647686824467121", "3.5105890544149707", "1670932811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9166", "0.0025581547576297406", "1.7567698576299773", "1670932811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9166", "0.003647686824467121", "3.5105890544149707", "1670932811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9167", "0.0025071056524323893", "1.756674672535893", "1670936411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9167", "0.0035749060013723537", "3.510457582160097", "1670936411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9167", "0.0025071056524323893", "1.756674672535893", "1670936411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9167", "0.0035749060013723537", "3.510457582160097", "1670936411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9168", "0.0024581999020601877", "1.7565834766071853", "1670940011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9168", "0.0035051831086841925", "3.5103316242496936", "1670940011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9168", "0.0024581999020601877", "1.7565834766071853", "1670940011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9168", "0.0035051831086841925", "3.5103316242496936", "1670940011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9169", "0.0024111119549824482", "1.7564956666486746", "1670943611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9169", "0.0034380527219977663", "3.51021034498237", "1670943611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9169", "0.0024111119549824482", "1.7564956666486746", "1670943611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9169", "0.0034380527219977663", "3.51021034498237", "1670943611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9170", "0.0023630706805223335", "1.7564060903060303", "1670947211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9170", "0.003369558911808385", "3.5100866177055186", "1670947211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9170", "0.0023630706805223335", "1.7564060903060303", "1670947211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9170", "0.003369558911808385", "3.5100866177055186", "1670947211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9171", "0.0023145028405300557", "1.7563155321625639", "1670950811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9171", "0.003300313982072538", "3.509961533734329", "1670950811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9171", "0.0023145028405300557", "1.7563155321625639", "1670950811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9171", "0.003300313982072538", "3.509961533734329", "1670950811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9172", "0.002265987252308143", "1.7562250714639862", "1670954411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9172", "0.0032311431680033618", "3.509836583774753", "1670954411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9172", "0.002265987252308143", "1.7562250714639862", "1670954411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9172", "0.0032311431680033618", "3.509836583774753", "1670954411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9173", "0.0022177199774028587", "1.7561350525398776", "1670958011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9173", "0.003162333390667631", "3.5097122579941433", "1670958011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9173", "0.0022177199774028587", "1.7561350525398776", "1670958011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9173", "0.003162333390667631", "3.5097122579941433", "1670958011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9174", "0.0021696843211867693", "1.7560454872027906", "1670961611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9174", "0.0030938459254528316", "3.5095885432970064", "1670961611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9174", "0.0021696843211867693", "1.7560454872027906", "1670961611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9174", "0.0030938459254528316", "3.5095885432970064", "1670961611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9175", "0.0021176653417240136", "1.755948493416353", "1670965211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9175", "0.0030196792242496977", "3.5094545681028633", "1670965211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9175", "0.0021176653417240136", "1.755948493416353", "1670965211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9175", "0.0030196792242496977", "3.5094545681028633", "1670965211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9176", "0.0020717780664613636", "1.7558629339263674", "1670968811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9176", "0.0029542540952654825", "3.5093363854496746", "1670968811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9176", "0.0020717780664613636", "1.7558629339263674", "1670968811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9176", "0.0029542540952654825", "3.5093363854496746", "1670968811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9177", "0.0020275143108766875", "1.7557804015982177", "1670972411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9177", "0.002891143423745355", "3.509222383695931", "1670972411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9177", "0.0020275143108766875", "1.7557804015982177", "1670972411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9177", "0.002891143423745355", "3.509222383695931", "1670972411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9178", "0.0019832862708690333", "1.7556979358771252", "1670976011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9178", "0.002828083358387088", "3.5091084734614375", "1670976011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9178", "0.0019832862708690333", "1.7556979358771252", "1670976011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9178", "0.002828083358387088", "3.5091084734614375", "1670976011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9179", "0.0019402905902484505", "1.7556177679765859", "1670979611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9179", "0.002766780078973462", "3.508997736749058", "1670979611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9179", "0.0019402905902484505", "1.7556177679765859", "1670979611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9179", "0.002766780078973462", "3.508997736749058", "1670979611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9180", "0.0019156161753555814", "1.755571761128019", "1670983211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9180", "0.002731599141105199", "3.5089341868276356", "1670983211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9180", "0.0019156161753555814", "1.755571761128019", "1670983211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9180", "0.002731599141105199", "3.5089341868276356", "1670983211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9181", "0.001910191942790895", "1.7555616473388154", "1670986811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9181", "0.002723865222544573", "3.508920216484916", "1670986811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9181", "0.001910191942790895", "1.7555616473388154", "1670986811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9181", "0.002723865222544573", "3.508920216484916", "1670986811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9182", "0.001904893325323837", "1.7555517677662995", "1670990411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9182", "0.0027163104024918233", "3.508906569662488", "1670990411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9182", "0.001904893325323837", "1.7555517677662995", "1670990411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9182", "0.0027163104024918233", "3.508906569662488", "1670990411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9183", "0.0018999792376254165", "1.7555426123222506", "1670994011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9183", "0.0027093013590702235", "3.508893918185924", "1670994011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9183", "0.0018999792376254165", "1.7555426123222506", "1670994011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9183", "0.0027093013590702235", "3.508893918185924", "1670994011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9184", "0.001894708948207653", "1.7555327855495722", "1670997611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9184", "0.002701786927606519", "3.508880344297054", "1670997611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9184", "0.001894708948207653", "1.7555327855495722", "1670997611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9184", "0.002701786927606519", "3.508880344297054", "1670997611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9185", "0.001889386080460291", "1.755522854190752", "1671001223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9185", "0.00269419980191816", "3.5088666304225256", "1671001223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9185", "0.001889386080460291", "1.755522854190752", "1671001223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9185", "0.00269419980191816", "3.5088666304225256", "1671001223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9186", "0.0018841451744709044", "1.755513082223828", "1671004811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9186", "0.002686727250338704", "3.508853132211561", "1671004811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9186", "0.0018841451744709044", "1.755513082223828", "1671004811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9186", "0.002686727250338704", "3.508853132211561", "1671004811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9187", "0.0018787831823929005", "1.7555030647741434", "1671008411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9187", "0.00267908889943983", "3.5088393084070995", "1671008411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9187", "0.0018787831823929005", "1.7555030647741434", "1671008411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9187", "0.00267908889943983", "3.5088393084070995", "1671008411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9188", "0.0018730763303567482", "1.7554923594893574", "1671012023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9188", "0.002670974417330209", "3.508824565180563", "1671012023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9188", "0.0018730763303567482", "1.7554923594893574", "1671012023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9188", "0.002670974417330209", "3.508824565180563", "1671012023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9189", "0.0018678806649431823", "1.7554826721102386", "1671015611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9189", "0.0026635662754089908", "3.508811183631291", "1671015611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9189", "0.0018678806649431823", "1.7554826721102386", "1671015611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9189", "0.0026635662754089908", "3.508811183631291", "1671015611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9190", "0.001862699411318144", "1.755473011602273", "1671019211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9190", "0.0026561786779081753", "3.5087978391934995", "1671019211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9190", "0.001862699411318144", "1.755473011602273", "1671019211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9190", "0.0026561786779081753", "3.5087978391934995", "1671019211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9191", "0.0018575325295077227", "1.7554633778909268", "1671022811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9191", "0.0026488115678679185", "3.5087845317642867", "1671022811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9191", "0.0018575325295077227", "1.7554633778909268", "1671022811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9191", "0.0026488115678679185", "3.5087845317642867", "1671022811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9192", "0.0018421883621962786", "1.755434768513362", "1671026411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9192", "0.002626933323889645", "3.508745012452402", "1671026411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9192", "0.0018421883621962786", "1.755434768513362", "1671026411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9192", "0.002626933323889645", "3.508745012452402", "1671026411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9193", "0.0018267497126166754", "1.7554059829743203", "1671030011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9193", "0.0026049203253104953", "3.50870524974239", "1671030011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9193", "0.0018267497126166754", "1.7554059829743203", "1671030011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9193", "0.0026049203253104953", "3.50870524974239", "1671030011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9194", "0.0018147754522423456", "1.755383656829895", "1671033611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9194", "0.002587846954612756", "3.5086744096327545", "1671033611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9194", "0.0018147754522423456", "1.755383656829895", "1671033611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9194", "0.002587846954612756", "3.5086744096327545", "1671033611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9195", "0.0017688429395429934", "1.7552980138157959", "1671037211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9195", "0.0025223548217705753", "3.508556107659699", "1671037211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9195", "0.0017688429395429934", "1.7552980138157959", "1671037211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9195", "0.0025223548217705753", "3.508556107659699", "1671037211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9196", "0.001722899871491794", "1.755212345244738", "1671040811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9196", "0.0024568493444613966", "3.508437773895707", "1671040811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9196", "0.001722899871491794", "1.755212345244738", "1671040811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9196", "0.0024568493444613966", "3.508437773895707", "1671040811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9197", "0.0016764395522063462", "1.7551257233997755", "1671044411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9197", "0.002390602127313658", "3.5083181151642027", "1671044411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9197", "0.0016764395522063462", "1.7551257233997755", "1671044411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9197", "0.002390602127313658", "3.5083181151642027", "1671044411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9198", "0.0016264150642333092", "1.7550324523771095", "1671048011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9198", "0.002319273826285513", "3.5081892734971043", "1671048011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9198", "0.0016264150642333092", "1.7550324523771095", "1671048011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9198", "0.002319273826285513", "3.5081892734971043", "1671048011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9199", "0.0015763570336509", "1.7549391009976032", "1671051611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9199", "0.0022479034903502525", "3.5080603324224993", "1671051611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9199", "0.0015763570336509", "1.7549391009976032", "1671051611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9199", "0.0022479034903502525", "3.5080603324224993", "1671051611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9200", "0.0015327213170461711", "1.7548577424113472", "1671055211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9200", "0.002185683874940253", "3.507947944833131", "1671055211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9200", "0.0015327213170461711", "1.7548577424113472", "1671055211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9200", "0.002185683874940253", "3.507947944833131", "1671055211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9201", "0.0014844748508481605", "1.7547676586883612", "1671058811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9201", "0.002116934122882773", "3.507823591880987", "1671058811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9201", "0.0014844748508481605", "1.7547676586883612", "1671058811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9201", "0.002116934122882773", "3.507823591880987", "1671058811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9202", "0.0014373192372627444", "1.7546797413823203", "1671062423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9202", "0.002049693397223143", "3.507702140278231", "1671062423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9202", "0.0014373192372627444", "1.7546797413823203", "1671062423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9202", "0.002049693397223143", "3.507702140278231", "1671062423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9203", "0.0013975553972384164", "1.7546056053717407", "1671066023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9203", "0.001992992562063689", "3.50759972614087", "1671066023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9203", "0.0013975553972384164", "1.7546056053717407", "1671066023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9203", "0.001992992562063689", "3.50759972614087", "1671066023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9204", "0.0013478765511558076", "1.7545129767753596", "1671069611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9204", "0.0019221555951251306", "3.507471769918447", "1671069611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9204", "0.0013478765511558076", "1.7545129767753596", "1671069611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9204", "0.0019221555951251306", "3.507471769918447", "1671069611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9205", "0.0012979656039541947", "1.754419915893283", "1671073211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9205", "0.0018509871130585713", "3.507343215608788", "1671073211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9205", "0.0012979656039541947", "1.754419915893283", "1671073211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9205", "0.0018509871130585713", "3.507343215608788", "1671073211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9206", "0.0012478209563544045", "1.7543264264037801", "1671076811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9206", "0.0017794825156646867", "3.5072140637235956", "1671076811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9206", "0.0012478209563544045", "1.7543264264037801", "1671076811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9206", "0.0017794825156646867", "3.5072140637235956", "1671076811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9207", "0.0011976362403256298", "1.7542328473500521", "1671080411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9207", "0.0017079255439788185", "3.5070847976741844", "1671080411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9207", "0.0011976362403256298", "1.7542328473500521", "1671080411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9207", "0.0017079255439788185", "3.5070847976741844", "1671080411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9208", "0.0011494920853107808", "1.754143079866219", "1671084011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9208", "0.0016392754965831777", "3.5069607916999543", "1671084011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9208", "0.0011494920853107808", "1.754143079866219", "1671084011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9208", "0.0016392754965831777", "3.5069607916999543", "1671084011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9209", "0.0011366999530791385", "1.754119230528138", "1671087611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9209", "0.0016210339852932455", "3.5069278442351037", "1671087611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9209", "0.0011366999530791385", "1.754119230528138", "1671087611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9209", "0.0016210339852932455", "3.5069278442351037", "1671087611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9210", "0.0011335433315312704", "1.7541133429578923", "1671091211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9210", "0.001616533504628277", "3.5069197123209848", "1671091211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9210", "0.0011335433315312704", "1.7541133429578923", "1671091211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9210", "0.001616533504628277", "3.5069197123209848", "1671091211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9211", "0.0011294967470110732", "1.7541057909462092", "1671094811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9211", "0.0016107657504942472", "3.5069092845756304", "1671094811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9211", "0.0011294967470110732", "1.7541057909462092", "1671094811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9211", "0.0016107657504942472", "3.5069092845756304", "1671094811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9212", "0.0011165998704070854", "1.7540817464425724", "1671098411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9212", "0.0015923747922837067", "3.5068760673495523", "1671098411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9212", "0.0011165998704070854", "1.7540817464425724", "1671098411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9212", "0.0015923747922837067", "3.5068760673495523", "1671098411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9213", "0.0011036963429307313", "1.7540576895405542", "1671102011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9213", "0.0015739743229219894", "3.506842832953871", "1671102011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9213", "0.0011036963429307313", "1.7540576895405542", "1671102011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9213", "0.0015739743229219894", "3.506842832953871", "1671102011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9214", "0.0010907910356686991", "1.754033629321646", "1671105611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9214", "0.0015555712885667147", "3.5068095939345447", "1671105611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9214", "0.0010907910356686991", "1.754033629321646", "1671105611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9214", "0.0015555712885667147", "3.5068095939345447", "1671105611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9215", "0.001078260282918517", "1.7540102674107445", "1671109223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9215", "0.0015377023450154697", "3.5067773195830965", "1671109223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9215", "0.001078260282918517", "1.7540102674107445", "1671109223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9215", "0.0015377023450154697", "3.5067773195830965", "1671109223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9216", "0.0010655682486920785", "1.7539866024496464", "1671112823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9216", "0.0015196042081962269", "3.5067446281484127", "1671112823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9216", "0.0010655682486920785", "1.7539866024496464", "1671112823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9216", "0.0015196042081962269", "3.5067446281484127", "1671112823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9217", "0.0010528637580352628", "1.7539629166583257", "1671116411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9217", "0.0015014874511895635", "3.506711906258727", "1671116411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9217", "0.0010528637580352628", "1.7539629166583257", "1671116411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9217", "0.0015014874511895635", "3.506711906258727", "1671116411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9218", "0.0010499390092071454", "1.7539574633038617", "1671120011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9218", "0.0014973169145942606", "3.5067043728338594", "1671120011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9218", "0.0010499390092071454", "1.7539574633038617", "1671120011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9218", "0.0014973169145942606", "3.5067043728338594", "1671120011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9219", "0.0010470265914266498", "1.7539520334996375", "1671123611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9219", "0.0014931637660797602", "3.506696871557604", "1671123611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9219", "0.0010470265914266498", "1.7539520334996375", "1671123611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9219", "0.0014931637660797602", "3.506696871557604", "1671123611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9220", "0.0010441110404311108", "1.7539465965629897", "1671127211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9220", "0.0014890065967301843", "3.506689361309925", "1671127211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9220", "0.0010441110404311108", "1.7539465965629897", "1671127211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9220", "0.0014890065967301843", "3.506689361309925", "1671127211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9221", "0.0010411373924342252", "1.7539410436477163", "1671130811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9221", "0.0014847692417906764", "3.5066816960844798", "1671130811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9221", "0.0010411373924342252", "1.7539410436477163", "1671130811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9221", "0.0014847692417906764", "3.5066816960844798", "1671130811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9222", "0.0010118740406926876", "1.753886484378729", "1671134411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9222", "0.0014430398001049748", "3.5066063234830698", "1671134411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9222", "0.0010118740406926876", "1.753886484378729", "1671134411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9222", "0.0014430398001049748", "3.5066063234830698", "1671134411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9223", "0.001003225688290895", "1.753870360096543", "1671138011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9223", "0.00143070728507684", "3.5065840481158554", "1671138011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9223", "0.001003225688290895", "1.753870360096543", "1671138011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9223", "0.00143070728507684", "3.5065840481158554", "1671138011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9224", "0.0009921898570444216", "1.7538497828728177", "1671141611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9224", "0.0014149707891369793", "3.506555622200561", "1671141611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9224", "0.0009921898570444216", "1.7538497828728177", "1671141611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9224", "0.0014149707891369793", "3.506555622200561", "1671141611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9225", "0.000987015942596489", "1.7538401282316545", "1671145211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9225", "0.0014075956490800187", "3.5065422901161734", "1671145211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9225", "0.000987015942596489", "1.7538401282316545", "1671145211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9225", "0.0014075956490800187", "3.5065422901161734", "1671145211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9226", "0.0009842282751300554", "1.7538349254267078", "1671148811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9226", "0.00140362230710066", "3.5065351062182972", "1671148811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9226", "0.0009842282751300554", "1.7538349254267078", "1671148811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9226", "0.00140362230710066", "3.5065351062182972", "1671148811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9227", "0.0009493672693969888", "1.7537699329109633", "1671152423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9227", "0.0013539092034562578", "3.5064453176205284", "1671152423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9227", "0.0009493672693969888", "1.7537699329109633", "1671152423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9227", "0.0013539092034562578", "3.5064453176205284", "1671152423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9228", "0.000946733823891712", "1.7537650232925637", "1671156011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9228", "0.001350153803237368", "3.5064385348618647", "1671156011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9228", "0.000946733823891712", "1.7537650232925637", "1671156011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9228", "0.001350153803237368", "3.5064385348618647", "1671156011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9229", "0.0009441056889958236", "1.753760123355077", "1671159611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9229", "0.0013464060514317227", "3.5064317656264743", "1671159611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9229", "0.0009441056889958236", "1.753760123355077", "1671159611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9229", "0.0013464060514317227", "3.5064317656264743", "1671159611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9230", "0.0009414868384094981", "1.7537552409471773", "1671163211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9230", "0.0013426714617155975", "3.5064250204559473", "1671163211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9230", "0.0009414868384094981", "1.7537552409471773", "1671163211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9230", "0.0013426714617155975", "3.5064250204559473", "1671163211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9231", "0.0009234979280341219", "1.7537216897778332", "1671166811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9231", "0.0013170233143622004", "3.5063786781102033", "1671166811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9231", "0.0009234979280341219", "1.7537216897778332", "1671166811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9231", "0.0013170233143622004", "3.5063786781102033", "1671166811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9232", "0.0009203657433136867", "1.7537157888583026", "1671170411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9232", "0.0013125780383344049", "3.5063705679246717", "1671170411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9232", "0.0009203657433136867", "1.7537157888583026", "1671170411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9232", "0.0013125780383344049", "3.5063705679246717", "1671170411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9233", "0.0008897685797616444", "1.7536587482478636", "1671174011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9233", "0.0012689440995905272", "3.5062917627617107", "1671174011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9233", "0.0008897685797616444", "1.7536587482478636", "1671174011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9233", "0.0012689440995905272", "3.5062917627617107", "1671174011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9234", "0.0008492572919942364", "1.753583223275329", "1671177611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9234", "0.0012111723141602295", "3.506187421321551", "1671177611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9234", "0.0008492572919942364", "1.753583223275329", "1671177611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9234", "0.0012111723141602295", "3.506187421321551", "1671177611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9235", "0.000806832965076827", "1.753504133821995", "1671181223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9235", "0.0011506714367725682", "3.5060781535881107", "1671181223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9235", "0.000806832965076827", "1.753504133821995", "1671181223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9235", "0.0011506714367725682", "3.5060781535881107", "1671181223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9236", "0.0007638142540428754", "1.753423934172445", "1671184811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9236", "0.0010893233567122985", "3.5059673530416013", "1671184811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9236", "0.0007638142540428754", "1.753423934172445", "1671184811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9236", "0.0010893233567122985", "3.5059673530416013", "1671184811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9237", "0.0007357180428104152", "1.7533715559711323", "1671188411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9237", "0.0010492552672611386", "3.505894988211817", "1671188411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9237", "0.0007357180428104152", "1.7533715559711323", "1671188411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9237", "0.0010492552672611386", "3.505894988211817", "1671188411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9238", "0.0007256703820645327", "1.753352821782961", "1671192023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9238", "0.0010349272434107364", "3.5058691073117303", "1671192023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9238", "0.0007256703820645327", "1.753352821782961", "1671192023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9238", "0.0010349272434107364", "3.5058691073117303", "1671192023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9239", "0.00071563412018486", "1.7533341117813868", "1671195611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9239", "0.001020614439510419", "3.5058432577925336", "1671195611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9239", "0.00071563412018486", "1.7533341117813868", "1671195611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9239", "0.001020614439510419", "3.5058432577925336", "1671195611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9240", "0.0007103949799792623", "1.7533243447665818", "1671199211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9240", "0.001013142847752868", "3.5058297637892415", "1671199211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9240", "0.0007103949799792623", "1.7533243447665818", "1671199211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9240", "0.001013142847752868", "3.5058297637892415", "1671199211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9241", "0.0007085344011916034", "1.753320877463523", "1671202811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9241", "0.0010104890176550231", "3.505824972534468", "1671202811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9241", "0.0007085344011916034", "1.753320877463523", "1671202811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9241", "0.0010104890176550231", "3.505824972534468", "1671202811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9242", "0.0007065689956591064", "1.7533172134724704", "1671206411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9242", "0.0010076861320752605", "3.5058199104033085", "1671206411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9242", "0.0007065689956591064", "1.7533172134724704", "1671206411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9242", "0.0010076861320752605", "3.5058199104033085", "1671206411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9243", "0.0007045907434747747", "1.7533135231090435", "1671210011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9243", "0.0010048657668066793", "3.505814813494445", "1671210011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9243", "0.0007045907434747747", "1.7533135231090435", "1671210011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9243", "0.0010048657668066793", "3.505814813494445", "1671210011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9244", "0.0007027344411248934", "1.7533100661772634", "1671213611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9244", "0.0010022172003696674", "3.505810034923391", "1671213611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9244", "0.0007027344411248934", "1.7533100661772634", "1671213611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9244", "0.0010022172003696674", "3.505810034923391", "1671213611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9245", "0.0007010879207671593", "1.753306991114385", "1671217211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9245", "0.0009998710069467826", "3.5058057902474196", "1671217211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9245", "0.0007010879207671593", "1.753306991114385", "1671217211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9245", "0.0009998710069467826", "3.5058057902474196", "1671217211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9246", "0.0006993064175376357", "1.7533036711071048", "1671220811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9246", "0.0009973299864256121", "3.5058012025731684", "1671220811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9246", "0.0006993064175376357", "1.7533036711071048", "1671220811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9246", "0.0009973299864256121", "3.5058012025731684", "1671220811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9247", "0.000697346424800546", "1.7533000145430178", "1671224411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9247", "0.0009945357424803716", "3.5057961525224313", "1671224411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9247", "0.000697346424800546", "1.7533000145430178", "1671224411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9247", "0.0009945357424803716", "3.5057961525224313", "1671224411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9248", "0.0006507887504867678", "1.7532132201838708", "1671228011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9248", "0.0009281389634715416", "3.505676237702795", "1671228011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9248", "0.0006507887504867678", "1.7532132201838708", "1671228011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9248", "0.0009281389634715416", "3.505676237702795", "1671228011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9249", "0.0006077416746114456", "1.7531329704136858", "1671231611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9249", "0.0008667484022508169", "3.5055653643876177", "1671231611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9249", "0.0006077416746114456", "1.7531329704136858", "1671231611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9249", "0.0008667484022508169", "3.5055653643876177", "1671231611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9250", "0.0005985176156721252", "1.7531157297543067", "1671235211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9250", "0.0008536092752927504", "3.5055415752995596", "1671235211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9250", "0.0005985176156721252", "1.7531157297543067", "1671235211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9250", "0.0008536092752927504", "3.5055415752995596", "1671235211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9251", "0.000596838948533203", "1.7531126004542195", "1671238811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9251", "0.000851215231851099", "3.5055372517501486", "1671238811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9251", "0.000596838948533203", "1.7531126004542195", "1671238811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9251", "0.000851215231851099", "3.5055372517501486", "1671238811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9252", "0.0005951833733053224", "1.7531095142011153", "1671242411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9252", "0.0008488541206596745", "3.5055329876752546", "1671242411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9252", "0.0005951833733053224", "1.7531095142011153", "1671242411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9252", "0.0008488541206596745", "3.5055329876752546", "1671242411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9253", "0.0005935323904564564", "1.7531064365089506", "1671246011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9253", "0.0008464995584815026", "3.5055287354277747", "1671246011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9253", "0.0005935323904564564", "1.7531064365089506", "1671246011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9253", "0.0008464995584815026", "3.5055287354277747", "1671246011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9254", "0.0005918859872480363", "1.7531033673539784", "1671249611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9254", "0.0008441515271530594", "3.5055244949749045", "1671249611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9254", "0.0005918859872480363", "1.7531033673539784", "1671249611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9254", "0.0008441515271530594", "3.5055244949749045", "1671249611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9255", "0.0005902441429305678", "1.753100306696479", "1671253211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9255", "0.0008418099974470075", "3.505520266262483", "1671253211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9255", "0.0005902441429305678", "1.753100306696479", "1671253211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9255", "0.0008418099974470075", "3.505520266262483", "1671253211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9256", "0.0005886068609508937", "1.7530972545449595", "1671256811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9256", "0.000839474973559612", "3.505516049300844", "1671256811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9256", "0.0005886068609508937", "1.7530972545449595", "1671256811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9256", "0.000839474973559612", "3.505516049300844", "1671256811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9257", "0.0005869611141921421", "1.7530941851454371", "1671260411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9257", "0.0008371283870901145", "3.505511809513277", "1671260411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9257", "0.0005869611141921421", "1.7530941851454371", "1671260411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9257", "0.0008371283870901145", "3.505511809513277", "1671260411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9258", "0.0005853329389679275", "1.7530911499744584", "1671264011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9258", "0.0008348063486000544", "3.5055076160084453", "1671264011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9258", "0.0005853329389679275", "1.7530911499744584", "1671264011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9258", "0.0008348063486000544", "3.5055076160084453", "1671264011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9259", "0.0005837092801192129", "1.7530881232227242", "1671267611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9259", "0.0008324907507559513", "3.5055034341352975", "1671267611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9259", "0.0005837092801192129", "1.7530881232227242", "1671267611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9259", "0.0008324907507559513", "3.5055034341352975", "1671267611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9260", "0.0005820901251182468", "1.753085104866881", "1671271211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9260", "0.0008301815756947873", "3.505499263861573", "1671271211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9260", "0.0005820901251182468", "1.753085104866881", "1671271211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9260", "0.0008301815756947873", "3.505499263861573", "1671271211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9261", "0.0005804754614720267", "1.7530820948836394", "1671274811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9261", "0.0008278788056030799", "3.5054951051551", "1671274811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9261", "0.0005804754614720267", "1.7530820948836394", "1671274811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9261", "0.0008278788056030799", "3.5054951051551", "1671274811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9262", "0.000578865276722203", "1.7530790932497753", "1671278411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9262", "0.0008255824227167437", "3.5054909579837967", "1671278411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9262", "0.000578865276722203", "1.7530790932497753", "1671278411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9262", "0.0008255824227167437", "3.5054909579837967", "1671278411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9263", "0.0005772595584449827", "1.7530760999421282", "1671282011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9263", "0.0008232924093209541", "3.5054868223156688", "1671282011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9263", "0.0005772595584449827", "1.7530760999421282", "1671282011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9263", "0.0008232924093209541", "3.5054868223156688", "1671282011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9264", "0.000575658294251034", "1.7530731149376027", "1671285611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9264", "0.0008210087477500105", "3.5054826981188123", "1671285611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9264", "0.000575658294251034", "1.7530731149376027", "1671285611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9264", "0.0008210087477500105", "3.5054826981188123", "1671285611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9265", "0.0005627667877576026", "1.7530490776273366", "1671289211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9265", "0.0008026252866113738", "3.5054494910213023", "1671289211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9265", "0.0005627667877576026", "1.7530490776273366", "1671289211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9265", "0.0008026252866113738", "3.5054494910213023", "1671289211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9266", "0.0005197990008671389", "1.752968973378286", "1671292811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9266", "0.0007413479939052635", "3.505338819406855", "1671292811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9266", "0.0005197990008671389", "1.752968973378286", "1671292811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9266", "0.0007413479939052635", "3.505338819406855", "1671292811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9267", "0.0005182241163642387", "1.7529660218785525", "1671296411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9267", "0.0007391073820264201", "3.5053347522066", "1671296411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9267", "0.0005182241163642387", "1.7529660218785525", "1671296411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9267", "0.0007391073820264201", "3.5053347522066", "1671296411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9268", "0.0005167866100488984", "1.7529633422192608", "1671300011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9268", "0.0007370572260238017", "3.5053310498143526", "1671300011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9268", "0.0005167866100488984", "1.7529633422192608", "1671300011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9268", "0.0007370572260238017", "3.5053310498143526", "1671300011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9269", "0.0005150476647524992", "1.752960064388232", "1671303611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9269", "0.0007345897522092324", "3.5053265457664824", "1671303611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9269", "0.0005150476647524992", "1.752960064388232", "1671303611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9269", "0.0007345897522092324", "3.5053265457664824", "1671303611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9270", "0.0004747966672171207", "1.7528850352385001", "1671307211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9270", "0.0006771830820906357", "3.50522287842855", "1671307211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9270", "0.0004747966672171207", "1.7528850352385001", "1671307211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9270", "0.0006771830820906357", "3.50522287842855", "1671307211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9271", "0.00045706102464482593", "1.7528519754362715", "1671310811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9271", "0.0006518881178852211", "3.5051771997650474", "1671310811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9271", "0.00045706102464482593", "1.7528519754362715", "1671310811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9271", "0.0006518881178852211", "3.5051771997650474", "1671310811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9272", "0.00045576922725475827", "1.7528495652186764", "1671314411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9272", "0.0006500465129533735", "3.5051738711202196", "1671314411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9272", "0.00045576922725475827", "1.7528495652186764", "1671314411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9272", "0.0006500465129533735", "3.5051738711202196", "1671314411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9273", "0.0004539899858872039", "1.7528462486651408", "1671318011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9273", "0.0006475089134499491", "3.5051692886337995", "1671318011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9273", "0.0004539899858872039", "1.7528462486651408", "1671318011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9273", "0.0006475089134499491", "3.5051692886337995", "1671318011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9274", "0.0004527306582887758", "1.752843901244803", "1671321611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9274", "0.0006457128279388792", "3.505166045199529", "1671321611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9274", "0.0004527306582887758", "1.752843901244803", "1671321611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9274", "0.0006457128279388792", "3.505166045199529", "1671321611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9275", "0.0004514748239341146", "1.7528415603359775", "1671325211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9275", "0.0006439217243258516", "3.5051628107618327", "1671325211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9275", "0.0004514748239341146", "1.7528415603359775", "1671325211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9275", "0.0006439217243258516", "3.5051628107618327", "1671325211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9276", "0.00045009772689579307", "1.7528389785089298", "1671328811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9276", "0.0006419628399307711", "3.505159253631727", "1671328811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9276", "0.00045009772689579307", "1.7528389785089298", "1671328811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9276", "0.0006419628399307711", "3.505159253631727", "1671328811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9277", "0.00044884673492618884", "1.7528366463874703", "1671332411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9277", "0.00064017872510576", "3.505156031498294", "1671332411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9277", "0.00044884673492618884", "1.7528366463874703", "1671332411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9277", "0.00064017872510576", "3.505156031498294", "1671332411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9278", "0.0004476016741901747", "1.7528343256029326", "1671336011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9278", "0.0006384029717597217", "3.5051528248364523", "1671336011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9278", "0.0004476016741901747", "1.7528343256029326", "1671336011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9278", "0.0006384029717597217", "3.5051528248364523", "1671336011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9279", "0.00044635438793297425", "1.75283199991944", "1671339611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9279", "0.0006366243046802524", "3.505149611918995", "1671339611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9279", "0.00044635438793297425", "1.75283199991944", "1671339611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9279", "0.0006366243046802524", "3.505149611918995", "1671339611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9280", "0.0004451162407099072", "1.7528296920237485", "1671343211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9280", "0.0006348584104281992", "3.505146423063669", "1671343211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9280", "0.0004451162407099072", "1.7528296920237485", "1671343211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9280", "0.0006348584104281992", "3.505146423063669", "1671343211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9281", "0.00040587129193530983", "1.7527565103165117", "1671346811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9281", "0.0005788958248652674", "3.50504532673189", "1671346811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9281", "0.00040587129193530983", "1.7527565103165117", "1671346811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9281", "0.0005788958248652674", "3.50504532673189", "1671346811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9282", "0.0003496724199318539", "1.7526517602165943", "1671350423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9282", "0.0004987407471494812", "3.5049005881493893", "1671350423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9282", "0.0003496724199318539", "1.7526517602165943", "1671350423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9282", "0.0004987407471494812", "3.5049005881493893", "1671350423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9283", "0.0003295782285554128", "1.7526143062938648", "1671354011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9283", "0.00047008076863544186", "3.5048488359538528", "1671354011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9283", "0.0003295782285554128", "1.7526143062938648", "1671354011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9283", "0.00047008076863544186", "3.5048488359538528", "1671354011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9284", "0.00031756952081291165", "1.7525919230502485", "1671357611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9284", "0.00045295293660702133", "3.50481790771693", "1671357611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9284", "0.00031756952081291165", "1.7525919230502485", "1671357611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9284", "0.00045295293660702133", "3.50481790771693", "1671357611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9285", "0.00030546258465607886", "1.752569356718115", "1671361211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9285", "0.00043568497922949365", "3.504786726459588", "1671361211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9285", "0.00030546258465607886", "1.752569356718115", "1671361211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9285", "0.00043568497922949365", "3.504786726459588", "1671361211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9286", "0.0002933673983066969", "1.7525468122878276", "1671364823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9286", "0.0004184337566812835", "3.5047555754289412", "1671364823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9286", "0.0002933673983066969", "1.7525468122878276", "1671364823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9286", "0.0004184337566812835", "3.5047555754289412", "1671364823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9287", "0.00028106967067630817", "1.7525238903384899", "1671368411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9287", "0.0004008936275286558", "3.5047239027196206", "1671368411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9287", "0.00028106967067630817", "1.7525238903384899", "1671368411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9287", "0.0004008936275286558", "3.5047239027196206", "1671368411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9288", "0.00026879337970311777", "1.7525010078112455", "1671372011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9288", "0.0003833842346285868", "3.504692284811088", "1671372011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9288", "0.00026879337970311777", "1.7525010078112455", "1671372011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9288", "0.0003833842346285868", "3.504692284811088", "1671372011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9289", "0.00025627487780226904", "1.7524776743842907", "1671375611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9289", "0.0003655291584636063", "3.5046600434431654", "1671375611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9289", "0.00025627487780226904", "1.7524776743842907", "1671375611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9289", "0.0003655291584636063", "3.5046600434431654", "1671375611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9290", "0.00024356604311237654", "1.752453986161881", "1671379211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9290", "0.0003474025968758118", "3.504627311812863", "1671379211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9290", "0.00024356604311237654", "1.752453986161881", "1671379211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9290", "0.0003474025968758118", "3.504627311812863", "1671379211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9291", "0.00023100469072157454", "1.7524305720470124", "1671382811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9291", "0.00032948663674690887", "3.504594959435795", "1671382811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9291", "0.00023100469072157454", "1.7524305720470124", "1671382811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9291", "0.00032948663674690887", "3.504594959435795", "1671382811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9292", "0.00021918535037321422", "1.7524085414413306", "1671386411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9292", "0.0003126288243870718", "3.5045645184001977", "1671386411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9292", "0.00021918535037321422", "1.7524085414413306", "1671386411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9292", "0.0003126288243870718", "3.5045645184001977", "1671386411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9293", "0.00021237188427744938", "1.752395841525492", "1671390011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9293", "0.00030291082796125445", "3.504546970125021", "1671390011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9293", "0.00021237188427744938", "1.752395841525492", "1671390011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9293", "0.00030291082796125445", "3.504546970125021", "1671390011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9294", "0.0002117827820396203", "1.752394743492975", "1671393611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9294", "0.00030207058822672784", "3.5045454528894546", "1671393611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9294", "0.0002117827820396203", "1.752394743492975", "1671393611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9294", "0.00030207058822672784", "3.5045454528894546", "1671393611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9295", "0.00021119531391917092", "1.7523936485063052", "1671397211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9295", "0.0003012326791866236", "3.5045439398624834", "1671397211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9295", "0.00021119531391917092", "1.7523936485063052", "1671397211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9295", "0.0003012326791866236", "3.5045439398624834", "1671397211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9296", "0.0002106028832694703", "1.7523925433571297", "1671400811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9296", "0.00030038800892029594", "3.504542413417754", "1671400811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9296", "0.0002106028832694703", "1.7523925433571297", "1671400811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9296", "0.00030038800892029594", "3.504542413417754", "1671400811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9297", "0.00021001868808419747", "1.7523914544734482", "1671404411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9297", "0.0002995547670949556", "3.504540908821845", "1671404411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9297", "0.00021001868808419747", "1.7523914544734482", "1671404411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9297", "0.0002995547670949556", "3.504540908821845", "1671404411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9298", "0.00020943498286351908", "1.752390366355072", "1671408011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9298", "0.00029872227541824357", "3.5045394053845724", "1671408011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9298", "0.00020943498286351908", "1.752390366355072", "1671408011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9298", "0.00029872227541824357", "3.5045394053845724", "1671408011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9299", "0.0002088592154030821", "1.7523892932388945", "1671411611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9299", "0.0002979010335151212", "3.5045379225352984", "1671411611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9299", "0.0002088592154030821", "1.7523892932388945", "1671411611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9299", "0.0002979010335151212", "3.5045379225352984", "1671411611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9300", "0.00020827985699818988", "1.7523882133707616", "1671415211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9300", "0.00029707469017526994", "3.5045364303964597", "1671415211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9300", "0.00020827985699818988", "1.7523882133707616", "1671415211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9300", "0.00029707469017526994", "3.5045364303964597", "1671415211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9301", "0.0002077021056822773", "1.75238713649809", "1671418811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9301", "0.0002962506389844982", "3.5045349423966026", "1671418811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9301", "0.0002077021056822773", "1.75238713649809", "1671418811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9301", "0.0002962506389844982", "3.5045349423966026", "1671418811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9302", "0.0002071240330571563", "1.752386058816875", "1671422411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9302", "0.0002954262022430986", "3.5045334534229027", "1671422411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9302", "0.0002071240330571563", "1.752386058816875", "1671422411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9302", "0.0002954262022430986", "3.5045334534229027", "1671422411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9303", "0.00020654948789482506", "1.752384987920751", "1671426011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9303", "0.0002946067237045158", "3.50453197368075", "1671426011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9303", "0.00020654948789482506", "1.752384987920751", "1671426011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9303", "0.0002946067237045158", "3.50453197368075", "1671426011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9304", "0.00020597653647002828", "1.752383919995201", "1671429611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9304", "0.00029378951827365005", "3.5045304980431924", "1671429611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9304", "0.00020597653647002828", "1.752383919995201", "1671429611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9304", "0.00029378951827365005", "3.5045304980431924", "1671429611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9305", "0.00020540491625700756", "1.7523828545171356", "1671433211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9305", "0.0002929742232315196", "3.5045290258105446", "1671433211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9305", "0.00020540491625700756", "1.7523828545171356", "1671433211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9305", "0.0002929742232315196", "3.5045290258105446", "1671433211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9306", "0.0002048351397729243", "1.752381792509464", "1671436811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9306", "0.00029216154610701793", "3.504527558349964", "1671436811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9306", "0.0002048351397729243", "1.752381792509464", "1671436811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9306", "0.00029216154610701793", "3.504527558349964", "1671436811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9307", "0.00020426694379854654", "1.7523807334477108", "1671440411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9307", "0.00029135112322468395", "3.504526094959913", "1671440411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9307", "0.00020426694379854654", "1.7523807334477108", "1671440411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9307", "0.00029135112322468395", "3.504526094959913", "1671440411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9308", "0.00020369807235565048", "1.7523796728301302", "1671444011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9308", "0.00029053983991482826", "3.5045246296230874", "1671444011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9308", "0.00020369807235565048", "1.7523796728301302", "1671444011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9308", "0.00029053983991482826", "3.5045246296230874", "1671444011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9309", "0.00020313163739839327", "1.752378617001945", "1671447611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9309", "0.00028973194562479764", "3.5045231707343496", "1671447611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9309", "0.00020313163739839327", "1.752378617001945", "1671447611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9309", "0.00028973194562479764", "3.5045231707343496", "1671447611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9310", "0.00020256816678965062", "1.752377566748778", "1671451211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9310", "0.0002889282620842783", "3.5045217195149294", "1671451211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9310", "0.00020256816678965062", "1.752377566748778", "1671451211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9310", "0.0002889282620842783", "3.5045217195149294", "1671451211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9311", "0.0002020062591987535", "1.752376519408923", "1671454811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9311", "0.0002881268078397902", "3.504520272320989", "1671454811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9311", "0.0002020062591987535", "1.752376519408923", "1671454811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9311", "0.0002881268078397902", "3.504520272320989", "1671454811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9312", "0.00020154633866689293", "1.7523756575857878", "1671458411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9312", "0.00028747240772606644", "3.5045190846023946", "1671458411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9312", "0.00020154633866689293", "1.7523756575857878", "1671458411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9312", "0.00028747240772606644", "3.5045190846023946", "1671458411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9313", "0.00020098726553979953", "1.7523746155417914", "1671462011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9313", "0.00028667499180431744", "3.5045176447173394", "1671462011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9313", "0.00020098726553979953", "1.7523746155417914", "1671462011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9313", "0.00028667499180431744", "3.5045176447173394", "1671462011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9314", "0.000200443076881811", "1.7523736007551107", "1671465611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9314", "0.00028589897437521846", "3.504516242828301", "1671465611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9314", "0.000200443076881811", "1.7523736007551107", "1671465611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9314", "0.00028589897437521846", "3.504516242828301", "1671465611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9315", "0.00019988706410612055", "1.752372564416587", "1671469211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9315", "0.00028510592291996004", "3.504514810825932", "1671469211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9315", "0.00019988706410612055", "1.752372564416587", "1671469211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9315", "0.00028510592291996004", "3.504514810825932", "1671469211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9316", "0.00019931753552116565", "1.752371501911428", "1671472811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9316", "0.00028429393200204344", "3.504513343333752", "1671472811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9316", "0.00019931753552116565", "1.752371501911428", "1671472811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9316", "0.00028429393200204344", "3.504513343333752", "1671472811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9317", "0.00019876383209011677", "1.7523704697847966", "1671476411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9317", "0.0002835042064008634", "3.5045119172144354", "1671476411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9317", "0.00019876383209011677", "1.7523704697847966", "1671476411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9317", "0.0002835042064008634", "3.5045119172144354", "1671476411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9318", "0.00019821247739248168", "1.7523694421313178", "1671480011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9318", "0.00028271779767180354", "3.50451049721072", "1671480011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9318", "0.00019821247739248168", "1.7523694421313178", "1671480011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9318", "0.00028271779767180354", "3.50451049721072", "1671480011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9319", "0.0001918964015400283", "1.7523576697872096", "1671483611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9319", "0.0002737090431505716", "3.504494230270295", "1671483611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9319", "0.0001918964015400283", "1.7523576697872096", "1671483611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9319", "0.0002737090431505716", "3.504494230270295", "1671483611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9320", "0.00018257434739059547", "1.7523402946270736", "1671487211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9320", "0.000260412807643625", "3.5044702214245973", "1671487211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9320", "0.00018257434739059547", "1.7523402946270736", "1671487211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9320", "0.000260412807643625", "3.5044702214245973", "1671487211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9321", "0.00017317493305239298", "1.7523227753387283", "1671490811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9321", "0.00024700619628337993", "3.5044460133602033", "1671490811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9321", "0.00017317493305239298", "1.7523227753387283", "1671490811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9321", "0.00024700619628337993", "3.5044460133602033", "1671490811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9322", "0.00016378327587957255", "1.7523052692927663", "1671494411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9322", "0.00023361105721657498", "3.5044218244046443", "1671494411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9322", "0.00016378327587957255", "1.7523052692927663", "1671494411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9322", "0.00023361105721657498", "3.5044218244046443", "1671494411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9323", "0.0001543965818073475", "1.7522877737920781", "1671498011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9323", "0.00022022253360845707", "3.504397649113151", "1671498011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9323", "0.0001543965818073475", "1.7522877737920781", "1671498011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9323", "0.00022022253360845707", "3.504397649113151", "1671498011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9324", "0.00014485242341321907", "1.7522699848003793", "1671501611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9324", "0.0002066093992423561", "3.5043730682531637", "1671501611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9324", "0.00014485242341321907", "1.7522699848003793", "1671501611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9324", "0.0002066093992423561", "3.5043730682531637", "1671501611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9325", "0.00013529685968859364", "1.752252174534457", "1671505211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9325", "0.00019297998817852007", "3.50434845798535", "1671505211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9325", "0.00013529685968859364", "1.752252174534457", "1671505211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9325", "0.00019297998817852007", "3.50434845798535", "1671505211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9326", "0.00012575332128360545", "1.752234386700998", "1671508811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9326", "0.00017936770811158238", "3.5043238786796604", "1671508811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9326", "0.00012575332128360545", "1.752234386700998", "1671508811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9326", "0.00017936770811158238", "3.5043238786796604", "1671508811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9327", "0.00011615443887467307", "1.75221649570787", "1671512411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9327", "0.00016567647643279132", "3.5042991568093274", "1671512411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9327", "0.00011615443887467307", "1.75221649570787", "1671512411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9327", "0.00016567647643279132", "3.5042991568093274", "1671512411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9328", "0.00010049777417713446", "1.75218731376928", "1671516011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9328", "0.00014334480607143923", "3.5042588330529343", "1671516011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9328", "0.00010049777417713446", "1.75218731376928", "1671516011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9328", "0.00014334480607143923", "3.5042588330529343", "1671516011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9329", "8.108280725798387e-05", "1.7521511269850405", "1671519611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9329", "0.00011565243331515944", "3.5042088297926255", "1671519611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9329", "8.108280725798387e-05", "1.7521511269850405", "1671519611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9329", "0.00011565243331515944", "3.5042088297926255", "1671519611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9330", "6.171752483059632e-05", "1.75211503280877", "1671523211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9330", "8.803086664125493e-05", "3.504158954405529", "1671523211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9330", "6.171752483059632e-05", "1.75211503280877", "1671523211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9330", "8.803086664125493e-05", "3.504158954405529", "1671523211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9331", "5.2228903138724575e-05", "1.7520973471245542", "1671526811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9331", "7.449687699305019e-05", "3.504134516222601", "1671526811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9331", "5.2228903138724575e-05", "1.7520973471245542", "1671526811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9331", "7.449687699305019e-05", "3.504134516222601", "1671526811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9332", "4.8771696543021704e-05", "1.7520909033906003", "1671530423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9332", "6.956569207377196e-05", "3.5041256121618667", "1671530423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9332", "4.8771696543021704e-05", "1.7520909033906003", "1671530423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9332", "6.956569207377196e-05", "3.5041256121618667", "1671530423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9333", "4.863640758713561e-05", "1.752090651231521", "1671534011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9333", "6.937272269894246e-05", "3.504125263724119", "1671534011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9333", "4.863640758713561e-05", "1.752090651231521", "1671534011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9333", "6.937272269894246e-05", "3.504125263724119", "1671534011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9334", "4.85014938653316e-05", "1.7520903997717752", "1671537611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9334", "6.918028855322949e-05", "3.504124916252751", "1671537611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9334", "4.85014938653316e-05", "1.7520903997717752", "1671537611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9334", "6.918028855322949e-05", "3.504124916252751", "1671537611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9335", "4.8363780866222944e-05", "1.7520901427489979", "1671541211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9335", "6.89839816242223e-05", "3.5041245613307477", "1671541211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9335", "4.8363780866222944e-05", "1.7520901427489979", "1671541211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9335", "6.89839816242223e-05", "3.5041245613307477", "1671541211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9336", "4.390849862795701e-05", "1.7520818387781454", "1671544811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9336", "6.262917779360261e-05", "3.504113086736529", "1671544811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9336", "4.390849862795701e-05", "1.7520818387781454", "1671544811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9336", "6.262917779360261e-05", "3.504113086736529", "1671544811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9337", "4.0660361068834974e-05", "1.7520757847421216", "1671548411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9337", "5.7996185998698606e-05", "3.504104721144472", "1671548411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9337", "4.0660361068834974e-05", "1.7520757847421216", "1671548411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9337", "5.7996185998698606e-05", "3.504104721144472", "1671548411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9338", "3.726968879294233e-05", "1.7520694650430833", "1671552011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9338", "5.315988750959982e-05", "3.5040959884509735", "1671552011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9338", "3.726968879294233e-05", "1.7520694650430833", "1671552011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9338", "5.315988750959982e-05", "3.5040959884509735", "1671552011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9339", "3.4912480048503777e-05", "1.7520650715634314", "1671555611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9339", "4.9797672617855196e-05", "3.5040899174463878", "1671555611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9339", "3.4912480048503777e-05", "1.7520650715634314", "1671555611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9339", "4.9797672617855196e-05", "3.5040899174463878", "1671555611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9340", "3.301151129373798e-05", "1.7520615284459686", "1671559211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9340", "4.708621695223217e-05", "3.5040850214895394", "1671559211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9340", "3.301151129373798e-05", "1.7520615284459686", "1671559211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9340", "4.708621695223217e-05", "3.5040850214895394", "1671559211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9341", "3.291979579537618e-05", "1.7520613574831663", "1671562811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9341", "4.69554047116413e-05", "3.5040847852624113", "1671562811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9341", "3.291979579537618e-05", "1.7520613574831663", "1671562811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9341", "4.69554047116413e-05", "3.5040847852624113", "1671562811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9342", "3.2828478782741255e-05", "1.7520611872821572", "1671566411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9342", "4.682515422954213e-05", "3.5040845500748903", "1671566411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9342", "3.2828478782741255e-05", "1.7520611872821572", "1671566411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9342", "4.682515422954213e-05", "3.5040845500748903", "1671566411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9343", "3.273741507646431e-05", "1.7520610175532727", "1671570011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9343", "4.669526505089739e-05", "3.50408431553976", "1671570011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9343", "3.273741507646431e-05", "1.7520610175532727", "1671570011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9343", "4.669526505089739e-05", "3.50408431553976", "1671570011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9344", "3.013522984981128e-05", "1.7520561649884394", "1671573611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9344", "4.2984487984527576e-05", "3.5040776118594437", "1671573611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9344", "3.013522984981128e-05", "1.7520561649884394", "1671573611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9344", "4.2984487984527576e-05", "3.5040776118594437", "1671573611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9345", "2.538383393893762e-05", "1.7520473095069284", "1671577211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9345", "3.620716871083966e-05", "3.5040653748815354", "1671577211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9345", "2.538383393893762e-05", "1.7520473095069284", "1671577211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9345", "3.620716871083966e-05", "3.5040653748815354", "1671577211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9346", "2.035906999495315e-05", "1.752037944139105", "1671580811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9346", "2.9040053822580077e-05", "3.504052433578186", "1671580811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9346", "2.035906999495315e-05", "1.752037944139105", "1671580811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9346", "2.9040053822580077e-05", "3.504052433578186", "1671580811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9347", "1.533217039110301e-05", "1.7520285751039644", "1671584411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9347", "2.18697799643447e-05", "3.5040394869868203", "1671584411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9347", "1.533217039110301e-05", "1.7520285751039644", "1671584411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9347", "2.18697799643447e-05", "3.5040394869868203", "1671584411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9348", "1.0037205327148598e-05", "1.752018706691558", "1671588011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9348", "1.4317055741067754e-05", "3.504025850162184", "1671588011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9348", "1.0037205327148598e-05", "1.752018706691558", "1671588011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9348", "1.4317055741067754e-05", "3.504025850162184", "1671588011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9349", "4.4521238262102615e-06", "1.7520082974991202", "1671591611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9349", "6.3505330590787675e-06", "3.504011466099178", "1671591611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9349", "4.4521238262102615e-06", "1.7520082974991202", "1671591611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9349", "6.3505330590787675e-06", "3.504011466099178", "1671591611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9350", "0.0", "1.752", "1671595211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9350", "0.0", "3.504", "1671595211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9350", "0.0", "1.752", "1671595211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9350", "0.0", "3.504", "1671595211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9351", "0.0", "1.752", "1671598811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9351", "0.0", "3.504", "1671598811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9351", "0.0", "1.752", "1671598811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9351", "0.0", "3.504", "1671598811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9352", "0.0", "1.752", "1671602411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9352", "0.0", "3.504", "1671602411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9352", "0.0", "1.752", "1671602411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9352", "0.0", "3.504", "1671602411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9353", "0.0", "1.752", "1671606011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9353", "0.0", "3.504", "1671606011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9353", "0.0", "1.752", "1671606011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9353", "0.0", "3.504", "1671606011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9354", "0.0", "1.752", "1671609611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9354", "0.0", "3.504", "1671609611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9354", "0.0", "1.752", "1671609611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9354", "0.0", "3.504", "1671609611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9355", "0.0", "1.752", "1671613211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9355", "0.0", "3.504", "1671613211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9355", "0.0", "1.752", "1671613211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9355", "0.0", "3.504", "1671613211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9356", "0.0", "1.752", "1671616811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9356", "0.0", "3.504", "1671616811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9356", "0.0", "1.752", "1671616811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9356", "0.0", "3.504", "1671616811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9357", "0.0", "1.752", "1671620411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9357", "0.0", "3.504", "1671620411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9357", "0.0", "1.752", "1671620411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9357", "0.0", "3.504", "1671620411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9358", "0.0", "1.752", "1671624011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9358", "0.0", "3.504", "1671624011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9358", "0.0", "1.752", "1671624011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9358", "0.0", "3.504", "1671624011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9359", "0.0", "1.752", "1671627611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9359", "0.0", "3.504", "1671627611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9359", "0.0", "1.752", "1671627611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9359", "0.0", "3.504", "1671627611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9360", "0.0", "1.752", "1671631211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9360", "0.0", "3.504", "1671631211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9360", "0.0", "1.752", "1671631211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9360", "0.0", "3.504", "1671631211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9361", "0.0", "1.752", "1671634823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9361", "0.0", "3.504", "1671634823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9361", "0.0", "1.752", "1671634823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9361", "0.0", "3.504", "1671634823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9362", "0.0", "1.752", "1671638411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9362", "0.0", "3.504", "1671638411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9362", "0.0", "1.752", "1671638411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9362", "0.0", "3.504", "1671638411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9363", "0.0", "1.752", "1671642011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9363", "0.0", "3.504", "1671642011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9363", "0.0", "1.752", "1671642011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9363", "0.0", "3.504", "1671642011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9364", "0.0", "1.752", "1671645611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9364", "0.0", "3.504", "1671645611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9364", "0.0", "1.752", "1671645611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9364", "0.0", "3.504", "1671645611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9365", "0.0", "1.752", "1671649211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9365", "0.0", "3.504", "1671649211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9365", "0.0", "1.752", "1671649211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9365", "0.0", "3.504", "1671649211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9366", "0.0", "1.752", "1671652811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9366", "0.0", "3.504", "1671652811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9366", "0.0", "1.752", "1671652811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9366", "0.0", "3.504", "1671652811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9367", "0.0", "1.752", "1671656411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9367", "0.0", "3.504", "1671656411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9367", "0.0", "1.752", "1671656411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9367", "0.0", "3.504", "1671656411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9368", "0.0", "1.752", "1671660011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9368", "0.0", "3.504", "1671660011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9368", "0.0", "1.752", "1671660011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9368", "0.0", "3.504", "1671660011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9369", "0.0", "1.752", "1671663611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9369", "0.0", "3.504", "1671663611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9369", "0.0", "1.752", "1671663611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9369", "0.0", "3.504", "1671663611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9370", "0.0", "1.752", "1671667211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9370", "0.0", "3.504", "1671667211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9370", "0.0", "1.752", "1671667211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9370", "0.0", "3.504", "1671667211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9371", "0.0", "1.752", "1671670811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9371", "0.0", "3.504", "1671670811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9371", "0.0", "1.752", "1671670811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9371", "0.0", "3.504", "1671670811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9372", "0.0", "1.752", "1671674411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9372", "0.0", "3.504", "1671674411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9372", "0.0", "1.752", "1671674411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9372", "0.0", "3.504", "1671674411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9373", "0.0", "1.752", "1671678011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9373", "0.0", "3.504", "1671678011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9373", "0.0", "1.752", "1671678011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9373", "0.0", "3.504", "1671678011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9374", "0.0", "1.752", "1671681611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9374", "0.0", "3.504", "1671681611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9374", "0.0", "1.752", "1671681611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9374", "0.0", "3.504", "1671681611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9375", "0.0", "1.752", "1671685211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9375", "0.0", "3.504", "1671685211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9375", "0.0", "1.752", "1671685211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9375", "0.0", "3.504", "1671685211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9376", "0.0", "1.752", "1671688811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9376", "0.0", "3.504", "1671688811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9376", "0.0", "1.752", "1671688811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9376", "0.0", "3.504", "1671688811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9377", "0.0", "1.752", "1671692411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9377", "0.0", "3.504", "1671692411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9377", "0.0", "1.752", "1671692411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9377", "0.0", "3.504", "1671692411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9378", "0.0", "1.752", "1671696011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9378", "0.0", "3.504", "1671696011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9378", "0.0", "1.752", "1671696011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9378", "0.0", "3.504", "1671696011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9379", "0.0", "1.752", "1671699611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9379", "0.0", "3.504", "1671699611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9379", "0.0", "1.752", "1671699611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9379", "0.0", "3.504", "1671699611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9380", "0.0", "1.752", "1671703211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9380", "0.0", "3.504", "1671703211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9380", "0.0", "1.752", "1671703211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9380", "0.0", "3.504", "1671703211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9381", "0.0", "1.752", "1671706811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9381", "0.0", "3.504", "1671706811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9381", "0.0", "1.752", "1671706811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9381", "0.0", "3.504", "1671706811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9382", "0.0", "1.752", "1671710411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9382", "0.0", "3.504", "1671710411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9382", "0.0", "1.752", "1671710411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9382", "0.0", "3.504", "1671710411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9383", "0.0", "1.752", "1671714011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9383", "0.0", "3.504", "1671714011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9383", "0.0", "1.752", "1671714011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9383", "0.0", "3.504", "1671714011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9384", "0.0", "1.752", "1671717611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9384", "0.0", "3.504", "1671717611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9384", "0.0", "1.752", "1671717611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9384", "0.0", "3.504", "1671717611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9385", "0.0", "1.752", "1671721211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9385", "0.0", "3.504", "1671721211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9385", "0.0", "1.752", "1671721211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9385", "0.0", "3.504", "1671721211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9386", "0.0", "1.752", "1671724811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9386", "0.0", "3.504", "1671724811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9386", "0.0", "1.752", "1671724811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9386", "0.0", "3.504", "1671724811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9387", "0.0", "1.752", "1671728411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9387", "0.0", "3.504", "1671728411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9387", "0.0", "1.752", "1671728411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9387", "0.0", "3.504", "1671728411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9388", "0.0", "1.752", "1671732011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9388", "0.0", "3.504", "1671732011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9388", "0.0", "1.752", "1671732011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9388", "0.0", "3.504", "1671732011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9389", "0.0", "1.752", "1671735611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9389", "0.0", "3.504", "1671735611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9389", "0.0", "1.752", "1671735611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9389", "0.0", "3.504", "1671735611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9390", "0.0", "1.752", "1671739211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9390", "0.0", "3.504", "1671739211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9390", "0.0", "1.752", "1671739211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9390", "0.0", "3.504", "1671739211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9391", "0.0", "1.752", "1671742811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9391", "0.0", "3.504", "1671742811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9391", "0.0", "1.752", "1671742811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9391", "0.0", "3.504", "1671742811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9392", "0.0", "1.752", "1671746411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9392", "0.0", "3.504", "1671746411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9392", "0.0", "1.752", "1671746411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9392", "0.0", "3.504", "1671746411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9393", "0.0", "1.752", "1671750011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9393", "0.0", "3.504", "1671750011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9393", "0.0", "1.752", "1671750011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9393", "0.0", "3.504", "1671750011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9394", "0.0", "1.752", "1671753611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9394", "0.0", "3.504", "1671753611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9394", "0.0", "1.752", "1671753611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9394", "0.0", "3.504", "1671753611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9395", "0.0", "1.752", "1671757211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9395", "0.0", "3.504", "1671757211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9395", "0.0", "1.752", "1671757211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9395", "0.0", "3.504", "1671757211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9396", "0.0", "1.752", "1671760811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9396", "0.0", "3.504", "1671760811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9396", "0.0", "1.752", "1671760811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9396", "0.0", "3.504", "1671760811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9397", "0.0", "1.752", "1671764411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9397", "0.0", "3.504", "1671764411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9397", "0.0", "1.752", "1671764411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9397", "0.0", "3.504", "1671764411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9398", "0.0", "1.752", "1671768011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9398", "0.0", "3.504", "1671768011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9398", "0.0", "1.752", "1671768011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9398", "0.0", "3.504", "1671768011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9399", "0.0", "1.752", "1671771611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9399", "0.0", "3.504", "1671771611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9399", "0.0", "1.752", "1671771611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9399", "0.0", "3.504", "1671771611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9400", "0.0", "1.752", "1671775211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9400", "0.0", "3.504", "1671775211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9400", "0.0", "1.752", "1671775211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9400", "0.0", "3.504", "1671775211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9401", "0.0", "1.752", "1671778811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9401", "0.0", "3.504", "1671778811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9401", "0.0", "1.752", "1671778811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9401", "0.0", "3.504", "1671778811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9402", "0.0", "1.752", "1671782411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9402", "0.0", "3.504", "1671782411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9402", "0.0", "1.752", "1671782411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9402", "0.0", "3.504", "1671782411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9403", "0.0", "1.752", "1671786011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9403", "0.0", "3.504", "1671786011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9403", "0.0", "1.752", "1671786011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9403", "0.0", "3.504", "1671786011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9404", "0.0", "1.752", "1671789611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9404", "0.0", "3.504", "1671789611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9404", "0.0", "1.752", "1671789611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9404", "0.0", "3.504", "1671789611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9405", "0.0", "1.752", "1671793211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9405", "0.0", "3.504", "1671793211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9405", "0.0", "1.752", "1671793211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9405", "0.0", "3.504", "1671793211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9406", "0.0", "1.752", "1671796811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9406", "0.0", "3.504", "1671796811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9406", "0.0", "1.752", "1671796811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9406", "0.0", "3.504", "1671796811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9407", "0.0", "1.752", "1671800411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9407", "0.0", "3.504", "1671800411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9407", "0.0", "1.752", "1671800411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9407", "0.0", "3.504", "1671800411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9408", "0.0", "1.752", "1671804011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9408", "0.0", "3.504", "1671804011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9408", "0.0", "1.752", "1671804011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9408", "0.0", "3.504", "1671804011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9409", "0.0", "1.752", "1671807611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9409", "0.0", "3.504", "1671807611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9409", "0.0", "1.752", "1671807611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9409", "0.0", "3.504", "1671807611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9410", "0.0", "1.752", "1671811211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9410", "0.0", "3.504", "1671811211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9410", "0.0", "1.752", "1671811211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9410", "0.0", "3.504", "1671811211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9411", "0.0", "1.752", "1671814823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9411", "0.0", "3.504", "1671814823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9411", "0.0", "1.752", "1671814823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9411", "0.0", "3.504", "1671814823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9412", "0.0", "1.752", "1671818411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9412", "0.0", "3.504", "1671818411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9412", "0.0", "1.752", "1671818411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9412", "0.0", "3.504", "1671818411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9413", "0.0", "1.752", "1671822011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9413", "0.0", "3.504", "1671822011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9413", "0.0", "1.752", "1671822011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9413", "0.0", "3.504", "1671822011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9414", "0.0", "1.752", "1671825623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9414", "0.0", "3.504", "1671825623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9414", "0.0", "1.752", "1671825623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9414", "0.0", "3.504", "1671825623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9415", "0.0", "1.752", "1671829211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9415", "0.0", "3.504", "1671829211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9415", "0.0", "1.752", "1671829211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9415", "0.0", "3.504", "1671829211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9416", "0.0", "1.752", "1671832811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9416", "0.0", "3.504", "1671832811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9416", "0.0", "1.752", "1671832811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9416", "0.0", "3.504", "1671832811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9417", "0.0", "1.752", "1671836411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9417", "0.0", "3.504", "1671836411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9417", "0.0", "1.752", "1671836411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9417", "0.0", "3.504", "1671836411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9418", "0.0", "1.752", "1671840011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9418", "0.0", "3.504", "1671840011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9418", "0.0", "1.752", "1671840011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9418", "0.0", "3.504", "1671840011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9419", "0.0", "1.752", "1671843611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9419", "0.0", "3.504", "1671843611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9419", "0.0", "1.752", "1671843611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9419", "0.0", "3.504", "1671843611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9420", "0.0", "1.752", "1671847211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9420", "0.0", "3.504", "1671847211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9420", "0.0", "1.752", "1671847211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9420", "0.0", "3.504", "1671847211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9421", "0.0", "1.752", "1671850811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9421", "0.0", "3.504", "1671850811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9421", "0.0", "1.752", "1671850811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9421", "0.0", "3.504", "1671850811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9422", "0.0", "1.752", "1671854411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9422", "0.0", "3.504", "1671854411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9422", "0.0", "1.752", "1671854411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9422", "0.0", "3.504", "1671854411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9423", "0.0", "1.752", "1671858011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9423", "0.0", "3.504", "1671858011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9423", "0.0", "1.752", "1671858011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9423", "0.0", "3.504", "1671858011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9424", "0.0", "1.752", "1671861611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9424", "0.0", "3.504", "1671861611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9424", "0.0", "1.752", "1671861611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9424", "0.0", "3.504", "1671861611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9425", "0.0", "1.752", "1671865211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9425", "0.0", "3.504", "1671865211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9425", "0.0", "1.752", "1671865211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9425", "0.0", "3.504", "1671865211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9426", "0.0", "1.752", "1671868823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9426", "0.0", "3.504", "1671868823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9426", "0.0", "1.752", "1671868823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9426", "0.0", "3.504", "1671868823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9427", "0.0", "1.752", "1671872411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9427", "0.0", "3.504", "1671872411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9427", "0.0", "1.752", "1671872411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9427", "0.0", "3.504", "1671872411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9428", "0.0", "1.752", "1671876011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9428", "0.0", "3.504", "1671876011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9428", "0.0", "1.752", "1671876011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9428", "0.0", "3.504", "1671876011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9429", "0.0", "1.752", "1671879611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9429", "0.0", "3.504", "1671879611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9429", "0.0", "1.752", "1671879611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9429", "0.0", "3.504", "1671879611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9430", "0.0", "1.752", "1671883211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9430", "0.0", "3.504", "1671883211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9430", "0.0", "1.752", "1671883211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9430", "0.0", "3.504", "1671883211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9431", "0.0", "1.752", "1671886811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9431", "0.0", "3.504", "1671886811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9431", "0.0", "1.752", "1671886811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9431", "0.0", "3.504", "1671886811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9432", "0.0", "1.752", "1671890411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9432", "0.0", "3.504", "1671890411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9432", "0.0", "1.752", "1671890411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9432", "0.0", "3.504", "1671890411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9433", "0.0", "1.752", "1671894011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9433", "0.0", "3.504", "1671894011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9433", "0.0", "1.752", "1671894011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9433", "0.0", "3.504", "1671894011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9434", "0.0", "1.752", "1671897611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9434", "0.0", "3.504", "1671897611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9434", "0.0", "1.752", "1671897611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9434", "0.0", "3.504", "1671897611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9435", "0.0", "1.752", "1671901223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9435", "0.0", "3.504", "1671901223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9435", "0.0", "1.752", "1671901223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9435", "0.0", "3.504", "1671901223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9436", "0.0", "1.752", "1671904811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9436", "0.0", "3.504", "1671904811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9436", "0.0", "1.752", "1671904811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9436", "0.0", "3.504", "1671904811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9437", "0.0", "1.752", "1671908411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9437", "0.0", "3.504", "1671908411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9437", "0.0", "1.752", "1671908411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9437", "0.0", "3.504", "1671908411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9438", "0.0", "1.752", "1671912035"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9438", "0.0", "3.504", "1671912035"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9438", "0.0", "1.752", "1671912035"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9438", "0.0", "3.504", "1671912035"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9439", "0.0", "1.752", "1671915611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9439", "0.0", "3.504", "1671915611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9439", "0.0", "1.752", "1671915611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9439", "0.0", "3.504", "1671915611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9440", "0.0", "1.752", "1671919211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9440", "0.0", "3.504", "1671919211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9440", "0.0", "1.752", "1671919211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9440", "0.0", "3.504", "1671919211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9441", "0.0", "1.752", "1671922811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9441", "0.0", "3.504", "1671922811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9441", "0.0", "1.752", "1671922811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9441", "0.0", "3.504", "1671922811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9442", "0.0", "1.752", "1671926411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9442", "0.0", "3.504", "1671926411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9442", "0.0", "1.752", "1671926411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9442", "0.0", "3.504", "1671926411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9443", "0.0", "1.752", "1671930011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9443", "0.0", "3.504", "1671930011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9443", "0.0", "1.752", "1671930011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9443", "0.0", "3.504", "1671930011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9444", "0.0", "1.752", "1671933611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9444", "0.0", "3.504", "1671933611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9444", "0.0", "1.752", "1671933611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9444", "0.0", "3.504", "1671933611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9445", "0.0", "1.752", "1671937211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9445", "0.0", "3.504", "1671937211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9445", "0.0", "1.752", "1671937211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9445", "0.0", "3.504", "1671937211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9446", "0.0", "1.752", "1671940811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9446", "0.0", "3.504", "1671940811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9446", "0.0", "1.752", "1671940811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9446", "0.0", "3.504", "1671940811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9447", "0.0", "1.752", "1671944411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9447", "0.0", "3.504", "1671944411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9447", "0.0", "1.752", "1671944411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9447", "0.0", "3.504", "1671944411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9448", "0.0", "1.752", "1671948011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9448", "0.0", "3.504", "1671948011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9448", "0.0", "1.752", "1671948011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9448", "0.0", "3.504", "1671948011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9449", "0.0", "1.752", "1671951611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9449", "0.0", "3.504", "1671951611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9449", "0.0", "1.752", "1671951611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9449", "0.0", "3.504", "1671951611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9450", "0.0", "1.752", "1671955211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9450", "0.0", "3.504", "1671955211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9450", "0.0", "1.752", "1671955211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9450", "0.0", "3.504", "1671955211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9451", "0.0", "1.752", "1671958811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9451", "0.0", "3.504", "1671958811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9451", "0.0", "1.752", "1671958811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9451", "0.0", "3.504", "1671958811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9452", "0.0", "1.752", "1671962411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9452", "0.0", "3.504", "1671962411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9452", "0.0", "1.752", "1671962411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9452", "0.0", "3.504", "1671962411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9453", "0.0", "1.752", "1671966011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9453", "0.0", "3.504", "1671966011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9453", "0.0", "1.752", "1671966011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9453", "0.0", "3.504", "1671966011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9454", "0.0", "1.752", "1671969623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9454", "0.0", "3.504", "1671969623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9454", "0.0", "1.752", "1671969623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9454", "0.0", "3.504", "1671969623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9455", "0.0", "1.752", "1671973211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9455", "0.0", "3.504", "1671973211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9455", "0.0", "1.752", "1671973211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9455", "0.0", "3.504", "1671973211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9456", "0.0", "1.752", "1671976835"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9456", "0.0", "3.504", "1671976835"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9456", "0.0", "1.752", "1671976835"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9456", "0.0", "3.504", "1671976835"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9457", "0.0", "1.752", "1671980411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9457", "0.0", "3.504", "1671980411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9457", "0.0", "1.752", "1671980411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9457", "0.0", "3.504", "1671980411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9458", "0.0", "1.752", "1671984011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9458", "0.0", "3.504", "1671984011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9458", "0.0", "1.752", "1671984011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9458", "0.0", "3.504", "1671984011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9459", "0.0", "1.752", "1671987611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9459", "0.0", "3.504", "1671987611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9459", "0.0", "1.752", "1671987611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9459", "0.0", "3.504", "1671987611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9460", "0.0", "1.752", "1671991211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9460", "0.0", "3.504", "1671991211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9460", "0.0", "1.752", "1671991211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9460", "0.0", "3.504", "1671991211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9461", "0.0", "1.752", "1671994811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9461", "0.0", "3.504", "1671994811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9461", "0.0", "1.752", "1671994811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9461", "0.0", "3.504", "1671994811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9462", "0.0", "1.752", "1671998411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9462", "0.0", "3.504", "1671998411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9462", "0.0", "1.752", "1671998411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9462", "0.0", "3.504", "1671998411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9463", "0.0", "1.752", "1672002011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9463", "0.0", "3.504", "1672002011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9463", "0.0", "1.752", "1672002011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9463", "0.0", "3.504", "1672002011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9464", "0.0", "1.752", "1672005611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9464", "0.0", "3.504", "1672005611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9464", "0.0", "1.752", "1672005611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9464", "0.0", "3.504", "1672005611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9465", "0.0", "1.752", "1672009211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9465", "0.0", "3.504", "1672009211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9465", "0.0", "1.752", "1672009211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9465", "0.0", "3.504", "1672009211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9466", "0.0", "1.752", "1672012811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9466", "0.0", "3.504", "1672012811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9466", "0.0", "1.752", "1672012811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9466", "0.0", "3.504", "1672012811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9467", "0.0", "1.752", "1672016411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9467", "0.0", "3.504", "1672016411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9467", "0.0", "1.752", "1672016411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9467", "0.0", "3.504", "1672016411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9468", "0.0", "1.752", "1672020011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9468", "0.0", "3.504", "1672020011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9468", "0.0", "1.752", "1672020011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9468", "0.0", "3.504", "1672020011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9469", "0.0", "1.752", "1672023611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9469", "0.0", "3.504", "1672023611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9469", "0.0", "1.752", "1672023611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9469", "0.0", "3.504", "1672023611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9470", "0.0", "1.752", "1672027211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9470", "0.0", "3.504", "1672027211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9470", "0.0", "1.752", "1672027211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9470", "0.0", "3.504", "1672027211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9471", "0.0", "1.752", "1672030811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9471", "0.0", "3.504", "1672030811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9471", "0.0", "1.752", "1672030811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9471", "0.0", "3.504", "1672030811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9472", "0.0", "1.752", "1672034411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9472", "0.0", "3.504", "1672034411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9472", "0.0", "1.752", "1672034411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9472", "0.0", "3.504", "1672034411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9473", "0.0", "1.752", "1672038023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9473", "0.0", "3.504", "1672038023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9473", "0.0", "1.752", "1672038023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9473", "0.0", "3.504", "1672038023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9474", "0.0", "1.752", "1672041611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9474", "0.0", "3.504", "1672041611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9474", "0.0", "1.752", "1672041611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9474", "0.0", "3.504", "1672041611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9475", "0.0", "1.752", "1672045211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9475", "0.0", "3.504", "1672045211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9475", "0.0", "1.752", "1672045211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9475", "0.0", "3.504", "1672045211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9476", "0.0", "1.752", "1672048811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9476", "0.0", "3.504", "1672048811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9476", "0.0", "1.752", "1672048811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9476", "0.0", "3.504", "1672048811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9477", "0.0", "1.752", "1672052411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9477", "0.0", "3.504", "1672052411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9477", "0.0", "1.752", "1672052411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9477", "0.0", "3.504", "1672052411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9478", "0.0", "1.752", "1672056011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9478", "0.0", "3.504", "1672056011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9478", "0.0", "1.752", "1672056011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9478", "0.0", "3.504", "1672056011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9479", "0.0", "1.752", "1672059611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9479", "0.0", "3.504", "1672059611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9479", "0.0", "1.752", "1672059611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9479", "0.0", "3.504", "1672059611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9480", "0.0", "1.752", "1672063211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9480", "0.0", "3.504", "1672063211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9480", "0.0", "1.752", "1672063211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9480", "0.0", "3.504", "1672063211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9481", "0.0", "1.752", "1672066811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9481", "0.0", "3.504", "1672066811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9481", "0.0", "1.752", "1672066811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9481", "0.0", "3.504", "1672066811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9482", "0.0", "1.752", "1672070411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9482", "0.0", "3.504", "1672070411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9482", "0.0", "1.752", "1672070411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9482", "0.0", "3.504", "1672070411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9483", "0.0", "1.752", "1672074011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9483", "0.0", "3.504", "1672074011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9483", "0.0", "1.752", "1672074011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9483", "0.0", "3.504", "1672074011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9484", "0.0", "1.752", "1672077611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9484", "0.0", "3.504", "1672077611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9484", "0.0", "1.752", "1672077611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9484", "0.0", "3.504", "1672077611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9485", "0.0", "1.752", "1672081211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9485", "0.0", "3.504", "1672081211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9485", "0.0", "1.752", "1672081211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9485", "0.0", "3.504", "1672081211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9486", "0.0", "1.752", "1672084811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9486", "0.0", "3.504", "1672084811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9486", "0.0", "1.752", "1672084811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9486", "0.0", "3.504", "1672084811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9487", "0.0", "1.752", "1672088411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9487", "0.0", "3.504", "1672088411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9487", "0.0", "1.752", "1672088411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9487", "0.0", "3.504", "1672088411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9488", "0.0", "1.752", "1672092011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9488", "0.0", "3.504", "1672092011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9488", "0.0", "1.752", "1672092011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9488", "0.0", "3.504", "1672092011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9489", "0.0", "1.752", "1672095611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9489", "0.0", "3.504", "1672095611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9489", "0.0", "1.752", "1672095611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9489", "0.0", "3.504", "1672095611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9490", "0.0", "1.752", "1672099223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9490", "0.0", "3.504", "1672099223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9490", "0.0", "1.752", "1672099223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9490", "0.0", "3.504", "1672099223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9491", "0.0", "1.752", "1672102811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9491", "0.0", "3.504", "1672102811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9491", "0.0", "1.752", "1672102811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9491", "0.0", "3.504", "1672102811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9492", "0.0", "1.752", "1672106411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9492", "0.0", "3.504", "1672106411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9492", "0.0", "1.752", "1672106411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9492", "0.0", "3.504", "1672106411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9493", "0.0", "1.752", "1672110011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9493", "0.0", "3.504", "1672110011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9493", "0.0", "1.752", "1672110011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9493", "0.0", "3.504", "1672110011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9494", "0.0", "1.752", "1672113611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9494", "0.0", "3.504", "1672113611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9494", "0.0", "1.752", "1672113611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9494", "0.0", "3.504", "1672113611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9495", "0.0", "1.752", "1672117211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9495", "0.0", "3.504", "1672117211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9495", "0.0", "1.752", "1672117211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9495", "0.0", "3.504", "1672117211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9496", "0.0", "1.752", "1672120811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9496", "0.0", "3.504", "1672120811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9496", "0.0", "1.752", "1672120811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9496", "0.0", "3.504", "1672120811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9497", "0.0", "1.752", "1672124411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9497", "0.0", "3.504", "1672124411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9497", "0.0", "1.752", "1672124411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9497", "0.0", "3.504", "1672124411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9498", "0.0", "1.752", "1672128011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9498", "0.0", "3.504", "1672128011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9498", "0.0", "1.752", "1672128011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9498", "0.0", "3.504", "1672128011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9499", "0.0", "1.752", "1672131611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9499", "0.0", "3.504", "1672131611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9499", "0.0", "1.752", "1672131611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9499", "0.0", "3.504", "1672131611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9500", "0.0", "1.752", "1672135211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9500", "0.0", "3.504", "1672135211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9500", "0.0", "1.752", "1672135211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9500", "0.0", "3.504", "1672135211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9501", "0.0", "1.752", "1672138811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9501", "0.0", "3.504", "1672138811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9501", "0.0", "1.752", "1672138811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9501", "0.0", "3.504", "1672138811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9502", "0.0", "1.752", "1672142411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9502", "0.0", "3.504", "1672142411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9502", "0.0", "1.752", "1672142411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9502", "0.0", "3.504", "1672142411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9503", "0.0", "1.752", "1672146011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9503", "0.0", "3.504", "1672146011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9503", "0.0", "1.752", "1672146011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9503", "0.0", "3.504", "1672146011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9504", "0.0", "1.752", "1672149611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9504", "0.0", "3.504", "1672149611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9504", "0.0", "1.752", "1672149611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9504", "0.0", "3.504", "1672149611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9505", "0.0", "1.752", "1672153211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9505", "0.0", "3.504", "1672153211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9505", "0.0", "1.752", "1672153211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9505", "0.0", "3.504", "1672153211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9506", "0.0", "1.752", "1672156811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9506", "0.0", "3.504", "1672156811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9506", "0.0", "1.752", "1672156811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9506", "0.0", "3.504", "1672156811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9507", "0.0", "1.752", "1672160411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9507", "0.0", "3.504", "1672160411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9507", "0.0", "1.752", "1672160411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9507", "0.0", "3.504", "1672160411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9508", "0.0", "1.752", "1672164011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9508", "0.0", "3.504", "1672164011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9508", "0.0", "1.752", "1672164011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9508", "0.0", "3.504", "1672164011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9509", "0.0", "1.752", "1672167611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9509", "0.0", "3.504", "1672167611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9509", "0.0", "1.752", "1672167611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9509", "0.0", "3.504", "1672167611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9510", "0.0", "1.752", "1672171211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9510", "0.0", "3.504", "1672171211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9510", "0.0", "1.752", "1672171211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9510", "0.0", "3.504", "1672171211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9511", "0.0", "1.752", "1672174811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9511", "0.0", "3.504", "1672174811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9511", "0.0", "1.752", "1672174811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9511", "0.0", "3.504", "1672174811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9512", "0.0", "1.752", "1672178411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9512", "0.0", "3.504", "1672178411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9512", "0.0", "1.752", "1672178411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9512", "0.0", "3.504", "1672178411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9513", "0.0", "1.752", "1672182011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9513", "0.0", "3.504", "1672182011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9513", "0.0", "1.752", "1672182011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9513", "0.0", "3.504", "1672182011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9514", "0.0", "1.752", "1672185611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9514", "0.0", "3.504", "1672185611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9514", "0.0", "1.752", "1672185611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9514", "0.0", "3.504", "1672185611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9515", "0.0", "1.752", "1672189211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9515", "0.0", "3.504", "1672189211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9515", "0.0", "1.752", "1672189211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9515", "0.0", "3.504", "1672189211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9516", "0.0", "1.752", "1672192811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9516", "0.0", "3.504", "1672192811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9516", "0.0", "1.752", "1672192811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9516", "0.0", "3.504", "1672192811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9517", "0.0", "1.752", "1672196411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9517", "0.0", "3.504", "1672196411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9517", "0.0", "1.752", "1672196411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9517", "0.0", "3.504", "1672196411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9518", "0.0", "1.752", "1672200011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9518", "0.0", "3.504", "1672200011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9518", "0.0", "1.752", "1672200011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9518", "0.0", "3.504", "1672200011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9519", "0.0", "1.752", "1672203611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9519", "0.0", "3.504", "1672203611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9519", "0.0", "1.752", "1672203611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9519", "0.0", "3.504", "1672203611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9520", "0.0", "1.752", "1672207211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9520", "0.0", "3.504", "1672207211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9520", "0.0", "1.752", "1672207211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9520", "0.0", "3.504", "1672207211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9521", "0.0", "1.752", "1672210811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9521", "0.0", "3.504", "1672210811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9521", "0.0", "1.752", "1672210811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9521", "0.0", "3.504", "1672210811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9522", "0.0", "1.752", "1672214411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9522", "0.0", "3.504", "1672214411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9522", "0.0", "1.752", "1672214411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9522", "0.0", "3.504", "1672214411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9523", "0.0", "1.752", "1672218011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9523", "0.0", "3.504", "1672218011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9523", "0.0", "1.752", "1672218011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9523", "0.0", "3.504", "1672218011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9524", "0.0", "1.752", "1672221611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9524", "0.0", "3.504", "1672221611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9524", "0.0", "1.752", "1672221611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9524", "0.0", "3.504", "1672221611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9525", "0.0", "1.752", "1672225211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9525", "0.0", "3.504", "1672225211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9525", "0.0", "1.752", "1672225211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9525", "0.0", "3.504", "1672225211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9526", "0.0", "1.752", "1672228811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9526", "0.0", "3.504", "1672228811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9526", "0.0", "1.752", "1672228811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9526", "0.0", "3.504", "1672228811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9527", "0.0", "1.752", "1672232423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9527", "0.0", "3.504", "1672232423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9527", "0.0", "1.752", "1672232423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9527", "0.0", "3.504", "1672232423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9528", "0.0", "1.752", "1672236011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9528", "0.0", "3.504", "1672236011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9528", "0.0", "1.752", "1672236011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9528", "0.0", "3.504", "1672236011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9529", "0.0", "1.752", "1672239611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9529", "0.0", "3.504", "1672239611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9529", "0.0", "1.752", "1672239611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9529", "0.0", "3.504", "1672239611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9530", "0.0", "1.752", "1672243211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9530", "0.0", "3.504", "1672243211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9530", "0.0", "1.752", "1672243211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9530", "0.0", "3.504", "1672243211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9531", "0.0", "1.752", "1672246811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9531", "0.0", "3.504", "1672246811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9531", "0.0", "1.752", "1672246811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9531", "0.0", "3.504", "1672246811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9532", "0.0", "1.752", "1672250411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9532", "0.0", "3.504", "1672250411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9532", "0.0", "1.752", "1672250411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9532", "0.0", "3.504", "1672250411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9533", "0.0", "1.752", "1672254011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9533", "0.0", "3.504", "1672254011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9533", "0.0", "1.752", "1672254011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9533", "0.0", "3.504", "1672254011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9534", "0.0", "1.752", "1672257611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9534", "0.0", "3.504", "1672257611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9534", "0.0", "1.752", "1672257611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9534", "0.0", "3.504", "1672257611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9535", "0.0", "1.752", "1672261211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9535", "0.0", "3.504", "1672261211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9535", "0.0", "1.752", "1672261211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9535", "0.0", "3.504", "1672261211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9536", "0.0", "1.752", "1672264811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9536", "0.0", "3.504", "1672264811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9536", "0.0", "1.752", "1672264811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9536", "0.0", "3.504", "1672264811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9537", "0.0", "1.752", "1672268411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9537", "0.0", "3.504", "1672268411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9537", "0.0", "1.752", "1672268411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9537", "0.0", "3.504", "1672268411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9538", "0.0", "1.752", "1672272023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9538", "0.0", "3.504", "1672272023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9538", "0.0", "1.752", "1672272023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9538", "0.0", "3.504", "1672272023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9539", "0.0", "1.752", "1672275611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9539", "0.0", "3.504", "1672275611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9539", "0.0", "1.752", "1672275611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9539", "0.0", "3.504", "1672275611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9540", "0.0", "1.752", "1672279211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9540", "0.0", "3.504", "1672279211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9540", "0.0", "1.752", "1672279211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9540", "0.0", "3.504", "1672279211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9541", "0.0", "1.752", "1672282811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9541", "0.0", "3.504", "1672282811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9541", "0.0", "1.752", "1672282811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9541", "0.0", "3.504", "1672282811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9542", "0.0", "1.752", "1672286411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9542", "0.0", "3.504", "1672286411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9542", "0.0", "1.752", "1672286411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9542", "0.0", "3.504", "1672286411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9543", "0.0", "1.752", "1672290011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9543", "0.0", "3.504", "1672290011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9543", "0.0", "1.752", "1672290011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9543", "0.0", "3.504", "1672290011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9544", "0.0", "1.752", "1672293611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9544", "0.0", "3.504", "1672293611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9544", "0.0", "1.752", "1672293611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9544", "0.0", "3.504", "1672293611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9545", "0.0", "1.752", "1672297211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9545", "0.0", "3.504", "1672297211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9545", "0.0", "1.752", "1672297211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9545", "0.0", "3.504", "1672297211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9546", "0.0", "1.752", "1672300811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9546", "0.0", "3.504", "1672300811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9546", "0.0", "1.752", "1672300811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9546", "0.0", "3.504", "1672300811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9547", "0.0", "1.752", "1672304411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9547", "0.0", "3.504", "1672304411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9547", "0.0", "1.752", "1672304411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9547", "0.0", "3.504", "1672304411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9548", "0.0", "1.752", "1672308011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9548", "0.0", "3.504", "1672308011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9548", "0.0", "1.752", "1672308011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9548", "0.0", "3.504", "1672308011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9549", "0.0", "1.752", "1672311611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9549", "0.0", "3.504", "1672311611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9549", "0.0", "1.752", "1672311611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9549", "0.0", "3.504", "1672311611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9550", "0.0", "1.752", "1672315211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9550", "0.0", "3.504", "1672315211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9550", "0.0", "1.752", "1672315211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9550", "0.0", "3.504", "1672315211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9551", "0.0", "1.752", "1672318811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9551", "0.0", "3.504", "1672318811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9551", "0.0", "1.752", "1672318811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9551", "0.0", "3.504", "1672318811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9552", "0.0", "1.752", "1672322411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9552", "0.0", "3.504", "1672322411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9552", "0.0", "1.752", "1672322411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9552", "0.0", "3.504", "1672322411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9553", "0.0", "1.752", "1672326011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9553", "0.0", "3.504", "1672326011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9553", "0.0", "1.752", "1672326011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9553", "0.0", "3.504", "1672326011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9554", "0.0", "1.752", "1672329611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9554", "0.0", "3.504", "1672329611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9554", "0.0", "1.752", "1672329611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9554", "0.0", "3.504", "1672329611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9555", "0.0", "1.752", "1672333211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9555", "0.0", "3.504", "1672333211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9555", "0.0", "1.752", "1672333211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9555", "0.0", "3.504", "1672333211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9556", "0.0", "1.752", "1672336811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9556", "0.0", "3.504", "1672336811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9556", "0.0", "1.752", "1672336811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9556", "0.0", "3.504", "1672336811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9557", "0.0", "1.752", "1672340411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9557", "0.0", "3.504", "1672340411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9557", "0.0", "1.752", "1672340411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9557", "0.0", "3.504", "1672340411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9558", "0.0", "1.752", "1672344011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9558", "0.0", "3.504", "1672344011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9558", "0.0", "1.752", "1672344011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9558", "0.0", "3.504", "1672344011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9559", "0.0", "1.752", "1672347611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9559", "0.0", "3.504", "1672347611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9559", "0.0", "1.752", "1672347611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9559", "0.0", "3.504", "1672347611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9560", "0.0", "1.752", "1672351211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9560", "0.0", "3.504", "1672351211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9560", "0.0", "1.752", "1672351211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9560", "0.0", "3.504", "1672351211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9561", "0.0", "1.752", "1672354811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9561", "0.0", "3.504", "1672354811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9561", "0.0", "1.752", "1672354811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9561", "0.0", "3.504", "1672354811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9562", "0.0", "1.752", "1672358411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9562", "0.0", "3.504", "1672358411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9562", "0.0", "1.752", "1672358411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9562", "0.0", "3.504", "1672358411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9563", "0.0", "1.752", "1672362011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9563", "0.0", "3.504", "1672362011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9563", "0.0", "1.752", "1672362011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9563", "0.0", "3.504", "1672362011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9564", "0.0", "1.752", "1672365611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9564", "0.0", "3.504", "1672365611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9564", "0.0", "1.752", "1672365611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9564", "0.0", "3.504", "1672365611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9565", "0.0", "1.752", "1672369211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9565", "0.0", "3.504", "1672369211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9565", "0.0", "1.752", "1672369211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9565", "0.0", "3.504", "1672369211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9566", "0.0", "1.752", "1672372811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9566", "0.0", "3.504", "1672372811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9566", "0.0", "1.752", "1672372811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9566", "0.0", "3.504", "1672372811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9567", "0.0", "1.752", "1672376411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9567", "0.0", "3.504", "1672376411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9567", "0.0", "1.752", "1672376411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9567", "0.0", "3.504", "1672376411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9568", "0.0", "1.752", "1672380011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9568", "0.0", "3.504", "1672380011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9568", "0.0", "1.752", "1672380011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9568", "0.0", "3.504", "1672380011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9569", "0.0", "1.752", "1672383611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9569", "0.0", "3.504", "1672383611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9569", "0.0", "1.752", "1672383611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9569", "0.0", "3.504", "1672383611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9570", "0.0", "1.752", "1672387211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9570", "0.0", "3.504", "1672387211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9570", "0.0", "1.752", "1672387211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9570", "0.0", "3.504", "1672387211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9571", "0.0", "1.752", "1672390811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9571", "0.0", "3.504", "1672390811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9571", "0.0", "1.752", "1672390811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9571", "0.0", "3.504", "1672390811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9572", "0.0", "1.752", "1672394411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9572", "0.0", "3.504", "1672394411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9572", "0.0", "1.752", "1672394411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9572", "0.0", "3.504", "1672394411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9573", "0.0", "1.752", "1672398011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9573", "0.0", "3.504", "1672398011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9573", "0.0", "1.752", "1672398011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9573", "0.0", "3.504", "1672398011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9574", "0.0", "1.752", "1672401611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9574", "0.0", "3.504", "1672401611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9574", "0.0", "1.752", "1672401611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9574", "0.0", "3.504", "1672401611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9575", "0.0", "1.752", "1672405211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9575", "0.0", "3.504", "1672405211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9575", "0.0", "1.752", "1672405211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9575", "0.0", "3.504", "1672405211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9576", "0.0", "1.752", "1672408811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9576", "0.0", "3.504", "1672408811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9576", "0.0", "1.752", "1672408811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9576", "0.0", "3.504", "1672408811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9577", "0.0", "1.752", "1672412411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9577", "0.0", "3.504", "1672412411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9577", "0.0", "1.752", "1672412411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9577", "0.0", "3.504", "1672412411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9578", "0.0", "1.752", "1672416011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9578", "0.0", "3.504", "1672416011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9578", "0.0", "1.752", "1672416011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9578", "0.0", "3.504", "1672416011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9579", "0.0", "1.752", "1672419611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9579", "0.0", "3.504", "1672419611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9579", "0.0", "1.752", "1672419611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9579", "0.0", "3.504", "1672419611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9580", "0.0", "1.752", "1672423223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9580", "0.0", "3.504", "1672423223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9580", "0.0", "1.752", "1672423223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9580", "0.0", "3.504", "1672423223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9581", "0.0", "1.752", "1672426811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9581", "0.0", "3.504", "1672426811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9581", "0.0", "1.752", "1672426811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9581", "0.0", "3.504", "1672426811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9582", "0.0", "1.752", "1672430411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9582", "0.0", "3.504", "1672430411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9582", "0.0", "1.752", "1672430411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9582", "0.0", "3.504", "1672430411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9583", "0.0", "1.752", "1672434011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9583", "0.0", "3.504", "1672434011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9583", "0.0", "1.752", "1672434011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9583", "0.0", "3.504", "1672434011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9584", "0.0", "1.752", "1672437611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9584", "0.0", "3.504", "1672437611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9584", "0.0", "1.752", "1672437611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9584", "0.0", "3.504", "1672437611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9585", "0.0", "1.752", "1672441223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9585", "0.0", "3.504", "1672441223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9585", "0.0", "1.752", "1672441223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9585", "0.0", "3.504", "1672441223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9586", "0.0", "1.752", "1672444811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9586", "0.0", "3.504", "1672444811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9586", "0.0", "1.752", "1672444811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9586", "0.0", "3.504", "1672444811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9587", "0.0", "1.752", "1672448411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9587", "0.0", "3.504", "1672448411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9587", "0.0", "1.752", "1672448411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9587", "0.0", "3.504", "1672448411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9588", "0.0", "1.752", "1672452035"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9588", "0.0", "3.504", "1672452035"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9588", "0.0", "1.752", "1672452035"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9588", "0.0", "3.504", "1672452035"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9589", "0.0", "1.752", "1672455611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9589", "0.0", "3.504", "1672455611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9589", "0.0", "1.752", "1672455611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9589", "0.0", "3.504", "1672455611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9590", "0.0", "1.752", "1672459211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9590", "0.0", "3.504", "1672459211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9590", "0.0", "1.752", "1672459211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9590", "0.0", "3.504", "1672459211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9591", "0.0", "1.752", "1672462811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9591", "0.0", "3.504", "1672462811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9591", "0.0", "1.752", "1672462811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9591", "0.0", "3.504", "1672462811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9592", "0.0", "1.752", "1672466411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9592", "0.0", "3.504", "1672466411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9592", "0.0", "1.752", "1672466411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9592", "0.0", "3.504", "1672466411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9593", "0.0", "1.752", "1672470023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9593", "0.0", "3.504", "1672470023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9593", "0.0", "1.752", "1672470023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9593", "0.0", "3.504", "1672470023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9594", "0.0", "1.752", "1672473623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9594", "0.0", "3.504", "1672473623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9594", "0.0", "1.752", "1672473623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9594", "0.0", "3.504", "1672473623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9595", "0.0", "1.752", "1672477211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9595", "0.0", "3.504", "1672477211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9595", "0.0", "1.752", "1672477211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9595", "0.0", "3.504", "1672477211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9596", "0.0", "1.752", "1672480811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9596", "0.0", "3.504", "1672480811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9596", "0.0", "1.752", "1672480811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9596", "0.0", "3.504", "1672480811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9597", "0.0", "1.752", "1672484411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9597", "0.0", "3.504", "1672484411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9597", "0.0", "1.752", "1672484411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9597", "0.0", "3.504", "1672484411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9598", "0.0", "1.752", "1672488011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9598", "0.0", "3.504", "1672488011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9598", "0.0", "1.752", "1672488011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9598", "0.0", "3.504", "1672488011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9599", "0.0", "1.752", "1672491611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9599", "0.0", "3.504", "1672491611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9599", "0.0", "1.752", "1672491611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9599", "0.0", "3.504", "1672491611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9600", "0.0", "1.752", "1672495211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9600", "0.0", "3.504", "1672495211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9600", "0.0", "1.752", "1672495211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9600", "0.0", "3.504", "1672495211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9601", "0.0", "1.752", "1672498811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9601", "0.0", "3.504", "1672498811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9601", "0.0", "1.752", "1672498811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9601", "0.0", "3.504", "1672498811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9602", "0.0", "1.752", "1672502411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9602", "0.0", "3.504", "1672502411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9602", "0.0", "1.752", "1672502411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9602", "0.0", "3.504", "1672502411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9603", "0.0", "1.752", "1672506011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9603", "0.0", "3.504", "1672506011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9603", "0.0", "1.752", "1672506011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9603", "0.0", "3.504", "1672506011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9604", "0.0", "1.752", "1672509611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9604", "0.0", "3.504", "1672509611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9604", "0.0", "1.752", "1672509611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9604", "0.0", "3.504", "1672509611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9605", "0.0", "1.752", "1672513211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9605", "0.0", "3.504", "1672513211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9605", "0.0", "1.752", "1672513211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9605", "0.0", "3.504", "1672513211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9606", "0.0", "1.752", "1672516811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9606", "0.0", "3.504", "1672516811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9606", "0.0", "1.752", "1672516811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9606", "0.0", "3.504", "1672516811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9607", "0.0", "1.752", "1672520411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9607", "0.0", "3.504", "1672520411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9607", "0.0", "1.752", "1672520411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9607", "0.0", "3.504", "1672520411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9608", "0.0", "1.752", "1672524011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9608", "0.0", "3.504", "1672524011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9608", "0.0", "1.752", "1672524011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9608", "0.0", "3.504", "1672524011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9609", "0.0", "1.752", "1672527611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9609", "0.0", "3.504", "1672527611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9609", "0.0", "1.752", "1672527611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9609", "0.0", "3.504", "1672527611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9610", "0.0", "1.752", "1672531211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9610", "0.0", "3.504", "1672531211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9610", "0.0", "1.752", "1672531211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9610", "0.0", "3.504", "1672531211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9611", "0.0", "1.752", "1672534811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9611", "0.0", "3.504", "1672534811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9611", "0.0", "1.752", "1672534811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9611", "0.0", "3.504", "1672534811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9612", "0.0", "1.752", "1672538411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9612", "0.0", "3.504", "1672538411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9612", "0.0", "1.752", "1672538411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9612", "0.0", "3.504", "1672538411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9613", "0.0", "1.752", "1672542011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9613", "0.0", "3.504", "1672542011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9613", "0.0", "1.752", "1672542011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9613", "0.0", "3.504", "1672542011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9614", "0.0", "1.752", "1672545623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9614", "0.0", "3.504", "1672545623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9614", "0.0", "1.752", "1672545623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9614", "0.0", "3.504", "1672545623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9615", "0.0", "1.752", "1672549211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9615", "0.0", "3.504", "1672549211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9615", "0.0", "1.752", "1672549211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9615", "0.0", "3.504", "1672549211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9616", "0.0", "1.752", "1672552811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9616", "0.0", "3.504", "1672552811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9616", "0.0", "1.752", "1672552811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9616", "0.0", "3.504", "1672552811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9617", "0.0", "1.752", "1672556411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9617", "0.0", "3.504", "1672556411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9617", "0.0", "1.752", "1672556411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9617", "0.0", "3.504", "1672556411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9618", "0.0", "1.752", "1672560011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9618", "0.0", "3.504", "1672560011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9618", "0.0", "1.752", "1672560011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9618", "0.0", "3.504", "1672560011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9619", "0.0", "1.752", "1672563611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9619", "0.0", "3.504", "1672563611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9619", "0.0", "1.752", "1672563611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9619", "0.0", "3.504", "1672563611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9620", "0.0", "1.752", "1672567211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9620", "0.0", "3.504", "1672567211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9620", "0.0", "1.752", "1672567211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9620", "0.0", "3.504", "1672567211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9621", "0.0", "1.752", "1672570811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9621", "0.0", "3.504", "1672570811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9621", "0.0", "1.752", "1672570811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9621", "0.0", "3.504", "1672570811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9622", "0.0", "1.752", "1672574411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9622", "0.0", "3.504", "1672574411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9622", "0.0", "1.752", "1672574411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9622", "0.0", "3.504", "1672574411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9623", "0.0", "1.752", "1672578011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9623", "0.0", "3.504", "1672578011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9623", "0.0", "1.752", "1672578011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9623", "0.0", "3.504", "1672578011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9624", "0.0", "1.752", "1672581623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9624", "0.0", "3.504", "1672581623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9624", "0.0", "1.752", "1672581623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9624", "0.0", "3.504", "1672581623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9625", "0.0", "1.752", "1672585211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9625", "0.0", "3.504", "1672585211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9625", "0.0", "1.752", "1672585211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9625", "0.0", "3.504", "1672585211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9626", "0.0", "1.752", "1672588811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9626", "0.0", "3.504", "1672588811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9626", "0.0", "1.752", "1672588811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9626", "0.0", "3.504", "1672588811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9627", "0.0", "1.752", "1672592411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9627", "0.0", "3.504", "1672592411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9627", "0.0", "1.752", "1672592411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9627", "0.0", "3.504", "1672592411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9628", "0.0", "1.752", "1672596011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9628", "0.0", "3.504", "1672596011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9628", "0.0", "1.752", "1672596011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9628", "0.0", "3.504", "1672596011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9629", "0.0", "1.752", "1672599611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9629", "0.0", "3.504", "1672599611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9629", "0.0", "1.752", "1672599611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9629", "0.0", "3.504", "1672599611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9630", "0.0", "1.752", "1672603211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9630", "0.0", "3.504", "1672603211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9630", "0.0", "1.752", "1672603211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9630", "0.0", "3.504", "1672603211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9631", "0.0", "1.752", "1672606811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9631", "0.0", "3.504", "1672606811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9631", "0.0", "1.752", "1672606811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9631", "0.0", "3.504", "1672606811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9632", "0.0", "1.752", "1672610423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9632", "0.0", "3.504", "1672610423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9632", "0.0", "1.752", "1672610423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9632", "0.0", "3.504", "1672610423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9633", "0.0", "1.752", "1672614011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9633", "0.0", "3.504", "1672614011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9633", "0.0", "1.752", "1672614011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9633", "0.0", "3.504", "1672614011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9634", "0.0", "1.752", "1672617611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9634", "0.0", "3.504", "1672617611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9634", "0.0", "1.752", "1672617611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9634", "0.0", "3.504", "1672617611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9635", "0.0", "1.752", "1672621211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9635", "0.0", "3.504", "1672621211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9635", "0.0", "1.752", "1672621211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9635", "0.0", "3.504", "1672621211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9636", "0.0", "1.752", "1672624811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9636", "0.0", "3.504", "1672624811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9636", "0.0", "1.752", "1672624811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9636", "0.0", "3.504", "1672624811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9637", "0.0", "1.752", "1672628411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9637", "0.0", "3.504", "1672628411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9637", "0.0", "1.752", "1672628411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9637", "0.0", "3.504", "1672628411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9638", "0.0", "1.752", "1672632011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9638", "0.0", "3.504", "1672632011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9638", "0.0", "1.752", "1672632011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9638", "0.0", "3.504", "1672632011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9639", "0.0", "1.752", "1672635611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9639", "0.0", "3.504", "1672635611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9639", "0.0", "1.752", "1672635611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9639", "0.0", "3.504", "1672635611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9640", "0.0", "1.752", "1672639211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9640", "0.0", "3.504", "1672639211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9640", "0.0", "1.752", "1672639211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9640", "0.0", "3.504", "1672639211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9641", "0.0", "1.752", "1672642811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9641", "0.0", "3.504", "1672642811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9641", "0.0", "1.752", "1672642811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9641", "0.0", "3.504", "1672642811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9642", "0.0", "1.752", "1672646411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9642", "0.0", "3.504", "1672646411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9642", "0.0", "1.752", "1672646411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9642", "0.0", "3.504", "1672646411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9643", "0.0", "1.752", "1672650011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9643", "0.0", "3.504", "1672650011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9643", "0.0", "1.752", "1672650011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9643", "0.0", "3.504", "1672650011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9644", "0.0", "1.752", "1672653611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9644", "0.0", "3.504", "1672653611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9644", "0.0", "1.752", "1672653611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9644", "0.0", "3.504", "1672653611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9645", "0.0", "1.752", "1672657211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9645", "0.0", "3.504", "1672657211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9645", "0.0", "1.752", "1672657211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9645", "0.0", "3.504", "1672657211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9646", "0.0", "1.752", "1672660811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9646", "0.0", "3.504", "1672660811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9646", "0.0", "1.752", "1672660811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9646", "0.0", "3.504", "1672660811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9647", "0.0", "1.752", "1672664411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9647", "0.0", "3.504", "1672664411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9647", "0.0", "1.752", "1672664411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9647", "0.0", "3.504", "1672664411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9648", "0.0", "1.752", "1672668011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9648", "0.0", "3.504", "1672668011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9648", "0.0", "1.752", "1672668011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9648", "0.0", "3.504", "1672668011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9649", "0.0", "1.752", "1672671611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9649", "0.0", "3.504", "1672671611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9649", "0.0", "1.752", "1672671611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9649", "0.0", "3.504", "1672671611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9650", "0.0", "1.752", "1672675211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9650", "0.0", "3.504", "1672675211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9650", "0.0", "1.752", "1672675211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9650", "0.0", "3.504", "1672675211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9651", "0.0", "1.752", "1672678811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9651", "0.0", "3.504", "1672678811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9651", "0.0", "1.752", "1672678811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9651", "0.0", "3.504", "1672678811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9652", "0.0", "1.752", "1672682411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9652", "0.0", "3.504", "1672682411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9652", "0.0", "1.752", "1672682411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9652", "0.0", "3.504", "1672682411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9653", "0.0", "1.752", "1672686011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9653", "0.0", "3.504", "1672686011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9653", "0.0", "1.752", "1672686011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9653", "0.0", "3.504", "1672686011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9654", "0.0", "1.752", "1672689611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9654", "0.0", "3.504", "1672689611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9654", "0.0", "1.752", "1672689611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9654", "0.0", "3.504", "1672689611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9655", "0.0", "1.752", "1672693223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9655", "0.0", "3.504", "1672693223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9655", "0.0", "1.752", "1672693223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9655", "0.0", "3.504", "1672693223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9656", "0.0", "1.752", "1672696823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9656", "0.0", "3.504", "1672696823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9656", "0.0", "1.752", "1672696823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9656", "0.0", "3.504", "1672696823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9657", "0.0", "1.752", "1672700411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9657", "0.0", "3.504", "1672700411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9657", "0.0", "1.752", "1672700411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9657", "0.0", "3.504", "1672700411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9658", "0.0", "1.752", "1672704011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9658", "0.0", "3.504", "1672704011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9658", "0.0", "1.752", "1672704011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9658", "0.0", "3.504", "1672704011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9659", "0.0", "1.752", "1672707611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9659", "0.0", "3.504", "1672707611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9659", "0.0", "1.752", "1672707611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9659", "0.0", "3.504", "1672707611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9660", "0.0", "1.752", "1672711211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9660", "0.0", "3.504", "1672711211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9660", "0.0", "1.752", "1672711211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9660", "0.0", "3.504", "1672711211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9661", "0.0", "1.752", "1672714811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9661", "0.0", "3.504", "1672714811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9661", "0.0", "1.752", "1672714811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9661", "0.0", "3.504", "1672714811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9662", "0.0", "1.752", "1672718411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9662", "0.0", "3.504", "1672718411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9662", "0.0", "1.752", "1672718411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9662", "0.0", "3.504", "1672718411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9663", "0.0", "1.752", "1672722011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9663", "0.0", "3.504", "1672722011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9663", "0.0", "1.752", "1672722011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9663", "0.0", "3.504", "1672722011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9664", "0.0", "1.752", "1672725611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9664", "0.0", "3.504", "1672725611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9664", "0.0", "1.752", "1672725611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9664", "0.0", "3.504", "1672725611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9665", "0.0", "1.752", "1672729211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9665", "0.0", "3.504", "1672729211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9665", "0.0", "1.752", "1672729211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9665", "0.0", "3.504", "1672729211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9666", "0.0", "1.752", "1672732811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9666", "0.0", "3.504", "1672732811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9666", "0.0", "1.752", "1672732811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9666", "0.0", "3.504", "1672732811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9667", "0.0", "1.752", "1672736423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9667", "0.0", "3.504", "1672736423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9667", "0.0", "1.752", "1672736423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9667", "0.0", "3.504", "1672736423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9668", "0.0", "1.752", "1672740011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9668", "0.0", "3.504", "1672740011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9668", "0.0", "1.752", "1672740011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9668", "0.0", "3.504", "1672740011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9669", "0.0", "1.752", "1672743611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9669", "0.0", "3.504", "1672743611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9669", "0.0", "1.752", "1672743611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9669", "0.0", "3.504", "1672743611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9670", "0.0", "1.752", "1672747211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9670", "0.0", "3.504", "1672747211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9670", "0.0", "1.752", "1672747211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9670", "0.0", "3.504", "1672747211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9671", "0.0", "1.752", "1672750811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9671", "0.0", "3.504", "1672750811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9671", "0.0", "1.752", "1672750811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9671", "0.0", "3.504", "1672750811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9672", "0.0", "1.752", "1672754411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9672", "0.0", "3.504", "1672754411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9672", "0.0", "1.752", "1672754411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9672", "0.0", "3.504", "1672754411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9673", "0.0", "1.752", "1672758011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9673", "0.0", "3.504", "1672758011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9673", "0.0", "1.752", "1672758011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9673", "0.0", "3.504", "1672758011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9674", "0.0", "1.752", "1672761611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9674", "0.0", "3.504", "1672761611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9674", "0.0", "1.752", "1672761611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9674", "0.0", "3.504", "1672761611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9675", "0.0", "1.752", "1672765223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9675", "0.0", "3.504", "1672765223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9675", "0.0", "1.752", "1672765223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9675", "0.0", "3.504", "1672765223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9676", "0.0", "1.752", "1672768811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9676", "0.0", "3.504", "1672768811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9676", "0.0", "1.752", "1672768811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9676", "0.0", "3.504", "1672768811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9677", "0.0", "1.752", "1672772411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9677", "0.0", "3.504", "1672772411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9677", "0.0", "1.752", "1672772411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9677", "0.0", "3.504", "1672772411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9678", "0.0", "1.752", "1672776011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9678", "0.0", "3.504", "1672776011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9678", "0.0", "1.752", "1672776011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9678", "0.0", "3.504", "1672776011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9679", "0.0", "1.752", "1672779611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9679", "0.0", "3.504", "1672779611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9679", "0.0", "1.752", "1672779611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9679", "0.0", "3.504", "1672779611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9680", "0.0", "1.752", "1672783211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9680", "0.0", "3.504", "1672783211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9680", "0.0", "1.752", "1672783211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9680", "0.0", "3.504", "1672783211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9681", "0.0", "1.752", "1672786811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9681", "0.0", "3.504", "1672786811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9681", "0.0", "1.752", "1672786811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9681", "0.0", "3.504", "1672786811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9682", "0.0", "1.752", "1672790411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9682", "0.0", "3.504", "1672790411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9682", "0.0", "1.752", "1672790411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9682", "0.0", "3.504", "1672790411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9683", "0.0", "1.752", "1672794023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9683", "0.0", "3.504", "1672794023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9683", "0.0", "1.752", "1672794023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9683", "0.0", "3.504", "1672794023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9684", "0.0", "1.752", "1672797611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9684", "0.0", "3.504", "1672797611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9684", "0.0", "1.752", "1672797611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9684", "0.0", "3.504", "1672797611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9685", "0.0", "1.752", "1672801211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9685", "0.0", "3.504", "1672801211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9685", "0.0", "1.752", "1672801211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9685", "0.0", "3.504", "1672801211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9686", "0.0", "1.752", "1672804811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9686", "0.0", "3.504", "1672804811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9686", "0.0", "1.752", "1672804811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9686", "0.0", "3.504", "1672804811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9687", "0.0", "1.752", "1672808423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9687", "0.0", "3.504", "1672808423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9687", "0.0", "1.752", "1672808423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9687", "0.0", "3.504", "1672808423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9688", "0.0", "1.752", "1672812011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9688", "0.0", "3.504", "1672812011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9688", "0.0", "1.752", "1672812011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9688", "0.0", "3.504", "1672812011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9689", "0.0", "1.752", "1672815611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9689", "0.0", "3.504", "1672815611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9689", "0.0", "1.752", "1672815611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9689", "0.0", "3.504", "1672815611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9690", "0.0", "1.752", "1672819211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9690", "0.0", "3.504", "1672819211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9690", "0.0", "1.752", "1672819211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9690", "0.0", "3.504", "1672819211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9691", "0.0", "1.752", "1672822811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9691", "0.0", "3.504", "1672822811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9691", "0.0", "1.752", "1672822811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9691", "0.0", "3.504", "1672822811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9692", "0.0", "1.752", "1672826411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9692", "0.0", "3.504", "1672826411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9692", "0.0", "1.752", "1672826411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9692", "0.0", "3.504", "1672826411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9693", "0.0", "1.752", "1672830011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9693", "0.0", "3.504", "1672830011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9693", "0.0", "1.752", "1672830011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9693", "0.0", "3.504", "1672830011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9694", "0.0", "1.752", "1672833611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9694", "0.0", "3.504", "1672833611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9694", "0.0", "1.752", "1672833611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9694", "0.0", "3.504", "1672833611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9695", "0.0", "1.752", "1672837211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9695", "0.0", "3.504", "1672837211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9695", "0.0", "1.752", "1672837211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9695", "0.0", "3.504", "1672837211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9696", "0.0", "1.752", "1672840811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9696", "0.0", "3.504", "1672840811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9696", "0.0", "1.752", "1672840811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9696", "0.0", "3.504", "1672840811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9697", "0.0", "1.752", "1672844423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9697", "0.0", "3.504", "1672844423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9697", "0.0", "1.752", "1672844423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9697", "0.0", "3.504", "1672844423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9698", "0.0", "1.752", "1672848047"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9698", "0.0", "3.504", "1672848047"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9698", "0.0", "1.752", "1672848047"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9698", "0.0", "3.504", "1672848047"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9699", "0.0", "1.752", "1672851611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9699", "0.0", "3.504", "1672851611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9699", "0.0", "1.752", "1672851611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9699", "0.0", "3.504", "1672851611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9700", "0.0", "1.752", "1672855211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9700", "0.0", "3.504", "1672855211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9700", "0.0", "1.752", "1672855211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9700", "0.0", "3.504", "1672855211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9701", "0.0", "1.752", "1672858823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9701", "0.0", "3.504", "1672858823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9701", "0.0", "1.752", "1672858823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9701", "0.0", "3.504", "1672858823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9702", "0.0", "1.752", "1672862411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9702", "0.0", "3.504", "1672862411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9702", "0.0", "1.752", "1672862411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9702", "0.0", "3.504", "1672862411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9703", "0.0", "1.752", "1672866011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9703", "0.0", "3.504", "1672866011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9703", "0.0", "1.752", "1672866011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9703", "0.0", "3.504", "1672866011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9704", "0.0", "1.752", "1672869611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9704", "0.0", "3.504", "1672869611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9704", "0.0", "1.752", "1672869611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9704", "0.0", "3.504", "1672869611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9705", "0.0", "1.752", "1672873211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9705", "0.0", "3.504", "1672873211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9705", "0.0", "1.752", "1672873211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9705", "0.0", "3.504", "1672873211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9706", "0.0", "1.752", "1672876823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9706", "0.0", "3.504", "1672876823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9706", "0.0", "1.752", "1672876823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9706", "0.0", "3.504", "1672876823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9707", "0.0", "1.752", "1672880411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9707", "0.0", "3.504", "1672880411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9707", "0.0", "1.752", "1672880411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9707", "0.0", "3.504", "1672880411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9708", "0.0", "1.752", "1672884011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9708", "0.0", "3.504", "1672884011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9708", "0.0", "1.752", "1672884011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9708", "0.0", "3.504", "1672884011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9709", "0.0", "1.752", "1672887611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9709", "0.0", "3.504", "1672887611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9709", "0.0", "1.752", "1672887611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9709", "0.0", "3.504", "1672887611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9710", "0.0", "1.752", "1672891211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9710", "0.0", "3.504", "1672891211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9710", "0.0", "1.752", "1672891211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9710", "0.0", "3.504", "1672891211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9711", "0.0", "1.752", "1672894811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9711", "0.0", "3.504", "1672894811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9711", "0.0", "1.752", "1672894811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9711", "0.0", "3.504", "1672894811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9712", "0.0", "1.752", "1672898411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9712", "0.0", "3.504", "1672898411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9712", "0.0", "1.752", "1672898411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9712", "0.0", "3.504", "1672898411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9713", "0.0", "1.752", "1672902011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9713", "0.0", "3.504", "1672902011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9713", "0.0", "1.752", "1672902011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9713", "0.0", "3.504", "1672902011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9714", "0.0", "1.752", "1672905611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9714", "0.0", "3.504", "1672905611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9714", "0.0", "1.752", "1672905611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9714", "0.0", "3.504", "1672905611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9715", "0.0", "1.752", "1672909211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9715", "0.0", "3.504", "1672909211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9715", "0.0", "1.752", "1672909211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9715", "0.0", "3.504", "1672909211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9716", "0.0", "1.752", "1672912811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9716", "0.0", "3.504", "1672912811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9716", "0.0", "1.752", "1672912811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9716", "0.0", "3.504", "1672912811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9717", "0.0", "1.752", "1672916411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9717", "0.0", "3.504", "1672916411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9717", "0.0", "1.752", "1672916411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9717", "0.0", "3.504", "1672916411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9718", "0.0", "1.752", "1672920011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9718", "0.0", "3.504", "1672920011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9718", "0.0", "1.752", "1672920011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9718", "0.0", "3.504", "1672920011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9719", "0.0", "1.752", "1672923611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9719", "0.0", "3.504", "1672923611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9719", "0.0", "1.752", "1672923611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9719", "0.0", "3.504", "1672923611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9720", "0.0", "1.752", "1672927211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9720", "0.0", "3.504", "1672927211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9720", "0.0", "1.752", "1672927211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9720", "0.0", "3.504", "1672927211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9721", "0.0", "1.752", "1672930811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9721", "0.0", "3.504", "1672930811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9721", "0.0", "1.752", "1672930811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9721", "0.0", "3.504", "1672930811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9722", "0.0", "1.752", "1672934423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9722", "0.0", "3.504", "1672934423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9722", "0.0", "1.752", "1672934423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9722", "0.0", "3.504", "1672934423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9723", "0.0", "1.752", "1672938011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9723", "0.0", "3.504", "1672938011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9723", "0.0", "1.752", "1672938011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9723", "0.0", "3.504", "1672938011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9724", "0.0", "1.752", "1672941611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9724", "0.0", "3.504", "1672941611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9724", "0.0", "1.752", "1672941611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9724", "0.0", "3.504", "1672941611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9725", "0.0", "1.752", "1672945211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9725", "0.0", "3.504", "1672945211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9725", "0.0", "1.752", "1672945211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9725", "0.0", "3.504", "1672945211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9726", "0.0", "1.752", "1672948811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9726", "0.0", "3.504", "1672948811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9726", "0.0", "1.752", "1672948811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9726", "0.0", "3.504", "1672948811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9727", "0.0", "1.752", "1672952411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9727", "0.0", "3.504", "1672952411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9727", "0.0", "1.752", "1672952411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9727", "0.0", "3.504", "1672952411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9728", "0.0", "1.752", "1672956011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9728", "0.0", "3.504", "1672956011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9728", "0.0", "1.752", "1672956011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9728", "0.0", "3.504", "1672956011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9729", "0.0", "1.752", "1672959611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9729", "0.0", "3.504", "1672959611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9729", "0.0", "1.752", "1672959611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9729", "0.0", "3.504", "1672959611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9730", "0.0", "1.752", "1672963211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9730", "0.0", "3.504", "1672963211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9730", "0.0", "1.752", "1672963211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9730", "0.0", "3.504", "1672963211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9731", "0.0", "1.752", "1672966811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9731", "0.0", "3.504", "1672966811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9731", "0.0", "1.752", "1672966811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9731", "0.0", "3.504", "1672966811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9732", "0.0", "1.752", "1672970411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9732", "0.0", "3.504", "1672970411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9732", "0.0", "1.752", "1672970411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9732", "0.0", "3.504", "1672970411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9733", "0.0", "1.752", "1672974011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9733", "0.0", "3.504", "1672974011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9733", "0.0", "1.752", "1672974011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9733", "0.0", "3.504", "1672974011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9734", "0.0", "1.752", "1672977611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9734", "0.0", "3.504", "1672977611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9734", "0.0", "1.752", "1672977611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9734", "0.0", "3.504", "1672977611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9735", "0.0", "1.752", "1672981211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9735", "0.0", "3.504", "1672981211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9735", "0.0", "1.752", "1672981211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9735", "0.0", "3.504", "1672981211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9736", "0.0", "1.752", "1672984811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9736", "0.0", "3.504", "1672984811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9736", "0.0", "1.752", "1672984811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9736", "0.0", "3.504", "1672984811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9737", "0.0", "1.752", "1672988411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9737", "0.0", "3.504", "1672988411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9737", "0.0", "1.752", "1672988411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9737", "0.0", "3.504", "1672988411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9738", "0.0", "1.752", "1672992011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9738", "0.0", "3.504", "1672992011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9738", "0.0", "1.752", "1672992011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9738", "0.0", "3.504", "1672992011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9739", "0.0", "1.752", "1672995611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9739", "0.0", "3.504", "1672995611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9739", "0.0", "1.752", "1672995611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9739", "0.0", "3.504", "1672995611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9740", "0.0", "1.752", "1672999211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9740", "0.0", "3.504", "1672999211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9740", "0.0", "1.752", "1672999211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9740", "0.0", "3.504", "1672999211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9741", "0.0", "1.752", "1673002811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9741", "0.0", "3.504", "1673002811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9741", "0.0", "1.752", "1673002811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9741", "0.0", "3.504", "1673002811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9742", "0.0", "1.752", "1673006411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9742", "0.0", "3.504", "1673006411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9742", "0.0", "1.752", "1673006411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9742", "0.0", "3.504", "1673006411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9743", "0.0", "1.752", "1673010011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9743", "0.0", "3.504", "1673010011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9743", "0.0", "1.752", "1673010011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9743", "0.0", "3.504", "1673010011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9744", "0.0", "1.752", "1673013611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9744", "0.0", "3.504", "1673013611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9744", "0.0", "1.752", "1673013611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9744", "0.0", "3.504", "1673013611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9745", "0.0", "1.752", "1673017211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9745", "0.0", "3.504", "1673017211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9745", "0.0", "1.752", "1673017211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9745", "0.0", "3.504", "1673017211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9746", "0.0", "1.752", "1673020811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9746", "0.0", "3.504", "1673020811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9746", "0.0", "1.752", "1673020811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9746", "0.0", "3.504", "1673020811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9747", "0.0", "1.752", "1673024411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9747", "0.0", "3.504", "1673024411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9747", "0.0", "1.752", "1673024411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9747", "0.0", "3.504", "1673024411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9748", "0.0", "1.752", "1673028011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9748", "0.0", "3.504", "1673028011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9748", "0.0", "1.752", "1673028011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9748", "0.0", "3.504", "1673028011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9749", "0.0", "1.752", "1673031611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9749", "0.0", "3.504", "1673031611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9749", "0.0", "1.752", "1673031611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9749", "0.0", "3.504", "1673031611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9750", "0.0", "1.752", "1673035211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9750", "0.0", "3.504", "1673035211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9750", "0.0", "1.752", "1673035211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9750", "0.0", "3.504", "1673035211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9751", "0.0", "1.752", "1673038811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9751", "0.0", "3.504", "1673038811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9751", "0.0", "1.752", "1673038811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9751", "0.0", "3.504", "1673038811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9752", "0.0", "1.752", "1673042423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9752", "0.0", "3.504", "1673042423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9752", "0.0", "1.752", "1673042423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9752", "0.0", "3.504", "1673042423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9753", "0.0", "1.752", "1673046011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9753", "0.0", "3.504", "1673046011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9753", "0.0", "1.752", "1673046011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9753", "0.0", "3.504", "1673046011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9754", "0.0", "1.752", "1673049611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9754", "0.0", "3.504", "1673049611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9754", "0.0", "1.752", "1673049611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9754", "0.0", "3.504", "1673049611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9755", "0.0", "1.752", "1673053211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9755", "0.0", "3.504", "1673053211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9755", "0.0", "1.752", "1673053211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9755", "0.0", "3.504", "1673053211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9756", "0.0", "1.752", "1673056811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9756", "0.0", "3.504", "1673056811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9756", "0.0", "1.752", "1673056811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9756", "0.0", "3.504", "1673056811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9757", "0.0", "1.752", "1673060411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9757", "0.0", "3.504", "1673060411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9757", "0.0", "1.752", "1673060411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9757", "0.0", "3.504", "1673060411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9758", "0.0", "1.752", "1673064023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9758", "0.0", "3.504", "1673064023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9758", "0.0", "1.752", "1673064023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9758", "0.0", "3.504", "1673064023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9759", "0.0", "1.752", "1673067611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9759", "0.0", "3.504", "1673067611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9759", "0.0", "1.752", "1673067611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9759", "0.0", "3.504", "1673067611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9760", "0.0", "1.752", "1673071211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9760", "0.0", "3.504", "1673071211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9760", "0.0", "1.752", "1673071211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9760", "0.0", "3.504", "1673071211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9761", "0.0", "1.752", "1673074811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9761", "0.0", "3.504", "1673074811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9761", "0.0", "1.752", "1673074811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9761", "0.0", "3.504", "1673074811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9762", "0.0", "1.752", "1673078411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9762", "0.0", "3.504", "1673078411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9762", "0.0", "1.752", "1673078411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9762", "0.0", "3.504", "1673078411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9763", "0.0", "1.752", "1673082011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9763", "0.0", "3.504", "1673082011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9763", "0.0", "1.752", "1673082011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9763", "0.0", "3.504", "1673082011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9764", "0.0", "1.752", "1673085611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9764", "0.0", "3.504", "1673085611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9764", "0.0", "1.752", "1673085611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9764", "0.0", "3.504", "1673085611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9765", "0.0", "1.752", "1673089211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9765", "0.0", "3.504", "1673089211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9765", "0.0", "1.752", "1673089211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9765", "0.0", "3.504", "1673089211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9766", "0.0", "1.752", "1673092811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9766", "0.0", "3.504", "1673092811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9766", "0.0", "1.752", "1673092811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9766", "0.0", "3.504", "1673092811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9767", "0.0", "1.752", "1673096411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9767", "0.0", "3.504", "1673096411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9767", "0.0", "1.752", "1673096411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9767", "0.0", "3.504", "1673096411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9768", "0.0", "1.752", "1673100011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9768", "0.0", "3.504", "1673100011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9768", "0.0", "1.752", "1673100011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9768", "0.0", "3.504", "1673100011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9769", "0.0", "1.752", "1673103611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9769", "0.0", "3.504", "1673103611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9769", "0.0", "1.752", "1673103611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9769", "0.0", "3.504", "1673103611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9770", "0.0", "1.752", "1673107211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9770", "0.0", "3.504", "1673107211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9770", "0.0", "1.752", "1673107211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9770", "0.0", "3.504", "1673107211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9771", "0.0", "1.752", "1673110811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9771", "0.0", "3.504", "1673110811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9771", "0.0", "1.752", "1673110811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9771", "0.0", "3.504", "1673110811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9772", "0.0", "1.752", "1673114411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9772", "0.0", "3.504", "1673114411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9772", "0.0", "1.752", "1673114411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9772", "0.0", "3.504", "1673114411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9773", "0.0", "1.752", "1673118011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9773", "0.0", "3.504", "1673118011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9773", "0.0", "1.752", "1673118011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9773", "0.0", "3.504", "1673118011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9774", "0.0", "1.752", "1673121611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9774", "0.0", "3.504", "1673121611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9774", "0.0", "1.752", "1673121611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9774", "0.0", "3.504", "1673121611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9775", "0.0", "1.752", "1673125211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9775", "0.0", "3.504", "1673125211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9775", "0.0", "1.752", "1673125211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9775", "0.0", "3.504", "1673125211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9776", "0.0", "1.752", "1673128811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9776", "0.0", "3.504", "1673128811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9776", "0.0", "1.752", "1673128811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9776", "0.0", "3.504", "1673128811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9777", "0.0", "1.752", "1673132411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9777", "0.0", "3.504", "1673132411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9777", "0.0", "1.752", "1673132411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9777", "0.0", "3.504", "1673132411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9778", "0.0", "1.752", "1673136011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9778", "0.0", "3.504", "1673136011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9778", "0.0", "1.752", "1673136011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9778", "0.0", "3.504", "1673136011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9779", "0.0", "1.752", "1673139611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9779", "0.0", "3.504", "1673139611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9779", "0.0", "1.752", "1673139611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9779", "0.0", "3.504", "1673139611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9780", "0.0", "1.752", "1673143211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9780", "0.0", "3.504", "1673143211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9780", "0.0", "1.752", "1673143211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9780", "0.0", "3.504", "1673143211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9781", "0.0", "1.752", "1673146811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9781", "0.0", "3.504", "1673146811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9781", "0.0", "1.752", "1673146811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9781", "0.0", "3.504", "1673146811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9782", "0.0", "1.752", "1673150411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9782", "0.0", "3.504", "1673150411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9782", "0.0", "1.752", "1673150411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9782", "0.0", "3.504", "1673150411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9783", "0.0", "1.752", "1673154011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9783", "0.0", "3.504", "1673154011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9783", "0.0", "1.752", "1673154011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9783", "0.0", "3.504", "1673154011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9784", "0.0", "1.752", "1673157611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9784", "0.0", "3.504", "1673157611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9784", "0.0", "1.752", "1673157611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9784", "0.0", "3.504", "1673157611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9785", "0.0", "1.752", "1673161211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9785", "0.0", "3.504", "1673161211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9785", "0.0", "1.752", "1673161211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9785", "0.0", "3.504", "1673161211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9786", "0.0", "1.752", "1673164811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9786", "0.0", "3.504", "1673164811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9786", "0.0", "1.752", "1673164811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9786", "0.0", "3.504", "1673164811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9787", "0.0", "1.752", "1673168411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9787", "0.0", "3.504", "1673168411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9787", "0.0", "1.752", "1673168411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9787", "0.0", "3.504", "1673168411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9788", "0.0", "1.752", "1673172011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9788", "0.0", "3.504", "1673172011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9788", "0.0", "1.752", "1673172011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9788", "0.0", "3.504", "1673172011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9789", "0.0", "1.752", "1673175611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9789", "0.0", "3.504", "1673175611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9789", "0.0", "1.752", "1673175611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9789", "0.0", "3.504", "1673175611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9790", "0.0", "1.752", "1673179211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9790", "0.0", "3.504", "1673179211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9790", "0.0", "1.752", "1673179211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9790", "0.0", "3.504", "1673179211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9791", "0.0", "1.752", "1673182811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9791", "0.0", "3.504", "1673182811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9791", "0.0", "1.752", "1673182811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9791", "0.0", "3.504", "1673182811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9792", "0.0", "1.752", "1673186411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9792", "0.0", "3.504", "1673186411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9792", "0.0", "1.752", "1673186411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9792", "0.0", "3.504", "1673186411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9793", "0.0", "1.752", "1673190011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9793", "0.0", "3.504", "1673190011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9793", "0.0", "1.752", "1673190011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9793", "0.0", "3.504", "1673190011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9794", "0.0", "1.752", "1673193611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9794", "0.0", "3.504", "1673193611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9794", "0.0", "1.752", "1673193611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9794", "0.0", "3.504", "1673193611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9795", "0.0", "1.752", "1673197223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9795", "0.0", "3.504", "1673197223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9795", "0.0", "1.752", "1673197223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9795", "0.0", "3.504", "1673197223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9796", "0.0", "1.752", "1673200811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9796", "0.0", "3.504", "1673200811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9796", "0.0", "1.752", "1673200811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9796", "0.0", "3.504", "1673200811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9797", "0.0", "1.752", "1673204411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9797", "0.0", "3.504", "1673204411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9797", "0.0", "1.752", "1673204411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9797", "0.0", "3.504", "1673204411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9798", "0.0", "1.752", "1673208011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9798", "0.0", "3.504", "1673208011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9798", "0.0", "1.752", "1673208011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9798", "0.0", "3.504", "1673208011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9799", "0.0", "1.752", "1673211611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9799", "0.0", "3.504", "1673211611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9799", "0.0", "1.752", "1673211611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9799", "0.0", "3.504", "1673211611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9800", "0.0", "1.752", "1673215211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9800", "0.0", "3.504", "1673215211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9800", "0.0", "1.752", "1673215211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9800", "0.0", "3.504", "1673215211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9801", "0.0", "1.752", "1673218811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9801", "0.0", "3.504", "1673218811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9801", "0.0", "1.752", "1673218811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9801", "0.0", "3.504", "1673218811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9802", "0.0", "1.752", "1673222411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9802", "0.0", "3.504", "1673222411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9802", "0.0", "1.752", "1673222411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9802", "0.0", "3.504", "1673222411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9803", "0.0", "1.752", "1673226011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9803", "0.0", "3.504", "1673226011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9803", "0.0", "1.752", "1673226011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9803", "0.0", "3.504", "1673226011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9804", "0.0", "1.752", "1673229611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9804", "0.0", "3.504", "1673229611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9804", "0.0", "1.752", "1673229611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9804", "0.0", "3.504", "1673229611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9805", "0.0", "1.752", "1673233211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9805", "0.0", "3.504", "1673233211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9805", "0.0", "1.752", "1673233211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9805", "0.0", "3.504", "1673233211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9806", "0.0", "1.752", "1673236811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9806", "0.0", "3.504", "1673236811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9806", "0.0", "1.752", "1673236811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9806", "0.0", "3.504", "1673236811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9807", "0.0", "1.752", "1673240411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9807", "0.0", "3.504", "1673240411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9807", "0.0", "1.752", "1673240411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9807", "0.0", "3.504", "1673240411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9808", "0.0", "1.752", "1673244011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9808", "0.0", "3.504", "1673244011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9808", "0.0", "1.752", "1673244011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9808", "0.0", "3.504", "1673244011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9809", "0.0", "1.752", "1673247611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9809", "0.0", "3.504", "1673247611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9809", "0.0", "1.752", "1673247611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9809", "0.0", "3.504", "1673247611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9810", "0.0", "1.752", "1673251211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9810", "0.0", "3.504", "1673251211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9810", "0.0", "1.752", "1673251211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9810", "0.0", "3.504", "1673251211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9811", "0.0", "1.752", "1673254811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9811", "0.0", "3.504", "1673254811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9811", "0.0", "1.752", "1673254811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9811", "0.0", "3.504", "1673254811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9812", "0.0", "1.752", "1673258411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9812", "0.0", "3.504", "1673258411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9812", "0.0", "1.752", "1673258411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9812", "0.0", "3.504", "1673258411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9813", "0.0", "1.752", "1673262011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9813", "0.0", "3.504", "1673262011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9813", "0.0", "1.752", "1673262011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9813", "0.0", "3.504", "1673262011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9814", "0.0", "1.752", "1673265611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9814", "0.0", "3.504", "1673265611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9814", "0.0", "1.752", "1673265611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9814", "0.0", "3.504", "1673265611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9815", "0.0", "1.752", "1673269211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9815", "0.0", "3.504", "1673269211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9815", "0.0", "1.752", "1673269211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9815", "0.0", "3.504", "1673269211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9816", "0.0", "1.752", "1673272811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9816", "0.0", "3.504", "1673272811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9816", "0.0", "1.752", "1673272811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9816", "0.0", "3.504", "1673272811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9817", "0.0", "1.752", "1673276411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9817", "0.0", "3.504", "1673276411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9817", "0.0", "1.752", "1673276411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9817", "0.0", "3.504", "1673276411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9818", "0.0", "1.752", "1673280011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9818", "0.0", "3.504", "1673280011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9818", "0.0", "1.752", "1673280011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9818", "0.0", "3.504", "1673280011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9819", "0.0", "1.752", "1673283611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9819", "0.0", "3.504", "1673283611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9819", "0.0", "1.752", "1673283611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9819", "0.0", "3.504", "1673283611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9820", "0.0", "1.752", "1673287211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9820", "0.0", "3.504", "1673287211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9820", "0.0", "1.752", "1673287211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9820", "0.0", "3.504", "1673287211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9821", "0.0", "1.752", "1673290811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9821", "0.0", "3.504", "1673290811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9821", "0.0", "1.752", "1673290811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9821", "0.0", "3.504", "1673290811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9822", "0.0", "1.752", "1673294411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9822", "0.0", "3.504", "1673294411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9822", "0.0", "1.752", "1673294411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9822", "0.0", "3.504", "1673294411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9823", "0.0", "1.752", "1673298011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9823", "0.0", "3.504", "1673298011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9823", "0.0", "1.752", "1673298011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9823", "0.0", "3.504", "1673298011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9824", "0.0", "1.752", "1673301611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9824", "0.0", "3.504", "1673301611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9824", "0.0", "1.752", "1673301611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9824", "0.0", "3.504", "1673301611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9825", "0.0", "1.752", "1673305211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9825", "0.0", "3.504", "1673305211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9825", "0.0", "1.752", "1673305211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9825", "0.0", "3.504", "1673305211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9826", "0.0", "1.752", "1673308811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9826", "0.0", "3.504", "1673308811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9826", "0.0", "1.752", "1673308811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9826", "0.0", "3.504", "1673308811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9827", "0.0", "1.752", "1673312411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9827", "0.0", "3.504", "1673312411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9827", "0.0", "1.752", "1673312411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9827", "0.0", "3.504", "1673312411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9828", "0.0", "1.752", "1673316011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9828", "0.0", "3.504", "1673316011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9828", "0.0", "1.752", "1673316011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9828", "0.0", "3.504", "1673316011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9829", "0.0", "1.752", "1673319635"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9829", "0.0", "3.504", "1673319635"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9829", "0.0", "1.752", "1673319635"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9829", "0.0", "3.504", "1673319635"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9830", "0.0", "1.752", "1673323211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9830", "0.0", "3.504", "1673323211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9830", "0.0", "1.752", "1673323211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9830", "0.0", "3.504", "1673323211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9831", "0.0", "1.752", "1673326811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9831", "0.0", "3.504", "1673326811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9831", "0.0", "1.752", "1673326811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9831", "0.0", "3.504", "1673326811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9832", "0.0", "1.752", "1673330411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9832", "0.0", "3.504", "1673330411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9832", "0.0", "1.752", "1673330411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9832", "0.0", "3.504", "1673330411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9833", "0.0", "1.752", "1673334011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9833", "0.0", "3.504", "1673334011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9833", "0.0", "1.752", "1673334011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9833", "0.0", "3.504", "1673334011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9834", "0.0", "1.752", "1673337611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9834", "0.0", "3.504", "1673337611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9834", "0.0", "1.752", "1673337611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9834", "0.0", "3.504", "1673337611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9835", "0.0", "1.752", "1673341211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9835", "0.0", "3.504", "1673341211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9835", "0.0", "1.752", "1673341211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9835", "0.0", "3.504", "1673341211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9836", "0.0", "1.752", "1673344811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9836", "0.0", "3.504", "1673344811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9836", "0.0", "1.752", "1673344811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9836", "0.0", "3.504", "1673344811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9837", "0.0", "1.752", "1673348411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9837", "0.0", "3.504", "1673348411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9837", "0.0", "1.752", "1673348411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9837", "0.0", "3.504", "1673348411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9838", "0.0", "1.752", "1673352011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9838", "0.0", "3.504", "1673352011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9838", "0.0", "1.752", "1673352011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9838", "0.0", "3.504", "1673352011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9839", "0.0", "1.752", "1673355611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9839", "0.0", "3.504", "1673355611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9839", "0.0", "1.752", "1673355611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9839", "0.0", "3.504", "1673355611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9840", "0.0", "1.752", "1673359247"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9840", "0.0", "3.504", "1673359247"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9840", "0.0", "1.752", "1673359247"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9840", "0.0", "3.504", "1673359247"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9841", "0.0", "1.752", "1673362811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9841", "0.0", "3.504", "1673362811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9841", "0.0", "1.752", "1673362811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9841", "0.0", "3.504", "1673362811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9842", "0.0", "1.752", "1673366411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9842", "0.0", "3.504", "1673366411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9842", "0.0", "1.752", "1673366411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9842", "0.0", "3.504", "1673366411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9843", "0.0", "1.752", "1673370011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9843", "0.0", "3.504", "1673370011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9843", "0.0", "1.752", "1673370011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9843", "0.0", "3.504", "1673370011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9844", "0.0", "1.752", "1673373611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9844", "0.0", "3.504", "1673373611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9844", "0.0", "1.752", "1673373611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9844", "0.0", "3.504", "1673373611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9845", "0.0", "1.752", "1673377211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9845", "0.0", "3.504", "1673377211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9845", "0.0", "1.752", "1673377211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9845", "0.0", "3.504", "1673377211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9846", "0.0", "1.752", "1673380811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9846", "0.0", "3.504", "1673380811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9846", "0.0", "1.752", "1673380811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9846", "0.0", "3.504", "1673380811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9847", "0.0", "1.752", "1673384411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9847", "0.0", "3.504", "1673384411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9847", "0.0", "1.752", "1673384411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9847", "0.0", "3.504", "1673384411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9848", "0.0", "1.752", "1673388011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9848", "0.0", "3.504", "1673388011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9848", "0.0", "1.752", "1673388011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9848", "0.0", "3.504", "1673388011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9849", "0.0", "1.752", "1673391611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9849", "0.0", "3.504", "1673391611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9849", "0.0", "1.752", "1673391611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9849", "0.0", "3.504", "1673391611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9850", "0.0", "1.752", "1673395211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9850", "0.0", "3.504", "1673395211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9850", "0.0", "1.752", "1673395211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9850", "0.0", "3.504", "1673395211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9851", "0.0", "1.752", "1673398811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9851", "0.0", "3.504", "1673398811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9851", "0.0", "1.752", "1673398811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9851", "0.0", "3.504", "1673398811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9852", "0.0", "1.752", "1673402411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9852", "0.0", "3.504", "1673402411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9852", "0.0", "1.752", "1673402411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9852", "0.0", "3.504", "1673402411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9853", "0.0", "1.752", "1673406011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9853", "0.0", "3.504", "1673406011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9853", "0.0", "1.752", "1673406011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9853", "0.0", "3.504", "1673406011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9854", "0.0", "1.752", "1673409611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9854", "0.0", "3.504", "1673409611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9854", "0.0", "1.752", "1673409611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9854", "0.0", "3.504", "1673409611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9855", "0.0", "1.752", "1673413211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9855", "0.0", "3.504", "1673413211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9855", "0.0", "1.752", "1673413211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9855", "0.0", "3.504", "1673413211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9856", "0.0", "1.752", "1673416811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9856", "0.0", "3.504", "1673416811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9856", "0.0", "1.752", "1673416811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9856", "0.0", "3.504", "1673416811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9857", "0.0", "1.752", "1673420411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9857", "0.0", "3.504", "1673420411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9857", "0.0", "1.752", "1673420411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9857", "0.0", "3.504", "1673420411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9858", "0.0", "1.752", "1673424011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9858", "0.0", "3.504", "1673424011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9858", "0.0", "1.752", "1673424011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9858", "0.0", "3.504", "1673424011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9859", "0.0", "1.752", "1673427623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9859", "0.0", "3.504", "1673427623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9859", "0.0", "1.752", "1673427623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9859", "0.0", "3.504", "1673427623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9860", "0.0", "1.752", "1673431211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9860", "0.0", "3.504", "1673431211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9860", "0.0", "1.752", "1673431211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9860", "0.0", "3.504", "1673431211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9861", "0.0", "1.752", "1673434811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9861", "0.0", "3.504", "1673434811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9861", "0.0", "1.752", "1673434811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9861", "0.0", "3.504", "1673434811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9862", "0.0", "1.752", "1673438411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9862", "0.0", "3.504", "1673438411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9862", "0.0", "1.752", "1673438411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9862", "0.0", "3.504", "1673438411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9863", "0.0", "1.752", "1673442011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9863", "0.0", "3.504", "1673442011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9863", "0.0", "1.752", "1673442011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9863", "0.0", "3.504", "1673442011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9864", "0.0", "1.752", "1673445611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9864", "0.0", "3.504", "1673445611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9864", "0.0", "1.752", "1673445611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9864", "0.0", "3.504", "1673445611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9865", "0.0", "1.752", "1673449211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9865", "0.0", "3.504", "1673449211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9865", "0.0", "1.752", "1673449211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9865", "0.0", "3.504", "1673449211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9866", "0.0", "1.752", "1673452859"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9866", "0.0", "3.504", "1673452859"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9866", "0.0", "1.752", "1673452859"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9866", "0.0", "3.504", "1673452859"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9867", "0.0", "1.752", "1673456411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9867", "0.0", "3.504", "1673456411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9867", "0.0", "1.752", "1673456411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9867", "0.0", "3.504", "1673456411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9868", "0.0", "1.752", "1673460011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9868", "0.0", "3.504", "1673460011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9868", "0.0", "1.752", "1673460011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9868", "0.0", "3.504", "1673460011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9869", "0.0", "1.752", "1673463611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9869", "0.0", "3.504", "1673463611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9869", "0.0", "1.752", "1673463611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9869", "0.0", "3.504", "1673463611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9870", "0.0", "1.752", "1673467223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9870", "0.0", "3.504", "1673467223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9870", "0.0", "1.752", "1673467223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9870", "0.0", "3.504", "1673467223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9871", "0.0", "1.752", "1673470811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9871", "0.0", "3.504", "1673470811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9871", "0.0", "1.752", "1673470811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9871", "0.0", "3.504", "1673470811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9872", "0.0", "1.752", "1673474411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9872", "0.0", "3.504", "1673474411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9872", "0.0", "1.752", "1673474411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9872", "0.0", "3.504", "1673474411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9873", "0.0", "1.752", "1673478011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9873", "0.0", "3.504", "1673478011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9873", "0.0", "1.752", "1673478011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9873", "0.0", "3.504", "1673478011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9874", "0.0", "1.752", "1673481611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9874", "0.0", "3.504", "1673481611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9874", "0.0", "1.752", "1673481611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9874", "0.0", "3.504", "1673481611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9875", "0.0", "1.752", "1673485211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9875", "0.0", "3.504", "1673485211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9875", "0.0", "1.752", "1673485211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9875", "0.0", "3.504", "1673485211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9876", "0.0", "1.752", "1673488811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9876", "0.0", "3.504", "1673488811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9876", "0.0", "1.752", "1673488811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9876", "0.0", "3.504", "1673488811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9877", "0.0", "1.752", "1673492411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9877", "0.0", "3.504", "1673492411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9877", "0.0", "1.752", "1673492411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9877", "0.0", "3.504", "1673492411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9878", "0.0", "1.752", "1673496011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9878", "0.0", "3.504", "1673496011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9878", "0.0", "1.752", "1673496011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9878", "0.0", "3.504", "1673496011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9879", "0.0", "1.752", "1673499611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9879", "0.0", "3.504", "1673499611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9879", "0.0", "1.752", "1673499611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9879", "0.0", "3.504", "1673499611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9880", "0.0", "1.752", "1673503211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9880", "0.0", "3.504", "1673503211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9880", "0.0", "1.752", "1673503211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9880", "0.0", "3.504", "1673503211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9881", "0.0", "1.752", "1673506811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9881", "0.0", "3.504", "1673506811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9881", "0.0", "1.752", "1673506811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9881", "0.0", "3.504", "1673506811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9882", "0.0", "1.752", "1673510411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9882", "0.0", "3.504", "1673510411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9882", "0.0", "1.752", "1673510411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9882", "0.0", "3.504", "1673510411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9883", "0.0", "1.752", "1673514011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9883", "0.0", "3.504", "1673514011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9883", "0.0", "1.752", "1673514011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9883", "0.0", "3.504", "1673514011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9884", "0.0", "1.752", "1673517611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9884", "0.0", "3.504", "1673517611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9884", "0.0", "1.752", "1673517611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9884", "0.0", "3.504", "1673517611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9885", "0.0", "1.752", "1673521211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9885", "0.0", "3.504", "1673521211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9885", "0.0", "1.752", "1673521211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9885", "0.0", "3.504", "1673521211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9886", "0.0", "1.752", "1673524811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9886", "0.0", "3.504", "1673524811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9886", "0.0", "1.752", "1673524811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9886", "0.0", "3.504", "1673524811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9887", "0.0", "1.752", "1673528411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9887", "0.0", "3.504", "1673528411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9887", "0.0", "1.752", "1673528411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9887", "0.0", "3.504", "1673528411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9888", "0.0", "1.752", "1673532011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9888", "0.0", "3.504", "1673532011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9888", "0.0", "1.752", "1673532011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9888", "0.0", "3.504", "1673532011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9889", "0.0", "1.752", "1673535611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9889", "0.0", "3.504", "1673535611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9889", "0.0", "1.752", "1673535611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9889", "0.0", "3.504", "1673535611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9890", "0.0", "1.752", "1673539211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9890", "0.0", "3.504", "1673539211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9890", "0.0", "1.752", "1673539211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9890", "0.0", "3.504", "1673539211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9891", "0.0", "1.752", "1673542811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9891", "0.0", "3.504", "1673542811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9891", "0.0", "1.752", "1673542811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9891", "0.0", "3.504", "1673542811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9892", "0.0", "1.752", "1673546411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9892", "0.0", "3.504", "1673546411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9892", "0.0", "1.752", "1673546411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9892", "0.0", "3.504", "1673546411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9893", "0.0", "1.752", "1673550023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9893", "0.0", "3.504", "1673550023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9893", "0.0", "1.752", "1673550023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9893", "0.0", "3.504", "1673550023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9894", "0.0", "1.752", "1673553635"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9894", "0.0", "3.504", "1673553635"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9894", "0.0", "1.752", "1673553635"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9894", "0.0", "3.504", "1673553635"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9895", "0.0", "1.752", "1673557211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9895", "0.0", "3.504", "1673557211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9895", "0.0", "1.752", "1673557211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9895", "0.0", "3.504", "1673557211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9896", "0.0", "1.752", "1673560811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9896", "0.0", "3.504", "1673560811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9896", "0.0", "1.752", "1673560811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9896", "0.0", "3.504", "1673560811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9897", "0.0", "1.752", "1673564411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9897", "0.0", "3.504", "1673564411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9897", "0.0", "1.752", "1673564411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9897", "0.0", "3.504", "1673564411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9898", "0.0", "1.752", "1673568011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9898", "0.0", "3.504", "1673568011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9898", "0.0", "1.752", "1673568011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9898", "0.0", "3.504", "1673568011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9899", "0.0", "1.752", "1673571611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9899", "0.0", "3.504", "1673571611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9899", "0.0", "1.752", "1673571611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9899", "0.0", "3.504", "1673571611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9900", "0.0", "1.752", "1673575211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9900", "0.0", "3.504", "1673575211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9900", "0.0", "1.752", "1673575211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9900", "0.0", "3.504", "1673575211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9901", "0.0", "1.752", "1673578811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9901", "0.0", "3.504", "1673578811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9901", "0.0", "1.752", "1673578811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9901", "0.0", "3.504", "1673578811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9902", "0.0", "1.752", "1673582411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9902", "0.0", "3.504", "1673582411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9902", "0.0", "1.752", "1673582411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9902", "0.0", "3.504", "1673582411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9903", "0.0", "1.752", "1673586011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9903", "0.0", "3.504", "1673586011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9903", "0.0", "1.752", "1673586011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9903", "0.0", "3.504", "1673586011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9904", "0.0", "1.752", "1673589611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9904", "0.0", "3.504", "1673589611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9904", "0.0", "1.752", "1673589611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9904", "0.0", "3.504", "1673589611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9905", "0.0", "1.752", "1673593211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9905", "0.0", "3.504", "1673593211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9905", "0.0", "1.752", "1673593211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9905", "0.0", "3.504", "1673593211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9906", "0.0", "1.752", "1673596811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9906", "0.0", "3.504", "1673596811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9906", "0.0", "1.752", "1673596811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9906", "0.0", "3.504", "1673596811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9907", "0.0", "1.752", "1673600411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9907", "0.0", "3.504", "1673600411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9907", "0.0", "1.752", "1673600411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9907", "0.0", "3.504", "1673600411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9908", "0.0", "1.752", "1673604011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9908", "0.0", "3.504", "1673604011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9908", "0.0", "1.752", "1673604011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9908", "0.0", "3.504", "1673604011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9909", "0.0", "1.752", "1673607611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9909", "0.0", "3.504", "1673607611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9909", "0.0", "1.752", "1673607611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9909", "0.0", "3.504", "1673607611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9910", "0.0", "1.752", "1673611211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9910", "0.0", "3.504", "1673611211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9910", "0.0", "1.752", "1673611211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9910", "0.0", "3.504", "1673611211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9911", "0.0", "1.752", "1673614811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9911", "0.0", "3.504", "1673614811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9911", "0.0", "1.752", "1673614811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9911", "0.0", "3.504", "1673614811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9912", "0.0", "1.752", "1673618411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9912", "0.0", "3.504", "1673618411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9912", "0.0", "1.752", "1673618411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9912", "0.0", "3.504", "1673618411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9913", "0.0", "1.752", "1673622011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9913", "0.0", "3.504", "1673622011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9913", "0.0", "1.752", "1673622011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9913", "0.0", "3.504", "1673622011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9914", "0.0", "1.752", "1673625611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9914", "0.0", "3.504", "1673625611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9914", "0.0", "1.752", "1673625611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9914", "0.0", "3.504", "1673625611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9915", "0.0", "1.752", "1673629211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9915", "0.0", "3.504", "1673629211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9915", "0.0", "1.752", "1673629211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9915", "0.0", "3.504", "1673629211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9916", "0.0", "1.752", "1673632811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9916", "0.0", "3.504", "1673632811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9916", "0.0", "1.752", "1673632811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9916", "0.0", "3.504", "1673632811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9917", "0.0", "1.752", "1673636411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9917", "0.0", "3.504", "1673636411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9917", "0.0", "1.752", "1673636411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9917", "0.0", "3.504", "1673636411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9918", "0.0", "1.752", "1673640047"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9918", "0.0", "3.504", "1673640047"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9918", "0.0", "1.752", "1673640047"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9918", "0.0", "3.504", "1673640047"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9919", "0.0", "1.752", "1673643611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9919", "0.0", "3.504", "1673643611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9919", "0.0", "1.752", "1673643611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9919", "0.0", "3.504", "1673643611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9920", "0.0", "1.752", "1673647211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9920", "0.0", "3.504", "1673647211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9920", "0.0", "1.752", "1673647211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9920", "0.0", "3.504", "1673647211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9921", "0.0", "1.752", "1673650811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9921", "0.0", "3.504", "1673650811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9921", "0.0", "1.752", "1673650811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9921", "0.0", "3.504", "1673650811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9922", "0.0", "1.752", "1673654411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9922", "0.0", "3.504", "1673654411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9922", "0.0", "1.752", "1673654411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9922", "0.0", "3.504", "1673654411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9923", "0.0", "1.752", "1673658011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9923", "0.0", "3.504", "1673658011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9923", "0.0", "1.752", "1673658011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9923", "0.0", "3.504", "1673658011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9924", "0.0", "1.752", "1673661611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9924", "0.0", "3.504", "1673661611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9924", "0.0", "1.752", "1673661611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9924", "0.0", "3.504", "1673661611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9925", "0.0", "1.752", "1673665211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9925", "0.0", "3.504", "1673665211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9925", "0.0", "1.752", "1673665211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9925", "0.0", "3.504", "1673665211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9926", "0.0", "1.752", "1673668811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9926", "0.0", "3.504", "1673668811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9926", "0.0", "1.752", "1673668811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9926", "0.0", "3.504", "1673668811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9927", "0.0", "1.752", "1673672423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9927", "0.0", "3.504", "1673672423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9927", "0.0", "1.752", "1673672423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9927", "0.0", "3.504", "1673672423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9928", "0.0", "1.752", "1673676011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9928", "0.0", "3.504", "1673676011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9928", "0.0", "1.752", "1673676011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9928", "0.0", "3.504", "1673676011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9929", "0.0", "1.752", "1673679611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9929", "0.0", "3.504", "1673679611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9929", "0.0", "1.752", "1673679611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9929", "0.0", "3.504", "1673679611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9930", "0.0", "1.752", "1673683211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9930", "0.0", "3.504", "1673683211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9930", "0.0", "1.752", "1673683211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9930", "0.0", "3.504", "1673683211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9931", "0.0", "1.752", "1673686811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9931", "0.0", "3.504", "1673686811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9931", "0.0", "1.752", "1673686811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9931", "0.0", "3.504", "1673686811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9932", "0.0", "1.752", "1673690411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9932", "0.0", "3.504", "1673690411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9932", "0.0", "1.752", "1673690411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9932", "0.0", "3.504", "1673690411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9933", "0.0", "1.752", "1673694011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9933", "0.0", "3.504", "1673694011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9933", "0.0", "1.752", "1673694011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9933", "0.0", "3.504", "1673694011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9934", "0.0", "1.752", "1673697611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9934", "0.0", "3.504", "1673697611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9934", "0.0", "1.752", "1673697611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9934", "0.0", "3.504", "1673697611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9935", "0.0", "1.752", "1673701211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9935", "0.0", "3.504", "1673701211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9935", "0.0", "1.752", "1673701211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9935", "0.0", "3.504", "1673701211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9936", "0.0", "1.752", "1673704811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9936", "0.0", "3.504", "1673704811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9936", "0.0", "1.752", "1673704811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9936", "0.0", "3.504", "1673704811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9937", "0.0", "1.752", "1673708423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9937", "0.0", "3.504", "1673708423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9937", "0.0", "1.752", "1673708423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9937", "0.0", "3.504", "1673708423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9938", "0.0", "1.752", "1673712011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9938", "0.0", "3.504", "1673712011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9938", "0.0", "1.752", "1673712011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9938", "0.0", "3.504", "1673712011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9939", "0.0", "1.752", "1673715623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9939", "0.0", "3.504", "1673715623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9939", "0.0", "1.752", "1673715623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9939", "0.0", "3.504", "1673715623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9940", "0.0", "1.752", "1673719211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9940", "0.0", "3.504", "1673719211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9940", "0.0", "1.752", "1673719211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9940", "0.0", "3.504", "1673719211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9941", "0.0", "1.752", "1673722811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9941", "0.0", "3.504", "1673722811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9941", "0.0", "1.752", "1673722811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9941", "0.0", "3.504", "1673722811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9942", "0.0", "1.752", "1673726411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9942", "0.0", "3.504", "1673726411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9942", "0.0", "1.752", "1673726411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9942", "0.0", "3.504", "1673726411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9943", "0.0", "1.752", "1673730011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9943", "0.0", "3.504", "1673730011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9943", "0.0", "1.752", "1673730011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9943", "0.0", "3.504", "1673730011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9944", "0.0", "1.752", "1673733611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9944", "0.0", "3.504", "1673733611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9944", "0.0", "1.752", "1673733611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9944", "0.0", "3.504", "1673733611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9945", "0.0", "1.752", "1673737211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9945", "0.0", "3.504", "1673737211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9945", "0.0", "1.752", "1673737211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9945", "0.0", "3.504", "1673737211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9946", "0.0", "1.752", "1673740811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9946", "0.0", "3.504", "1673740811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9946", "0.0", "1.752", "1673740811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9946", "0.0", "3.504", "1673740811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9947", "0.0", "1.752", "1673744411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9947", "0.0", "3.504", "1673744411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9947", "0.0", "1.752", "1673744411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9947", "0.0", "3.504", "1673744411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9948", "0.0", "1.752", "1673748011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9948", "0.0", "3.504", "1673748011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9948", "0.0", "1.752", "1673748011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9948", "0.0", "3.504", "1673748011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9949", "0.0", "1.752", "1673751611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9949", "0.0", "3.504", "1673751611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9949", "0.0", "1.752", "1673751611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9949", "0.0", "3.504", "1673751611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9950", "0.0", "1.752", "1673755211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9950", "0.0", "3.504", "1673755211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9950", "0.0", "1.752", "1673755211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9950", "0.0", "3.504", "1673755211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9951", "0.0", "1.752", "1673758811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9951", "0.0", "3.504", "1673758811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9951", "0.0", "1.752", "1673758811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9951", "0.0", "3.504", "1673758811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9952", "0.0", "1.752", "1673762411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9952", "0.0", "3.504", "1673762411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9952", "0.0", "1.752", "1673762411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9952", "0.0", "3.504", "1673762411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9953", "0.0", "1.752", "1673766011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9953", "0.0", "3.504", "1673766011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9953", "0.0", "1.752", "1673766011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9953", "0.0", "3.504", "1673766011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9954", "0.0", "1.752", "1673769611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9954", "0.0", "3.504", "1673769611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9954", "0.0", "1.752", "1673769611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9954", "0.0", "3.504", "1673769611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9955", "0.0", "1.752", "1673773211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9955", "0.0", "3.504", "1673773211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9955", "0.0", "1.752", "1673773211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9955", "0.0", "3.504", "1673773211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9956", "0.0", "1.752", "1673776811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9956", "0.0", "3.504", "1673776811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9956", "0.0", "1.752", "1673776811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9956", "0.0", "3.504", "1673776811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9957", "0.0", "1.752", "1673780411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9957", "0.0", "3.504", "1673780411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9957", "0.0", "1.752", "1673780411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9957", "0.0", "3.504", "1673780411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9958", "0.0", "1.752", "1673784011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9958", "0.0", "3.504", "1673784011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9958", "0.0", "1.752", "1673784011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9958", "0.0", "3.504", "1673784011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9959", "0.0", "1.752", "1673787611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9959", "0.0", "3.504", "1673787611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9959", "0.0", "1.752", "1673787611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9959", "0.0", "3.504", "1673787611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9960", "0.0", "1.752", "1673791211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9960", "0.0", "3.504", "1673791211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9960", "0.0", "1.752", "1673791211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9960", "0.0", "3.504", "1673791211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9961", "0.0", "1.752", "1673794823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9961", "0.0", "3.504", "1673794823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9961", "0.0", "1.752", "1673794823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9961", "0.0", "3.504", "1673794823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9962", "0.0", "1.752", "1673798411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9962", "0.0", "3.504", "1673798411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9962", "0.0", "1.752", "1673798411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9962", "0.0", "3.504", "1673798411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9963", "0.0", "1.752", "1673802011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9963", "0.0", "3.504", "1673802011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9963", "0.0", "1.752", "1673802011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9963", "0.0", "3.504", "1673802011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9964", "0.0", "1.752", "1673805611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9964", "0.0", "3.504", "1673805611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9964", "0.0", "1.752", "1673805611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9964", "0.0", "3.504", "1673805611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9965", "0.0", "1.752", "1673809211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9965", "0.0", "3.504", "1673809211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9965", "0.0", "1.752", "1673809211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9965", "0.0", "3.504", "1673809211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9966", "0.0", "1.752", "1673812811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9966", "0.0", "3.504", "1673812811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9966", "0.0", "1.752", "1673812811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9966", "0.0", "3.504", "1673812811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9967", "0.0", "1.752", "1673816411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9967", "0.0", "3.504", "1673816411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9967", "0.0", "1.752", "1673816411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9967", "0.0", "3.504", "1673816411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9968", "0.0", "1.752", "1673820011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9968", "0.0", "3.504", "1673820011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9968", "0.0", "1.752", "1673820011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9968", "0.0", "3.504", "1673820011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9969", "0.0", "1.752", "1673823611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9969", "0.0", "3.504", "1673823611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9969", "0.0", "1.752", "1673823611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9969", "0.0", "3.504", "1673823611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9970", "0.0", "1.752", "1673827211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9970", "0.0", "3.504", "1673827211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9970", "0.0", "1.752", "1673827211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9970", "0.0", "3.504", "1673827211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9971", "0.0", "1.752", "1673830811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9971", "0.0", "3.504", "1673830811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9971", "0.0", "1.752", "1673830811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9971", "0.0", "3.504", "1673830811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9972", "0.0", "1.752", "1673834411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9972", "0.0", "3.504", "1673834411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9972", "0.0", "1.752", "1673834411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9972", "0.0", "3.504", "1673834411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9973", "0.0", "1.752", "1673838011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9973", "0.0", "3.504", "1673838011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9973", "0.0", "1.752", "1673838011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9973", "0.0", "3.504", "1673838011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9974", "0.0", "1.752", "1673841611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9974", "0.0", "3.504", "1673841611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9974", "0.0", "1.752", "1673841611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9974", "0.0", "3.504", "1673841611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9975", "0.0", "1.752", "1673845211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9975", "0.0", "3.504", "1673845211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9975", "0.0", "1.752", "1673845211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9975", "0.0", "3.504", "1673845211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9976", "0.0", "1.752", "1673848811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9976", "0.0", "3.504", "1673848811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9976", "0.0", "1.752", "1673848811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9976", "0.0", "3.504", "1673848811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9977", "0.0", "1.752", "1673852411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9977", "0.0", "3.504", "1673852411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9977", "0.0", "1.752", "1673852411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9977", "0.0", "3.504", "1673852411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9978", "0.0", "1.752", "1673856011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9978", "0.0", "3.504", "1673856011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9978", "0.0", "1.752", "1673856011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9978", "0.0", "3.504", "1673856011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9979", "0.0", "1.752", "1673859611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9979", "0.0", "3.504", "1673859611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9979", "0.0", "1.752", "1673859611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9979", "0.0", "3.504", "1673859611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9980", "0.0", "1.752", "1673863211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9980", "0.0", "3.504", "1673863211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9980", "0.0", "1.752", "1673863211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9980", "0.0", "3.504", "1673863211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9981", "0.0", "1.752", "1673866811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9981", "0.0", "3.504", "1673866811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9981", "0.0", "1.752", "1673866811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9981", "0.0", "3.504", "1673866811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9982", "0.0", "1.752", "1673870411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9982", "0.0", "3.504", "1673870411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9982", "0.0", "1.752", "1673870411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9982", "0.0", "3.504", "1673870411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9983", "0.0", "1.752", "1673874011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9983", "0.0", "3.504", "1673874011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9983", "0.0", "1.752", "1673874011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9983", "0.0", "3.504", "1673874011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9984", "0.0", "1.752", "1673877611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9984", "0.0", "3.504", "1673877611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9984", "0.0", "1.752", "1673877611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9984", "0.0", "3.504", "1673877611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9985", "0.0", "1.752", "1673881211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9985", "0.0", "3.504", "1673881211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9985", "0.0", "1.752", "1673881211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9985", "0.0", "3.504", "1673881211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9986", "0.0", "1.752", "1673884823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9986", "0.0", "3.504", "1673884823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9986", "0.0", "1.752", "1673884823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9986", "0.0", "3.504", "1673884823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9987", "0.0", "1.752", "1673888411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9987", "0.0", "3.504", "1673888411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9987", "0.0", "1.752", "1673888411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9987", "0.0", "3.504", "1673888411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9988", "0.0", "1.752", "1673892011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9988", "0.0", "3.504", "1673892011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9988", "0.0", "1.752", "1673892011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9988", "0.0", "3.504", "1673892011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9989", "0.0", "1.752", "1673895611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9989", "0.0", "3.504", "1673895611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9989", "0.0", "1.752", "1673895611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9989", "0.0", "3.504", "1673895611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9990", "0.0", "1.752", "1673899211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9990", "0.0", "3.504", "1673899211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9990", "0.0", "1.752", "1673899211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9990", "0.0", "3.504", "1673899211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9991", "0.0", "1.752", "1673902811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9991", "0.0", "3.504", "1673902811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9991", "0.0", "1.752", "1673902811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9991", "0.0", "3.504", "1673902811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9992", "0.0", "1.752", "1673906411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9992", "0.0", "3.504", "1673906411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9992", "0.0", "1.752", "1673906411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9992", "0.0", "3.504", "1673906411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9993", "0.0", "1.752", "1673910011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9993", "0.0", "3.504", "1673910011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9993", "0.0", "1.752", "1673910011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9993", "0.0", "3.504", "1673910011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9994", "0.0", "1.752", "1673913611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9994", "0.0", "3.504", "1673913611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9994", "0.0", "1.752", "1673913611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9994", "0.0", "3.504", "1673913611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9995", "0.0", "1.752", "1673917211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9995", "0.0", "3.504", "1673917211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9995", "0.0", "1.752", "1673917211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9995", "0.0", "3.504", "1673917211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9996", "0.0", "1.752", "1673920811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9996", "0.0", "3.504", "1673920811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9996", "0.0", "1.752", "1673920811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9996", "0.0", "3.504", "1673920811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9997", "0.0", "1.752", "1673924411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9997", "0.0", "3.504", "1673924411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9997", "0.0", "1.752", "1673924411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9997", "0.0", "3.504", "1673924411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9998", "0.0", "1.752", "1673928011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9998", "0.0", "3.504", "1673928011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9998", "0.0", "1.752", "1673928011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9998", "0.0", "3.504", "1673928011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "9999", "0.0", "1.752", "1673931611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "9999", "0.0", "3.504", "1673931611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "9999", "0.0", "1.752", "1673931611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "9999", "0.0", "3.504", "1673931611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10000", "0.0", "1.752", "1673935211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10000", "0.0", "3.504", "1673935211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10000", "0.0", "1.752", "1673935211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10000", "0.0", "3.504", "1673935211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10001", "0.0", "1.752", "1673938811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10001", "0.0", "3.504", "1673938811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10001", "0.0", "1.752", "1673938811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10001", "0.0", "3.504", "1673938811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10002", "0.0", "1.752", "1673942411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10002", "0.0", "3.504", "1673942411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10002", "0.0", "1.752", "1673942411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10002", "0.0", "3.504", "1673942411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10003", "0.0", "1.752", "1673946011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10003", "0.0", "3.504", "1673946011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10003", "0.0", "1.752", "1673946011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10003", "0.0", "3.504", "1673946011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10004", "0.0", "1.752", "1673949611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10004", "0.0", "3.504", "1673949611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10004", "0.0", "1.752", "1673949611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10004", "0.0", "3.504", "1673949611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10005", "0.0", "1.752", "1673953211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10005", "0.0", "3.504", "1673953211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10005", "0.0", "1.752", "1673953211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10005", "0.0", "3.504", "1673953211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10006", "0.0", "1.752", "1673956811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10006", "0.0", "3.504", "1673956811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10006", "0.0", "1.752", "1673956811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10006", "0.0", "3.504", "1673956811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10007", "0.0", "1.752", "1673960411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10007", "0.0", "3.504", "1673960411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10007", "0.0", "1.752", "1673960411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10007", "0.0", "3.504", "1673960411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10008", "0.0", "1.752", "1673964011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10008", "0.0", "3.504", "1673964011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10008", "0.0", "1.752", "1673964011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10008", "0.0", "3.504", "1673964011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10009", "0.0", "1.752", "1673967611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10009", "0.0", "3.504", "1673967611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10009", "0.0", "1.752", "1673967611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10009", "0.0", "3.504", "1673967611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10010", "0.0", "1.752", "1673971247"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10010", "0.0", "3.504", "1673971247"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10010", "0.0", "1.752", "1673971247"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10010", "0.0", "3.504", "1673971247"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10011", "0.0", "1.752", "1673974811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10011", "0.0", "3.504", "1673974811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10011", "0.0", "1.752", "1673974811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10011", "0.0", "3.504", "1673974811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10012", "0.0", "1.752", "1673978411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10012", "0.0", "3.504", "1673978411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10012", "0.0", "1.752", "1673978411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10012", "0.0", "3.504", "1673978411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10013", "0.0", "1.752", "1673982011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10013", "0.0", "3.504", "1673982011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10013", "0.0", "1.752", "1673982011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10013", "0.0", "3.504", "1673982011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10014", "0.0", "1.752", "1673985623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10014", "0.0", "3.504", "1673985623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10014", "0.0", "1.752", "1673985623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10014", "0.0", "3.504", "1673985623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10015", "0.0", "1.752", "1673989211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10015", "0.0", "3.504", "1673989211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10015", "0.0", "1.752", "1673989211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10015", "0.0", "3.504", "1673989211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10016", "0.0", "1.752", "1673992811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10016", "0.0", "3.504", "1673992811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10016", "0.0", "1.752", "1673992811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10016", "0.0", "3.504", "1673992811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10017", "0.0", "1.752", "1673996411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10017", "0.0", "3.504", "1673996411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10017", "0.0", "1.752", "1673996411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10017", "0.0", "3.504", "1673996411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10018", "0.0", "1.752", "1674000011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10018", "0.0", "3.504", "1674000011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10018", "0.0", "1.752", "1674000011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10018", "0.0", "3.504", "1674000011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10019", "0.0", "1.752", "1674003611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10019", "0.0", "3.504", "1674003611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10019", "0.0", "1.752", "1674003611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10019", "0.0", "3.504", "1674003611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10020", "0.0", "1.752", "1674007211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10020", "0.0", "3.504", "1674007211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10020", "0.0", "1.752", "1674007211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10020", "0.0", "3.504", "1674007211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10021", "0.0", "1.752", "1674010811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10021", "0.0", "3.504", "1674010811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10021", "0.0", "1.752", "1674010811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10021", "0.0", "3.504", "1674010811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10022", "0.0", "1.752", "1674014411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10022", "0.0", "3.504", "1674014411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10022", "0.0", "1.752", "1674014411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10022", "0.0", "3.504", "1674014411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10023", "0.0", "1.752", "1674018011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10023", "0.0", "3.504", "1674018011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10023", "0.0", "1.752", "1674018011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10023", "0.0", "3.504", "1674018011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10024", "0.0", "1.752", "1674021611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10024", "0.0", "3.504", "1674021611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10024", "0.0", "1.752", "1674021611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10024", "0.0", "3.504", "1674021611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10025", "0.0", "1.752", "1674025211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10025", "0.0", "3.504", "1674025211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10025", "0.0", "1.752", "1674025211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10025", "0.0", "3.504", "1674025211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10026", "0.0", "1.752", "1674028811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10026", "0.0", "3.504", "1674028811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10026", "0.0", "1.752", "1674028811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10026", "0.0", "3.504", "1674028811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10027", "0.0", "1.752", "1674032411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10027", "0.0", "3.504", "1674032411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10027", "0.0", "1.752", "1674032411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10027", "0.0", "3.504", "1674032411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10028", "0.0", "1.752", "1674036011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10028", "0.0", "3.504", "1674036011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10028", "0.0", "1.752", "1674036011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10028", "0.0", "3.504", "1674036011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10029", "0.0", "1.752", "1674039611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10029", "0.0", "3.504", "1674039611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10029", "0.0", "1.752", "1674039611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10029", "0.0", "3.504", "1674039611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10030", "0.0", "1.752", "1674043211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10030", "0.0", "3.504", "1674043211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10030", "0.0", "1.752", "1674043211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10030", "0.0", "3.504", "1674043211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10031", "0.0", "1.752", "1674046811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10031", "0.0", "3.504", "1674046811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10031", "0.0", "1.752", "1674046811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10031", "0.0", "3.504", "1674046811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10032", "0.0", "1.752", "1674050411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10032", "0.0", "3.504", "1674050411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10032", "0.0", "1.752", "1674050411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10032", "0.0", "3.504", "1674050411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10033", "0.0", "1.752", "1674054011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10033", "0.0", "3.504", "1674054011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10033", "0.0", "1.752", "1674054011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10033", "0.0", "3.504", "1674054011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10034", "0.0", "1.752", "1674057635"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10034", "0.0", "3.504", "1674057635"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10034", "0.0", "1.752", "1674057635"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10034", "0.0", "3.504", "1674057635"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10035", "0.0", "1.752", "1674061271"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10035", "0.0", "3.504", "1674061271"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10035", "0.0", "1.752", "1674061271"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10035", "0.0", "3.504", "1674061271"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10036", "0.0", "1.752", "1674064811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10036", "0.0", "3.504", "1674064811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10036", "0.0", "1.752", "1674064811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10036", "0.0", "3.504", "1674064811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10037", "0.0", "1.752", "1674068411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10037", "0.0", "3.504", "1674068411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10037", "0.0", "1.752", "1674068411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10037", "0.0", "3.504", "1674068411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10038", "0.0", "1.752", "1674072011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10038", "0.0", "3.504", "1674072011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10038", "0.0", "1.752", "1674072011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10038", "0.0", "3.504", "1674072011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10039", "0.0", "1.752", "1674075611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10039", "0.0", "3.504", "1674075611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10039", "0.0", "1.752", "1674075611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10039", "0.0", "3.504", "1674075611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10040", "0.0", "1.752", "1674079211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10040", "0.0", "3.504", "1674079211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10040", "0.0", "1.752", "1674079211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10040", "0.0", "3.504", "1674079211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10041", "0.0", "1.752", "1674082811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10041", "0.0", "3.504", "1674082811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10041", "0.0", "1.752", "1674082811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10041", "0.0", "3.504", "1674082811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10042", "0.0", "1.752", "1674086411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10042", "0.0", "3.504", "1674086411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10042", "0.0", "1.752", "1674086411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10042", "0.0", "3.504", "1674086411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10043", "0.0", "1.752", "1674090011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10043", "0.0", "3.504", "1674090011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10043", "0.0", "1.752", "1674090011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10043", "0.0", "3.504", "1674090011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10044", "0.0", "1.752", "1674093611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10044", "0.0", "3.504", "1674093611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10044", "0.0", "1.752", "1674093611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10044", "0.0", "3.504", "1674093611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10045", "0.0", "1.752", "1674097211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10045", "0.0", "3.504", "1674097211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10045", "0.0", "1.752", "1674097211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10045", "0.0", "3.504", "1674097211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10046", "0.0", "1.752", "1674100811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10046", "0.0", "3.504", "1674100811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10046", "0.0", "1.752", "1674100811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10046", "0.0", "3.504", "1674100811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10047", "0.0", "1.752", "1674104411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10047", "0.0", "3.504", "1674104411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10047", "0.0", "1.752", "1674104411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10047", "0.0", "3.504", "1674104411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10048", "0.0", "1.752", "1674108011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10048", "0.0", "3.504", "1674108011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10048", "0.0", "1.752", "1674108011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10048", "0.0", "3.504", "1674108011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10049", "0.0", "1.752", "1674111611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10049", "0.0", "3.504", "1674111611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10049", "0.0", "1.752", "1674111611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10049", "0.0", "3.504", "1674111611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10050", "0.0", "1.752", "1674115211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10050", "0.0", "3.504", "1674115211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10050", "0.0", "1.752", "1674115211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10050", "0.0", "3.504", "1674115211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10051", "0.0", "1.752", "1674118811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10051", "0.0", "3.504", "1674118811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10051", "0.0", "1.752", "1674118811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10051", "0.0", "3.504", "1674118811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10052", "0.0", "1.752", "1674122411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10052", "0.0", "3.504", "1674122411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10052", "0.0", "1.752", "1674122411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10052", "0.0", "3.504", "1674122411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10053", "0.0", "1.752", "1674126011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10053", "0.0", "3.504", "1674126011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10053", "0.0", "1.752", "1674126011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10053", "0.0", "3.504", "1674126011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10054", "0.0", "1.752", "1674129611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10054", "0.0", "3.504", "1674129611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10054", "0.0", "1.752", "1674129611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10054", "0.0", "3.504", "1674129611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10055", "0.0", "1.752", "1674133211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10055", "0.0", "3.504", "1674133211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10055", "0.0", "1.752", "1674133211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10055", "0.0", "3.504", "1674133211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10056", "0.0", "1.752", "1674136811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10056", "0.0", "3.504", "1674136811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10056", "0.0", "1.752", "1674136811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10056", "0.0", "3.504", "1674136811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10057", "0.0", "1.752", "1674140411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10057", "0.0", "3.504", "1674140411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10057", "0.0", "1.752", "1674140411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10057", "0.0", "3.504", "1674140411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10058", "0.0", "1.752", "1674144035"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10058", "0.0", "3.504", "1674144035"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10058", "0.0", "1.752", "1674144035"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10058", "0.0", "3.504", "1674144035"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10059", "0.0", "1.752", "1674147611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10059", "0.0", "3.504", "1674147611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10059", "0.0", "1.752", "1674147611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10059", "0.0", "3.504", "1674147611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10060", "0.0", "1.752", "1674151211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10060", "0.0", "3.504", "1674151211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10060", "0.0", "1.752", "1674151211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10060", "0.0", "3.504", "1674151211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10061", "0.0", "1.752", "1674154811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10061", "0.0", "3.504", "1674154811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10061", "0.0", "1.752", "1674154811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10061", "0.0", "3.504", "1674154811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10062", "0.0", "1.752", "1674158411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10062", "0.0", "3.504", "1674158411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10062", "0.0", "1.752", "1674158411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10062", "0.0", "3.504", "1674158411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10063", "0.0", "1.752", "1674162011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10063", "0.0", "3.504", "1674162011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10063", "0.0", "1.752", "1674162011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10063", "0.0", "3.504", "1674162011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10064", "0.0", "1.752", "1674165611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10064", "0.0", "3.504", "1674165611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10064", "0.0", "1.752", "1674165611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10064", "0.0", "3.504", "1674165611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10065", "0.0", "1.752", "1674169211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10065", "0.0", "3.504", "1674169211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10065", "0.0", "1.752", "1674169211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10065", "0.0", "3.504", "1674169211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10066", "0.0", "1.752", "1674172811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10066", "0.0", "3.504", "1674172811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10066", "0.0", "1.752", "1674172811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10066", "0.0", "3.504", "1674172811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10067", "0.0", "1.752", "1674176411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10067", "0.0", "3.504", "1674176411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10067", "0.0", "1.752", "1674176411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10067", "0.0", "3.504", "1674176411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10068", "0.0", "1.752", "1674180011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10068", "0.0", "3.504", "1674180011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10068", "0.0", "1.752", "1674180011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10068", "0.0", "3.504", "1674180011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10069", "0.0", "1.752", "1674183611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10069", "0.0", "3.504", "1674183611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10069", "0.0", "1.752", "1674183611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10069", "0.0", "3.504", "1674183611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10070", "0.0", "1.752", "1674187211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10070", "0.0", "3.504", "1674187211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10070", "0.0", "1.752", "1674187211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10070", "0.0", "3.504", "1674187211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10071", "0.0", "1.752", "1674190811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10071", "0.0", "3.504", "1674190811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10071", "0.0", "1.752", "1674190811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10071", "0.0", "3.504", "1674190811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10072", "0.0", "1.752", "1674194411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10072", "0.0", "3.504", "1674194411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10072", "0.0", "1.752", "1674194411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10072", "0.0", "3.504", "1674194411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10073", "0.0", "1.752", "1674198011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10073", "0.0", "3.504", "1674198011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10073", "0.0", "1.752", "1674198011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10073", "0.0", "3.504", "1674198011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10074", "0.0", "1.752", "1674201611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10074", "0.0", "3.504", "1674201611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10074", "0.0", "1.752", "1674201611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10074", "0.0", "3.504", "1674201611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10075", "0.0", "1.752", "1674205211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10075", "0.0", "3.504", "1674205211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10075", "0.0", "1.752", "1674205211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10075", "0.0", "3.504", "1674205211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10076", "0.0", "1.752", "1674208811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10076", "0.0", "3.504", "1674208811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10076", "0.0", "1.752", "1674208811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10076", "0.0", "3.504", "1674208811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10077", "0.0", "1.752", "1674212411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10077", "0.0", "3.504", "1674212411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10077", "0.0", "1.752", "1674212411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10077", "0.0", "3.504", "1674212411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10078", "0.0", "1.752", "1674216011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10078", "0.0", "3.504", "1674216011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10078", "0.0", "1.752", "1674216011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10078", "0.0", "3.504", "1674216011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10079", "0.0", "1.752", "1674219611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10079", "0.0", "3.504", "1674219611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10079", "0.0", "1.752", "1674219611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10079", "0.0", "3.504", "1674219611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10080", "0.0", "1.752", "1674223211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10080", "0.0", "3.504", "1674223211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10080", "0.0", "1.752", "1674223211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10080", "0.0", "3.504", "1674223211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10081", "0.0", "1.752", "1674226811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10081", "0.0", "3.504", "1674226811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10081", "0.0", "1.752", "1674226811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10081", "0.0", "3.504", "1674226811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10082", "0.0", "1.752", "1674230411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10082", "0.0", "3.504", "1674230411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10082", "0.0", "1.752", "1674230411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10082", "0.0", "3.504", "1674230411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10083", "0.0", "1.752", "1674234011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10083", "0.0", "3.504", "1674234011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10083", "0.0", "1.752", "1674234011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10083", "0.0", "3.504", "1674234011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10084", "0.0", "1.752", "1674237611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10084", "0.0", "3.504", "1674237611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10084", "0.0", "1.752", "1674237611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10084", "0.0", "3.504", "1674237611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10085", "0.0", "1.752", "1674241211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10085", "0.0", "3.504", "1674241211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10085", "0.0", "1.752", "1674241211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10085", "0.0", "3.504", "1674241211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10086", "0.0", "1.752", "1674244811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10086", "0.0", "3.504", "1674244811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10086", "0.0", "1.752", "1674244811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10086", "0.0", "3.504", "1674244811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10087", "0.0", "1.752", "1674248411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10087", "0.0", "3.504", "1674248411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10087", "0.0", "1.752", "1674248411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10087", "0.0", "3.504", "1674248411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10088", "0.0", "1.752", "1674252011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10088", "0.0", "3.504", "1674252011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10088", "0.0", "1.752", "1674252011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10088", "0.0", "3.504", "1674252011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10089", "0.0", "1.752", "1674255611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10089", "0.0", "3.504", "1674255611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10089", "0.0", "1.752", "1674255611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10089", "0.0", "3.504", "1674255611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10090", "0.0", "1.752", "1674259211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10090", "0.0", "3.504", "1674259211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10090", "0.0", "1.752", "1674259211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10090", "0.0", "3.504", "1674259211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10091", "0.0", "1.752", "1674262811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10091", "0.0", "3.504", "1674262811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10091", "0.0", "1.752", "1674262811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10091", "0.0", "3.504", "1674262811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10092", "0.0", "1.752", "1674266411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10092", "0.0", "3.504", "1674266411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10092", "0.0", "1.752", "1674266411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10092", "0.0", "3.504", "1674266411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10093", "0.0", "1.752", "1674270011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10093", "0.0", "3.504", "1674270011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10093", "0.0", "1.752", "1674270011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10093", "0.0", "3.504", "1674270011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10094", "0.0", "1.752", "1674273611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10094", "0.0", "3.504", "1674273611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10094", "0.0", "1.752", "1674273611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10094", "0.0", "3.504", "1674273611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10095", "0.0", "1.752", "1674277211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10095", "0.0", "3.504", "1674277211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10095", "0.0", "1.752", "1674277211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10095", "0.0", "3.504", "1674277211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10096", "0.0", "1.752", "1674280811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10096", "0.0", "3.504", "1674280811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10096", "0.0", "1.752", "1674280811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10096", "0.0", "3.504", "1674280811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10097", "0.0", "1.752", "1674284411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10097", "0.0", "3.504", "1674284411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10097", "0.0", "1.752", "1674284411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10097", "0.0", "3.504", "1674284411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10098", "0.0", "1.752", "1674288011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10098", "0.0", "3.504", "1674288011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10098", "0.0", "1.752", "1674288011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10098", "0.0", "3.504", "1674288011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10099", "0.0", "1.752", "1674291611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10099", "0.0", "3.504", "1674291611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10099", "0.0", "1.752", "1674291611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10099", "0.0", "3.504", "1674291611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10100", "0.0", "1.752", "1674295211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10100", "0.0", "3.504", "1674295211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10100", "0.0", "1.752", "1674295211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10100", "0.0", "3.504", "1674295211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10101", "0.0", "1.752", "1674298811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10101", "0.0", "3.504", "1674298811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10101", "0.0", "1.752", "1674298811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10101", "0.0", "3.504", "1674298811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10102", "0.0", "1.752", "1674302411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10102", "0.0", "3.504", "1674302411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10102", "0.0", "1.752", "1674302411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10102", "0.0", "3.504", "1674302411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10103", "0.0", "1.752", "1674306011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10103", "0.0", "3.504", "1674306011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10103", "0.0", "1.752", "1674306011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10103", "0.0", "3.504", "1674306011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10104", "0.0", "1.752", "1674309611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10104", "0.0", "3.504", "1674309611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10104", "0.0", "1.752", "1674309611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10104", "0.0", "3.504", "1674309611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10105", "0.0", "1.752", "1674313211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10105", "0.0", "3.504", "1674313211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10105", "0.0", "1.752", "1674313211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10105", "0.0", "3.504", "1674313211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10106", "0.0", "1.752", "1674316811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10106", "0.0", "3.504", "1674316811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10106", "0.0", "1.752", "1674316811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10106", "0.0", "3.504", "1674316811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10107", "0.0", "1.752", "1674320411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10107", "0.0", "3.504", "1674320411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10107", "0.0", "1.752", "1674320411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10107", "0.0", "3.504", "1674320411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10108", "0.0", "1.752", "1674324011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10108", "0.0", "3.504", "1674324011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10108", "0.0", "1.752", "1674324011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10108", "0.0", "3.504", "1674324011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10109", "0.0", "1.752", "1674327611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10109", "0.0", "3.504", "1674327611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10109", "0.0", "1.752", "1674327611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10109", "0.0", "3.504", "1674327611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10110", "0.0", "1.752", "1674331223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10110", "0.0", "3.504", "1674331223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10110", "0.0", "1.752", "1674331223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10110", "0.0", "3.504", "1674331223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10111", "0.0", "1.752", "1674334823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10111", "0.0", "3.504", "1674334823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10111", "0.0", "1.752", "1674334823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10111", "0.0", "3.504", "1674334823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10112", "0.0", "1.752", "1674338411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10112", "0.0", "3.504", "1674338411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10112", "0.0", "1.752", "1674338411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10112", "0.0", "3.504", "1674338411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10113", "0.0", "1.752", "1674342023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10113", "0.0", "3.504", "1674342023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10113", "0.0", "1.752", "1674342023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10113", "0.0", "3.504", "1674342023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10114", "0.0", "1.752", "1674345611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10114", "0.0", "3.504", "1674345611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10114", "0.0", "1.752", "1674345611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10114", "0.0", "3.504", "1674345611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10115", "0.0", "1.752", "1674349211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10115", "0.0", "3.504", "1674349211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10115", "0.0", "1.752", "1674349211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10115", "0.0", "3.504", "1674349211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10116", "0.0", "1.752", "1674352811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10116", "0.0", "3.504", "1674352811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10116", "0.0", "1.752", "1674352811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10116", "0.0", "3.504", "1674352811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10117", "0.0", "1.752", "1674356411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10117", "0.0", "3.504", "1674356411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10117", "0.0", "1.752", "1674356411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10117", "0.0", "3.504", "1674356411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10118", "0.0", "1.752", "1674360011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10118", "0.0", "3.504", "1674360011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10118", "0.0", "1.752", "1674360011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10118", "0.0", "3.504", "1674360011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10119", "0.0", "1.752", "1674363611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10119", "0.0", "3.504", "1674363611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10119", "0.0", "1.752", "1674363611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10119", "0.0", "3.504", "1674363611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10120", "0.0", "1.752", "1674367211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10120", "0.0", "3.504", "1674367211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10120", "0.0", "1.752", "1674367211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10120", "0.0", "3.504", "1674367211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10121", "0.0", "1.752", "1674370811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10121", "0.0", "3.504", "1674370811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10121", "0.0", "1.752", "1674370811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10121", "0.0", "3.504", "1674370811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10122", "0.0", "1.752", "1674374411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10122", "0.0", "3.504", "1674374411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10122", "0.0", "1.752", "1674374411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10122", "0.0", "3.504", "1674374411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10123", "0.0", "1.752", "1674378011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10123", "0.0", "3.504", "1674378011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10123", "0.0", "1.752", "1674378011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10123", "0.0", "3.504", "1674378011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10124", "0.0", "1.752", "1674381611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10124", "0.0", "3.504", "1674381611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10124", "0.0", "1.752", "1674381611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10124", "0.0", "3.504", "1674381611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10125", "0.0", "1.752", "1674385211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10125", "0.0", "3.504", "1674385211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10125", "0.0", "1.752", "1674385211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10125", "0.0", "3.504", "1674385211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10126", "0.0", "1.752", "1674388811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10126", "0.0", "3.504", "1674388811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10126", "0.0", "1.752", "1674388811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10126", "0.0", "3.504", "1674388811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10127", "0.0", "1.752", "1674392411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10127", "0.0", "3.504", "1674392411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10127", "0.0", "1.752", "1674392411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10127", "0.0", "3.504", "1674392411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10128", "0.0", "1.752", "1674396023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10128", "0.0", "3.504", "1674396023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10128", "0.0", "1.752", "1674396023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10128", "0.0", "3.504", "1674396023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10129", "0.0", "1.752", "1674399611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10129", "0.0", "3.504", "1674399611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10129", "0.0", "1.752", "1674399611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10129", "0.0", "3.504", "1674399611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10130", "0.0", "1.752", "1674403211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10130", "0.0", "3.504", "1674403211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10130", "0.0", "1.752", "1674403211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10130", "0.0", "3.504", "1674403211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10131", "0.0", "1.752", "1674406811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10131", "0.0", "3.504", "1674406811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10131", "0.0", "1.752", "1674406811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10131", "0.0", "3.504", "1674406811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10132", "0.0", "1.752", "1674410411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10132", "0.0", "3.504", "1674410411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10132", "0.0", "1.752", "1674410411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10132", "0.0", "3.504", "1674410411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10133", "0.0", "1.752", "1674414011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10133", "0.0", "3.504", "1674414011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10133", "0.0", "1.752", "1674414011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10133", "0.0", "3.504", "1674414011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10134", "0.0", "1.752", "1674417611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10134", "0.0", "3.504", "1674417611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10134", "0.0", "1.752", "1674417611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10134", "0.0", "3.504", "1674417611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10135", "0.0", "1.752", "1674421211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10135", "0.0", "3.504", "1674421211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10135", "0.0", "1.752", "1674421211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10135", "0.0", "3.504", "1674421211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10136", "0.0", "1.752", "1674424811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10136", "0.0", "3.504", "1674424811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10136", "0.0", "1.752", "1674424811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10136", "0.0", "3.504", "1674424811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10137", "0.0", "1.752", "1674428411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10137", "0.0", "3.504", "1674428411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10137", "0.0", "1.752", "1674428411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10137", "0.0", "3.504", "1674428411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10138", "0.0", "1.752", "1674432011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10138", "0.0", "3.504", "1674432011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10138", "0.0", "1.752", "1674432011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10138", "0.0", "3.504", "1674432011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10139", "0.0", "1.752", "1674435611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10139", "0.0", "3.504", "1674435611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10139", "0.0", "1.752", "1674435611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10139", "0.0", "3.504", "1674435611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10140", "0.0", "1.752", "1674439211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10140", "0.0", "3.504", "1674439211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10140", "0.0", "1.752", "1674439211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10140", "0.0", "3.504", "1674439211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10141", "0.0", "1.752", "1674442823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10141", "0.0", "3.504", "1674442823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10141", "0.0", "1.752", "1674442823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10141", "0.0", "3.504", "1674442823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10142", "0.0", "1.752", "1674446411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10142", "0.0", "3.504", "1674446411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10142", "0.0", "1.752", "1674446411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10142", "0.0", "3.504", "1674446411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10143", "0.0", "1.752", "1674450011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10143", "0.0", "3.504", "1674450011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10143", "0.0", "1.752", "1674450011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10143", "0.0", "3.504", "1674450011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10144", "0.0", "1.752", "1674453611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10144", "0.0", "3.504", "1674453611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10144", "0.0", "1.752", "1674453611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10144", "0.0", "3.504", "1674453611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10145", "0.0", "1.752", "1674457211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10145", "0.0", "3.504", "1674457211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10145", "0.0", "1.752", "1674457211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10145", "0.0", "3.504", "1674457211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10146", "0.0", "1.752", "1674460811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10146", "0.0", "3.504", "1674460811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10146", "0.0", "1.752", "1674460811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10146", "0.0", "3.504", "1674460811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10147", "0.0", "1.752", "1674464411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10147", "0.0", "3.504", "1674464411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10147", "0.0", "1.752", "1674464411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10147", "0.0", "3.504", "1674464411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10148", "0.0", "1.752", "1674468011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10148", "0.0", "3.504", "1674468011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10148", "0.0", "1.752", "1674468011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10148", "0.0", "3.504", "1674468011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10149", "0.0", "1.752", "1674471611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10149", "0.0", "3.504", "1674471611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10149", "0.0", "1.752", "1674471611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10149", "0.0", "3.504", "1674471611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10150", "0.0", "1.752", "1674475211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10150", "0.0", "3.504", "1674475211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10150", "0.0", "1.752", "1674475211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10150", "0.0", "3.504", "1674475211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10151", "0.0", "1.752", "1674478811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10151", "0.0", "3.504", "1674478811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10151", "0.0", "1.752", "1674478811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10151", "0.0", "3.504", "1674478811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10152", "0.0", "1.752", "1674482411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10152", "0.0", "3.504", "1674482411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10152", "0.0", "1.752", "1674482411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10152", "0.0", "3.504", "1674482411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10153", "0.0", "1.752", "1674486011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10153", "0.0", "3.504", "1674486011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10153", "0.0", "1.752", "1674486011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10153", "0.0", "3.504", "1674486011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10154", "0.0", "1.752", "1674489611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10154", "0.0", "3.504", "1674489611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10154", "0.0", "1.752", "1674489611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10154", "0.0", "3.504", "1674489611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10155", "0.0", "1.752", "1674493211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10155", "0.0", "3.504", "1674493211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10155", "0.0", "1.752", "1674493211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10155", "0.0", "3.504", "1674493211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10156", "0.0", "1.752", "1674496811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10156", "0.0", "3.504", "1674496811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10156", "0.0", "1.752", "1674496811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10156", "0.0", "3.504", "1674496811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10157", "0.0", "1.752", "1674500411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10157", "0.0", "3.504", "1674500411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10157", "0.0", "1.752", "1674500411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10157", "0.0", "3.504", "1674500411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10158", "0.0", "1.752", "1674504011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10158", "0.0", "3.504", "1674504011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10158", "0.0", "1.752", "1674504011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10158", "0.0", "3.504", "1674504011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10159", "0.0", "1.752", "1674507611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10159", "0.0", "3.504", "1674507611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10159", "0.0", "1.752", "1674507611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10159", "0.0", "3.504", "1674507611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10160", "0.0", "1.752", "1674511211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10160", "0.0", "3.504", "1674511211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10160", "0.0", "1.752", "1674511211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10160", "0.0", "3.504", "1674511211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10161", "0.0", "1.752", "1674514811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10161", "0.0", "3.504", "1674514811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10161", "0.0", "1.752", "1674514811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10161", "0.0", "3.504", "1674514811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10162", "0.0", "1.752", "1674518435"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10162", "0.0", "3.504", "1674518435"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10162", "0.0", "1.752", "1674518435"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10162", "0.0", "3.504", "1674518435"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10163", "0.0", "1.752", "1674522011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10163", "0.0", "3.504", "1674522011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10163", "0.0", "1.752", "1674522011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10163", "0.0", "3.504", "1674522011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10164", "0.0", "1.752", "1674525611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10164", "0.0", "3.504", "1674525611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10164", "0.0", "1.752", "1674525611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10164", "0.0", "3.504", "1674525611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10165", "0.0", "1.752", "1674529211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10165", "0.0", "3.504", "1674529211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10165", "0.0", "1.752", "1674529211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10165", "0.0", "3.504", "1674529211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10166", "0.0", "1.752", "1674532811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10166", "0.0", "3.504", "1674532811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10166", "0.0", "1.752", "1674532811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10166", "0.0", "3.504", "1674532811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10167", "0.0", "1.752", "1674536411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10167", "0.0", "3.504", "1674536411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10167", "0.0", "1.752", "1674536411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10167", "0.0", "3.504", "1674536411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10168", "0.0", "1.752", "1674540023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10168", "0.0", "3.504", "1674540023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10168", "0.0", "1.752", "1674540023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10168", "0.0", "3.504", "1674540023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10169", "0.0", "1.752", "1674543623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10169", "0.0", "3.504", "1674543623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10169", "0.0", "1.752", "1674543623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10169", "0.0", "3.504", "1674543623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10170", "0.0", "1.752", "1674547211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10170", "0.0", "3.504", "1674547211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10170", "0.0", "1.752", "1674547211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10170", "0.0", "3.504", "1674547211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10171", "0.0", "1.752", "1674550811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10171", "0.0", "3.504", "1674550811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10171", "0.0", "1.752", "1674550811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10171", "0.0", "3.504", "1674550811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10172", "0.0", "1.752", "1674554411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10172", "0.0", "3.504", "1674554411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10172", "0.0", "1.752", "1674554411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10172", "0.0", "3.504", "1674554411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10173", "0.0", "1.752", "1674558011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10173", "0.0", "3.504", "1674558011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10173", "0.0", "1.752", "1674558011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10173", "0.0", "3.504", "1674558011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10174", "0.0", "1.752", "1674561611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10174", "0.0", "3.504", "1674561611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10174", "0.0", "1.752", "1674561611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10174", "0.0", "3.504", "1674561611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10175", "0.0", "1.752", "1674565211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10175", "0.0", "3.504", "1674565211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10175", "0.0", "1.752", "1674565211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10175", "0.0", "3.504", "1674565211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10176", "0.0", "1.752", "1674568811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10176", "0.0", "3.504", "1674568811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10176", "0.0", "1.752", "1674568811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10176", "0.0", "3.504", "1674568811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10177", "0.0", "1.752", "1674572411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10177", "0.0", "3.504", "1674572411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10177", "0.0", "1.752", "1674572411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10177", "0.0", "3.504", "1674572411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10178", "0.0", "1.752", "1674576035"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10178", "0.0", "3.504", "1674576035"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10178", "0.0", "1.752", "1674576035"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10178", "0.0", "3.504", "1674576035"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10179", "0.0", "1.752", "1674579611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10179", "0.0", "3.504", "1674579611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10179", "0.0", "1.752", "1674579611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10179", "0.0", "3.504", "1674579611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10180", "0.0", "1.752", "1674583211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10180", "0.0", "3.504", "1674583211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10180", "0.0", "1.752", "1674583211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10180", "0.0", "3.504", "1674583211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10181", "0.0", "1.752", "1674586811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10181", "0.0", "3.504", "1674586811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10181", "0.0", "1.752", "1674586811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10181", "0.0", "3.504", "1674586811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10182", "0.0", "1.752", "1674590411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10182", "0.0", "3.504", "1674590411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10182", "0.0", "1.752", "1674590411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10182", "0.0", "3.504", "1674590411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10183", "0.0", "1.752", "1674594011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10183", "0.0", "3.504", "1674594011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10183", "0.0", "1.752", "1674594011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10183", "0.0", "3.504", "1674594011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10184", "0.0", "1.752", "1674597623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10184", "0.0", "3.504", "1674597623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10184", "0.0", "1.752", "1674597623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10184", "0.0", "3.504", "1674597623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10185", "0.0", "1.752", "1674601211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10185", "0.0", "3.504", "1674601211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10185", "0.0", "1.752", "1674601211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10185", "0.0", "3.504", "1674601211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10186", "0.0", "1.752", "1674604811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10186", "0.0", "3.504", "1674604811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10186", "0.0", "1.752", "1674604811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10186", "0.0", "3.504", "1674604811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10187", "0.0", "1.752", "1674608411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10187", "0.0", "3.504", "1674608411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10187", "0.0", "1.752", "1674608411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10187", "0.0", "3.504", "1674608411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10188", "0.0", "1.752", "1674612011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10188", "0.0", "3.504", "1674612011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10188", "0.0", "1.752", "1674612011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10188", "0.0", "3.504", "1674612011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10189", "0.0", "1.752", "1674615611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10189", "0.0", "3.504", "1674615611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10189", "0.0", "1.752", "1674615611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10189", "0.0", "3.504", "1674615611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10190", "0.0", "1.752", "1674619211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10190", "0.0", "3.504", "1674619211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10190", "0.0", "1.752", "1674619211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10190", "0.0", "3.504", "1674619211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10191", "0.0", "1.752", "1674622811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10191", "0.0", "3.504", "1674622811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10191", "0.0", "1.752", "1674622811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10191", "0.0", "3.504", "1674622811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10192", "0.0", "1.752", "1674626411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10192", "0.0", "3.504", "1674626411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10192", "0.0", "1.752", "1674626411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10192", "0.0", "3.504", "1674626411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10193", "0.0", "1.752", "1674630011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10193", "0.0", "3.504", "1674630011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10193", "0.0", "1.752", "1674630011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10193", "0.0", "3.504", "1674630011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10194", "0.0", "1.752", "1674633611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10194", "0.0", "3.504", "1674633611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10194", "0.0", "1.752", "1674633611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10194", "0.0", "3.504", "1674633611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10195", "0.0", "1.752", "1674637211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10195", "0.0", "3.504", "1674637211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10195", "0.0", "1.752", "1674637211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10195", "0.0", "3.504", "1674637211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10196", "0.0", "1.752", "1674640811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10196", "0.0", "3.504", "1674640811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10196", "0.0", "1.752", "1674640811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10196", "0.0", "3.504", "1674640811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10197", "0.0", "1.752", "1674644411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10197", "0.0", "3.504", "1674644411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10197", "0.0", "1.752", "1674644411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10197", "0.0", "3.504", "1674644411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10198", "0.0", "1.752", "1674648011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10198", "0.0", "3.504", "1674648011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10198", "0.0", "1.752", "1674648011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10198", "0.0", "3.504", "1674648011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10199", "0.0", "1.752", "1674651611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10199", "0.0", "3.504", "1674651611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10199", "0.0", "1.752", "1674651611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10199", "0.0", "3.504", "1674651611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10200", "0.0", "1.752", "1674655211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10200", "0.0", "3.504", "1674655211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10200", "0.0", "1.752", "1674655211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10200", "0.0", "3.504", "1674655211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10201", "0.0", "1.752", "1674658811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10201", "0.0", "3.504", "1674658811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10201", "0.0", "1.752", "1674658811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10201", "0.0", "3.504", "1674658811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10202", "0.0", "1.752", "1674662423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10202", "0.0", "3.504", "1674662423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10202", "0.0", "1.752", "1674662423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10202", "0.0", "3.504", "1674662423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10203", "0.0", "1.752", "1674666131"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10203", "0.0", "3.504", "1674666131"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10203", "0.0", "1.752", "1674666131"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10203", "0.0", "3.504", "1674666131"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10204", "0.0", "1.752", "1674669611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10204", "0.0", "3.504", "1674669611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10204", "0.0", "1.752", "1674669611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10204", "0.0", "3.504", "1674669611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10205", "0.0", "1.752", "1674673211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10205", "0.0", "3.504", "1674673211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10205", "0.0", "1.752", "1674673211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10205", "0.0", "3.504", "1674673211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10206", "0.0", "1.752", "1674676811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10206", "0.0", "3.504", "1674676811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10206", "0.0", "1.752", "1674676811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10206", "0.0", "3.504", "1674676811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10207", "0.0", "1.752", "1674680411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10207", "0.0", "3.504", "1674680411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10207", "0.0", "1.752", "1674680411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10207", "0.0", "3.504", "1674680411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10208", "0.0", "1.752", "1674684011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10208", "0.0", "3.504", "1674684011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10208", "0.0", "1.752", "1674684011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10208", "0.0", "3.504", "1674684011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10209", "0.0", "1.752", "1674687611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10209", "0.0", "3.504", "1674687611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10209", "0.0", "1.752", "1674687611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10209", "0.0", "3.504", "1674687611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10210", "0.0", "1.752", "1674691211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10210", "0.0", "3.504", "1674691211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10210", "0.0", "1.752", "1674691211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10210", "0.0", "3.504", "1674691211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10211", "0.0", "1.752", "1674694811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10211", "0.0", "3.504", "1674694811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10211", "0.0", "1.752", "1674694811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10211", "0.0", "3.504", "1674694811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10212", "0.0", "1.752", "1674698411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10212", "0.0", "3.504", "1674698411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10212", "0.0", "1.752", "1674698411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10212", "0.0", "3.504", "1674698411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10213", "0.0", "1.752", "1674702011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10213", "0.0", "3.504", "1674702011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10213", "0.0", "1.752", "1674702011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10213", "0.0", "3.504", "1674702011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10214", "0.0", "1.752", "1674705611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10214", "0.0", "3.504", "1674705611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10214", "0.0", "1.752", "1674705611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10214", "0.0", "3.504", "1674705611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10215", "0.0", "1.752", "1674709211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10215", "0.0", "3.504", "1674709211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10215", "0.0", "1.752", "1674709211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10215", "0.0", "3.504", "1674709211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10216", "0.0", "1.752", "1674712811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10216", "0.0", "3.504", "1674712811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10216", "0.0", "1.752", "1674712811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10216", "0.0", "3.504", "1674712811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10217", "0.0", "1.752", "1674716411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10217", "0.0", "3.504", "1674716411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10217", "0.0", "1.752", "1674716411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10217", "0.0", "3.504", "1674716411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10218", "0.0", "1.752", "1674720011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10218", "0.0", "3.504", "1674720011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10218", "0.0", "1.752", "1674720011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10218", "0.0", "3.504", "1674720011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10219", "0.0", "1.752", "1674723611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10219", "0.0", "3.504", "1674723611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10219", "0.0", "1.752", "1674723611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10219", "0.0", "3.504", "1674723611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10220", "0.0", "1.752", "1674727211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10220", "0.0", "3.504", "1674727211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10220", "0.0", "1.752", "1674727211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10220", "0.0", "3.504", "1674727211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10221", "0.0", "1.752", "1674730811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10221", "0.0", "3.504", "1674730811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10221", "0.0", "1.752", "1674730811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10221", "0.0", "3.504", "1674730811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10222", "0.0", "1.752", "1674734411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10222", "0.0", "3.504", "1674734411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10222", "0.0", "1.752", "1674734411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10222", "0.0", "3.504", "1674734411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10223", "0.0", "1.752", "1674738023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10223", "0.0", "3.504", "1674738023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10223", "0.0", "1.752", "1674738023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10223", "0.0", "3.504", "1674738023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10224", "0.0", "1.752", "1674741611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10224", "0.0", "3.504", "1674741611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10224", "0.0", "1.752", "1674741611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10224", "0.0", "3.504", "1674741611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10225", "0.0", "1.752", "1674745211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10225", "0.0", "3.504", "1674745211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10225", "0.0", "1.752", "1674745211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10225", "0.0", "3.504", "1674745211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10226", "0.0", "1.752", "1674748835"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10226", "0.0", "3.504", "1674748835"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10226", "0.0", "1.752", "1674748835"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10226", "0.0", "3.504", "1674748835"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10227", "0.0", "1.752", "1674752411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10227", "0.0", "3.504", "1674752411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10227", "0.0", "1.752", "1674752411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10227", "0.0", "3.504", "1674752411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10228", "0.0", "1.752", "1674756011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10228", "0.0", "3.504", "1674756011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10228", "0.0", "1.752", "1674756011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10228", "0.0", "3.504", "1674756011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10229", "0.0", "1.752", "1674759611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10229", "0.0", "3.504", "1674759611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10229", "0.0", "1.752", "1674759611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10229", "0.0", "3.504", "1674759611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10230", "0.0", "1.752", "1674763211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10230", "0.0", "3.504", "1674763211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10230", "0.0", "1.752", "1674763211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10230", "0.0", "3.504", "1674763211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10231", "0.0", "1.752", "1674766811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10231", "0.0", "3.504", "1674766811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10231", "0.0", "1.752", "1674766811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10231", "0.0", "3.504", "1674766811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10232", "0.0", "1.752", "1674770423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10232", "0.0", "3.504", "1674770423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10232", "0.0", "1.752", "1674770423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10232", "0.0", "3.504", "1674770423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10233", "0.0", "1.752", "1674774011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10233", "0.0", "3.504", "1674774011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10233", "0.0", "1.752", "1674774011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10233", "0.0", "3.504", "1674774011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10234", "0.0", "1.752", "1674777611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10234", "0.0", "3.504", "1674777611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10234", "0.0", "1.752", "1674777611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10234", "0.0", "3.504", "1674777611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10235", "0.0", "1.752", "1674781211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10235", "0.0", "3.504", "1674781211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10235", "0.0", "1.752", "1674781211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10235", "0.0", "3.504", "1674781211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10236", "0.0", "1.752", "1674784811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10236", "0.0", "3.504", "1674784811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10236", "0.0", "1.752", "1674784811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10236", "0.0", "3.504", "1674784811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10237", "0.0", "1.752", "1674788411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10237", "0.0", "3.504", "1674788411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10237", "0.0", "1.752", "1674788411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10237", "0.0", "3.504", "1674788411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10238", "0.0", "1.752", "1674792011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10238", "0.0", "3.504", "1674792011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10238", "0.0", "1.752", "1674792011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10238", "0.0", "3.504", "1674792011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10239", "0.0", "1.752", "1674795611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10239", "0.0", "3.504", "1674795611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10239", "0.0", "1.752", "1674795611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10239", "0.0", "3.504", "1674795611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10240", "0.0", "1.752", "1674799235"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10240", "0.0", "3.504", "1674799235"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10240", "0.0", "1.752", "1674799235"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10240", "0.0", "3.504", "1674799235"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10241", "0.0", "1.752", "1674802811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10241", "0.0", "3.504", "1674802811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10241", "0.0", "1.752", "1674802811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10241", "0.0", "3.504", "1674802811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10242", "0.0", "1.752", "1674806411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10242", "0.0", "3.504", "1674806411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10242", "0.0", "1.752", "1674806411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10242", "0.0", "3.504", "1674806411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10243", "0.0", "1.752", "1674810011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10243", "0.0", "3.504", "1674810011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10243", "0.0", "1.752", "1674810011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10243", "0.0", "3.504", "1674810011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10244", "0.0", "1.752", "1674813611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10244", "0.0", "3.504", "1674813611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10244", "0.0", "1.752", "1674813611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10244", "0.0", "3.504", "1674813611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10245", "0.0", "1.752", "1674817211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10245", "0.0", "3.504", "1674817211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10245", "0.0", "1.752", "1674817211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10245", "0.0", "3.504", "1674817211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10246", "0.0", "1.752", "1674820811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10246", "0.0", "3.504", "1674820811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10246", "0.0", "1.752", "1674820811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10246", "0.0", "3.504", "1674820811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10247", "0.0", "1.752", "1674824411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10247", "0.0", "3.504", "1674824411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10247", "0.0", "1.752", "1674824411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10247", "0.0", "3.504", "1674824411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10248", "0.0", "1.752", "1674828011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10248", "0.0", "3.504", "1674828011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10248", "0.0", "1.752", "1674828011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10248", "0.0", "3.504", "1674828011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10249", "0.0", "1.752", "1674831623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10249", "0.0", "3.504", "1674831623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10249", "0.0", "1.752", "1674831623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10249", "0.0", "3.504", "1674831623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10250", "0.0", "1.752", "1674835247"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10250", "0.0", "3.504", "1674835247"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10250", "0.0", "1.752", "1674835247"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10250", "0.0", "3.504", "1674835247"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10251", "0.0", "1.752", "1674838811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10251", "0.0", "3.504", "1674838811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10251", "0.0", "1.752", "1674838811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10251", "0.0", "3.504", "1674838811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10252", "0.0", "1.752", "1674842423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10252", "0.0", "3.504", "1674842423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10252", "0.0", "1.752", "1674842423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10252", "0.0", "3.504", "1674842423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10253", "0.0", "1.752", "1674846011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10253", "0.0", "3.504", "1674846011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10253", "0.0", "1.752", "1674846011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10253", "0.0", "3.504", "1674846011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10254", "0.0", "1.752", "1674849611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10254", "0.0", "3.504", "1674849611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10254", "0.0", "1.752", "1674849611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10254", "0.0", "3.504", "1674849611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10255", "0.0", "1.752", "1674853223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10255", "0.0", "3.504", "1674853223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10255", "0.0", "1.752", "1674853223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10255", "0.0", "3.504", "1674853223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10256", "0.0", "1.752", "1674856823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10256", "0.0", "3.504", "1674856823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10256", "0.0", "1.752", "1674856823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10256", "0.0", "3.504", "1674856823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10257", "0.0", "1.752", "1674860411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10257", "0.0", "3.504", "1674860411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10257", "0.0", "1.752", "1674860411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10257", "0.0", "3.504", "1674860411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10258", "0.0", "1.752", "1674864011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10258", "0.0", "3.504", "1674864011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10258", "0.0", "1.752", "1674864011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10258", "0.0", "3.504", "1674864011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10259", "0.0", "1.752", "1674867611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10259", "0.0", "3.504", "1674867611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10259", "0.0", "1.752", "1674867611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10259", "0.0", "3.504", "1674867611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10260", "0.0", "1.752", "1674871211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10260", "0.0", "3.504", "1674871211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10260", "0.0", "1.752", "1674871211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10260", "0.0", "3.504", "1674871211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10261", "0.0", "1.752", "1674874811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10261", "0.0", "3.504", "1674874811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10261", "0.0", "1.752", "1674874811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10261", "0.0", "3.504", "1674874811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10262", "0.0", "1.752", "1674878411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10262", "0.0", "3.504", "1674878411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10262", "0.0", "1.752", "1674878411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10262", "0.0", "3.504", "1674878411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10263", "0.0", "1.752", "1674882011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10263", "0.0", "3.504", "1674882011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10263", "0.0", "1.752", "1674882011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10263", "0.0", "3.504", "1674882011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10264", "0.0", "1.752", "1674885611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10264", "0.0", "3.504", "1674885611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10264", "0.0", "1.752", "1674885611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10264", "0.0", "3.504", "1674885611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10265", "0.0", "1.752", "1674889211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10265", "0.0", "3.504", "1674889211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10265", "0.0", "1.752", "1674889211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10265", "0.0", "3.504", "1674889211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10266", "0.0", "1.752", "1674892811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10266", "0.0", "3.504", "1674892811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10266", "0.0", "1.752", "1674892811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10266", "0.0", "3.504", "1674892811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10267", "0.0", "1.752", "1674896411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10267", "0.0", "3.504", "1674896411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10267", "0.0", "1.752", "1674896411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10267", "0.0", "3.504", "1674896411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10268", "0.0", "1.752", "1674900011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10268", "0.0", "3.504", "1674900011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10268", "0.0", "1.752", "1674900011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10268", "0.0", "3.504", "1674900011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10269", "0.0", "1.752", "1674903611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10269", "0.0", "3.504", "1674903611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10269", "0.0", "1.752", "1674903611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10269", "0.0", "3.504", "1674903611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10270", "0.0", "1.752", "1674907211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10270", "0.0", "3.504", "1674907211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10270", "0.0", "1.752", "1674907211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10270", "0.0", "3.504", "1674907211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10271", "0.0", "1.752", "1674910811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10271", "0.0", "3.504", "1674910811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10271", "0.0", "1.752", "1674910811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10271", "0.0", "3.504", "1674910811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10272", "0.0", "1.752", "1674914411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10272", "0.0", "3.504", "1674914411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10272", "0.0", "1.752", "1674914411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10272", "0.0", "3.504", "1674914411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10273", "0.0", "1.752", "1674918035"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10273", "0.0", "3.504", "1674918035"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10273", "0.0", "1.752", "1674918035"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10273", "0.0", "3.504", "1674918035"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10274", "0.0", "1.752", "1674921611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10274", "0.0", "3.504", "1674921611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10274", "0.0", "1.752", "1674921611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10274", "0.0", "3.504", "1674921611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10275", "0.0", "1.752", "1674925211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10275", "0.0", "3.504", "1674925211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10275", "0.0", "1.752", "1674925211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10275", "0.0", "3.504", "1674925211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10276", "0.0", "1.752", "1674928811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10276", "0.0", "3.504", "1674928811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10276", "0.0", "1.752", "1674928811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10276", "0.0", "3.504", "1674928811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10277", "0.0", "1.752", "1674932411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10277", "0.0", "3.504", "1674932411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10277", "0.0", "1.752", "1674932411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10277", "0.0", "3.504", "1674932411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10278", "0.0", "1.752", "1674936011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10278", "0.0", "3.504", "1674936011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10278", "0.0", "1.752", "1674936011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10278", "0.0", "3.504", "1674936011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10279", "0.0", "1.752", "1674939611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10279", "0.0", "3.504", "1674939611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10279", "0.0", "1.752", "1674939611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10279", "0.0", "3.504", "1674939611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10280", "0.0", "1.752", "1674943211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10280", "0.0", "3.504", "1674943211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10280", "0.0", "1.752", "1674943211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10280", "0.0", "3.504", "1674943211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10281", "0.0", "1.752", "1674946811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10281", "0.0", "3.504", "1674946811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10281", "0.0", "1.752", "1674946811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10281", "0.0", "3.504", "1674946811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10282", "0.0", "1.752", "1674950411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10282", "0.0", "3.504", "1674950411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10282", "0.0", "1.752", "1674950411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10282", "0.0", "3.504", "1674950411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10283", "0.0", "1.752", "1674954011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10283", "0.0", "3.504", "1674954011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10283", "0.0", "1.752", "1674954011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10283", "0.0", "3.504", "1674954011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10284", "0.0", "1.752", "1674957611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10284", "0.0", "3.504", "1674957611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10284", "0.0", "1.752", "1674957611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10284", "0.0", "3.504", "1674957611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10285", "0.0", "1.752", "1674961211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10285", "0.0", "3.504", "1674961211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10285", "0.0", "1.752", "1674961211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10285", "0.0", "3.504", "1674961211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10286", "0.0", "1.752", "1674964811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10286", "0.0", "3.504", "1674964811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10286", "0.0", "1.752", "1674964811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10286", "0.0", "3.504", "1674964811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10287", "0.0", "1.752", "1674968411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10287", "0.0", "3.504", "1674968411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10287", "0.0", "1.752", "1674968411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10287", "0.0", "3.504", "1674968411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10288", "0.0", "1.752", "1674972011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10288", "0.0", "3.504", "1674972011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10288", "0.0", "1.752", "1674972011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10288", "0.0", "3.504", "1674972011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10289", "0.0", "1.752", "1674975611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10289", "0.0", "3.504", "1674975611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10289", "0.0", "1.752", "1674975611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10289", "0.0", "3.504", "1674975611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10290", "0.0", "1.752", "1674979211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10290", "0.0", "3.504", "1674979211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10290", "0.0", "1.752", "1674979211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10290", "0.0", "3.504", "1674979211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10291", "0.0", "1.752", "1674982811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10291", "0.0", "3.504", "1674982811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10291", "0.0", "1.752", "1674982811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10291", "0.0", "3.504", "1674982811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10292", "0.0", "1.752", "1674986411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10292", "0.0", "3.504", "1674986411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10292", "0.0", "1.752", "1674986411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10292", "0.0", "3.504", "1674986411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10293", "0.0", "1.752", "1674990011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10293", "0.0", "3.504", "1674990011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10293", "0.0", "1.752", "1674990011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10293", "0.0", "3.504", "1674990011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10294", "0.0", "1.752", "1674993611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10294", "0.0", "3.504", "1674993611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10294", "0.0", "1.752", "1674993611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10294", "0.0", "3.504", "1674993611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10295", "0.0", "1.752", "1674997211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10295", "0.0", "3.504", "1674997211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10295", "0.0", "1.752", "1674997211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10295", "0.0", "3.504", "1674997211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10296", "0.0", "1.752", "1675000811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10296", "0.0", "3.504", "1675000811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10296", "0.0", "1.752", "1675000811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10296", "0.0", "3.504", "1675000811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10297", "0.0", "1.752", "1675004447"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10297", "0.0", "3.504", "1675004447"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10297", "0.0", "1.752", "1675004447"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10297", "0.0", "3.504", "1675004447"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10298", "0.0", "1.752", "1675008011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10298", "0.0", "3.504", "1675008011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10298", "0.0", "1.752", "1675008011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10298", "0.0", "3.504", "1675008011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10299", "0.0", "1.752", "1675011611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10299", "0.0", "3.504", "1675011611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10299", "0.0", "1.752", "1675011611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10299", "0.0", "3.504", "1675011611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10300", "0.0", "1.752", "1675015211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10300", "0.0", "3.504", "1675015211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10300", "0.0", "1.752", "1675015211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10300", "0.0", "3.504", "1675015211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10301", "0.0", "1.752", "1675018811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10301", "0.0", "3.504", "1675018811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10301", "0.0", "1.752", "1675018811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10301", "0.0", "3.504", "1675018811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10302", "0.0", "1.752", "1675022411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10302", "0.0", "3.504", "1675022411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10302", "0.0", "1.752", "1675022411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10302", "0.0", "3.504", "1675022411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10303", "0.0", "1.752", "1675026011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10303", "0.0", "3.504", "1675026011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10303", "0.0", "1.752", "1675026011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10303", "0.0", "3.504", "1675026011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10304", "0.0", "1.752", "1675029611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10304", "0.0", "3.504", "1675029611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10304", "0.0", "1.752", "1675029611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10304", "0.0", "3.504", "1675029611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10305", "0.0", "1.752", "1675033211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10305", "0.0", "3.504", "1675033211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10305", "0.0", "1.752", "1675033211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10305", "0.0", "3.504", "1675033211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10306", "0.0", "1.752", "1675036811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10306", "0.0", "3.504", "1675036811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10306", "0.0", "1.752", "1675036811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10306", "0.0", "3.504", "1675036811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10307", "0.0", "1.752", "1675040411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10307", "0.0", "3.504", "1675040411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10307", "0.0", "1.752", "1675040411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10307", "0.0", "3.504", "1675040411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10308", "0.0", "1.752", "1675044011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10308", "0.0", "3.504", "1675044011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10308", "0.0", "1.752", "1675044011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10308", "0.0", "3.504", "1675044011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10309", "0.0", "1.752", "1675047611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10309", "0.0", "3.504", "1675047611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10309", "0.0", "1.752", "1675047611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10309", "0.0", "3.504", "1675047611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10310", "0.0", "1.752", "1675051211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10310", "0.0", "3.504", "1675051211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10310", "0.0", "1.752", "1675051211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10310", "0.0", "3.504", "1675051211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10311", "0.0", "1.752", "1675054811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10311", "0.0", "3.504", "1675054811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10311", "0.0", "1.752", "1675054811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10311", "0.0", "3.504", "1675054811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10312", "0.0", "1.752", "1675058411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10312", "0.0", "3.504", "1675058411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10312", "0.0", "1.752", "1675058411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10312", "0.0", "3.504", "1675058411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10313", "0.0", "1.752", "1675062011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10313", "0.0", "3.504", "1675062011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10313", "0.0", "1.752", "1675062011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10313", "0.0", "3.504", "1675062011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10314", "0.0", "1.752", "1675065611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10314", "0.0", "3.504", "1675065611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10314", "0.0", "1.752", "1675065611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10314", "0.0", "3.504", "1675065611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10315", "0.0", "1.752", "1675069211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10315", "0.0", "3.504", "1675069211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10315", "0.0", "1.752", "1675069211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10315", "0.0", "3.504", "1675069211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10316", "0.0", "1.752", "1675072811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10316", "0.0", "3.504", "1675072811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10316", "0.0", "1.752", "1675072811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10316", "0.0", "3.504", "1675072811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10317", "0.0", "1.752", "1675076411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10317", "0.0", "3.504", "1675076411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10317", "0.0", "1.752", "1675076411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10317", "0.0", "3.504", "1675076411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10318", "0.0", "1.752", "1675080023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10318", "0.0", "3.504", "1675080023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10318", "0.0", "1.752", "1675080023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10318", "0.0", "3.504", "1675080023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10319", "0.0", "1.752", "1675083611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10319", "0.0", "3.504", "1675083611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10319", "0.0", "1.752", "1675083611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10319", "0.0", "3.504", "1675083611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10320", "0.0", "1.752", "1675087211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10320", "0.0", "3.504", "1675087211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10320", "0.0", "1.752", "1675087211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10320", "0.0", "3.504", "1675087211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10321", "0.0", "1.752", "1675090811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10321", "0.0", "3.504", "1675090811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10321", "0.0", "1.752", "1675090811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10321", "0.0", "3.504", "1675090811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10322", "0.0", "1.752", "1675094435"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10322", "0.0", "3.504", "1675094435"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10322", "0.0", "1.752", "1675094435"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10322", "0.0", "3.504", "1675094435"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10323", "0.0", "1.752", "1675098023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10323", "0.0", "3.504", "1675098023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10323", "0.0", "1.752", "1675098023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10323", "0.0", "3.504", "1675098023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10324", "0.0", "1.752", "1675101659"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10324", "0.0", "3.504", "1675101659"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10324", "0.0", "1.752", "1675101659"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10324", "0.0", "3.504", "1675101659"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10325", "0.0", "1.752", "1675105211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10325", "0.0", "3.504", "1675105211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10325", "0.0", "1.752", "1675105211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10325", "0.0", "3.504", "1675105211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10326", "0.0", "1.752", "1675108811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10326", "0.0", "3.504", "1675108811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10326", "0.0", "1.752", "1675108811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10326", "0.0", "3.504", "1675108811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10327", "0.0", "1.752", "1675112411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10327", "0.0", "3.504", "1675112411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10327", "0.0", "1.752", "1675112411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10327", "0.0", "3.504", "1675112411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10328", "0.0", "1.752", "1675116011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10328", "0.0", "3.504", "1675116011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10328", "0.0", "1.752", "1675116011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10328", "0.0", "3.504", "1675116011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10329", "0.0", "1.752", "1675119611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10329", "0.0", "3.504", "1675119611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10329", "0.0", "1.752", "1675119611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10329", "0.0", "3.504", "1675119611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10330", "0.0", "1.752", "1675123211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10330", "0.0", "3.504", "1675123211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10330", "0.0", "1.752", "1675123211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10330", "0.0", "3.504", "1675123211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10331", "0.0", "1.752", "1675126811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10331", "0.0", "3.504", "1675126811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10331", "0.0", "1.752", "1675126811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10331", "0.0", "3.504", "1675126811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10332", "0.0", "1.752", "1675130411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10332", "0.0", "3.504", "1675130411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10332", "0.0", "1.752", "1675130411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10332", "0.0", "3.504", "1675130411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10333", "0.0", "1.752", "1675134011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10333", "0.0", "3.504", "1675134011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10333", "0.0", "1.752", "1675134011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10333", "0.0", "3.504", "1675134011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10334", "0.0", "1.752", "1675137611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10334", "0.0", "3.504", "1675137611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10334", "0.0", "1.752", "1675137611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10334", "0.0", "3.504", "1675137611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10335", "0.0", "1.752", "1675141211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10335", "0.0", "3.504", "1675141211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10335", "0.0", "1.752", "1675141211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10335", "0.0", "3.504", "1675141211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10336", "0.0", "1.752", "1675144811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10336", "0.0", "3.504", "1675144811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10336", "0.0", "1.752", "1675144811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10336", "0.0", "3.504", "1675144811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10337", "0.0", "1.752", "1675148411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10337", "0.0", "3.504", "1675148411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10337", "0.0", "1.752", "1675148411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10337", "0.0", "3.504", "1675148411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10338", "0.0", "1.752", "1675152023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10338", "0.0", "3.504", "1675152023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10338", "0.0", "1.752", "1675152023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10338", "0.0", "3.504", "1675152023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10339", "0.0", "1.752", "1675155611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10339", "0.0", "3.504", "1675155611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10339", "0.0", "1.752", "1675155611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10339", "0.0", "3.504", "1675155611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10340", "0.0", "1.752", "1675159211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10340", "0.0", "3.504", "1675159211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10340", "0.0", "1.752", "1675159211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10340", "0.0", "3.504", "1675159211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10341", "0.0", "1.752", "1675162811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10341", "0.0", "3.504", "1675162811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10341", "0.0", "1.752", "1675162811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10341", "0.0", "3.504", "1675162811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10342", "0.0", "1.752", "1675166411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10342", "0.0", "3.504", "1675166411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10342", "0.0", "1.752", "1675166411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10342", "0.0", "3.504", "1675166411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10343", "0.0", "1.752", "1675170011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10343", "0.0", "3.504", "1675170011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10343", "0.0", "1.752", "1675170011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10343", "0.0", "3.504", "1675170011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10344", "0.0", "1.752", "1675173611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10344", "0.0", "3.504", "1675173611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10344", "0.0", "1.752", "1675173611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10344", "0.0", "3.504", "1675173611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10345", "0.0", "1.752", "1675177211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10345", "0.0", "3.504", "1675177211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10345", "0.0", "1.752", "1675177211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10345", "0.0", "3.504", "1675177211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10346", "0.0", "1.752", "1675180835"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10346", "0.0", "3.504", "1675180835"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10346", "0.0", "1.752", "1675180835"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10346", "0.0", "3.504", "1675180835"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10347", "0.0", "1.752", "1675184411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10347", "0.0", "3.504", "1675184411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10347", "0.0", "1.752", "1675184411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10347", "0.0", "3.504", "1675184411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10348", "0.0", "1.752", "1675188011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10348", "0.0", "3.504", "1675188011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10348", "0.0", "1.752", "1675188011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10348", "0.0", "3.504", "1675188011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10349", "0.0", "1.752", "1675191623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10349", "0.0", "3.504", "1675191623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10349", "0.0", "1.752", "1675191623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10349", "0.0", "3.504", "1675191623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10350", "0.0", "1.752", "1675195223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10350", "0.0", "3.504", "1675195223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10350", "0.0", "1.752", "1675195223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10350", "0.0", "3.504", "1675195223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10351", "0.0", "1.752", "1675198811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10351", "0.0", "3.504", "1675198811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10351", "0.0", "1.752", "1675198811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10351", "0.0", "3.504", "1675198811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10352", "0.0", "1.752", "1675202411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10352", "0.0", "3.504", "1675202411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10352", "0.0", "1.752", "1675202411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10352", "0.0", "3.504", "1675202411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10353", "0.0", "1.752", "1675206011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10353", "0.0", "3.504", "1675206011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10353", "0.0", "1.752", "1675206011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10353", "0.0", "3.504", "1675206011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10354", "0.0", "1.752", "1675209611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10354", "0.0", "3.504", "1675209611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10354", "0.0", "1.752", "1675209611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10354", "0.0", "3.504", "1675209611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10355", "0.0", "1.752", "1675213211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10355", "0.0", "3.504", "1675213211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10355", "0.0", "1.752", "1675213211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10355", "0.0", "3.504", "1675213211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10356", "0.0", "1.752", "1675216811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10356", "0.0", "3.504", "1675216811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10356", "0.0", "1.752", "1675216811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10356", "0.0", "3.504", "1675216811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10357", "0.0", "1.752", "1675220411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10357", "0.0", "3.504", "1675220411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10357", "0.0", "1.752", "1675220411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10357", "0.0", "3.504", "1675220411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10358", "0.0", "1.752", "1675224023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10358", "0.0", "3.504", "1675224023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10358", "0.0", "1.752", "1675224023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10358", "0.0", "3.504", "1675224023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10359", "0.0", "1.752", "1675227611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10359", "0.0", "3.504", "1675227611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10359", "0.0", "1.752", "1675227611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10359", "0.0", "3.504", "1675227611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10360", "0.0", "1.752", "1675231211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10360", "0.0", "3.504", "1675231211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10360", "0.0", "1.752", "1675231211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10360", "0.0", "3.504", "1675231211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10361", "0.0", "1.752", "1675234811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10361", "0.0", "3.504", "1675234811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10361", "0.0", "1.752", "1675234811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10361", "0.0", "3.504", "1675234811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10362", "0.0", "1.752", "1675238411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10362", "0.0", "3.504", "1675238411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10362", "0.0", "1.752", "1675238411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10362", "0.0", "3.504", "1675238411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10363", "0.0", "1.752", "1675242011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10363", "0.0", "3.504", "1675242011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10363", "0.0", "1.752", "1675242011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10363", "0.0", "3.504", "1675242011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10364", "0.0", "1.752", "1675245611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10364", "0.0", "3.504", "1675245611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10364", "0.0", "1.752", "1675245611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10364", "0.0", "3.504", "1675245611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10365", "0.0", "1.752", "1675249211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10365", "0.0", "3.504", "1675249211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10365", "0.0", "1.752", "1675249211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10365", "0.0", "3.504", "1675249211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10366", "0.0", "1.752", "1675252811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10366", "0.0", "3.504", "1675252811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10366", "0.0", "1.752", "1675252811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10366", "0.0", "3.504", "1675252811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10367", "0.0", "1.752", "1675256411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10367", "0.0", "3.504", "1675256411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10367", "0.0", "1.752", "1675256411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10367", "0.0", "3.504", "1675256411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10368", "0.0", "1.752", "1675260011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10368", "0.0", "3.504", "1675260011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10368", "0.0", "1.752", "1675260011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10368", "0.0", "3.504", "1675260011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10369", "0.0", "1.752", "1675263635"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10369", "0.0", "3.504", "1675263635"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10369", "0.0", "1.752", "1675263635"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10369", "0.0", "3.504", "1675263635"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10370", "0.0", "1.752", "1675267211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10370", "0.0", "3.504", "1675267211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10370", "0.0", "1.752", "1675267211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10370", "0.0", "3.504", "1675267211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10371", "0.0", "1.752", "1675270811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10371", "0.0", "3.504", "1675270811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10371", "0.0", "1.752", "1675270811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10371", "0.0", "3.504", "1675270811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10372", "0.0", "1.752", "1675274411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10372", "0.0", "3.504", "1675274411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10372", "0.0", "1.752", "1675274411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10372", "0.0", "3.504", "1675274411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10373", "0.0", "1.752", "1675278035"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10373", "0.0", "3.504", "1675278035"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10373", "0.0", "1.752", "1675278035"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10373", "0.0", "3.504", "1675278035"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10374", "0.0", "1.752", "1675281611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10374", "0.0", "3.504", "1675281611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10374", "0.0", "1.752", "1675281611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10374", "0.0", "3.504", "1675281611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10375", "0.0", "1.752", "1675285211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10375", "0.0", "3.504", "1675285211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10375", "0.0", "1.752", "1675285211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10375", "0.0", "3.504", "1675285211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10376", "0.0", "1.752", "1675288811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10376", "0.0", "3.504", "1675288811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10376", "0.0", "1.752", "1675288811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10376", "0.0", "3.504", "1675288811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10377", "0.0", "1.752", "1675292411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10377", "0.0", "3.504", "1675292411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10377", "0.0", "1.752", "1675292411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10377", "0.0", "3.504", "1675292411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10378", "0.0", "1.752", "1675296011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10378", "0.0", "3.504", "1675296011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10378", "0.0", "1.752", "1675296011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10378", "0.0", "3.504", "1675296011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10379", "0.0", "1.752", "1675299611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10379", "0.0", "3.504", "1675299611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10379", "0.0", "1.752", "1675299611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10379", "0.0", "3.504", "1675299611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10380", "0.0", "1.752", "1675303211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10380", "0.0", "3.504", "1675303211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10380", "0.0", "1.752", "1675303211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10380", "0.0", "3.504", "1675303211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10381", "0.0", "1.752", "1675306811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10381", "0.0", "3.504", "1675306811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10381", "0.0", "1.752", "1675306811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10381", "0.0", "3.504", "1675306811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10382", "0.0", "1.752", "1675310411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10382", "0.0", "3.504", "1675310411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10382", "0.0", "1.752", "1675310411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10382", "0.0", "3.504", "1675310411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10383", "0.0", "1.752", "1675314011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10383", "0.0", "3.504", "1675314011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10383", "0.0", "1.752", "1675314011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10383", "0.0", "3.504", "1675314011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10384", "0.0", "1.752", "1675317611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10384", "0.0", "3.504", "1675317611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10384", "0.0", "1.752", "1675317611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10384", "0.0", "3.504", "1675317611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10385", "0.0", "1.752", "1675321211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10385", "0.0", "3.504", "1675321211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10385", "0.0", "1.752", "1675321211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10385", "0.0", "3.504", "1675321211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10386", "0.0", "1.752", "1675324811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10386", "0.0", "3.504", "1675324811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10386", "0.0", "1.752", "1675324811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10386", "0.0", "3.504", "1675324811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10387", "0.0", "1.752", "1675328411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10387", "0.0", "3.504", "1675328411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10387", "0.0", "1.752", "1675328411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10387", "0.0", "3.504", "1675328411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10388", "0.0", "1.752", "1675332011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10388", "0.0", "3.504", "1675332011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10388", "0.0", "1.752", "1675332011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10388", "0.0", "3.504", "1675332011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10389", "0.0", "1.752", "1675335611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10389", "0.0", "3.504", "1675335611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10389", "0.0", "1.752", "1675335611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10389", "0.0", "3.504", "1675335611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10390", "0.0", "1.752", "1675339223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10390", "0.0", "3.504", "1675339223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10390", "0.0", "1.752", "1675339223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10390", "0.0", "3.504", "1675339223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10391", "0.0", "1.752", "1675342823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10391", "0.0", "3.504", "1675342823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10391", "0.0", "1.752", "1675342823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10391", "0.0", "3.504", "1675342823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10392", "0.0", "1.752", "1675346411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10392", "0.0", "3.504", "1675346411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10392", "0.0", "1.752", "1675346411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10392", "0.0", "3.504", "1675346411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10393", "0.0", "1.752", "1675350011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10393", "0.0", "3.504", "1675350011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10393", "0.0", "1.752", "1675350011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10393", "0.0", "3.504", "1675350011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10394", "0.0", "1.752", "1675353623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10394", "0.0", "3.504", "1675353623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10394", "0.0", "1.752", "1675353623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10394", "0.0", "3.504", "1675353623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10395", "0.0", "1.752", "1675357211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10395", "0.0", "3.504", "1675357211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10395", "0.0", "1.752", "1675357211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10395", "0.0", "3.504", "1675357211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10396", "0.0", "1.752", "1675360811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10396", "0.0", "3.504", "1675360811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10396", "0.0", "1.752", "1675360811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10396", "0.0", "3.504", "1675360811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10397", "0.0", "1.752", "1675364411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10397", "0.0", "3.504", "1675364411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10397", "0.0", "1.752", "1675364411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10397", "0.0", "3.504", "1675364411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10398", "0.0", "1.752", "1675368011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10398", "0.0", "3.504", "1675368011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10398", "0.0", "1.752", "1675368011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10398", "0.0", "3.504", "1675368011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10399", "0.0", "1.752", "1675371611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10399", "0.0", "3.504", "1675371611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10399", "0.0", "1.752", "1675371611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10399", "0.0", "3.504", "1675371611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10400", "0.0", "1.752", "1675375211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10400", "0.0", "3.504", "1675375211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10400", "0.0", "1.752", "1675375211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10400", "0.0", "3.504", "1675375211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10401", "0.0", "1.752", "1675378811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10401", "0.0", "3.504", "1675378811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10401", "0.0", "1.752", "1675378811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10401", "0.0", "3.504", "1675378811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10402", "0.0", "1.752", "1675382411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10402", "0.0", "3.504", "1675382411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10402", "0.0", "1.752", "1675382411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10402", "0.0", "3.504", "1675382411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10403", "0.0", "1.752", "1675386011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10403", "0.0", "3.504", "1675386011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10403", "0.0", "1.752", "1675386011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10403", "0.0", "3.504", "1675386011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10404", "0.0", "1.752", "1675389611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10404", "0.0", "3.504", "1675389611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10404", "0.0", "1.752", "1675389611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10404", "0.0", "3.504", "1675389611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10405", "0.0", "1.752", "1675393211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10405", "0.0", "3.504", "1675393211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10405", "0.0", "1.752", "1675393211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10405", "0.0", "3.504", "1675393211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10406", "0.0", "1.752", "1675396811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10406", "0.0", "3.504", "1675396811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10406", "0.0", "1.752", "1675396811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10406", "0.0", "3.504", "1675396811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10407", "0.0", "1.752", "1675400411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10407", "0.0", "3.504", "1675400411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10407", "0.0", "1.752", "1675400411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10407", "0.0", "3.504", "1675400411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10408", "0.0", "1.752", "1675404011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10408", "0.0", "3.504", "1675404011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10408", "0.0", "1.752", "1675404011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10408", "0.0", "3.504", "1675404011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10409", "0.0", "1.752", "1675407611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10409", "0.0", "3.504", "1675407611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10409", "0.0", "1.752", "1675407611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10409", "0.0", "3.504", "1675407611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10410", "0.0", "1.752", "1675411211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10410", "0.0", "3.504", "1675411211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10410", "0.0", "1.752", "1675411211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10410", "0.0", "3.504", "1675411211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10411", "0.0", "1.752", "1675414811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10411", "0.0", "3.504", "1675414811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10411", "0.0", "1.752", "1675414811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10411", "0.0", "3.504", "1675414811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10412", "0.0", "1.752", "1675418411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10412", "0.0", "3.504", "1675418411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10412", "0.0", "1.752", "1675418411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10412", "0.0", "3.504", "1675418411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10413", "0.0", "1.752", "1675422011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10413", "0.0", "3.504", "1675422011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10413", "0.0", "1.752", "1675422011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10413", "0.0", "3.504", "1675422011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10414", "0.0", "1.752", "1675425611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10414", "0.0", "3.504", "1675425611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10414", "0.0", "1.752", "1675425611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10414", "0.0", "3.504", "1675425611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10415", "0.0", "1.752", "1675429211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10415", "0.0", "3.504", "1675429211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10415", "0.0", "1.752", "1675429211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10415", "0.0", "3.504", "1675429211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10416", "0.0", "1.752", "1675432811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10416", "0.0", "3.504", "1675432811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10416", "0.0", "1.752", "1675432811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10416", "0.0", "3.504", "1675432811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10417", "0.0", "1.752", "1675436423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10417", "0.0", "3.504", "1675436423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10417", "0.0", "1.752", "1675436423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10417", "0.0", "3.504", "1675436423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10418", "0.0", "1.752", "1675440035"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10418", "0.0", "3.504", "1675440035"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10418", "0.0", "1.752", "1675440035"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10418", "0.0", "3.504", "1675440035"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10419", "0.0", "1.752", "1675443611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10419", "0.0", "3.504", "1675443611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10419", "0.0", "1.752", "1675443611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10419", "0.0", "3.504", "1675443611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10420", "0.0", "1.752", "1675447223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10420", "0.0", "3.504", "1675447223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10420", "0.0", "1.752", "1675447223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10420", "0.0", "3.504", "1675447223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10421", "0.0", "1.752", "1675450811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10421", "0.0", "3.504", "1675450811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10421", "0.0", "1.752", "1675450811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10421", "0.0", "3.504", "1675450811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10422", "0.0", "1.752", "1675454411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10422", "0.0", "3.504", "1675454411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10422", "0.0", "1.752", "1675454411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10422", "0.0", "3.504", "1675454411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10423", "0.0", "1.752", "1675458011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10423", "0.0", "3.504", "1675458011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10423", "0.0", "1.752", "1675458011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10423", "0.0", "3.504", "1675458011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10424", "0.0", "1.752", "1675461611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10424", "0.0", "3.504", "1675461611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10424", "0.0", "1.752", "1675461611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10424", "0.0", "3.504", "1675461611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10425", "0.0", "1.752", "1675465211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10425", "0.0", "3.504", "1675465211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10425", "0.0", "1.752", "1675465211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10425", "0.0", "3.504", "1675465211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10426", "0.0", "1.752", "1675468811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10426", "0.0", "3.504", "1675468811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10426", "0.0", "1.752", "1675468811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10426", "0.0", "3.504", "1675468811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10427", "0.0", "1.752", "1675472411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10427", "0.0", "3.504", "1675472411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10427", "0.0", "1.752", "1675472411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10427", "0.0", "3.504", "1675472411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10428", "0.0", "1.752", "1675476011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10428", "0.0", "3.504", "1675476011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10428", "0.0", "1.752", "1675476011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10428", "0.0", "3.504", "1675476011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10429", "0.0", "1.752", "1675479611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10429", "0.0", "3.504", "1675479611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10429", "0.0", "1.752", "1675479611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10429", "0.0", "3.504", "1675479611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10430", "0.0", "1.752", "1675483211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10430", "0.0", "3.504", "1675483211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10430", "0.0", "1.752", "1675483211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10430", "0.0", "3.504", "1675483211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10431", "0.0", "1.752", "1675486811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10431", "0.0", "3.504", "1675486811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10431", "0.0", "1.752", "1675486811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10431", "0.0", "3.504", "1675486811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10432", "0.0", "1.752", "1675490411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10432", "0.0", "3.504", "1675490411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10432", "0.0", "1.752", "1675490411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10432", "0.0", "3.504", "1675490411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10433", "0.0", "1.752", "1675494011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10433", "0.0", "3.504", "1675494011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10433", "0.0", "1.752", "1675494011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10433", "0.0", "3.504", "1675494011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10434", "0.0", "1.752", "1675497611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10434", "0.0", "3.504", "1675497611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10434", "0.0", "1.752", "1675497611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10434", "0.0", "3.504", "1675497611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10435", "0.0", "1.752", "1675501211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10435", "0.0", "3.504", "1675501211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10435", "0.0", "1.752", "1675501211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10435", "0.0", "3.504", "1675501211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10436", "0.0", "1.752", "1675504811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10436", "0.0", "3.504", "1675504811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10436", "0.0", "1.752", "1675504811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10436", "0.0", "3.504", "1675504811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10437", "0.0", "1.752", "1675508411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10437", "0.0", "3.504", "1675508411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10437", "0.0", "1.752", "1675508411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10437", "0.0", "3.504", "1675508411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10438", "0.0", "1.752", "1675512011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10438", "0.0", "3.504", "1675512011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10438", "0.0", "1.752", "1675512011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10438", "0.0", "3.504", "1675512011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10439", "0.0", "1.752", "1675515611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10439", "0.0", "3.504", "1675515611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10439", "0.0", "1.752", "1675515611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10439", "0.0", "3.504", "1675515611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10440", "0.0", "1.752", "1675519211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10440", "0.0", "3.504", "1675519211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10440", "0.0", "1.752", "1675519211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10440", "0.0", "3.504", "1675519211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10441", "0.0", "1.752", "1675522811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10441", "0.0", "3.504", "1675522811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10441", "0.0", "1.752", "1675522811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10441", "0.0", "3.504", "1675522811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10442", "0.0", "1.752", "1675526411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10442", "0.0", "3.504", "1675526411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10442", "0.0", "1.752", "1675526411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10442", "0.0", "3.504", "1675526411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10443", "0.0", "1.752", "1675530023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10443", "0.0", "3.504", "1675530023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10443", "0.0", "1.752", "1675530023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10443", "0.0", "3.504", "1675530023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10444", "0.0", "1.752", "1675533611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10444", "0.0", "3.504", "1675533611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10444", "0.0", "1.752", "1675533611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10444", "0.0", "3.504", "1675533611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10445", "0.0", "1.752", "1675537211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10445", "0.0", "3.504", "1675537211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10445", "0.0", "1.752", "1675537211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10445", "0.0", "3.504", "1675537211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10446", "0.0", "1.752", "1675540811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10446", "0.0", "3.504", "1675540811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10446", "0.0", "1.752", "1675540811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10446", "0.0", "3.504", "1675540811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10447", "0.0", "1.752", "1675544411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10447", "0.0", "3.504", "1675544411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10447", "0.0", "1.752", "1675544411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10447", "0.0", "3.504", "1675544411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10448", "0.0", "1.752", "1675548011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10448", "0.0", "3.504", "1675548011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10448", "0.0", "1.752", "1675548011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10448", "0.0", "3.504", "1675548011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10449", "0.0", "1.752", "1675551611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10449", "0.0", "3.504", "1675551611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10449", "0.0", "1.752", "1675551611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10449", "0.0", "3.504", "1675551611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10450", "0.0", "1.752", "1675555223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10450", "0.0", "3.504", "1675555223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10450", "0.0", "1.752", "1675555223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10450", "0.0", "3.504", "1675555223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10451", "0.0", "1.752", "1675558811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10451", "0.0", "3.504", "1675558811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10451", "0.0", "1.752", "1675558811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10451", "0.0", "3.504", "1675558811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10452", "0.0", "1.752", "1675562411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10452", "0.0", "3.504", "1675562411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10452", "0.0", "1.752", "1675562411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10452", "0.0", "3.504", "1675562411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10453", "0.0", "1.752", "1675566023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10453", "0.0", "3.504", "1675566023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10453", "0.0", "1.752", "1675566023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10453", "0.0", "3.504", "1675566023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10454", "0.0", "1.752", "1675569611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10454", "0.0", "3.504", "1675569611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10454", "0.0", "1.752", "1675569611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10454", "0.0", "3.504", "1675569611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10455", "0.0", "1.752", "1675573211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10455", "0.0", "3.504", "1675573211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10455", "0.0", "1.752", "1675573211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10455", "0.0", "3.504", "1675573211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10456", "0.0", "1.752", "1675576811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10456", "0.0", "3.504", "1675576811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10456", "0.0", "1.752", "1675576811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10456", "0.0", "3.504", "1675576811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10457", "0.0", "1.752", "1675580411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10457", "0.0", "3.504", "1675580411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10457", "0.0", "1.752", "1675580411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10457", "0.0", "3.504", "1675580411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10458", "0.0", "1.752", "1675584011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10458", "0.0", "3.504", "1675584011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10458", "0.0", "1.752", "1675584011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10458", "0.0", "3.504", "1675584011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10459", "0.0", "1.752", "1675587611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10459", "0.0", "3.504", "1675587611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10459", "0.0", "1.752", "1675587611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10459", "0.0", "3.504", "1675587611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10460", "0.0", "1.752", "1675591211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10460", "0.0", "3.504", "1675591211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10460", "0.0", "1.752", "1675591211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10460", "0.0", "3.504", "1675591211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10461", "0.0", "1.752", "1675594811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10461", "0.0", "3.504", "1675594811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10461", "0.0", "1.752", "1675594811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10461", "0.0", "3.504", "1675594811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10462", "0.0", "1.752", "1675598411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10462", "0.0", "3.504", "1675598411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10462", "0.0", "1.752", "1675598411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10462", "0.0", "3.504", "1675598411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10463", "0.0", "1.752", "1675602011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10463", "0.0", "3.504", "1675602011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10463", "0.0", "1.752", "1675602011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10463", "0.0", "3.504", "1675602011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10464", "0.0", "1.752", "1675605611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10464", "0.0", "3.504", "1675605611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10464", "0.0", "1.752", "1675605611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10464", "0.0", "3.504", "1675605611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10465", "0.0", "1.752", "1675609211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10465", "0.0", "3.504", "1675609211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10465", "0.0", "1.752", "1675609211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10465", "0.0", "3.504", "1675609211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10466", "0.0", "1.752", "1675612811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10466", "0.0", "3.504", "1675612811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10466", "0.0", "1.752", "1675612811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10466", "0.0", "3.504", "1675612811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10467", "0.0", "1.752", "1675616411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10467", "0.0", "3.504", "1675616411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10467", "0.0", "1.752", "1675616411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10467", "0.0", "3.504", "1675616411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10468", "0.0", "1.752", "1675620011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10468", "0.0", "3.504", "1675620011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10468", "0.0", "1.752", "1675620011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10468", "0.0", "3.504", "1675620011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10469", "0.0", "1.752", "1675623611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10469", "0.0", "3.504", "1675623611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10469", "0.0", "1.752", "1675623611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10469", "0.0", "3.504", "1675623611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10470", "0.0", "1.752", "1675627211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10470", "0.0", "3.504", "1675627211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10470", "0.0", "1.752", "1675627211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10470", "0.0", "3.504", "1675627211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10471", "0.0", "1.752", "1675630823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10471", "0.0", "3.504", "1675630823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10471", "0.0", "1.752", "1675630823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10471", "0.0", "3.504", "1675630823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10472", "0.0", "1.752", "1675634411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10472", "0.0", "3.504", "1675634411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10472", "0.0", "1.752", "1675634411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10472", "0.0", "3.504", "1675634411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10473", "0.0", "1.752", "1675638011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10473", "0.0", "3.504", "1675638011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10473", "0.0", "1.752", "1675638011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10473", "0.0", "3.504", "1675638011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10474", "0.0", "1.752", "1675641611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10474", "0.0", "3.504", "1675641611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10474", "0.0", "1.752", "1675641611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10474", "0.0", "3.504", "1675641611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10475", "0.0", "1.752", "1675645211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10475", "0.0", "3.504", "1675645211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10475", "0.0", "1.752", "1675645211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10475", "0.0", "3.504", "1675645211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10476", "0.0", "1.752", "1675648811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10476", "0.0", "3.504", "1675648811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10476", "0.0", "1.752", "1675648811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10476", "0.0", "3.504", "1675648811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10477", "0.0", "1.752", "1675652411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10477", "0.0", "3.504", "1675652411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10477", "0.0", "1.752", "1675652411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10477", "0.0", "3.504", "1675652411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10478", "0.0", "1.752", "1675656011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10478", "0.0", "3.504", "1675656011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10478", "0.0", "1.752", "1675656011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10478", "0.0", "3.504", "1675656011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10479", "0.0", "1.752", "1675659611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10479", "0.0", "3.504", "1675659611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10479", "0.0", "1.752", "1675659611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10479", "0.0", "3.504", "1675659611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10480", "0.0", "1.752", "1675663211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10480", "0.0", "3.504", "1675663211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10480", "0.0", "1.752", "1675663211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10480", "0.0", "3.504", "1675663211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10481", "0.0", "1.752", "1675666811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10481", "0.0", "3.504", "1675666811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10481", "0.0", "1.752", "1675666811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10481", "0.0", "3.504", "1675666811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10482", "0.0", "1.752", "1675670411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10482", "0.0", "3.504", "1675670411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10482", "0.0", "1.752", "1675670411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10482", "0.0", "3.504", "1675670411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10483", "0.0", "1.752", "1675674011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10483", "0.0", "3.504", "1675674011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10483", "0.0", "1.752", "1675674011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10483", "0.0", "3.504", "1675674011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10484", "0.0", "1.752", "1675677611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10484", "0.0", "3.504", "1675677611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10484", "0.0", "1.752", "1675677611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10484", "0.0", "3.504", "1675677611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10485", "0.0", "1.752", "1675681211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10485", "0.0", "3.504", "1675681211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10485", "0.0", "1.752", "1675681211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10485", "0.0", "3.504", "1675681211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10486", "0.0", "1.752", "1675684811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10486", "0.0", "3.504", "1675684811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10486", "0.0", "1.752", "1675684811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10486", "0.0", "3.504", "1675684811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10487", "0.0", "1.752", "1675688411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10487", "0.0", "3.504", "1675688411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10487", "0.0", "1.752", "1675688411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10487", "0.0", "3.504", "1675688411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10488", "0.0", "1.752", "1675692011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10488", "0.0", "3.504", "1675692011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10488", "0.0", "1.752", "1675692011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10488", "0.0", "3.504", "1675692011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10489", "0.0", "1.752", "1675695611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10489", "0.0", "3.504", "1675695611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10489", "0.0", "1.752", "1675695611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10489", "0.0", "3.504", "1675695611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10490", "0.0", "1.752", "1675699235"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10490", "0.0", "3.504", "1675699235"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10490", "0.0", "1.752", "1675699235"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10490", "0.0", "3.504", "1675699235"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10491", "0.0", "1.752", "1675702811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10491", "0.0", "3.504", "1675702811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10491", "0.0", "1.752", "1675702811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10491", "0.0", "3.504", "1675702811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10492", "0.0", "1.752", "1675706411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10492", "0.0", "3.504", "1675706411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10492", "0.0", "1.752", "1675706411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10492", "0.0", "3.504", "1675706411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10493", "0.0", "1.752", "1675710011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10493", "0.0", "3.504", "1675710011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10493", "0.0", "1.752", "1675710011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10493", "0.0", "3.504", "1675710011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10494", "0.0", "1.752", "1675713611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10494", "0.0", "3.504", "1675713611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10494", "0.0", "1.752", "1675713611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10494", "0.0", "3.504", "1675713611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10495", "0.0", "1.752", "1675717211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10495", "0.0", "3.504", "1675717211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10495", "0.0", "1.752", "1675717211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10495", "0.0", "3.504", "1675717211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10496", "0.0", "1.752", "1675720811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10496", "0.0", "3.504", "1675720811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10496", "0.0", "1.752", "1675720811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10496", "0.0", "3.504", "1675720811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10497", "0.0", "1.752", "1675724423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10497", "0.0", "3.504", "1675724423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10497", "0.0", "1.752", "1675724423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10497", "0.0", "3.504", "1675724423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10498", "0.0", "1.752", "1675728011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10498", "0.0", "3.504", "1675728011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10498", "0.0", "1.752", "1675728011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10498", "0.0", "3.504", "1675728011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10499", "0.0", "1.752", "1675731611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10499", "0.0", "3.504", "1675731611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10499", "0.0", "1.752", "1675731611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10499", "0.0", "3.504", "1675731611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10500", "0.0", "1.752", "1675735211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10500", "0.0", "3.504", "1675735211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10500", "0.0", "1.752", "1675735211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10500", "0.0", "3.504", "1675735211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10501", "0.0", "1.752", "1675738811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10501", "0.0", "3.504", "1675738811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10501", "0.0", "1.752", "1675738811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10501", "0.0", "3.504", "1675738811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10502", "0.0", "1.752", "1675742423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10502", "0.0", "3.504", "1675742423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10502", "0.0", "1.752", "1675742423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10502", "0.0", "3.504", "1675742423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10503", "0.0", "1.752", "1675746011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10503", "0.0", "3.504", "1675746011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10503", "0.0", "1.752", "1675746011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10503", "0.0", "3.504", "1675746011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10504", "0.0", "1.752", "1675749611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10504", "0.0", "3.504", "1675749611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10504", "0.0", "1.752", "1675749611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10504", "0.0", "3.504", "1675749611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10505", "0.0", "1.752", "1675753211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10505", "0.0", "3.504", "1675753211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10505", "0.0", "1.752", "1675753211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10505", "0.0", "3.504", "1675753211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10506", "0.0", "1.752", "1675756811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10506", "0.0", "3.504", "1675756811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10506", "0.0", "1.752", "1675756811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10506", "0.0", "3.504", "1675756811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10507", "0.0", "1.752", "1675760411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10507", "0.0", "3.504", "1675760411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10507", "0.0", "1.752", "1675760411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10507", "0.0", "3.504", "1675760411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10508", "0.0", "1.752", "1675764011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10508", "0.0", "3.504", "1675764011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10508", "0.0", "1.752", "1675764011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10508", "0.0", "3.504", "1675764011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10509", "0.0", "1.752", "1675767611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10509", "0.0", "3.504", "1675767611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10509", "0.0", "1.752", "1675767611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10509", "0.0", "3.504", "1675767611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10510", "0.0", "1.752", "1675771211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10510", "0.0", "3.504", "1675771211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10510", "0.0", "1.752", "1675771211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10510", "0.0", "3.504", "1675771211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10511", "0.0", "1.752", "1675774811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10511", "0.0", "3.504", "1675774811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10511", "0.0", "1.752", "1675774811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10511", "0.0", "3.504", "1675774811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10512", "0.0", "1.752", "1675778411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10512", "0.0", "3.504", "1675778411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10512", "0.0", "1.752", "1675778411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10512", "0.0", "3.504", "1675778411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10513", "0.0", "1.752", "1675782011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10513", "0.0", "3.504", "1675782011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10513", "0.0", "1.752", "1675782011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10513", "0.0", "3.504", "1675782011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10514", "0.0", "1.752", "1675785611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10514", "0.0", "3.504", "1675785611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10514", "0.0", "1.752", "1675785611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10514", "0.0", "3.504", "1675785611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10515", "0.0", "1.752", "1675789211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10515", "0.0", "3.504", "1675789211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10515", "0.0", "1.752", "1675789211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10515", "0.0", "3.504", "1675789211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10516", "0.0", "1.752", "1675792811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10516", "0.0", "3.504", "1675792811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10516", "0.0", "1.752", "1675792811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10516", "0.0", "3.504", "1675792811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10517", "0.0", "1.752", "1675796435"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10517", "0.0", "3.504", "1675796435"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10517", "0.0", "1.752", "1675796435"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10517", "0.0", "3.504", "1675796435"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10518", "0.0", "1.752", "1675800011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10518", "0.0", "3.504", "1675800011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10518", "0.0", "1.752", "1675800011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10518", "0.0", "3.504", "1675800011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10519", "0.0", "1.752", "1675803611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10519", "0.0", "3.504", "1675803611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10519", "0.0", "1.752", "1675803611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10519", "0.0", "3.504", "1675803611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10520", "0.0", "1.752", "1675807223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10520", "0.0", "3.504", "1675807223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10520", "0.0", "1.752", "1675807223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10520", "0.0", "3.504", "1675807223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10521", "0.0", "1.752", "1675810811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10521", "0.0", "3.504", "1675810811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10521", "0.0", "1.752", "1675810811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10521", "0.0", "3.504", "1675810811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10522", "0.0", "1.752", "1675814411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10522", "0.0", "3.504", "1675814411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10522", "0.0", "1.752", "1675814411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10522", "0.0", "3.504", "1675814411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10523", "0.0", "1.752", "1675818023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10523", "0.0", "3.504", "1675818023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10523", "0.0", "1.752", "1675818023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10523", "0.0", "3.504", "1675818023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10524", "0.0", "1.752", "1675821611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10524", "0.0", "3.504", "1675821611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10524", "0.0", "1.752", "1675821611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10524", "0.0", "3.504", "1675821611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10525", "0.0", "1.752", "1675825211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10525", "0.0", "3.504", "1675825211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10525", "0.0", "1.752", "1675825211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10525", "0.0", "3.504", "1675825211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10526", "0.0", "1.752", "1675828811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10526", "0.0", "3.504", "1675828811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10526", "0.0", "1.752", "1675828811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10526", "0.0", "3.504", "1675828811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10527", "0.0", "1.752", "1675832411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10527", "0.0", "3.504", "1675832411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10527", "0.0", "1.752", "1675832411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10527", "0.0", "3.504", "1675832411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10528", "0.0", "1.752", "1675836011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10528", "0.0", "3.504", "1675836011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10528", "0.0", "1.752", "1675836011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10528", "0.0", "3.504", "1675836011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10529", "0.0", "1.752", "1675839611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10529", "0.0", "3.504", "1675839611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10529", "0.0", "1.752", "1675839611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10529", "0.0", "3.504", "1675839611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10530", "0.0", "1.752", "1675843211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10530", "0.0", "3.504", "1675843211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10530", "0.0", "1.752", "1675843211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10530", "0.0", "3.504", "1675843211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10531", "0.0", "1.752", "1675846811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10531", "0.0", "3.504", "1675846811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10531", "0.0", "1.752", "1675846811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10531", "0.0", "3.504", "1675846811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10532", "0.0", "1.752", "1675850411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10532", "0.0", "3.504", "1675850411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10532", "0.0", "1.752", "1675850411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10532", "0.0", "3.504", "1675850411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10533", "0.0", "1.752", "1675854011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10533", "0.0", "3.504", "1675854011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10533", "0.0", "1.752", "1675854011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10533", "0.0", "3.504", "1675854011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10534", "0.0", "1.752", "1675857611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10534", "0.0", "3.504", "1675857611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10534", "0.0", "1.752", "1675857611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10534", "0.0", "3.504", "1675857611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10535", "0.0", "1.752", "1675861211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10535", "0.0", "3.504", "1675861211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10535", "0.0", "1.752", "1675861211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10535", "0.0", "3.504", "1675861211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10536", "0.0", "1.752", "1675864811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10536", "0.0", "3.504", "1675864811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10536", "0.0", "1.752", "1675864811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10536", "0.0", "3.504", "1675864811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10537", "0.0", "1.752", "1675868411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10537", "0.0", "3.504", "1675868411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10537", "0.0", "1.752", "1675868411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10537", "0.0", "3.504", "1675868411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10538", "0.0", "1.752", "1675872011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10538", "0.0", "3.504", "1675872011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10538", "0.0", "1.752", "1675872011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10538", "0.0", "3.504", "1675872011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10539", "0.0", "1.752", "1675875611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10539", "0.0", "3.504", "1675875611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10539", "0.0", "1.752", "1675875611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10539", "0.0", "3.504", "1675875611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10540", "0.0", "1.752", "1675879211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10540", "0.0", "3.504", "1675879211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10540", "0.0", "1.752", "1675879211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10540", "0.0", "3.504", "1675879211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10541", "0.0", "1.752", "1675882811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10541", "0.0", "3.504", "1675882811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10541", "0.0", "1.752", "1675882811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10541", "0.0", "3.504", "1675882811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10542", "0.0", "1.752", "1675886411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10542", "0.0", "3.504", "1675886411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10542", "0.0", "1.752", "1675886411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10542", "0.0", "3.504", "1675886411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10543", "0.0", "1.752", "1675890011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10543", "0.0", "3.504", "1675890011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10543", "0.0", "1.752", "1675890011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10543", "0.0", "3.504", "1675890011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10544", "0.0", "1.752", "1675893611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10544", "0.0", "3.504", "1675893611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10544", "0.0", "1.752", "1675893611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10544", "0.0", "3.504", "1675893611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10545", "0.0", "1.752", "1675897211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10545", "0.0", "3.504", "1675897211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10545", "0.0", "1.752", "1675897211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10545", "0.0", "3.504", "1675897211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10546", "0.0", "1.752", "1675900823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10546", "0.0", "3.504", "1675900823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10546", "0.0", "1.752", "1675900823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10546", "0.0", "3.504", "1675900823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10547", "0.0", "1.752", "1675904411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10547", "0.0", "3.504", "1675904411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10547", "0.0", "1.752", "1675904411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10547", "0.0", "3.504", "1675904411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10548", "0.0", "1.752", "1675908023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10548", "0.0", "3.504", "1675908023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10548", "0.0", "1.752", "1675908023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10548", "0.0", "3.504", "1675908023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10549", "0.0", "1.752", "1675911611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10549", "0.0", "3.504", "1675911611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10549", "0.0", "1.752", "1675911611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10549", "0.0", "3.504", "1675911611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10550", "0.0", "1.752", "1675915211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10550", "0.0", "3.504", "1675915211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10550", "0.0", "1.752", "1675915211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10550", "0.0", "3.504", "1675915211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10551", "0.0", "1.752", "1675918823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10551", "0.0", "3.504", "1675918823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10551", "0.0", "1.752", "1675918823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10551", "0.0", "3.504", "1675918823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10552", "0.0", "1.752", "1675922411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10552", "0.0", "3.504", "1675922411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10552", "0.0", "1.752", "1675922411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10552", "0.0", "3.504", "1675922411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10553", "0.0", "1.752", "1675926011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10553", "0.0", "3.504", "1675926011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10553", "0.0", "1.752", "1675926011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10553", "0.0", "3.504", "1675926011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10554", "0.0", "1.752", "1675929611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10554", "0.0", "3.504", "1675929611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10554", "0.0", "1.752", "1675929611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10554", "0.0", "3.504", "1675929611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10555", "0.0", "1.752", "1675933211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10555", "0.0", "3.504", "1675933211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10555", "0.0", "1.752", "1675933211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10555", "0.0", "3.504", "1675933211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10556", "0.0", "1.752", "1675936811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10556", "0.0", "3.504", "1675936811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10556", "0.0", "1.752", "1675936811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10556", "0.0", "3.504", "1675936811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10557", "0.0", "1.752", "1675940411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10557", "0.0", "3.504", "1675940411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10557", "0.0", "1.752", "1675940411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10557", "0.0", "3.504", "1675940411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10558", "0.0", "1.752", "1675944023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10558", "0.0", "3.504", "1675944023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10558", "0.0", "1.752", "1675944023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10558", "0.0", "3.504", "1675944023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10559", "0.0", "1.752", "1675947611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10559", "0.0", "3.504", "1675947611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10559", "0.0", "1.752", "1675947611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10559", "0.0", "3.504", "1675947611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10560", "0.0", "1.752", "1675951211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10560", "0.0", "3.504", "1675951211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10560", "0.0", "1.752", "1675951211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10560", "0.0", "3.504", "1675951211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10561", "0.0", "1.752", "1675954823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10561", "0.0", "3.504", "1675954823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10561", "0.0", "1.752", "1675954823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10561", "0.0", "3.504", "1675954823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10562", "0.0", "1.752", "1675958423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10562", "0.0", "3.504", "1675958423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10562", "0.0", "1.752", "1675958423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10562", "0.0", "3.504", "1675958423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10563", "0.0", "1.752", "1675962011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10563", "0.0", "3.504", "1675962011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10563", "0.0", "1.752", "1675962011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10563", "0.0", "3.504", "1675962011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10564", "0.0", "1.752", "1675965611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10564", "0.0", "3.504", "1675965611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10564", "0.0", "1.752", "1675965611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10564", "0.0", "3.504", "1675965611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10565", "0.0", "1.752", "1675969211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10565", "0.0", "3.504", "1675969211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10565", "0.0", "1.752", "1675969211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10565", "0.0", "3.504", "1675969211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10566", "0.0", "1.752", "1675972811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10566", "0.0", "3.504", "1675972811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10566", "0.0", "1.752", "1675972811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10566", "0.0", "3.504", "1675972811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10567", "0.0", "1.752", "1675976411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10567", "0.0", "3.504", "1675976411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10567", "0.0", "1.752", "1675976411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10567", "0.0", "3.504", "1675976411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10568", "0.0", "1.752", "1675980011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10568", "0.0", "3.504", "1675980011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10568", "0.0", "1.752", "1675980011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10568", "0.0", "3.504", "1675980011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10569", "0.0", "1.752", "1675983611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10569", "0.0", "3.504", "1675983611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10569", "0.0", "1.752", "1675983611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10569", "0.0", "3.504", "1675983611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10570", "0.0", "1.752", "1675987211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10570", "0.0", "3.504", "1675987211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10570", "0.0", "1.752", "1675987211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10570", "0.0", "3.504", "1675987211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10571", "0.0", "1.752", "1675990823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10571", "0.0", "3.504", "1675990823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10571", "0.0", "1.752", "1675990823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10571", "0.0", "3.504", "1675990823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10572", "0.0", "1.752", "1675994411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10572", "0.0", "3.504", "1675994411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10572", "0.0", "1.752", "1675994411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10572", "0.0", "3.504", "1675994411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10573", "0.0", "1.752", "1675998011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10573", "0.0", "3.504", "1675998011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10573", "0.0", "1.752", "1675998011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10573", "0.0", "3.504", "1675998011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10574", "0.0", "1.752", "1676001635"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10574", "0.0", "3.504", "1676001635"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10574", "0.0", "1.752", "1676001635"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10574", "0.0", "3.504", "1676001635"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10575", "0.0", "1.752", "1676005211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10575", "0.0", "3.504", "1676005211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10575", "0.0", "1.752", "1676005211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10575", "0.0", "3.504", "1676005211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10576", "0.0", "1.752", "1676008811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10576", "0.0", "3.504", "1676008811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10576", "0.0", "1.752", "1676008811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10576", "0.0", "3.504", "1676008811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10577", "0.0", "1.752", "1676012411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10577", "0.0", "3.504", "1676012411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10577", "0.0", "1.752", "1676012411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10577", "0.0", "3.504", "1676012411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10578", "0.0", "1.752", "1676016011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10578", "0.0", "3.504", "1676016011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10578", "0.0", "1.752", "1676016011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10578", "0.0", "3.504", "1676016011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10579", "0.0", "1.752", "1676019611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10579", "0.0", "3.504", "1676019611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10579", "0.0", "1.752", "1676019611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10579", "0.0", "3.504", "1676019611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10580", "0.0", "1.752", "1676023211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10580", "0.0", "3.504", "1676023211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10580", "0.0", "1.752", "1676023211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10580", "0.0", "3.504", "1676023211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10581", "0.0", "1.752", "1676026823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10581", "0.0", "3.504", "1676026823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10581", "0.0", "1.752", "1676026823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10581", "0.0", "3.504", "1676026823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10582", "0.0", "1.752", "1676030411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10582", "0.0", "3.504", "1676030411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10582", "0.0", "1.752", "1676030411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10582", "0.0", "3.504", "1676030411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10583", "0.0", "1.752", "1676034011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10583", "0.0", "3.504", "1676034011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10583", "0.0", "1.752", "1676034011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10583", "0.0", "3.504", "1676034011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10584", "0.0", "1.752", "1676037611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10584", "0.0", "3.504", "1676037611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10584", "0.0", "1.752", "1676037611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10584", "0.0", "3.504", "1676037611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10585", "0.0", "1.752", "1676041211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10585", "0.0", "3.504", "1676041211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10585", "0.0", "1.752", "1676041211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10585", "0.0", "3.504", "1676041211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10586", "0.0", "1.752", "1676044847"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10586", "0.0", "3.504", "1676044847"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10586", "0.0", "1.752", "1676044847"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10586", "0.0", "3.504", "1676044847"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10587", "0.0", "1.752", "1676048411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10587", "0.0", "3.504", "1676048411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10587", "0.0", "1.752", "1676048411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10587", "0.0", "3.504", "1676048411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10588", "0.0", "1.752", "1676052011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10588", "0.0", "3.504", "1676052011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10588", "0.0", "1.752", "1676052011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10588", "0.0", "3.504", "1676052011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10589", "0.0", "1.752", "1676055611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10589", "0.0", "3.504", "1676055611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10589", "0.0", "1.752", "1676055611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10589", "0.0", "3.504", "1676055611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10590", "0.0", "1.752", "1676059211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10590", "0.0", "3.504", "1676059211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10590", "0.0", "1.752", "1676059211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10590", "0.0", "3.504", "1676059211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10591", "0.0", "1.752", "1676062811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10591", "0.0", "3.504", "1676062811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10591", "0.0", "1.752", "1676062811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10591", "0.0", "3.504", "1676062811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10592", "0.0", "1.752", "1676066423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10592", "0.0", "3.504", "1676066423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10592", "0.0", "1.752", "1676066423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10592", "0.0", "3.504", "1676066423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10593", "0.0", "1.752", "1676070011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10593", "0.0", "3.504", "1676070011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10593", "0.0", "1.752", "1676070011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10593", "0.0", "3.504", "1676070011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10594", "0.0", "1.752", "1676073611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10594", "0.0", "3.504", "1676073611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10594", "0.0", "1.752", "1676073611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10594", "0.0", "3.504", "1676073611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10595", "0.0", "1.752", "1676077211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10595", "0.0", "3.504", "1676077211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10595", "0.0", "1.752", "1676077211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10595", "0.0", "3.504", "1676077211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10596", "0.0", "1.752", "1676080811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10596", "0.0", "3.504", "1676080811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10596", "0.0", "1.752", "1676080811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10596", "0.0", "3.504", "1676080811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10597", "0.0", "1.752", "1676084411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10597", "0.0", "3.504", "1676084411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10597", "0.0", "1.752", "1676084411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10597", "0.0", "3.504", "1676084411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10598", "0.0", "1.752", "1676088011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10598", "0.0", "3.504", "1676088011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10598", "0.0", "1.752", "1676088011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10598", "0.0", "3.504", "1676088011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10599", "0.0", "1.752", "1676091611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10599", "0.0", "3.504", "1676091611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10599", "0.0", "1.752", "1676091611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10599", "0.0", "3.504", "1676091611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10600", "0.0", "1.752", "1676095211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10600", "0.0", "3.504", "1676095211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10600", "0.0", "1.752", "1676095211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10600", "0.0", "3.504", "1676095211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10601", "0.0", "1.752", "1676098811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10601", "0.0", "3.504", "1676098811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10601", "0.0", "1.752", "1676098811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10601", "0.0", "3.504", "1676098811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10602", "0.0", "1.752", "1676102411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10602", "0.0", "3.504", "1676102411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10602", "0.0", "1.752", "1676102411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10602", "0.0", "3.504", "1676102411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10603", "0.0", "1.752", "1676106011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10603", "0.0", "3.504", "1676106011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10603", "0.0", "1.752", "1676106011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10603", "0.0", "3.504", "1676106011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10604", "0.0", "1.752", "1676109611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10604", "0.0", "3.504", "1676109611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10604", "0.0", "1.752", "1676109611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10604", "0.0", "3.504", "1676109611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10605", "0.0", "1.752", "1676113211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10605", "0.0", "3.504", "1676113211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10605", "0.0", "1.752", "1676113211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10605", "0.0", "3.504", "1676113211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10606", "0.0", "1.752", "1676116811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10606", "0.0", "3.504", "1676116811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10606", "0.0", "1.752", "1676116811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10606", "0.0", "3.504", "1676116811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10607", "0.0", "1.752", "1676120411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10607", "0.0", "3.504", "1676120411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10607", "0.0", "1.752", "1676120411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10607", "0.0", "3.504", "1676120411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10608", "0.0", "1.752", "1676124011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10608", "0.0", "3.504", "1676124011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10608", "0.0", "1.752", "1676124011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10608", "0.0", "3.504", "1676124011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10609", "0.0", "1.752", "1676127623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10609", "0.0", "3.504", "1676127623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10609", "0.0", "1.752", "1676127623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10609", "0.0", "3.504", "1676127623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10610", "0.0", "1.752", "1676131211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10610", "0.0", "3.504", "1676131211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10610", "0.0", "1.752", "1676131211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10610", "0.0", "3.504", "1676131211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10611", "0.0", "1.752", "1676134811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10611", "0.0", "3.504", "1676134811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10611", "0.0", "1.752", "1676134811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10611", "0.0", "3.504", "1676134811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10612", "0.0", "1.752", "1676138411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10612", "0.0", "3.504", "1676138411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10612", "0.0", "1.752", "1676138411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10612", "0.0", "3.504", "1676138411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10613", "0.0", "1.752", "1676142023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10613", "0.0", "3.504", "1676142023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10613", "0.0", "1.752", "1676142023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10613", "0.0", "3.504", "1676142023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10614", "0.0", "1.752", "1676145611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10614", "0.0", "3.504", "1676145611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10614", "0.0", "1.752", "1676145611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10614", "0.0", "3.504", "1676145611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10615", "0.0", "1.752", "1676149211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10615", "0.0", "3.504", "1676149211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10615", "0.0", "1.752", "1676149211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10615", "0.0", "3.504", "1676149211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10616", "0.0", "1.752", "1676152811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10616", "0.0", "3.504", "1676152811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10616", "0.0", "1.752", "1676152811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10616", "0.0", "3.504", "1676152811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10617", "0.0", "1.752", "1676156411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10617", "0.0", "3.504", "1676156411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10617", "0.0", "1.752", "1676156411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10617", "0.0", "3.504", "1676156411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10618", "0.0", "1.752", "1676160011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10618", "0.0", "3.504", "1676160011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10618", "0.0", "1.752", "1676160011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10618", "0.0", "3.504", "1676160011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10619", "0.0", "1.752", "1676163611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10619", "0.0", "3.504", "1676163611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10619", "0.0", "1.752", "1676163611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10619", "0.0", "3.504", "1676163611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10620", "0.0", "1.752", "1676167211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10620", "0.0", "3.504", "1676167211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10620", "0.0", "1.752", "1676167211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10620", "0.0", "3.504", "1676167211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10621", "0.0", "1.752", "1676170823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10621", "0.0", "3.504", "1676170823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10621", "0.0", "1.752", "1676170823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10621", "0.0", "3.504", "1676170823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10622", "0.0", "1.752", "1676174411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10622", "0.0", "3.504", "1676174411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10622", "0.0", "1.752", "1676174411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10622", "0.0", "3.504", "1676174411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10623", "0.0", "1.752", "1676178011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10623", "0.0", "3.504", "1676178011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10623", "0.0", "1.752", "1676178011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10623", "0.0", "3.504", "1676178011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10624", "0.0", "1.752", "1676181611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10624", "0.0", "3.504", "1676181611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10624", "0.0", "1.752", "1676181611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10624", "0.0", "3.504", "1676181611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10625", "0.0", "1.752", "1676185211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10625", "0.0", "3.504", "1676185211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10625", "0.0", "1.752", "1676185211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10625", "0.0", "3.504", "1676185211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10626", "0.0", "1.752", "1676188811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10626", "0.0", "3.504", "1676188811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10626", "0.0", "1.752", "1676188811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10626", "0.0", "3.504", "1676188811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10627", "0.0", "1.752", "1676192411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10627", "0.0", "3.504", "1676192411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10627", "0.0", "1.752", "1676192411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10627", "0.0", "3.504", "1676192411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10628", "0.0", "1.752", "1676196011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10628", "0.0", "3.504", "1676196011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10628", "0.0", "1.752", "1676196011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10628", "0.0", "3.504", "1676196011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10629", "0.0", "1.752", "1676199611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10629", "0.0", "3.504", "1676199611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10629", "0.0", "1.752", "1676199611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10629", "0.0", "3.504", "1676199611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10630", "0.0", "1.752", "1676203211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10630", "0.0", "3.504", "1676203211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10630", "0.0", "1.752", "1676203211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10630", "0.0", "3.504", "1676203211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10631", "0.0", "1.752", "1676206811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10631", "0.0", "3.504", "1676206811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10631", "0.0", "1.752", "1676206811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10631", "0.0", "3.504", "1676206811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10632", "0.0", "1.752", "1676210411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10632", "0.0", "3.504", "1676210411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10632", "0.0", "1.752", "1676210411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10632", "0.0", "3.504", "1676210411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10633", "0.0", "1.752", "1676214011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10633", "0.0", "3.504", "1676214011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10633", "0.0", "1.752", "1676214011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10633", "0.0", "3.504", "1676214011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10634", "0.0", "1.752", "1676217611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10634", "0.0", "3.504", "1676217611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10634", "0.0", "1.752", "1676217611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10634", "0.0", "3.504", "1676217611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10635", "0.0", "1.752", "1676221211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10635", "0.0", "3.504", "1676221211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10635", "0.0", "1.752", "1676221211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10635", "0.0", "3.504", "1676221211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10636", "0.0", "1.752", "1676224823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10636", "0.0", "3.504", "1676224823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10636", "0.0", "1.752", "1676224823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10636", "0.0", "3.504", "1676224823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10637", "0.0", "1.752", "1676228411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10637", "0.0", "3.504", "1676228411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10637", "0.0", "1.752", "1676228411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10637", "0.0", "3.504", "1676228411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10638", "0.0", "1.752", "1676232011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10638", "0.0", "3.504", "1676232011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10638", "0.0", "1.752", "1676232011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10638", "0.0", "3.504", "1676232011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10639", "0.0", "1.752", "1676235611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10639", "0.0", "3.504", "1676235611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10639", "0.0", "1.752", "1676235611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10639", "0.0", "3.504", "1676235611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10640", "0.0", "1.752", "1676239211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10640", "0.0", "3.504", "1676239211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10640", "0.0", "1.752", "1676239211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10640", "0.0", "3.504", "1676239211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10641", "0.0", "1.752", "1676242811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10641", "0.0", "3.504", "1676242811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10641", "0.0", "1.752", "1676242811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10641", "0.0", "3.504", "1676242811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10642", "0.0", "1.752", "1676246435"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10642", "0.0", "3.504", "1676246435"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10642", "0.0", "1.752", "1676246435"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10642", "0.0", "3.504", "1676246435"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10643", "0.0", "1.752", "1676250011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10643", "0.0", "3.504", "1676250011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10643", "0.0", "1.752", "1676250011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10643", "0.0", "3.504", "1676250011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10644", "0.0", "1.752", "1676253611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10644", "0.0", "3.504", "1676253611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10644", "0.0", "1.752", "1676253611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10644", "0.0", "3.504", "1676253611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10645", "0.0", "1.752", "1676257211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10645", "0.0", "3.504", "1676257211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10645", "0.0", "1.752", "1676257211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10645", "0.0", "3.504", "1676257211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10646", "0.0", "1.752", "1676260811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10646", "0.0", "3.504", "1676260811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10646", "0.0", "1.752", "1676260811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10646", "0.0", "3.504", "1676260811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10647", "0.0", "1.752", "1676264411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10647", "0.0", "3.504", "1676264411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10647", "0.0", "1.752", "1676264411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10647", "0.0", "3.504", "1676264411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10648", "0.0", "1.752", "1676268011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10648", "0.0", "3.504", "1676268011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10648", "0.0", "1.752", "1676268011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10648", "0.0", "3.504", "1676268011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10649", "0.0", "1.752", "1676271623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10649", "0.0", "3.504", "1676271623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10649", "0.0", "1.752", "1676271623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10649", "0.0", "3.504", "1676271623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10650", "0.0", "1.752", "1676275211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10650", "0.0", "3.504", "1676275211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10650", "0.0", "1.752", "1676275211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10650", "0.0", "3.504", "1676275211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10651", "0.0", "1.752", "1676278811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10651", "0.0", "3.504", "1676278811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10651", "0.0", "1.752", "1676278811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10651", "0.0", "3.504", "1676278811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10652", "0.0", "1.752", "1676282411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10652", "0.0", "3.504", "1676282411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10652", "0.0", "1.752", "1676282411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10652", "0.0", "3.504", "1676282411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10653", "0.0", "1.752", "1676286011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10653", "0.0", "3.504", "1676286011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10653", "0.0", "1.752", "1676286011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10653", "0.0", "3.504", "1676286011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10654", "0.0", "1.752", "1676289611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10654", "0.0", "3.504", "1676289611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10654", "0.0", "1.752", "1676289611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10654", "0.0", "3.504", "1676289611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10655", "0.0", "1.752", "1676293211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10655", "0.0", "3.504", "1676293211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10655", "0.0", "1.752", "1676293211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10655", "0.0", "3.504", "1676293211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10656", "0.0", "1.752", "1676296811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10656", "0.0", "3.504", "1676296811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10656", "0.0", "1.752", "1676296811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10656", "0.0", "3.504", "1676296811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10657", "0.0", "1.752", "1676300423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10657", "0.0", "3.504", "1676300423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10657", "0.0", "1.752", "1676300423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10657", "0.0", "3.504", "1676300423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10658", "0.0", "1.752", "1676304011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10658", "0.0", "3.504", "1676304011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10658", "0.0", "1.752", "1676304011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10658", "0.0", "3.504", "1676304011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10659", "0.0", "1.752", "1676307611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10659", "0.0", "3.504", "1676307611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10659", "0.0", "1.752", "1676307611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10659", "0.0", "3.504", "1676307611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10660", "0.0", "1.752", "1676311211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10660", "0.0", "3.504", "1676311211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10660", "0.0", "1.752", "1676311211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10660", "0.0", "3.504", "1676311211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10661", "0.0", "1.752", "1676314811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10661", "0.0", "3.504", "1676314811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10661", "0.0", "1.752", "1676314811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10661", "0.0", "3.504", "1676314811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10662", "0.0", "1.752", "1676318411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10662", "0.0", "3.504", "1676318411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10662", "0.0", "1.752", "1676318411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10662", "0.0", "3.504", "1676318411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10663", "0.0", "1.752", "1676322035"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10663", "0.0", "3.504", "1676322035"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10663", "0.0", "1.752", "1676322035"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10663", "0.0", "3.504", "1676322035"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10664", "0.0", "1.752", "1676325611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10664", "0.0", "3.504", "1676325611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10664", "0.0", "1.752", "1676325611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10664", "0.0", "3.504", "1676325611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10665", "0.0", "1.752", "1676329211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10665", "0.0", "3.504", "1676329211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10665", "0.0", "1.752", "1676329211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10665", "0.0", "3.504", "1676329211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10666", "0.0", "1.752", "1676332811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10666", "0.0", "3.504", "1676332811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10666", "0.0", "1.752", "1676332811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10666", "0.0", "3.504", "1676332811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10667", "0.0", "1.752", "1676336411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10667", "0.0", "3.504", "1676336411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10667", "0.0", "1.752", "1676336411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10667", "0.0", "3.504", "1676336411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10668", "0.0", "1.752", "1676340011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10668", "0.0", "3.504", "1676340011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10668", "0.0", "1.752", "1676340011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10668", "0.0", "3.504", "1676340011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10669", "0.0", "1.752", "1676343611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10669", "0.0", "3.504", "1676343611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10669", "0.0", "1.752", "1676343611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10669", "0.0", "3.504", "1676343611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10670", "0.0", "1.752", "1676347211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10670", "0.0", "3.504", "1676347211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10670", "0.0", "1.752", "1676347211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10670", "0.0", "3.504", "1676347211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10671", "0.0", "1.752", "1676350811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10671", "0.0", "3.504", "1676350811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10671", "0.0", "1.752", "1676350811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10671", "0.0", "3.504", "1676350811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10672", "0.0", "1.752", "1676354411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10672", "0.0", "3.504", "1676354411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10672", "0.0", "1.752", "1676354411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10672", "0.0", "3.504", "1676354411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10673", "0.0", "1.752", "1676358011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10673", "0.0", "3.504", "1676358011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10673", "0.0", "1.752", "1676358011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10673", "0.0", "3.504", "1676358011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10674", "0.0", "1.752", "1676361611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10674", "0.0", "3.504", "1676361611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10674", "0.0", "1.752", "1676361611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10674", "0.0", "3.504", "1676361611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10675", "0.0", "1.752", "1676365211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10675", "0.0", "3.504", "1676365211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10675", "0.0", "1.752", "1676365211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10675", "0.0", "3.504", "1676365211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10676", "0.0", "1.752", "1676368811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10676", "0.0", "3.504", "1676368811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10676", "0.0", "1.752", "1676368811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10676", "0.0", "3.504", "1676368811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10677", "0.0", "1.752", "1676372411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10677", "0.0", "3.504", "1676372411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10677", "0.0", "1.752", "1676372411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10677", "0.0", "3.504", "1676372411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10678", "0.0", "1.752", "1676376023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10678", "0.0", "3.504", "1676376023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10678", "0.0", "1.752", "1676376023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10678", "0.0", "3.504", "1676376023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10679", "0.0", "1.752", "1676379611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10679", "0.0", "3.504", "1676379611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10679", "0.0", "1.752", "1676379611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10679", "0.0", "3.504", "1676379611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10680", "0.0", "1.752", "1676383211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10680", "0.0", "3.504", "1676383211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10680", "0.0", "1.752", "1676383211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10680", "0.0", "3.504", "1676383211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10681", "0.0", "1.752", "1676386811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10681", "0.0", "3.504", "1676386811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10681", "0.0", "1.752", "1676386811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10681", "0.0", "3.504", "1676386811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10682", "0.0", "1.752", "1676390411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10682", "0.0", "3.504", "1676390411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10682", "0.0", "1.752", "1676390411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10682", "0.0", "3.504", "1676390411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10683", "0.0", "1.752", "1676394011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10683", "0.0", "3.504", "1676394011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10683", "0.0", "1.752", "1676394011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10683", "0.0", "3.504", "1676394011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10684", "0.0", "1.752", "1676397611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10684", "0.0", "3.504", "1676397611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10684", "0.0", "1.752", "1676397611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10684", "0.0", "3.504", "1676397611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10685", "0.0", "1.752", "1676401415"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10685", "0.0", "3.504", "1676401415"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10685", "0.0", "1.752", "1676401415"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10685", "0.0", "3.504", "1676401415"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10686", "0.0", "1.752", "1676404919"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10686", "0.0", "3.504", "1676404919"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10686", "0.0", "1.752", "1676404919"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10686", "0.0", "3.504", "1676404919"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10687", "0.0", "1.752", "1676408435"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10687", "0.0", "3.504", "1676408435"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10687", "0.0", "1.752", "1676408435"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10687", "0.0", "3.504", "1676408435"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10688", "0.0", "1.752", "1676412011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10688", "0.0", "3.504", "1676412011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10688", "0.0", "1.752", "1676412011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10688", "0.0", "3.504", "1676412011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10689", "0.0", "1.752", "1676415611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10689", "0.0", "3.504", "1676415611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10689", "0.0", "1.752", "1676415611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10689", "0.0", "3.504", "1676415611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10690", "0.0", "1.752", "1676419211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10690", "0.0", "3.504", "1676419211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10690", "0.0", "1.752", "1676419211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10690", "0.0", "3.504", "1676419211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10691", "0.0", "1.752", "1676422811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10691", "0.0", "3.504", "1676422811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10691", "0.0", "1.752", "1676422811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10691", "0.0", "3.504", "1676422811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10692", "0.0", "1.752", "1676426411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10692", "0.0", "3.504", "1676426411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10692", "0.0", "1.752", "1676426411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10692", "0.0", "3.504", "1676426411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10693", "0.0", "1.752", "1676430011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10693", "0.0", "3.504", "1676430011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10693", "0.0", "1.752", "1676430011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10693", "0.0", "3.504", "1676430011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10694", "0.0", "1.752", "1676433611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10694", "0.0", "3.504", "1676433611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10694", "0.0", "1.752", "1676433611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10694", "0.0", "3.504", "1676433611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10695", "0.0", "1.752", "1676437211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10695", "0.0", "3.504", "1676437211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10695", "0.0", "1.752", "1676437211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10695", "0.0", "3.504", "1676437211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10696", "0.0", "1.752", "1676440811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10696", "0.0", "3.504", "1676440811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10696", "0.0", "1.752", "1676440811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10696", "0.0", "3.504", "1676440811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10697", "0.0", "1.752", "1676444411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10697", "0.0", "3.504", "1676444411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10697", "0.0", "1.752", "1676444411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10697", "0.0", "3.504", "1676444411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10698", "0.0", "1.752", "1676448011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10698", "0.0", "3.504", "1676448011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10698", "0.0", "1.752", "1676448011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10698", "0.0", "3.504", "1676448011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10699", "0.0", "1.752", "1676451611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10699", "0.0", "3.504", "1676451611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10699", "0.0", "1.752", "1676451611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10699", "0.0", "3.504", "1676451611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10700", "0.0", "1.752", "1676455211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10700", "0.0", "3.504", "1676455211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10700", "0.0", "1.752", "1676455211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10700", "0.0", "3.504", "1676455211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10701", "0.0", "1.752", "1676458811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10701", "0.0", "3.504", "1676458811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10701", "0.0", "1.752", "1676458811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10701", "0.0", "3.504", "1676458811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10702", "0.0", "1.752", "1676462411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10702", "0.0", "3.504", "1676462411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10702", "0.0", "1.752", "1676462411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10702", "0.0", "3.504", "1676462411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10703", "0.0", "1.752", "1676466011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10703", "0.0", "3.504", "1676466011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10703", "0.0", "1.752", "1676466011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10703", "0.0", "3.504", "1676466011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10704", "0.0", "1.752", "1676469611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10704", "0.0", "3.504", "1676469611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10704", "0.0", "1.752", "1676469611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10704", "0.0", "3.504", "1676469611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10705", "0.0", "1.752", "1676473211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10705", "0.0", "3.504", "1676473211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10705", "0.0", "1.752", "1676473211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10705", "0.0", "3.504", "1676473211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10706", "0.0", "1.752", "1676476835"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10706", "0.0", "3.504", "1676476835"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10706", "0.0", "1.752", "1676476835"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10706", "0.0", "3.504", "1676476835"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10707", "0.0", "1.752", "1676480411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10707", "0.0", "3.504", "1676480411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10707", "0.0", "1.752", "1676480411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10707", "0.0", "3.504", "1676480411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10708", "0.0", "1.752", "1676484011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10708", "0.0", "3.504", "1676484011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10708", "0.0", "1.752", "1676484011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10708", "0.0", "3.504", "1676484011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10709", "0.0", "1.752", "1676487611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10709", "0.0", "3.504", "1676487611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10709", "0.0", "1.752", "1676487611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10709", "0.0", "3.504", "1676487611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10710", "0.0", "1.752", "1676491247"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10710", "0.0", "3.504", "1676491247"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10710", "0.0", "1.752", "1676491247"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10710", "0.0", "3.504", "1676491247"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10711", "0.0", "1.752", "1676494811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10711", "0.0", "3.504", "1676494811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10711", "0.0", "1.752", "1676494811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10711", "0.0", "3.504", "1676494811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10712", "0.0", "1.752", "1676498411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10712", "0.0", "3.504", "1676498411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10712", "0.0", "1.752", "1676498411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10712", "0.0", "3.504", "1676498411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10713", "0.0", "1.752", "1676502011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10713", "0.0", "3.504", "1676502011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10713", "0.0", "1.752", "1676502011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10713", "0.0", "3.504", "1676502011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10714", "0.0", "1.752", "1676505611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10714", "0.0", "3.504", "1676505611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10714", "0.0", "1.752", "1676505611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10714", "0.0", "3.504", "1676505611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10715", "0.0", "1.752", "1676509211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10715", "0.0", "3.504", "1676509211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10715", "0.0", "1.752", "1676509211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10715", "0.0", "3.504", "1676509211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10716", "0.0", "1.752", "1676512811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10716", "0.0", "3.504", "1676512811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10716", "0.0", "1.752", "1676512811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10716", "0.0", "3.504", "1676512811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10717", "0.0", "1.752", "1676516423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10717", "0.0", "3.504", "1676516423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10717", "0.0", "1.752", "1676516423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10717", "0.0", "3.504", "1676516423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10718", "0.0", "1.752", "1676520011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10718", "0.0", "3.504", "1676520011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10718", "0.0", "1.752", "1676520011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10718", "0.0", "3.504", "1676520011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10719", "0.0", "1.752", "1676523611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10719", "0.0", "3.504", "1676523611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10719", "0.0", "1.752", "1676523611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10719", "0.0", "3.504", "1676523611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10720", "0.0", "1.752", "1676527211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10720", "0.0", "3.504", "1676527211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10720", "0.0", "1.752", "1676527211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10720", "0.0", "3.504", "1676527211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10721", "0.0", "1.752", "1676530811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10721", "0.0", "3.504", "1676530811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10721", "0.0", "1.752", "1676530811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10721", "0.0", "3.504", "1676530811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10722", "0.0", "1.752", "1676534411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10722", "0.0", "3.504", "1676534411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10722", "0.0", "1.752", "1676534411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10722", "0.0", "3.504", "1676534411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10723", "0.0", "1.752", "1676538011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10723", "0.0", "3.504", "1676538011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10723", "0.0", "1.752", "1676538011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10723", "0.0", "3.504", "1676538011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10724", "0.0", "1.752", "1676541611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10724", "0.0", "3.504", "1676541611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10724", "0.0", "1.752", "1676541611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10724", "0.0", "3.504", "1676541611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10725", "0.0", "1.752", "1676545211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10725", "0.0", "3.504", "1676545211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10725", "0.0", "1.752", "1676545211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10725", "0.0", "3.504", "1676545211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10726", "0.0", "1.752", "1676548811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10726", "0.0", "3.504", "1676548811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10726", "0.0", "1.752", "1676548811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10726", "0.0", "3.504", "1676548811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10727", "0.0", "1.752", "1676552411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10727", "0.0", "3.504", "1676552411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10727", "0.0", "1.752", "1676552411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10727", "0.0", "3.504", "1676552411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10728", "0.0", "1.752", "1676556011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10728", "0.0", "3.504", "1676556011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10728", "0.0", "1.752", "1676556011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10728", "0.0", "3.504", "1676556011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10729", "0.0", "1.752", "1676559623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10729", "0.0", "3.504", "1676559623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10729", "0.0", "1.752", "1676559623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10729", "0.0", "3.504", "1676559623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10730", "0.0", "1.752", "1676563211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10730", "0.0", "3.504", "1676563211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10730", "0.0", "1.752", "1676563211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10730", "0.0", "3.504", "1676563211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10731", "0.0", "1.752", "1676566811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10731", "0.0", "3.504", "1676566811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10731", "0.0", "1.752", "1676566811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10731", "0.0", "3.504", "1676566811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10732", "0.0", "1.752", "1676570411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10732", "0.0", "3.504", "1676570411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10732", "0.0", "1.752", "1676570411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10732", "0.0", "3.504", "1676570411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10733", "0.0", "1.752", "1676574011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10733", "0.0", "3.504", "1676574011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10733", "0.0", "1.752", "1676574011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10733", "0.0", "3.504", "1676574011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10734", "0.0", "1.752", "1676577611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10734", "0.0", "3.504", "1676577611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10734", "0.0", "1.752", "1676577611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10734", "0.0", "3.504", "1676577611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10735", "0.0", "1.752", "1676581211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10735", "0.0", "3.504", "1676581211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10735", "0.0", "1.752", "1676581211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10735", "0.0", "3.504", "1676581211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10736", "0.0", "1.752", "1676584811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10736", "0.0", "3.504", "1676584811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10736", "0.0", "1.752", "1676584811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10736", "0.0", "3.504", "1676584811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10737", "0.0", "1.752", "1676588411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10737", "0.0", "3.504", "1676588411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10737", "0.0", "1.752", "1676588411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10737", "0.0", "3.504", "1676588411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10738", "0.0", "1.752", "1676592011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10738", "0.0", "3.504", "1676592011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10738", "0.0", "1.752", "1676592011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10738", "0.0", "3.504", "1676592011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10739", "0.0", "1.752", "1676595611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10739", "0.0", "3.504", "1676595611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10739", "0.0", "1.752", "1676595611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10739", "0.0", "3.504", "1676595611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10740", "0.0", "1.752", "1676599211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10740", "0.0", "3.504", "1676599211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10740", "0.0", "1.752", "1676599211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10740", "0.0", "3.504", "1676599211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10741", "0.0", "1.752", "1676602811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10741", "0.0", "3.504", "1676602811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10741", "0.0", "1.752", "1676602811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10741", "0.0", "3.504", "1676602811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10742", "0.0", "1.752", "1676606411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10742", "0.0", "3.504", "1676606411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10742", "0.0", "1.752", "1676606411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10742", "0.0", "3.504", "1676606411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10743", "0.0", "1.752", "1676610011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10743", "0.0", "3.504", "1676610011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10743", "0.0", "1.752", "1676610011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10743", "0.0", "3.504", "1676610011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10744", "0.0", "1.752", "1676613611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10744", "0.0", "3.504", "1676613611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10744", "0.0", "1.752", "1676613611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10744", "0.0", "3.504", "1676613611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10745", "0.0", "1.752", "1676617211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10745", "0.0", "3.504", "1676617211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10745", "0.0", "1.752", "1676617211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10745", "0.0", "3.504", "1676617211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10746", "0.0", "1.752", "1676620811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10746", "0.0", "3.504", "1676620811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10746", "0.0", "1.752", "1676620811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10746", "0.0", "3.504", "1676620811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10747", "0.0", "1.752", "1676624423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10747", "0.0", "3.504", "1676624423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10747", "0.0", "1.752", "1676624423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10747", "0.0", "3.504", "1676624423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10748", "0.0", "1.752", "1676628011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10748", "0.0", "3.504", "1676628011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10748", "0.0", "1.752", "1676628011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10748", "0.0", "3.504", "1676628011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10749", "0.0", "1.752", "1676631611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10749", "0.0", "3.504", "1676631611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10749", "0.0", "1.752", "1676631611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10749", "0.0", "3.504", "1676631611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10750", "0.0", "1.752", "1676635211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10750", "0.0", "3.504", "1676635211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10750", "0.0", "1.752", "1676635211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10750", "0.0", "3.504", "1676635211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10751", "0.0", "1.752", "1676638811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10751", "0.0", "3.504", "1676638811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10751", "0.0", "1.752", "1676638811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10751", "0.0", "3.504", "1676638811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10752", "0.0", "1.752", "1676642411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10752", "0.0", "3.504", "1676642411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10752", "0.0", "1.752", "1676642411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10752", "0.0", "3.504", "1676642411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10753", "0.0", "1.752", "1676646011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10753", "0.0", "3.504", "1676646011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10753", "0.0", "1.752", "1676646011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10753", "0.0", "3.504", "1676646011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10754", "0.0", "1.752", "1676649647"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10754", "0.0", "3.504", "1676649647"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10754", "0.0", "1.752", "1676649647"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10754", "0.0", "3.504", "1676649647"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10755", "0.0", "1.752", "1676653211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10755", "0.0", "3.504", "1676653211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10755", "0.0", "1.752", "1676653211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10755", "0.0", "3.504", "1676653211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10756", "0.0", "1.752", "1676656811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10756", "0.0", "3.504", "1676656811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10756", "0.0", "1.752", "1676656811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10756", "0.0", "3.504", "1676656811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10757", "0.0", "1.752", "1676660411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10757", "0.0", "3.504", "1676660411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10757", "0.0", "1.752", "1676660411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10757", "0.0", "3.504", "1676660411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10758", "0.0", "1.752", "1676664011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10758", "0.0", "3.504", "1676664011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10758", "0.0", "1.752", "1676664011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10758", "0.0", "3.504", "1676664011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10759", "0.0", "1.752", "1676667611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10759", "0.0", "3.504", "1676667611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10759", "0.0", "1.752", "1676667611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10759", "0.0", "3.504", "1676667611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10760", "0.0", "1.752", "1676671211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10760", "0.0", "3.504", "1676671211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10760", "0.0", "1.752", "1676671211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10760", "0.0", "3.504", "1676671211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10761", "0.0", "1.752", "1676674811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10761", "0.0", "3.504", "1676674811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10761", "0.0", "1.752", "1676674811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10761", "0.0", "3.504", "1676674811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10762", "0.0", "1.752", "1676678411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10762", "0.0", "3.504", "1676678411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10762", "0.0", "1.752", "1676678411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10762", "0.0", "3.504", "1676678411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10763", "0.0", "1.752", "1676682011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10763", "0.0", "3.504", "1676682011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10763", "0.0", "1.752", "1676682011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10763", "0.0", "3.504", "1676682011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10764", "0.0", "1.752", "1676685611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10764", "0.0", "3.504", "1676685611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10764", "0.0", "1.752", "1676685611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10764", "0.0", "3.504", "1676685611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10765", "0.0", "1.752", "1676689211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10765", "0.0", "3.504", "1676689211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10765", "0.0", "1.752", "1676689211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10765", "0.0", "3.504", "1676689211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10766", "0.0", "1.752", "1676692811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10766", "0.0", "3.504", "1676692811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10766", "0.0", "1.752", "1676692811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10766", "0.0", "3.504", "1676692811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10767", "0.0", "1.752", "1676696411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10767", "0.0", "3.504", "1676696411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10767", "0.0", "1.752", "1676696411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10767", "0.0", "3.504", "1676696411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10768", "0.0", "1.752", "1676700011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10768", "0.0", "3.504", "1676700011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10768", "0.0", "1.752", "1676700011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10768", "0.0", "3.504", "1676700011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10769", "0.0", "1.752", "1676703611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10769", "0.0", "3.504", "1676703611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10769", "0.0", "1.752", "1676703611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10769", "0.0", "3.504", "1676703611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10770", "0.0", "1.752", "1676707211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10770", "0.0", "3.504", "1676707211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10770", "0.0", "1.752", "1676707211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10770", "0.0", "3.504", "1676707211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10771", "0.0", "1.752", "1676710811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10771", "0.0", "3.504", "1676710811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10771", "0.0", "1.752", "1676710811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10771", "0.0", "3.504", "1676710811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10772", "0.0", "1.752", "1676714435"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10772", "0.0", "3.504", "1676714435"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10772", "0.0", "1.752", "1676714435"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10772", "0.0", "3.504", "1676714435"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10773", "0.0", "1.752", "1676718011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10773", "0.0", "3.504", "1676718011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10773", "0.0", "1.752", "1676718011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10773", "0.0", "3.504", "1676718011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10774", "0.0", "1.752", "1676721611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10774", "0.0", "3.504", "1676721611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10774", "0.0", "1.752", "1676721611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10774", "0.0", "3.504", "1676721611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10775", "0.0", "1.752", "1676725211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10775", "0.0", "3.504", "1676725211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10775", "0.0", "1.752", "1676725211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10775", "0.0", "3.504", "1676725211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10776", "0.0", "1.752", "1676728811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10776", "0.0", "3.504", "1676728811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10776", "0.0", "1.752", "1676728811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10776", "0.0", "3.504", "1676728811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10777", "0.0", "1.752", "1676732411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10777", "0.0", "3.504", "1676732411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10777", "0.0", "1.752", "1676732411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10777", "0.0", "3.504", "1676732411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10778", "0.0", "1.752", "1676736011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10778", "0.0", "3.504", "1676736011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10778", "0.0", "1.752", "1676736011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10778", "0.0", "3.504", "1676736011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10779", "0.0", "1.752", "1676739611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10779", "0.0", "3.504", "1676739611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10779", "0.0", "1.752", "1676739611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10779", "0.0", "3.504", "1676739611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10780", "0.0", "1.752", "1676743211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10780", "0.0", "3.504", "1676743211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10780", "0.0", "1.752", "1676743211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10780", "0.0", "3.504", "1676743211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10781", "0.0", "1.752", "1676746811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10781", "0.0", "3.504", "1676746811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10781", "0.0", "1.752", "1676746811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10781", "0.0", "3.504", "1676746811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10782", "0.0", "1.752", "1676750411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10782", "0.0", "3.504", "1676750411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10782", "0.0", "1.752", "1676750411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10782", "0.0", "3.504", "1676750411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10783", "0.0", "1.752", "1676754011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10783", "0.0", "3.504", "1676754011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10783", "0.0", "1.752", "1676754011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10783", "0.0", "3.504", "1676754011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10784", "0.0", "1.752", "1676757611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10784", "0.0", "3.504", "1676757611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10784", "0.0", "1.752", "1676757611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10784", "0.0", "3.504", "1676757611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10785", "0.0", "1.752", "1676761211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10785", "0.0", "3.504", "1676761211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10785", "0.0", "1.752", "1676761211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10785", "0.0", "3.504", "1676761211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10786", "0.0", "1.752", "1676764811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10786", "0.0", "3.504", "1676764811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10786", "0.0", "1.752", "1676764811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10786", "0.0", "3.504", "1676764811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10787", "0.0", "1.752", "1676768411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10787", "0.0", "3.504", "1676768411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10787", "0.0", "1.752", "1676768411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10787", "0.0", "3.504", "1676768411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10788", "0.0", "1.752", "1676772011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10788", "0.0", "3.504", "1676772011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10788", "0.0", "1.752", "1676772011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10788", "0.0", "3.504", "1676772011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10789", "0.0", "1.752", "1676775611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10789", "0.0", "3.504", "1676775611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10789", "0.0", "1.752", "1676775611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10789", "0.0", "3.504", "1676775611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10790", "0.0", "1.752", "1676779211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10790", "0.0", "3.504", "1676779211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10790", "0.0", "1.752", "1676779211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10790", "0.0", "3.504", "1676779211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10791", "0.0", "1.752", "1676782823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10791", "0.0", "3.504", "1676782823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10791", "0.0", "1.752", "1676782823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10791", "0.0", "3.504", "1676782823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10792", "0.0", "1.752", "1676786411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10792", "0.0", "3.504", "1676786411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10792", "0.0", "1.752", "1676786411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10792", "0.0", "3.504", "1676786411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10793", "0.0", "1.752", "1676790011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10793", "0.0", "3.504", "1676790011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10793", "0.0", "1.752", "1676790011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10793", "0.0", "3.504", "1676790011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10794", "0.0", "1.752", "1676793611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10794", "0.0", "3.504", "1676793611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10794", "0.0", "1.752", "1676793611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10794", "0.0", "3.504", "1676793611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10795", "0.0", "1.752", "1676797235"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10795", "0.0", "3.504", "1676797235"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10795", "0.0", "1.752", "1676797235"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10795", "0.0", "3.504", "1676797235"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10796", "0.0", "1.752", "1676800811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10796", "0.0", "3.504", "1676800811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10796", "0.0", "1.752", "1676800811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10796", "0.0", "3.504", "1676800811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10797", "0.0", "1.752", "1676804411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10797", "0.0", "3.504", "1676804411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10797", "0.0", "1.752", "1676804411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10797", "0.0", "3.504", "1676804411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10798", "0.0", "1.752", "1676808011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10798", "0.0", "3.504", "1676808011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10798", "0.0", "1.752", "1676808011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10798", "0.0", "3.504", "1676808011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10799", "0.0", "1.752", "1676811611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10799", "0.0", "3.504", "1676811611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10799", "0.0", "1.752", "1676811611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10799", "0.0", "3.504", "1676811611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10800", "0.0", "1.752", "1676815211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10800", "0.0", "3.504", "1676815211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10800", "0.0", "1.752", "1676815211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10800", "0.0", "3.504", "1676815211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10801", "0.0", "1.752", "1676818811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10801", "0.0", "3.504", "1676818811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10801", "0.0", "1.752", "1676818811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10801", "0.0", "3.504", "1676818811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10802", "0.0", "1.752", "1676822411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10802", "0.0", "3.504", "1676822411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10802", "0.0", "1.752", "1676822411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10802", "0.0", "3.504", "1676822411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10803", "0.0", "1.752", "1676826011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10803", "0.0", "3.504", "1676826011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10803", "0.0", "1.752", "1676826011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10803", "0.0", "3.504", "1676826011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10804", "0.0", "1.752", "1676829623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10804", "0.0", "3.504", "1676829623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10804", "0.0", "1.752", "1676829623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10804", "0.0", "3.504", "1676829623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10805", "0.0", "1.752", "1676833211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10805", "0.0", "3.504", "1676833211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10805", "0.0", "1.752", "1676833211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10805", "0.0", "3.504", "1676833211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10806", "0.0", "1.752", "1676836811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10806", "0.0", "3.504", "1676836811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10806", "0.0", "1.752", "1676836811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10806", "0.0", "3.504", "1676836811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10807", "0.0", "1.752", "1676840411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10807", "0.0", "3.504", "1676840411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10807", "0.0", "1.752", "1676840411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10807", "0.0", "3.504", "1676840411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10808", "0.0", "1.752", "1676844011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10808", "0.0", "3.504", "1676844011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10808", "0.0", "1.752", "1676844011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10808", "0.0", "3.504", "1676844011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10809", "0.0", "1.752", "1676847611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10809", "0.0", "3.504", "1676847611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10809", "0.0", "1.752", "1676847611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10809", "0.0", "3.504", "1676847611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10810", "0.0", "1.752", "1676851211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10810", "0.0", "3.504", "1676851211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10810", "0.0", "1.752", "1676851211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10810", "0.0", "3.504", "1676851211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10811", "0.0", "1.752", "1676854811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10811", "0.0", "3.504", "1676854811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10811", "0.0", "1.752", "1676854811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10811", "0.0", "3.504", "1676854811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10812", "0.0", "1.752", "1676858411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10812", "0.0", "3.504", "1676858411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10812", "0.0", "1.752", "1676858411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10812", "0.0", "3.504", "1676858411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10813", "0.0", "1.752", "1676862023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10813", "0.0", "3.504", "1676862023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10813", "0.0", "1.752", "1676862023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10813", "0.0", "3.504", "1676862023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10814", "0.0", "1.752", "1676865611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10814", "0.0", "3.504", "1676865611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10814", "0.0", "1.752", "1676865611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10814", "0.0", "3.504", "1676865611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10815", "0.0", "1.752", "1676869223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10815", "0.0", "3.504", "1676869223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10815", "0.0", "1.752", "1676869223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10815", "0.0", "3.504", "1676869223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10816", "0.0", "1.752", "1676872811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10816", "0.0", "3.504", "1676872811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10816", "0.0", "1.752", "1676872811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10816", "0.0", "3.504", "1676872811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10817", "0.0", "1.752", "1676876411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10817", "0.0", "3.504", "1676876411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10817", "0.0", "1.752", "1676876411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10817", "0.0", "3.504", "1676876411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10818", "0.0", "1.752", "1676880011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10818", "0.0", "3.504", "1676880011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10818", "0.0", "1.752", "1676880011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10818", "0.0", "3.504", "1676880011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10819", "0.0", "1.752", "1676883611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10819", "0.0", "3.504", "1676883611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10819", "0.0", "1.752", "1676883611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10819", "0.0", "3.504", "1676883611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10820", "0.0", "1.752", "1676887223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10820", "0.0", "3.504", "1676887223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10820", "0.0", "1.752", "1676887223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10820", "0.0", "3.504", "1676887223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10821", "0.0", "1.752", "1676890811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10821", "0.0", "3.504", "1676890811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10821", "0.0", "1.752", "1676890811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10821", "0.0", "3.504", "1676890811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10822", "0.0", "1.752", "1676894423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10822", "0.0", "3.504", "1676894423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10822", "0.0", "1.752", "1676894423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10822", "0.0", "3.504", "1676894423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10823", "0.0", "1.752", "1676898011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10823", "0.0", "3.504", "1676898011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10823", "0.0", "1.752", "1676898011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10823", "0.0", "3.504", "1676898011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10824", "0.0", "1.752", "1676901611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10824", "0.0", "3.504", "1676901611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10824", "0.0", "1.752", "1676901611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10824", "0.0", "3.504", "1676901611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10825", "0.0", "1.752", "1676905271"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10825", "0.0", "3.504", "1676905271"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10825", "0.0", "1.752", "1676905271"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10825", "0.0", "3.504", "1676905271"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10826", "0.0", "1.752", "1676908859"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10826", "0.0", "3.504", "1676908859"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10826", "0.0", "1.752", "1676908859"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10826", "0.0", "3.504", "1676908859"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10827", "0.0", "1.752", "1676912411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10827", "0.0", "3.504", "1676912411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10827", "0.0", "1.752", "1676912411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10827", "0.0", "3.504", "1676912411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10828", "0.0", "1.752", "1676916011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10828", "0.0", "3.504", "1676916011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10828", "0.0", "1.752", "1676916011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10828", "0.0", "3.504", "1676916011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10829", "0.0", "1.752", "1676919623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10829", "0.0", "3.504", "1676919623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10829", "0.0", "1.752", "1676919623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10829", "0.0", "3.504", "1676919623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10830", "0.0", "1.752", "1676923211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10830", "0.0", "3.504", "1676923211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10830", "0.0", "1.752", "1676923211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10830", "0.0", "3.504", "1676923211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10831", "0.0", "1.752", "1676926811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10831", "0.0", "3.504", "1676926811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10831", "0.0", "1.752", "1676926811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10831", "0.0", "3.504", "1676926811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10832", "0.0", "1.752", "1676930411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10832", "0.0", "3.504", "1676930411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10832", "0.0", "1.752", "1676930411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10832", "0.0", "3.504", "1676930411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10833", "0.0", "1.752", "1676934023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10833", "0.0", "3.504", "1676934023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10833", "0.0", "1.752", "1676934023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10833", "0.0", "3.504", "1676934023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10834", "0.0", "1.752", "1676937611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10834", "0.0", "3.504", "1676937611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10834", "0.0", "1.752", "1676937611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10834", "0.0", "3.504", "1676937611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10835", "0.0", "1.752", "1676941211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10835", "0.0", "3.504", "1676941211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10835", "0.0", "1.752", "1676941211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10835", "0.0", "3.504", "1676941211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10836", "0.0", "1.752", "1676944811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10836", "0.0", "3.504", "1676944811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10836", "0.0", "1.752", "1676944811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10836", "0.0", "3.504", "1676944811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10837", "0.0", "1.752", "1676948411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10837", "0.0", "3.504", "1676948411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10837", "0.0", "1.752", "1676948411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10837", "0.0", "3.504", "1676948411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10838", "0.0", "1.752", "1676952011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10838", "0.0", "3.504", "1676952011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10838", "0.0", "1.752", "1676952011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10838", "0.0", "3.504", "1676952011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10839", "0.0", "1.752", "1676955611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10839", "0.0", "3.504", "1676955611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10839", "0.0", "1.752", "1676955611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10839", "0.0", "3.504", "1676955611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10840", "0.0", "1.752", "1676959211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10840", "0.0", "3.504", "1676959211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10840", "0.0", "1.752", "1676959211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10840", "0.0", "3.504", "1676959211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10841", "0.0", "1.752", "1676962811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10841", "0.0", "3.504", "1676962811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10841", "0.0", "1.752", "1676962811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10841", "0.0", "3.504", "1676962811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10842", "0.0", "1.752", "1676966411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10842", "0.0", "3.504", "1676966411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10842", "0.0", "1.752", "1676966411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10842", "0.0", "3.504", "1676966411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10843", "0.0", "1.752", "1676970023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10843", "0.0", "3.504", "1676970023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10843", "0.0", "1.752", "1676970023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10843", "0.0", "3.504", "1676970023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10844", "0.0", "1.752", "1676973611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10844", "0.0", "3.504", "1676973611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10844", "0.0", "1.752", "1676973611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10844", "0.0", "3.504", "1676973611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10845", "0.0", "1.752", "1676977211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10845", "0.0", "3.504", "1676977211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10845", "0.0", "1.752", "1676977211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10845", "0.0", "3.504", "1676977211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10846", "0.0", "1.752", "1676980823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10846", "0.0", "3.504", "1676980823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10846", "0.0", "1.752", "1676980823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10846", "0.0", "3.504", "1676980823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10847", "0.0", "1.752", "1676984411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10847", "0.0", "3.504", "1676984411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10847", "0.0", "1.752", "1676984411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10847", "0.0", "3.504", "1676984411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10848", "0.0", "1.752", "1676988011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10848", "0.0", "3.504", "1676988011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10848", "0.0", "1.752", "1676988011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10848", "0.0", "3.504", "1676988011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10849", "0.0", "1.752", "1676991611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10849", "0.0", "3.504", "1676991611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10849", "0.0", "1.752", "1676991611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10849", "0.0", "3.504", "1676991611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10850", "0.0", "1.752", "1676995211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10850", "0.0", "3.504", "1676995211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10850", "0.0", "1.752", "1676995211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10850", "0.0", "3.504", "1676995211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10851", "0.0", "1.752", "1676998811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10851", "0.0", "3.504", "1676998811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10851", "0.0", "1.752", "1676998811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10851", "0.0", "3.504", "1676998811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10852", "0.0", "1.752", "1677002435"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10852", "0.0", "3.504", "1677002435"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10852", "0.0", "1.752", "1677002435"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10852", "0.0", "3.504", "1677002435"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10853", "0.0", "1.752", "1677006011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10853", "0.0", "3.504", "1677006011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10853", "0.0", "1.752", "1677006011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10853", "0.0", "3.504", "1677006011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10854", "0.0", "1.752", "1677009611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10854", "0.0", "3.504", "1677009611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10854", "0.0", "1.752", "1677009611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10854", "0.0", "3.504", "1677009611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10855", "0.0", "1.752", "1677013211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10855", "0.0", "3.504", "1677013211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10855", "0.0", "1.752", "1677013211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10855", "0.0", "3.504", "1677013211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10856", "0.0", "1.752", "1677016811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10856", "0.0", "3.504", "1677016811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10856", "0.0", "1.752", "1677016811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10856", "0.0", "3.504", "1677016811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10857", "0.0", "1.752", "1677020423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10857", "0.0", "3.504", "1677020423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10857", "0.0", "1.752", "1677020423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10857", "0.0", "3.504", "1677020423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10858", "0.0", "1.752", "1677024023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10858", "0.0", "3.504", "1677024023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10858", "0.0", "1.752", "1677024023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10858", "0.0", "3.504", "1677024023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10859", "0.0", "1.752", "1677027611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10859", "0.0", "3.504", "1677027611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10859", "0.0", "1.752", "1677027611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10859", "0.0", "3.504", "1677027611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10860", "0.0", "1.752", "1677031223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10860", "0.0", "3.504", "1677031223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10860", "0.0", "1.752", "1677031223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10860", "0.0", "3.504", "1677031223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10861", "0.0", "1.752", "1677034811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10861", "0.0", "3.504", "1677034811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10861", "0.0", "1.752", "1677034811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10861", "0.0", "3.504", "1677034811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10862", "0.0", "1.752", "1677038411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10862", "0.0", "3.504", "1677038411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10862", "0.0", "1.752", "1677038411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10862", "0.0", "3.504", "1677038411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10863", "0.0", "1.752", "1677042011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10863", "0.0", "3.504", "1677042011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10863", "0.0", "1.752", "1677042011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10863", "0.0", "3.504", "1677042011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10864", "0.0", "1.752", "1677045611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10864", "0.0", "3.504", "1677045611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10864", "0.0", "1.752", "1677045611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10864", "0.0", "3.504", "1677045611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10865", "0.0", "1.752", "1677049211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10865", "0.0", "3.504", "1677049211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10865", "0.0", "1.752", "1677049211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10865", "0.0", "3.504", "1677049211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10866", "0.0", "1.752", "1677052811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10866", "0.0", "3.504", "1677052811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10866", "0.0", "1.752", "1677052811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10866", "0.0", "3.504", "1677052811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10867", "0.0", "1.752", "1677056411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10867", "0.0", "3.504", "1677056411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10867", "0.0", "1.752", "1677056411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10867", "0.0", "3.504", "1677056411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10868", "0.0", "1.752", "1677060011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10868", "0.0", "3.504", "1677060011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10868", "0.0", "1.752", "1677060011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10868", "0.0", "3.504", "1677060011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10869", "0.0", "1.752", "1677063611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10869", "0.0", "3.504", "1677063611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10869", "0.0", "1.752", "1677063611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10869", "0.0", "3.504", "1677063611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10870", "0.0", "1.752", "1677067223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10870", "0.0", "3.504", "1677067223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10870", "0.0", "1.752", "1677067223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10870", "0.0", "3.504", "1677067223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10871", "0.0", "1.752", "1677070811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10871", "0.0", "3.504", "1677070811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10871", "0.0", "1.752", "1677070811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10871", "0.0", "3.504", "1677070811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10872", "0.0", "1.752", "1677074411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10872", "0.0", "3.504", "1677074411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10872", "0.0", "1.752", "1677074411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10872", "0.0", "3.504", "1677074411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10873", "0.0", "1.752", "1677078047"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10873", "0.0", "3.504", "1677078047"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10873", "0.0", "1.752", "1677078047"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10873", "0.0", "3.504", "1677078047"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10874", "0.0", "1.752", "1677081611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10874", "0.0", "3.504", "1677081611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10874", "0.0", "1.752", "1677081611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10874", "0.0", "3.504", "1677081611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10875", "0.0", "1.752", "1677085211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10875", "0.0", "3.504", "1677085211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10875", "0.0", "1.752", "1677085211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10875", "0.0", "3.504", "1677085211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10876", "0.0", "1.752", "1677088811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10876", "0.0", "3.504", "1677088811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10876", "0.0", "1.752", "1677088811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10876", "0.0", "3.504", "1677088811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10877", "0.0", "1.752", "1677092411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10877", "0.0", "3.504", "1677092411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10877", "0.0", "1.752", "1677092411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10877", "0.0", "3.504", "1677092411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10878", "0.0", "1.752", "1677096011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10878", "0.0", "3.504", "1677096011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10878", "0.0", "1.752", "1677096011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10878", "0.0", "3.504", "1677096011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10879", "0.0", "1.752", "1677099611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10879", "0.0", "3.504", "1677099611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10879", "0.0", "1.752", "1677099611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10879", "0.0", "3.504", "1677099611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10880", "0.0", "1.752", "1677103211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10880", "0.0", "3.504", "1677103211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10880", "0.0", "1.752", "1677103211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10880", "0.0", "3.504", "1677103211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10881", "0.0", "1.752", "1677106811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10881", "0.0", "3.504", "1677106811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10881", "0.0", "1.752", "1677106811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10881", "0.0", "3.504", "1677106811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10882", "0.0", "1.752", "1677110411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10882", "0.0", "3.504", "1677110411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10882", "0.0", "1.752", "1677110411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10882", "0.0", "3.504", "1677110411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10883", "0.0", "1.752", "1677114011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10883", "0.0", "3.504", "1677114011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10883", "0.0", "1.752", "1677114011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10883", "0.0", "3.504", "1677114011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10884", "0.0", "1.752", "1677117611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10884", "0.0", "3.504", "1677117611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10884", "0.0", "1.752", "1677117611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10884", "0.0", "3.504", "1677117611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10885", "0.0", "1.752", "1677121211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10885", "0.0", "3.504", "1677121211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10885", "0.0", "1.752", "1677121211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10885", "0.0", "3.504", "1677121211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10886", "0.0", "1.752", "1677124811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10886", "0.0", "3.504", "1677124811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10886", "0.0", "1.752", "1677124811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10886", "0.0", "3.504", "1677124811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10887", "0.0", "1.752", "1677128411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10887", "0.0", "3.504", "1677128411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10887", "0.0", "1.752", "1677128411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10887", "0.0", "3.504", "1677128411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10888", "0.0", "1.752", "1677132011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10888", "0.0", "3.504", "1677132011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10888", "0.0", "1.752", "1677132011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10888", "0.0", "3.504", "1677132011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10889", "0.0", "1.752", "1677135611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10889", "0.0", "3.504", "1677135611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10889", "0.0", "1.752", "1677135611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10889", "0.0", "3.504", "1677135611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10890", "0.0", "1.752", "1677139211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10890", "0.0", "3.504", "1677139211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10890", "0.0", "1.752", "1677139211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10890", "0.0", "3.504", "1677139211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10891", "0.0", "1.752", "1677142811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10891", "0.0", "3.504", "1677142811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10891", "0.0", "1.752", "1677142811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10891", "0.0", "3.504", "1677142811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10892", "0.0", "1.752", "1677146411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10892", "0.0", "3.504", "1677146411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10892", "0.0", "1.752", "1677146411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10892", "0.0", "3.504", "1677146411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10893", "0.0", "1.752", "1677150011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10893", "0.0", "3.504", "1677150011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10893", "0.0", "1.752", "1677150011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10893", "0.0", "3.504", "1677150011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10894", "0.0", "1.752", "1677153611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10894", "0.0", "3.504", "1677153611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10894", "0.0", "1.752", "1677153611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10894", "0.0", "3.504", "1677153611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10895", "0.0", "1.752", "1677157211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10895", "0.0", "3.504", "1677157211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10895", "0.0", "1.752", "1677157211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10895", "0.0", "3.504", "1677157211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10896", "0.0", "1.752", "1677160811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10896", "0.0", "3.504", "1677160811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10896", "0.0", "1.752", "1677160811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10896", "0.0", "3.504", "1677160811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10897", "0.0", "1.752", "1677164411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10897", "0.0", "3.504", "1677164411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10897", "0.0", "1.752", "1677164411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10897", "0.0", "3.504", "1677164411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10898", "0.0", "1.752", "1677168035"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10898", "0.0", "3.504", "1677168035"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10898", "0.0", "1.752", "1677168035"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10898", "0.0", "3.504", "1677168035"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10899", "0.0", "1.752", "1677171611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10899", "0.0", "3.504", "1677171611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10899", "0.0", "1.752", "1677171611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10899", "0.0", "3.504", "1677171611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10900", "0.0", "1.752", "1677175211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10900", "0.0", "3.504", "1677175211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10900", "0.0", "1.752", "1677175211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10900", "0.0", "3.504", "1677175211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10901", "0.0", "1.752", "1677178811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10901", "0.0", "3.504", "1677178811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10901", "0.0", "1.752", "1677178811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10901", "0.0", "3.504", "1677178811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10902", "0.0", "1.752", "1677182411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10902", "0.0", "3.504", "1677182411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10902", "0.0", "1.752", "1677182411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10902", "0.0", "3.504", "1677182411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10903", "0.0", "1.752", "1677186011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10903", "0.0", "3.504", "1677186011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10903", "0.0", "1.752", "1677186011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10903", "0.0", "3.504", "1677186011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10904", "0.0", "1.752", "1677189611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10904", "0.0", "3.504", "1677189611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10904", "0.0", "1.752", "1677189611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10904", "0.0", "3.504", "1677189611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10905", "0.0", "1.752", "1677193211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10905", "0.0", "3.504", "1677193211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10905", "0.0", "1.752", "1677193211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10905", "0.0", "3.504", "1677193211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10906", "0.0", "1.752", "1677196811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10906", "0.0", "3.504", "1677196811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10906", "0.0", "1.752", "1677196811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10906", "0.0", "3.504", "1677196811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10907", "0.0", "1.752", "1677200411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10907", "0.0", "3.504", "1677200411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10907", "0.0", "1.752", "1677200411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10907", "0.0", "3.504", "1677200411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10908", "0.0", "1.752", "1677204011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10908", "0.0", "3.504", "1677204011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10908", "0.0", "1.752", "1677204011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10908", "0.0", "3.504", "1677204011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10909", "0.0", "1.752", "1677207623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10909", "0.0", "3.504", "1677207623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10909", "0.0", "1.752", "1677207623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10909", "0.0", "3.504", "1677207623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10910", "0.0", "1.752", "1677211211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10910", "0.0", "3.504", "1677211211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10910", "0.0", "1.752", "1677211211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10910", "0.0", "3.504", "1677211211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10911", "0.0", "1.752", "1677214811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10911", "0.0", "3.504", "1677214811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10911", "0.0", "1.752", "1677214811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10911", "0.0", "3.504", "1677214811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10912", "0.0", "1.752", "1677218411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10912", "0.0", "3.504", "1677218411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10912", "0.0", "1.752", "1677218411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10912", "0.0", "3.504", "1677218411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10913", "0.0", "1.752", "1677222011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10913", "0.0", "3.504", "1677222011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10913", "0.0", "1.752", "1677222011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10913", "0.0", "3.504", "1677222011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10914", "0.0", "1.752", "1677225611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10914", "0.0", "3.504", "1677225611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10914", "0.0", "1.752", "1677225611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10914", "0.0", "3.504", "1677225611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10915", "0.0", "1.752", "1677229211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10915", "0.0", "3.504", "1677229211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10915", "0.0", "1.752", "1677229211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10915", "0.0", "3.504", "1677229211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10916", "0.0", "1.752", "1677232811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10916", "0.0", "3.504", "1677232811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10916", "0.0", "1.752", "1677232811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10916", "0.0", "3.504", "1677232811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10917", "0.0", "1.752", "1677236411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10917", "0.0", "3.504", "1677236411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10917", "0.0", "1.752", "1677236411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10917", "0.0", "3.504", "1677236411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10918", "0.0", "1.752", "1677240011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10918", "0.0", "3.504", "1677240011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10918", "0.0", "1.752", "1677240011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10918", "0.0", "3.504", "1677240011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10919", "0.0", "1.752", "1677243611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10919", "0.0", "3.504", "1677243611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10919", "0.0", "1.752", "1677243611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10919", "0.0", "3.504", "1677243611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10920", "0.0", "1.752", "1677247211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10920", "0.0", "3.504", "1677247211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10920", "0.0", "1.752", "1677247211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10920", "0.0", "3.504", "1677247211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10921", "0.0", "1.752", "1677250811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10921", "0.0", "3.504", "1677250811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10921", "0.0", "1.752", "1677250811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10921", "0.0", "3.504", "1677250811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10922", "0.0", "1.752", "1677254411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10922", "0.0", "3.504", "1677254411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10922", "0.0", "1.752", "1677254411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10922", "0.0", "3.504", "1677254411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10923", "0.0", "1.752", "1677258011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10923", "0.0", "3.504", "1677258011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10923", "0.0", "1.752", "1677258011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10923", "0.0", "3.504", "1677258011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10924", "0.0", "1.752", "1677261611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10924", "0.0", "3.504", "1677261611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10924", "0.0", "1.752", "1677261611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10924", "0.0", "3.504", "1677261611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10925", "0.0", "1.752", "1677265211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10925", "0.0", "3.504", "1677265211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10925", "0.0", "1.752", "1677265211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10925", "0.0", "3.504", "1677265211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10926", "0.0", "1.752", "1677268811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10926", "0.0", "3.504", "1677268811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10926", "0.0", "1.752", "1677268811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10926", "0.0", "3.504", "1677268811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10927", "0.0", "1.752", "1677272411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10927", "0.0", "3.504", "1677272411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10927", "0.0", "1.752", "1677272411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10927", "0.0", "3.504", "1677272411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10928", "0.0", "1.752", "1677276011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10928", "0.0", "3.504", "1677276011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10928", "0.0", "1.752", "1677276011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10928", "0.0", "3.504", "1677276011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10929", "0.0", "1.752", "1677279611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10929", "0.0", "3.504", "1677279611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10929", "0.0", "1.752", "1677279611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10929", "0.0", "3.504", "1677279611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10930", "0.0", "1.752", "1677283211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10930", "0.0", "3.504", "1677283211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10930", "0.0", "1.752", "1677283211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10930", "0.0", "3.504", "1677283211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10931", "0.0", "1.752", "1677286811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10931", "0.0", "3.504", "1677286811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10931", "0.0", "1.752", "1677286811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10931", "0.0", "3.504", "1677286811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10932", "0.0", "1.752", "1677290411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10932", "0.0", "3.504", "1677290411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10932", "0.0", "1.752", "1677290411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10932", "0.0", "3.504", "1677290411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10933", "0.0", "1.752", "1677294011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10933", "0.0", "3.504", "1677294011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10933", "0.0", "1.752", "1677294011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10933", "0.0", "3.504", "1677294011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10934", "0.0", "1.752", "1677297611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10934", "0.0", "3.504", "1677297611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10934", "0.0", "1.752", "1677297611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10934", "0.0", "3.504", "1677297611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10935", "0.0", "1.752", "1677301211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10935", "0.0", "3.504", "1677301211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10935", "0.0", "1.752", "1677301211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10935", "0.0", "3.504", "1677301211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10936", "0.0", "1.752", "1677304811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10936", "0.0", "3.504", "1677304811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10936", "0.0", "1.752", "1677304811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10936", "0.0", "3.504", "1677304811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10937", "0.0", "1.752", "1677308411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10937", "0.0", "3.504", "1677308411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10937", "0.0", "1.752", "1677308411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10937", "0.0", "3.504", "1677308411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10938", "0.0", "1.752", "1677312011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10938", "0.0", "3.504", "1677312011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10938", "0.0", "1.752", "1677312011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10938", "0.0", "3.504", "1677312011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10939", "0.0", "1.752", "1677315611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10939", "0.0", "3.504", "1677315611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10939", "0.0", "1.752", "1677315611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10939", "0.0", "3.504", "1677315611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10940", "0.0", "1.752", "1677319211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10940", "0.0", "3.504", "1677319211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10940", "0.0", "1.752", "1677319211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10940", "0.0", "3.504", "1677319211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10941", "0.0", "1.752", "1677322823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10941", "0.0", "3.504", "1677322823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10941", "0.0", "1.752", "1677322823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10941", "0.0", "3.504", "1677322823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10942", "0.0", "1.752", "1677326411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10942", "0.0", "3.504", "1677326411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10942", "0.0", "1.752", "1677326411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10942", "0.0", "3.504", "1677326411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10943", "0.0", "1.752", "1677330011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10943", "0.0", "3.504", "1677330011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10943", "0.0", "1.752", "1677330011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10943", "0.0", "3.504", "1677330011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10944", "0.0", "1.752", "1677333611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10944", "0.0", "3.504", "1677333611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10944", "0.0", "1.752", "1677333611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10944", "0.0", "3.504", "1677333611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10945", "0.0", "1.752", "1677337211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10945", "0.0", "3.504", "1677337211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10945", "0.0", "1.752", "1677337211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10945", "0.0", "3.504", "1677337211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10946", "0.0", "1.752", "1677340811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10946", "0.0", "3.504", "1677340811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10946", "0.0", "1.752", "1677340811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10946", "0.0", "3.504", "1677340811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10947", "0.0", "1.752", "1677344411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10947", "0.0", "3.504", "1677344411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10947", "0.0", "1.752", "1677344411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10947", "0.0", "3.504", "1677344411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10948", "0.0", "1.752", "1677348011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10948", "0.0", "3.504", "1677348011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10948", "0.0", "1.752", "1677348011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10948", "0.0", "3.504", "1677348011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10949", "0.0", "1.752", "1677351611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10949", "0.0", "3.504", "1677351611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10949", "0.0", "1.752", "1677351611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10949", "0.0", "3.504", "1677351611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10950", "0.0", "1.752", "1677355211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10950", "0.0", "3.504", "1677355211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10950", "0.0", "1.752", "1677355211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10950", "0.0", "3.504", "1677355211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10951", "0.0", "1.752", "1677358823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10951", "0.0", "3.504", "1677358823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10951", "0.0", "1.752", "1677358823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10951", "0.0", "3.504", "1677358823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10952", "0.0", "1.752", "1677362411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10952", "0.0", "3.504", "1677362411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10952", "0.0", "1.752", "1677362411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10952", "0.0", "3.504", "1677362411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10953", "0.0", "1.752", "1677366011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10953", "0.0", "3.504", "1677366011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10953", "0.0", "1.752", "1677366011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10953", "0.0", "3.504", "1677366011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10954", "0.0", "1.752", "1677369611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10954", "0.0", "3.504", "1677369611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10954", "0.0", "1.752", "1677369611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10954", "0.0", "3.504", "1677369611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10955", "0.0", "1.752", "1677373211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10955", "0.0", "3.504", "1677373211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10955", "0.0", "1.752", "1677373211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10955", "0.0", "3.504", "1677373211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10956", "0.0", "1.752", "1677376811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10956", "0.0", "3.504", "1677376811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10956", "0.0", "1.752", "1677376811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10956", "0.0", "3.504", "1677376811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10957", "0.0", "1.752", "1677380411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10957", "0.0", "3.504", "1677380411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10957", "0.0", "1.752", "1677380411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10957", "0.0", "3.504", "1677380411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10958", "0.0", "1.752", "1677384011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10958", "0.0", "3.504", "1677384011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10958", "0.0", "1.752", "1677384011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10958", "0.0", "3.504", "1677384011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10959", "0.0", "1.752", "1677387611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10959", "0.0", "3.504", "1677387611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10959", "0.0", "1.752", "1677387611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10959", "0.0", "3.504", "1677387611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10960", "0.0", "1.752", "1677391211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10960", "0.0", "3.504", "1677391211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10960", "0.0", "1.752", "1677391211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10960", "0.0", "3.504", "1677391211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10961", "0.0", "1.752", "1677394811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10961", "0.0", "3.504", "1677394811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10961", "0.0", "1.752", "1677394811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10961", "0.0", "3.504", "1677394811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10962", "0.0", "1.752", "1677398411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10962", "0.0", "3.504", "1677398411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10962", "0.0", "1.752", "1677398411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10962", "0.0", "3.504", "1677398411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10963", "0.0", "1.752", "1677402011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10963", "0.0", "3.504", "1677402011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10963", "0.0", "1.752", "1677402011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10963", "0.0", "3.504", "1677402011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10964", "0.0", "1.752", "1677405611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10964", "0.0", "3.504", "1677405611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10964", "0.0", "1.752", "1677405611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10964", "0.0", "3.504", "1677405611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10965", "0.0", "1.752", "1677409211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10965", "0.0", "3.504", "1677409211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10965", "0.0", "1.752", "1677409211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10965", "0.0", "3.504", "1677409211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10966", "0.0", "1.752", "1677412811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10966", "0.0", "3.504", "1677412811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10966", "0.0", "1.752", "1677412811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10966", "0.0", "3.504", "1677412811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10967", "0.0", "1.752", "1677416411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10967", "0.0", "3.504", "1677416411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10967", "0.0", "1.752", "1677416411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10967", "0.0", "3.504", "1677416411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10968", "0.0", "1.752", "1677420023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10968", "0.0", "3.504", "1677420023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10968", "0.0", "1.752", "1677420023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10968", "0.0", "3.504", "1677420023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10969", "0.0", "1.752", "1677423611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10969", "0.0", "3.504", "1677423611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10969", "0.0", "1.752", "1677423611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10969", "0.0", "3.504", "1677423611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10970", "0.0", "1.752", "1677427211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10970", "0.0", "3.504", "1677427211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10970", "0.0", "1.752", "1677427211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10970", "0.0", "3.504", "1677427211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10971", "0.0", "1.752", "1677430811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10971", "0.0", "3.504", "1677430811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10971", "0.0", "1.752", "1677430811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10971", "0.0", "3.504", "1677430811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10972", "0.0", "1.752", "1677434411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10972", "0.0", "3.504", "1677434411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10972", "0.0", "1.752", "1677434411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10972", "0.0", "3.504", "1677434411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10973", "0.0", "1.752", "1677438011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10973", "0.0", "3.504", "1677438011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10973", "0.0", "1.752", "1677438011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10973", "0.0", "3.504", "1677438011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10974", "0.0", "1.752", "1677441611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10974", "0.0", "3.504", "1677441611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10974", "0.0", "1.752", "1677441611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10974", "0.0", "3.504", "1677441611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10975", "0.0", "1.752", "1677445211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10975", "0.0", "3.504", "1677445211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10975", "0.0", "1.752", "1677445211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10975", "0.0", "3.504", "1677445211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10976", "0.0", "1.752", "1677448811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10976", "0.0", "3.504", "1677448811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10976", "0.0", "1.752", "1677448811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10976", "0.0", "3.504", "1677448811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10977", "0.0", "1.752", "1677452411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10977", "0.0", "3.504", "1677452411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10977", "0.0", "1.752", "1677452411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10977", "0.0", "3.504", "1677452411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10978", "0.0", "1.752", "1677456011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10978", "0.0", "3.504", "1677456011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10978", "0.0", "1.752", "1677456011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10978", "0.0", "3.504", "1677456011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10979", "0.0", "1.752", "1677459623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10979", "0.0", "3.504", "1677459623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10979", "0.0", "1.752", "1677459623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10979", "0.0", "3.504", "1677459623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10980", "0.0", "1.752", "1677463223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10980", "0.0", "3.504", "1677463223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10980", "0.0", "1.752", "1677463223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10980", "0.0", "3.504", "1677463223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10981", "0.0", "1.752", "1677466811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10981", "0.0", "3.504", "1677466811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10981", "0.0", "1.752", "1677466811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10981", "0.0", "3.504", "1677466811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10982", "0.0", "1.752", "1677470411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10982", "0.0", "3.504", "1677470411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10982", "0.0", "1.752", "1677470411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10982", "0.0", "3.504", "1677470411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10983", "0.0", "1.752", "1677474011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10983", "0.0", "3.504", "1677474011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10983", "0.0", "1.752", "1677474011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10983", "0.0", "3.504", "1677474011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10984", "0.0", "1.752", "1677477611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10984", "0.0", "3.504", "1677477611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10984", "0.0", "1.752", "1677477611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10984", "0.0", "3.504", "1677477611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10985", "0.0", "1.752", "1677481211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10985", "0.0", "3.504", "1677481211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10985", "0.0", "1.752", "1677481211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10985", "0.0", "3.504", "1677481211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10986", "0.0", "1.752", "1677484811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10986", "0.0", "3.504", "1677484811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10986", "0.0", "1.752", "1677484811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10986", "0.0", "3.504", "1677484811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10987", "0.0", "1.752", "1677488423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10987", "0.0", "3.504", "1677488423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10987", "0.0", "1.752", "1677488423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10987", "0.0", "3.504", "1677488423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10988", "0.0", "1.752", "1677492011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10988", "0.0", "3.504", "1677492011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10988", "0.0", "1.752", "1677492011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10988", "0.0", "3.504", "1677492011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10989", "0.0", "1.752", "1677495611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10989", "0.0", "3.504", "1677495611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10989", "0.0", "1.752", "1677495611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10989", "0.0", "3.504", "1677495611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10990", "0.0", "1.752", "1677499211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10990", "0.0", "3.504", "1677499211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10990", "0.0", "1.752", "1677499211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10990", "0.0", "3.504", "1677499211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10991", "0.0", "1.752", "1677502811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10991", "0.0", "3.504", "1677502811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10991", "0.0", "1.752", "1677502811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10991", "0.0", "3.504", "1677502811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10992", "0.0", "1.752", "1677506411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10992", "0.0", "3.504", "1677506411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10992", "0.0", "1.752", "1677506411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10992", "0.0", "3.504", "1677506411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10993", "0.0", "1.752", "1677510011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10993", "0.0", "3.504", "1677510011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10993", "0.0", "1.752", "1677510011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10993", "0.0", "3.504", "1677510011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10994", "0.0", "1.752", "1677513623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10994", "0.0", "3.504", "1677513623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10994", "0.0", "1.752", "1677513623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10994", "0.0", "3.504", "1677513623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10995", "0.0", "1.752", "1677517211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10995", "0.0", "3.504", "1677517211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10995", "0.0", "1.752", "1677517211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10995", "0.0", "3.504", "1677517211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10996", "0.0", "1.752", "1677520811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10996", "0.0", "3.504", "1677520811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10996", "0.0", "1.752", "1677520811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10996", "0.0", "3.504", "1677520811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10997", "0.0", "1.752", "1677524411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10997", "0.0", "3.504", "1677524411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10997", "0.0", "1.752", "1677524411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10997", "0.0", "3.504", "1677524411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10998", "0.0", "1.752", "1677528011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10998", "0.0", "3.504", "1677528011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10998", "0.0", "1.752", "1677528011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10998", "0.0", "3.504", "1677528011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "10999", "0.0", "1.752", "1677531611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "10999", "0.0", "3.504", "1677531611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "10999", "0.0", "1.752", "1677531611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "10999", "0.0", "3.504", "1677531611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11000", "0.0", "1.752", "1677535211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11000", "0.0", "3.504", "1677535211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11000", "0.0", "1.752", "1677535211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11000", "0.0", "3.504", "1677535211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11001", "0.0", "1.752", "1677538811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11001", "0.0", "3.504", "1677538811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11001", "0.0", "1.752", "1677538811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11001", "0.0", "3.504", "1677538811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11002", "0.0", "1.752", "1677542435"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11002", "0.0", "3.504", "1677542435"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11002", "0.0", "1.752", "1677542435"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11002", "0.0", "3.504", "1677542435"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11003", "0.0", "1.752", "1677546011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11003", "0.0", "3.504", "1677546011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11003", "0.0", "1.752", "1677546011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11003", "0.0", "3.504", "1677546011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11004", "0.0", "1.752", "1677549611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11004", "0.0", "3.504", "1677549611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11004", "0.0", "1.752", "1677549611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11004", "0.0", "3.504", "1677549611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11005", "0.0", "1.752", "1677553211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11005", "0.0", "3.504", "1677553211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11005", "0.0", "1.752", "1677553211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11005", "0.0", "3.504", "1677553211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11006", "0.0", "1.752", "1677556811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11006", "0.0", "3.504", "1677556811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11006", "0.0", "1.752", "1677556811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11006", "0.0", "3.504", "1677556811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11007", "0.0", "1.752", "1677560411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11007", "0.0", "3.504", "1677560411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11007", "0.0", "1.752", "1677560411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11007", "0.0", "3.504", "1677560411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11008", "0.0", "1.752", "1677564011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11008", "0.0", "3.504", "1677564011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11008", "0.0", "1.752", "1677564011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11008", "0.0", "3.504", "1677564011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11009", "0.0", "1.752", "1677567611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11009", "0.0", "3.504", "1677567611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11009", "0.0", "1.752", "1677567611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11009", "0.0", "3.504", "1677567611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11010", "0.0", "1.752", "1677571211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11010", "0.0", "3.504", "1677571211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11010", "0.0", "1.752", "1677571211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11010", "0.0", "3.504", "1677571211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11011", "0.0", "1.752", "1677574811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11011", "0.0", "3.504", "1677574811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11011", "0.0", "1.752", "1677574811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11011", "0.0", "3.504", "1677574811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11012", "0.0", "1.752", "1677578411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11012", "0.0", "3.504", "1677578411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11012", "0.0", "1.752", "1677578411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11012", "0.0", "3.504", "1677578411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11013", "0.0", "1.752", "1677582011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11013", "0.0", "3.504", "1677582011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11013", "0.0", "1.752", "1677582011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11013", "0.0", "3.504", "1677582011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11014", "0.0", "1.752", "1677585611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11014", "0.0", "3.504", "1677585611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11014", "0.0", "1.752", "1677585611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11014", "0.0", "3.504", "1677585611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11015", "0.0", "1.752", "1677589223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11015", "0.0", "3.504", "1677589223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11015", "0.0", "1.752", "1677589223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11015", "0.0", "3.504", "1677589223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11016", "0.0", "1.752", "1677592811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11016", "0.0", "3.504", "1677592811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11016", "0.0", "1.752", "1677592811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11016", "0.0", "3.504", "1677592811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11017", "0.0", "1.752", "1677596411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11017", "0.0", "3.504", "1677596411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11017", "0.0", "1.752", "1677596411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11017", "0.0", "3.504", "1677596411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11018", "0.0", "1.752", "1677600035"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11018", "0.0", "3.504", "1677600035"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11018", "0.0", "1.752", "1677600035"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11018", "0.0", "3.504", "1677600035"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11019", "0.0", "1.752", "1677603611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11019", "0.0", "3.504", "1677603611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11019", "0.0", "1.752", "1677603611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11019", "0.0", "3.504", "1677603611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11020", "0.0", "1.752", "1677607211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11020", "0.0", "3.504", "1677607211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11020", "0.0", "1.752", "1677607211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11020", "0.0", "3.504", "1677607211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11021", "0.0", "1.752", "1677610811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11021", "0.0", "3.504", "1677610811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11021", "0.0", "1.752", "1677610811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11021", "0.0", "3.504", "1677610811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11022", "0.0", "1.752", "1677614411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11022", "0.0", "3.504", "1677614411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11022", "0.0", "1.752", "1677614411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11022", "0.0", "3.504", "1677614411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11023", "0.0", "1.752", "1677618011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11023", "0.0", "3.504", "1677618011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11023", "0.0", "1.752", "1677618011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11023", "0.0", "3.504", "1677618011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11024", "0.0", "1.752", "1677621623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11024", "0.0", "3.504", "1677621623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11024", "0.0", "1.752", "1677621623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11024", "0.0", "3.504", "1677621623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11025", "0.0", "1.752", "1677625211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11025", "0.0", "3.504", "1677625211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11025", "0.0", "1.752", "1677625211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11025", "0.0", "3.504", "1677625211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11026", "0.0", "1.752", "1677628811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11026", "0.0", "3.504", "1677628811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11026", "0.0", "1.752", "1677628811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11026", "0.0", "3.504", "1677628811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11027", "0.0", "1.752", "1677632411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11027", "0.0", "3.504", "1677632411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11027", "0.0", "1.752", "1677632411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11027", "0.0", "3.504", "1677632411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11028", "0.0", "1.752", "1677636011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11028", "0.0", "3.504", "1677636011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11028", "0.0", "1.752", "1677636011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11028", "0.0", "3.504", "1677636011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11029", "0.0", "1.752", "1677639611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11029", "0.0", "3.504", "1677639611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11029", "0.0", "1.752", "1677639611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11029", "0.0", "3.504", "1677639611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11030", "0.0", "1.752", "1677643211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11030", "0.0", "3.504", "1677643211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11030", "0.0", "1.752", "1677643211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11030", "0.0", "3.504", "1677643211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11031", "0.0", "1.752", "1677646811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11031", "0.0", "3.504", "1677646811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11031", "0.0", "1.752", "1677646811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11031", "0.0", "3.504", "1677646811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11032", "0.0", "1.752", "1677650411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11032", "0.0", "3.504", "1677650411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11032", "0.0", "1.752", "1677650411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11032", "0.0", "3.504", "1677650411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11033", "0.0", "1.752", "1677654011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11033", "0.0", "3.504", "1677654011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11033", "0.0", "1.752", "1677654011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11033", "0.0", "3.504", "1677654011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11034", "0.0", "1.752", "1677657611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11034", "0.0", "3.504", "1677657611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11034", "0.0", "1.752", "1677657611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11034", "0.0", "3.504", "1677657611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11035", "0.0", "1.752", "1677661211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11035", "0.0", "3.504", "1677661211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11035", "0.0", "1.752", "1677661211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11035", "0.0", "3.504", "1677661211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11036", "0.0", "1.752", "1677664811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11036", "0.0", "3.504", "1677664811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11036", "0.0", "1.752", "1677664811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11036", "0.0", "3.504", "1677664811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11037", "0.0", "1.752", "1677668411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11037", "0.0", "3.504", "1677668411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11037", "0.0", "1.752", "1677668411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11037", "0.0", "3.504", "1677668411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11038", "0.0", "1.752", "1677672011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11038", "0.0", "3.504", "1677672011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11038", "0.0", "1.752", "1677672011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11038", "0.0", "3.504", "1677672011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11039", "0.0", "1.752", "1677675611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11039", "0.0", "3.504", "1677675611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11039", "0.0", "1.752", "1677675611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11039", "0.0", "3.504", "1677675611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11040", "0.0", "1.752", "1677679211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11040", "0.0", "3.504", "1677679211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11040", "0.0", "1.752", "1677679211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11040", "0.0", "3.504", "1677679211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11041", "0.0", "1.752", "1677682823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11041", "0.0", "3.504", "1677682823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11041", "0.0", "1.752", "1677682823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11041", "0.0", "3.504", "1677682823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11042", "0.0", "1.752", "1677686411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11042", "0.0", "3.504", "1677686411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11042", "0.0", "1.752", "1677686411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11042", "0.0", "3.504", "1677686411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11043", "0.0", "1.752", "1677690011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11043", "0.0", "3.504", "1677690011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11043", "0.0", "1.752", "1677690011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11043", "0.0", "3.504", "1677690011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11044", "0.0", "1.752", "1677693611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11044", "0.0", "3.504", "1677693611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11044", "0.0", "1.752", "1677693611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11044", "0.0", "3.504", "1677693611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11045", "0.0", "1.752", "1677697211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11045", "0.0", "3.504", "1677697211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11045", "0.0", "1.752", "1677697211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11045", "0.0", "3.504", "1677697211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11046", "0.0", "1.752", "1677700811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11046", "0.0", "3.504", "1677700811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11046", "0.0", "1.752", "1677700811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11046", "0.0", "3.504", "1677700811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11047", "0.0", "1.752", "1677704411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11047", "0.0", "3.504", "1677704411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11047", "0.0", "1.752", "1677704411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11047", "0.0", "3.504", "1677704411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11048", "0.0", "1.752", "1677708011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11048", "0.0", "3.504", "1677708011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11048", "0.0", "1.752", "1677708011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11048", "0.0", "3.504", "1677708011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11049", "0.0", "1.752", "1677711623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11049", "0.0", "3.504", "1677711623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11049", "0.0", "1.752", "1677711623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11049", "0.0", "3.504", "1677711623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11050", "0.0", "1.752", "1677715223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11050", "0.0", "3.504", "1677715223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11050", "0.0", "1.752", "1677715223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11050", "0.0", "3.504", "1677715223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11051", "0.0", "1.752", "1677718811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11051", "0.0", "3.504", "1677718811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11051", "0.0", "1.752", "1677718811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11051", "0.0", "3.504", "1677718811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11052", "0.0", "1.752", "1677722411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11052", "0.0", "3.504", "1677722411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11052", "0.0", "1.752", "1677722411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11052", "0.0", "3.504", "1677722411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11053", "0.0", "1.752", "1677726011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11053", "0.0", "3.504", "1677726011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11053", "0.0", "1.752", "1677726011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11053", "0.0", "3.504", "1677726011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11054", "0.0", "1.752", "1677729611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11054", "0.0", "3.504", "1677729611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11054", "0.0", "1.752", "1677729611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11054", "0.0", "3.504", "1677729611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11055", "0.0", "1.752", "1677733211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11055", "0.0", "3.504", "1677733211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11055", "0.0", "1.752", "1677733211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11055", "0.0", "3.504", "1677733211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11056", "0.0", "1.752", "1677736811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11056", "0.0", "3.504", "1677736811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11056", "0.0", "1.752", "1677736811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11056", "0.0", "3.504", "1677736811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11057", "0.0", "1.752", "1677740411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11057", "0.0", "3.504", "1677740411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11057", "0.0", "1.752", "1677740411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11057", "0.0", "3.504", "1677740411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11058", "0.0", "1.752", "1677744011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11058", "0.0", "3.504", "1677744011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11058", "0.0", "1.752", "1677744011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11058", "0.0", "3.504", "1677744011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11059", "0.0", "1.752", "1677747611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11059", "0.0", "3.504", "1677747611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11059", "0.0", "1.752", "1677747611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11059", "0.0", "3.504", "1677747611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11060", "0.0", "1.752", "1677751211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11060", "0.0", "3.504", "1677751211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11060", "0.0", "1.752", "1677751211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11060", "0.0", "3.504", "1677751211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11061", "0.0", "1.752", "1677754811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11061", "0.0", "3.504", "1677754811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11061", "0.0", "1.752", "1677754811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11061", "0.0", "3.504", "1677754811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11062", "0.0", "1.752", "1677758411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11062", "0.0", "3.504", "1677758411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11062", "0.0", "1.752", "1677758411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11062", "0.0", "3.504", "1677758411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11063", "0.0", "1.752", "1677762011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11063", "0.0", "3.504", "1677762011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11063", "0.0", "1.752", "1677762011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11063", "0.0", "3.504", "1677762011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11064", "0.0", "1.752", "1677765611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11064", "0.0", "3.504", "1677765611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11064", "0.0", "1.752", "1677765611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11064", "0.0", "3.504", "1677765611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11065", "0.0", "1.752", "1677769211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11065", "0.0", "3.504", "1677769211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11065", "0.0", "1.752", "1677769211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11065", "0.0", "3.504", "1677769211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11066", "0.0", "1.752", "1677772823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11066", "0.0", "3.504", "1677772823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11066", "0.0", "1.752", "1677772823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11066", "0.0", "3.504", "1677772823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11067", "0.0", "1.752", "1677776411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11067", "0.0", "3.504", "1677776411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11067", "0.0", "1.752", "1677776411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11067", "0.0", "3.504", "1677776411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11068", "0.0", "1.752", "1677780023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11068", "0.0", "3.504", "1677780023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11068", "0.0", "1.752", "1677780023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11068", "0.0", "3.504", "1677780023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11069", "0.0", "1.752", "1677783611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11069", "0.0", "3.504", "1677783611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11069", "0.0", "1.752", "1677783611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11069", "0.0", "3.504", "1677783611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11070", "0.0", "1.752", "1677787211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11070", "0.0", "3.504", "1677787211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11070", "0.0", "1.752", "1677787211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11070", "0.0", "3.504", "1677787211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11071", "0.0", "1.752", "1677790811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11071", "0.0", "3.504", "1677790811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11071", "0.0", "1.752", "1677790811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11071", "0.0", "3.504", "1677790811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11072", "0.0", "1.752", "1677794411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11072", "0.0", "3.504", "1677794411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11072", "0.0", "1.752", "1677794411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11072", "0.0", "3.504", "1677794411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11073", "0.0", "1.752", "1677798011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11073", "0.0", "3.504", "1677798011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11073", "0.0", "1.752", "1677798011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11073", "0.0", "3.504", "1677798011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11074", "0.0", "1.752", "1677801611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11074", "0.0", "3.504", "1677801611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11074", "0.0", "1.752", "1677801611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11074", "0.0", "3.504", "1677801611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11075", "0.0", "1.752", "1677805211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11075", "0.0", "3.504", "1677805211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11075", "0.0", "1.752", "1677805211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11075", "0.0", "3.504", "1677805211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11076", "0.0", "1.752", "1677808811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11076", "0.0", "3.504", "1677808811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11076", "0.0", "1.752", "1677808811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11076", "0.0", "3.504", "1677808811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11077", "0.0", "1.752", "1677812411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11077", "0.0", "3.504", "1677812411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11077", "0.0", "1.752", "1677812411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11077", "0.0", "3.504", "1677812411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11078", "0.0", "1.752", "1677816011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11078", "0.0", "3.504", "1677816011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11078", "0.0", "1.752", "1677816011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11078", "0.0", "3.504", "1677816011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11079", "0.0", "1.752", "1677819611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11079", "0.0", "3.504", "1677819611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11079", "0.0", "1.752", "1677819611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11079", "0.0", "3.504", "1677819611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11080", "0.0", "1.752", "1677823211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11080", "0.0", "3.504", "1677823211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11080", "0.0", "1.752", "1677823211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11080", "0.0", "3.504", "1677823211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11081", "0.0", "1.752", "1677826811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11081", "0.0", "3.504", "1677826811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11081", "0.0", "1.752", "1677826811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11081", "0.0", "3.504", "1677826811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11082", "0.0", "1.752", "1677830411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11082", "0.0", "3.504", "1677830411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11082", "0.0", "1.752", "1677830411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11082", "0.0", "3.504", "1677830411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11083", "0.0", "1.752", "1677834011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11083", "0.0", "3.504", "1677834011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11083", "0.0", "1.752", "1677834011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11083", "0.0", "3.504", "1677834011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11084", "0.0", "1.752", "1677837611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11084", "0.0", "3.504", "1677837611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11084", "0.0", "1.752", "1677837611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11084", "0.0", "3.504", "1677837611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11085", "0.0", "1.752", "1677841211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11085", "0.0", "3.504", "1677841211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11085", "0.0", "1.752", "1677841211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11085", "0.0", "3.504", "1677841211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11086", "0.0", "1.752", "1677844811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11086", "0.0", "3.504", "1677844811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11086", "0.0", "1.752", "1677844811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11086", "0.0", "3.504", "1677844811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11087", "0.0", "1.752", "1677848411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11087", "0.0", "3.504", "1677848411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11087", "0.0", "1.752", "1677848411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11087", "0.0", "3.504", "1677848411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11088", "0.0", "1.752", "1677852011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11088", "0.0", "3.504", "1677852011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11088", "0.0", "1.752", "1677852011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11088", "0.0", "3.504", "1677852011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11089", "0.0", "1.752", "1677855611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11089", "0.0", "3.504", "1677855611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11089", "0.0", "1.752", "1677855611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11089", "0.0", "3.504", "1677855611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11090", "0.0", "1.752", "1677859211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11090", "0.0", "3.504", "1677859211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11090", "0.0", "1.752", "1677859211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11090", "0.0", "3.504", "1677859211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11091", "0.0", "1.752", "1677862835"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11091", "0.0", "3.504", "1677862835"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11091", "0.0", "1.752", "1677862835"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11091", "0.0", "3.504", "1677862835"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11092", "0.0", "1.752", "1677866411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11092", "0.0", "3.504", "1677866411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11092", "0.0", "1.752", "1677866411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11092", "0.0", "3.504", "1677866411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11093", "0.0", "1.752", "1677870011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11093", "0.0", "3.504", "1677870011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11093", "0.0", "1.752", "1677870011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11093", "0.0", "3.504", "1677870011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11094", "0.0", "1.752", "1677873611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11094", "0.0", "3.504", "1677873611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11094", "0.0", "1.752", "1677873611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11094", "0.0", "3.504", "1677873611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11095", "0.0", "1.752", "1677877211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11095", "0.0", "3.504", "1677877211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11095", "0.0", "1.752", "1677877211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11095", "0.0", "3.504", "1677877211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11096", "0.0", "1.752", "1677880811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11096", "0.0", "3.504", "1677880811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11096", "0.0", "1.752", "1677880811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11096", "0.0", "3.504", "1677880811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11097", "0.0", "1.752", "1677884411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11097", "0.0", "3.504", "1677884411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11097", "0.0", "1.752", "1677884411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11097", "0.0", "3.504", "1677884411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11098", "0.0", "1.752", "1677888011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11098", "0.0", "3.504", "1677888011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11098", "0.0", "1.752", "1677888011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11098", "0.0", "3.504", "1677888011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11099", "0.0", "1.752", "1677891611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11099", "0.0", "3.504", "1677891611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11099", "0.0", "1.752", "1677891611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11099", "0.0", "3.504", "1677891611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11100", "0.0", "1.752", "1677895211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11100", "0.0", "3.504", "1677895211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11100", "0.0", "1.752", "1677895211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11100", "0.0", "3.504", "1677895211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11101", "0.0", "1.752", "1677898811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11101", "0.0", "3.504", "1677898811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11101", "0.0", "1.752", "1677898811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11101", "0.0", "3.504", "1677898811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11102", "0.0", "1.752", "1677902411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11102", "0.0", "3.504", "1677902411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11102", "0.0", "1.752", "1677902411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11102", "0.0", "3.504", "1677902411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11103", "0.0", "1.752", "1677906011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11103", "0.0", "3.504", "1677906011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11103", "0.0", "1.752", "1677906011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11103", "0.0", "3.504", "1677906011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11104", "0.0", "1.752", "1677909611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11104", "0.0", "3.504", "1677909611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11104", "0.0", "1.752", "1677909611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11104", "0.0", "3.504", "1677909611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11105", "0.0", "1.752", "1677913211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11105", "0.0", "3.504", "1677913211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11105", "0.0", "1.752", "1677913211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11105", "0.0", "3.504", "1677913211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11106", "0.0", "1.752", "1677916811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11106", "0.0", "3.504", "1677916811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11106", "0.0", "1.752", "1677916811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11106", "0.0", "3.504", "1677916811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11107", "0.0", "1.752", "1677920411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11107", "0.0", "3.504", "1677920411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11107", "0.0", "1.752", "1677920411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11107", "0.0", "3.504", "1677920411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11108", "0.0", "1.752", "1677924011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11108", "0.0", "3.504", "1677924011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11108", "0.0", "1.752", "1677924011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11108", "0.0", "3.504", "1677924011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11109", "0.0", "1.752", "1677927611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11109", "0.0", "3.504", "1677927611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11109", "0.0", "1.752", "1677927611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11109", "0.0", "3.504", "1677927611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11110", "0.0", "1.752", "1677931211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11110", "0.0", "3.504", "1677931211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11110", "0.0", "1.752", "1677931211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11110", "0.0", "3.504", "1677931211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11111", "0.0", "1.752", "1677934811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11111", "0.0", "3.504", "1677934811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11111", "0.0", "1.752", "1677934811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11111", "0.0", "3.504", "1677934811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11112", "0.0", "1.752", "1677938411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11112", "0.0", "3.504", "1677938411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11112", "0.0", "1.752", "1677938411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11112", "0.0", "3.504", "1677938411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11113", "0.0", "1.752", "1677942011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11113", "0.0", "3.504", "1677942011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11113", "0.0", "1.752", "1677942011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11113", "0.0", "3.504", "1677942011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11114", "0.0", "1.752", "1677945611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11114", "0.0", "3.504", "1677945611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11114", "0.0", "1.752", "1677945611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11114", "0.0", "3.504", "1677945611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11115", "0.0", "1.752", "1677949223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11115", "0.0", "3.504", "1677949223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11115", "0.0", "1.752", "1677949223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11115", "0.0", "3.504", "1677949223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11116", "0.0", "1.752", "1677952811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11116", "0.0", "3.504", "1677952811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11116", "0.0", "1.752", "1677952811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11116", "0.0", "3.504", "1677952811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11117", "0.0", "1.752", "1677956411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11117", "0.0", "3.504", "1677956411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11117", "0.0", "1.752", "1677956411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11117", "0.0", "3.504", "1677956411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11118", "0.0", "1.752", "1677960011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11118", "0.0", "3.504", "1677960011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11118", "0.0", "1.752", "1677960011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11118", "0.0", "3.504", "1677960011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11119", "0.0", "1.752", "1677963611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11119", "0.0", "3.504", "1677963611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11119", "0.0", "1.752", "1677963611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11119", "0.0", "3.504", "1677963611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11120", "0.0", "1.752", "1677967211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11120", "0.0", "3.504", "1677967211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11120", "0.0", "1.752", "1677967211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11120", "0.0", "3.504", "1677967211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11121", "0.0", "1.752", "1677970811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11121", "0.0", "3.504", "1677970811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11121", "0.0", "1.752", "1677970811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11121", "0.0", "3.504", "1677970811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11122", "0.0", "1.752", "1677974411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11122", "0.0", "3.504", "1677974411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11122", "0.0", "1.752", "1677974411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11122", "0.0", "3.504", "1677974411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11123", "0.0", "1.752", "1677978011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11123", "0.0", "3.504", "1677978011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11123", "0.0", "1.752", "1677978011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11123", "0.0", "3.504", "1677978011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11124", "0.0", "1.752", "1677981611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11124", "0.0", "3.504", "1677981611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11124", "0.0", "1.752", "1677981611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11124", "0.0", "3.504", "1677981611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11125", "0.0", "1.752", "1677985223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11125", "0.0", "3.504", "1677985223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11125", "0.0", "1.752", "1677985223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11125", "0.0", "3.504", "1677985223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11126", "0.0", "1.752", "1677988811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11126", "0.0", "3.504", "1677988811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11126", "0.0", "1.752", "1677988811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11126", "0.0", "3.504", "1677988811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11127", "0.0", "1.752", "1677992411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11127", "0.0", "3.504", "1677992411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11127", "0.0", "1.752", "1677992411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11127", "0.0", "3.504", "1677992411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11128", "0.0", "1.752", "1677996011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11128", "0.0", "3.504", "1677996011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11128", "0.0", "1.752", "1677996011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11128", "0.0", "3.504", "1677996011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11129", "0.0", "1.752", "1677999611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11129", "0.0", "3.504", "1677999611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11129", "0.0", "1.752", "1677999611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11129", "0.0", "3.504", "1677999611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11130", "0.0", "1.752", "1678003211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11130", "0.0", "3.504", "1678003211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11130", "0.0", "1.752", "1678003211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11130", "0.0", "3.504", "1678003211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11131", "0.0", "1.752", "1678006811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11131", "0.0", "3.504", "1678006811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11131", "0.0", "1.752", "1678006811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11131", "0.0", "3.504", "1678006811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11132", "0.0", "1.752", "1678010411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11132", "0.0", "3.504", "1678010411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11132", "0.0", "1.752", "1678010411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11132", "0.0", "3.504", "1678010411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11133", "0.0", "1.752", "1678014011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11133", "0.0", "3.504", "1678014011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11133", "0.0", "1.752", "1678014011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11133", "0.0", "3.504", "1678014011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11134", "0.0", "1.752", "1678017611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11134", "0.0", "3.504", "1678017611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11134", "0.0", "1.752", "1678017611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11134", "0.0", "3.504", "1678017611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11135", "0.0", "1.752", "1678021211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11135", "0.0", "3.504", "1678021211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11135", "0.0", "1.752", "1678021211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11135", "0.0", "3.504", "1678021211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11136", "0.0", "1.752", "1678024823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11136", "0.0", "3.504", "1678024823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11136", "0.0", "1.752", "1678024823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11136", "0.0", "3.504", "1678024823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11137", "0.0", "1.752", "1678028423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11137", "0.0", "3.504", "1678028423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11137", "0.0", "1.752", "1678028423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11137", "0.0", "3.504", "1678028423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11138", "0.0", "1.752", "1678032011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11138", "0.0", "3.504", "1678032011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11138", "0.0", "1.752", "1678032011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11138", "0.0", "3.504", "1678032011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11139", "0.0", "1.752", "1678035611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11139", "0.0", "3.504", "1678035611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11139", "0.0", "1.752", "1678035611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11139", "0.0", "3.504", "1678035611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11140", "0.0", "1.752", "1678039211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11140", "0.0", "3.504", "1678039211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11140", "0.0", "1.752", "1678039211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11140", "0.0", "3.504", "1678039211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11141", "0.0", "1.752", "1678042811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11141", "0.0", "3.504", "1678042811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11141", "0.0", "1.752", "1678042811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11141", "0.0", "3.504", "1678042811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11142", "0.0", "1.752", "1678046411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11142", "0.0", "3.504", "1678046411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11142", "0.0", "1.752", "1678046411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11142", "0.0", "3.504", "1678046411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11143", "0.0", "1.752", "1678050011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11143", "0.0", "3.504", "1678050011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11143", "0.0", "1.752", "1678050011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11143", "0.0", "3.504", "1678050011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11144", "0.0", "1.752", "1678053611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11144", "0.0", "3.504", "1678053611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11144", "0.0", "1.752", "1678053611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11144", "0.0", "3.504", "1678053611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11145", "0.0", "1.752", "1678057211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11145", "0.0", "3.504", "1678057211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11145", "0.0", "1.752", "1678057211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11145", "0.0", "3.504", "1678057211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11146", "0.0", "1.752", "1678060811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11146", "0.0", "3.504", "1678060811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11146", "0.0", "1.752", "1678060811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11146", "0.0", "3.504", "1678060811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11147", "0.0", "1.752", "1678064411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11147", "0.0", "3.504", "1678064411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11147", "0.0", "1.752", "1678064411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11147", "0.0", "3.504", "1678064411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11148", "0.0", "1.752", "1678068011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11148", "0.0", "3.504", "1678068011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11148", "0.0", "1.752", "1678068011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11148", "0.0", "3.504", "1678068011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11149", "0.0", "1.752", "1678071611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11149", "0.0", "3.504", "1678071611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11149", "0.0", "1.752", "1678071611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11149", "0.0", "3.504", "1678071611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11150", "0.0", "1.752", "1678075211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11150", "0.0", "3.504", "1678075211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11150", "0.0", "1.752", "1678075211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11150", "0.0", "3.504", "1678075211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11151", "0.0", "1.752", "1678078811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11151", "0.0", "3.504", "1678078811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11151", "0.0", "1.752", "1678078811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11151", "0.0", "3.504", "1678078811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11152", "0.0", "1.752", "1678082411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11152", "0.0", "3.504", "1678082411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11152", "0.0", "1.752", "1678082411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11152", "0.0", "3.504", "1678082411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11153", "0.0", "1.752", "1678086011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11153", "0.0", "3.504", "1678086011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11153", "0.0", "1.752", "1678086011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11153", "0.0", "3.504", "1678086011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11154", "0.0", "1.752", "1678089611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11154", "0.0", "3.504", "1678089611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11154", "0.0", "1.752", "1678089611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11154", "0.0", "3.504", "1678089611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11155", "0.0", "1.752", "1678093211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11155", "0.0", "3.504", "1678093211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11155", "0.0", "1.752", "1678093211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11155", "0.0", "3.504", "1678093211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11156", "0.0", "1.752", "1678096811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11156", "0.0", "3.504", "1678096811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11156", "0.0", "1.752", "1678096811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11156", "0.0", "3.504", "1678096811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11157", "0.0", "1.752", "1678100411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11157", "0.0", "3.504", "1678100411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11157", "0.0", "1.752", "1678100411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11157", "0.0", "3.504", "1678100411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11158", "0.0", "1.752", "1678104011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11158", "0.0", "3.504", "1678104011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11158", "0.0", "1.752", "1678104011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11158", "0.0", "3.504", "1678104011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11159", "0.0", "1.752", "1678107611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11159", "0.0", "3.504", "1678107611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11159", "0.0", "1.752", "1678107611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11159", "0.0", "3.504", "1678107611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11160", "0.0", "1.752", "1678111223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11160", "0.0", "3.504", "1678111223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11160", "0.0", "1.752", "1678111223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11160", "0.0", "3.504", "1678111223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11161", "0.0", "1.752", "1678114811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11161", "0.0", "3.504", "1678114811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11161", "0.0", "1.752", "1678114811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11161", "0.0", "3.504", "1678114811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11162", "0.0", "1.752", "1678118411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11162", "0.0", "3.504", "1678118411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11162", "0.0", "1.752", "1678118411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11162", "0.0", "3.504", "1678118411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11163", "0.0", "1.752", "1678122011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11163", "0.0", "3.504", "1678122011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11163", "0.0", "1.752", "1678122011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11163", "0.0", "3.504", "1678122011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11164", "0.0", "1.752", "1678125611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11164", "0.0", "3.504", "1678125611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11164", "0.0", "1.752", "1678125611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11164", "0.0", "3.504", "1678125611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11165", "0.0", "1.752", "1678129211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11165", "0.0", "3.504", "1678129211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11165", "0.0", "1.752", "1678129211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11165", "0.0", "3.504", "1678129211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11166", "0.0", "1.752", "1678132811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11166", "0.0", "3.504", "1678132811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11166", "0.0", "1.752", "1678132811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11166", "0.0", "3.504", "1678132811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11167", "0.0", "1.752", "1678136423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11167", "0.0", "3.504", "1678136423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11167", "0.0", "1.752", "1678136423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11167", "0.0", "3.504", "1678136423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11168", "0.0", "1.752", "1678140011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11168", "0.0", "3.504", "1678140011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11168", "0.0", "1.752", "1678140011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11168", "0.0", "3.504", "1678140011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11169", "0.0", "1.752", "1678143611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11169", "0.0", "3.504", "1678143611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11169", "0.0", "1.752", "1678143611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11169", "0.0", "3.504", "1678143611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11170", "0.0", "1.752", "1678147211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11170", "0.0", "3.504", "1678147211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11170", "0.0", "1.752", "1678147211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11170", "0.0", "3.504", "1678147211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11171", "0.0", "1.752", "1678150811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11171", "0.0", "3.504", "1678150811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11171", "0.0", "1.752", "1678150811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11171", "0.0", "3.504", "1678150811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11172", "0.0", "1.752", "1678154411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11172", "0.0", "3.504", "1678154411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11172", "0.0", "1.752", "1678154411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11172", "0.0", "3.504", "1678154411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11173", "0.0", "1.752", "1678158011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11173", "0.0", "3.504", "1678158011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11173", "0.0", "1.752", "1678158011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11173", "0.0", "3.504", "1678158011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11174", "0.0", "1.752", "1678161611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11174", "0.0", "3.504", "1678161611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11174", "0.0", "1.752", "1678161611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11174", "0.0", "3.504", "1678161611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11175", "0.0", "1.752", "1678165211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11175", "0.0", "3.504", "1678165211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11175", "0.0", "1.752", "1678165211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11175", "0.0", "3.504", "1678165211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11176", "0.0", "1.752", "1678168811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11176", "0.0", "3.504", "1678168811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11176", "0.0", "1.752", "1678168811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11176", "0.0", "3.504", "1678168811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11177", "0.0", "1.752", "1678172411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11177", "0.0", "3.504", "1678172411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11177", "0.0", "1.752", "1678172411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11177", "0.0", "3.504", "1678172411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11178", "0.0", "1.752", "1678176011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11178", "0.0", "3.504", "1678176011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11178", "0.0", "1.752", "1678176011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11178", "0.0", "3.504", "1678176011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11179", "0.0", "1.752", "1678179611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11179", "0.0", "3.504", "1678179611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11179", "0.0", "1.752", "1678179611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11179", "0.0", "3.504", "1678179611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11180", "0.0", "1.752", "1678183211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11180", "0.0", "3.504", "1678183211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11180", "0.0", "1.752", "1678183211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11180", "0.0", "3.504", "1678183211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11181", "0.0", "1.752", "1678186811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11181", "0.0", "3.504", "1678186811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11181", "0.0", "1.752", "1678186811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11181", "0.0", "3.504", "1678186811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11182", "0.0", "1.752", "1678190411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11182", "0.0", "3.504", "1678190411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11182", "0.0", "1.752", "1678190411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11182", "0.0", "3.504", "1678190411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11183", "0.0", "1.752", "1678194011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11183", "0.0", "3.504", "1678194011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11183", "0.0", "1.752", "1678194011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11183", "0.0", "3.504", "1678194011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11184", "0.0", "1.752", "1678197611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11184", "0.0", "3.504", "1678197611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11184", "0.0", "1.752", "1678197611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11184", "0.0", "3.504", "1678197611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11185", "0.0", "1.752", "1678201211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11185", "0.0", "3.504", "1678201211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11185", "0.0", "1.752", "1678201211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11185", "0.0", "3.504", "1678201211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11186", "0.0", "1.752", "1678204811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11186", "0.0", "3.504", "1678204811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11186", "0.0", "1.752", "1678204811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11186", "0.0", "3.504", "1678204811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11187", "0.0", "1.752", "1678208411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11187", "0.0", "3.504", "1678208411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11187", "0.0", "1.752", "1678208411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11187", "0.0", "3.504", "1678208411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11188", "0.0", "1.752", "1678212011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11188", "0.0", "3.504", "1678212011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11188", "0.0", "1.752", "1678212011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11188", "0.0", "3.504", "1678212011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11189", "0.0", "1.752", "1678215611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11189", "0.0", "3.504", "1678215611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11189", "0.0", "1.752", "1678215611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11189", "0.0", "3.504", "1678215611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11190", "0.0", "1.752", "1678219211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11190", "0.0", "3.504", "1678219211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11190", "0.0", "1.752", "1678219211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11190", "0.0", "3.504", "1678219211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11191", "0.0", "1.752", "1678222811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11191", "0.0", "3.504", "1678222811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11191", "0.0", "1.752", "1678222811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11191", "0.0", "3.504", "1678222811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11192", "0.0", "1.752", "1678226411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11192", "0.0", "3.504", "1678226411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11192", "0.0", "1.752", "1678226411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11192", "0.0", "3.504", "1678226411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11193", "0.0", "1.752", "1678230011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11193", "0.0", "3.504", "1678230011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11193", "0.0", "1.752", "1678230011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11193", "0.0", "3.504", "1678230011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11194", "0.0", "1.752", "1678233611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11194", "0.0", "3.504", "1678233611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11194", "0.0", "1.752", "1678233611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11194", "0.0", "3.504", "1678233611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11195", "0.0", "1.752", "1678237211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11195", "0.0", "3.504", "1678237211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11195", "0.0", "1.752", "1678237211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11195", "0.0", "3.504", "1678237211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11196", "0.0", "1.752", "1678240811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11196", "0.0", "3.504", "1678240811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11196", "0.0", "1.752", "1678240811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11196", "0.0", "3.504", "1678240811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11197", "0.0", "1.752", "1678244411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11197", "0.0", "3.504", "1678244411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11197", "0.0", "1.752", "1678244411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11197", "0.0", "3.504", "1678244411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11198", "0.0", "1.752", "1678248011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11198", "0.0", "3.504", "1678248011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11198", "0.0", "1.752", "1678248011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11198", "0.0", "3.504", "1678248011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11199", "0.0", "1.752", "1678251611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11199", "0.0", "3.504", "1678251611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11199", "0.0", "1.752", "1678251611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11199", "0.0", "3.504", "1678251611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11200", "0.0", "1.752", "1678255211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11200", "0.0", "3.504", "1678255211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11200", "0.0", "1.752", "1678255211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11200", "0.0", "3.504", "1678255211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11201", "0.0", "1.752", "1678258811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11201", "0.0", "3.504", "1678258811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11201", "0.0", "1.752", "1678258811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11201", "0.0", "3.504", "1678258811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11202", "0.0", "1.752", "1678262411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11202", "0.0", "3.504", "1678262411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11202", "0.0", "1.752", "1678262411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11202", "0.0", "3.504", "1678262411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11203", "0.0", "1.752", "1678266011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11203", "0.0", "3.504", "1678266011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11203", "0.0", "1.752", "1678266011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11203", "0.0", "3.504", "1678266011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11204", "0.0", "1.752", "1678269611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11204", "0.0", "3.504", "1678269611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11204", "0.0", "1.752", "1678269611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11204", "0.0", "3.504", "1678269611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11205", "0.0", "1.752", "1678273223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11205", "0.0", "3.504", "1678273223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11205", "0.0", "1.752", "1678273223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11205", "0.0", "3.504", "1678273223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11206", "0.0", "1.752", "1678276811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11206", "0.0", "3.504", "1678276811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11206", "0.0", "1.752", "1678276811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11206", "0.0", "3.504", "1678276811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11207", "0.0", "1.752", "1678280411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11207", "0.0", "3.504", "1678280411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11207", "0.0", "1.752", "1678280411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11207", "0.0", "3.504", "1678280411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11208", "0.0", "1.752", "1678284011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11208", "0.0", "3.504", "1678284011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11208", "0.0", "1.752", "1678284011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11208", "0.0", "3.504", "1678284011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11209", "0.0", "1.752", "1678287635"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11209", "0.0", "3.504", "1678287635"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11209", "0.0", "1.752", "1678287635"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11209", "0.0", "3.504", "1678287635"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11210", "0.0", "1.752", "1678291211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11210", "0.0", "3.504", "1678291211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11210", "0.0", "1.752", "1678291211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11210", "0.0", "3.504", "1678291211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11211", "0.0", "1.752", "1678294811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11211", "0.0", "3.504", "1678294811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11211", "0.0", "1.752", "1678294811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11211", "0.0", "3.504", "1678294811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11212", "0.0", "1.752", "1678298411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11212", "0.0", "3.504", "1678298411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11212", "0.0", "1.752", "1678298411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11212", "0.0", "3.504", "1678298411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11213", "0.0", "1.752", "1678302011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11213", "0.0", "3.504", "1678302011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11213", "0.0", "1.752", "1678302011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11213", "0.0", "3.504", "1678302011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11214", "0.0", "1.752", "1678305623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11214", "0.0", "3.504", "1678305623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11214", "0.0", "1.752", "1678305623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11214", "0.0", "3.504", "1678305623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11215", "0.0", "1.752", "1678309211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11215", "0.0", "3.504", "1678309211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11215", "0.0", "1.752", "1678309211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11215", "0.0", "3.504", "1678309211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11216", "0.0", "1.752", "1678312811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11216", "0.0", "3.504", "1678312811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11216", "0.0", "1.752", "1678312811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11216", "0.0", "3.504", "1678312811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11217", "0.0", "1.752", "1678316411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11217", "0.0", "3.504", "1678316411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11217", "0.0", "1.752", "1678316411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11217", "0.0", "3.504", "1678316411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11218", "0.0", "1.752", "1678320023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11218", "0.0", "3.504", "1678320023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11218", "0.0", "1.752", "1678320023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11218", "0.0", "3.504", "1678320023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11219", "0.0", "1.752", "1678323611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11219", "0.0", "3.504", "1678323611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11219", "0.0", "1.752", "1678323611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11219", "0.0", "3.504", "1678323611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11220", "0.0", "1.752", "1678327211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11220", "0.0", "3.504", "1678327211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11220", "0.0", "1.752", "1678327211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11220", "0.0", "3.504", "1678327211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11221", "0.0", "1.752", "1678330811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11221", "0.0", "3.504", "1678330811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11221", "0.0", "1.752", "1678330811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11221", "0.0", "3.504", "1678330811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11222", "0.0", "1.752", "1678334411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11222", "0.0", "3.504", "1678334411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11222", "0.0", "1.752", "1678334411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11222", "0.0", "3.504", "1678334411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11223", "0.0", "1.752", "1678338011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11223", "0.0", "3.504", "1678338011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11223", "0.0", "1.752", "1678338011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11223", "0.0", "3.504", "1678338011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11224", "0.0", "1.752", "1678341611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11224", "0.0", "3.504", "1678341611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11224", "0.0", "1.752", "1678341611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11224", "0.0", "3.504", "1678341611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11225", "0.0", "1.752", "1678345211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11225", "0.0", "3.504", "1678345211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11225", "0.0", "1.752", "1678345211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11225", "0.0", "3.504", "1678345211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11226", "0.0", "1.752", "1678348811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11226", "0.0", "3.504", "1678348811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11226", "0.0", "1.752", "1678348811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11226", "0.0", "3.504", "1678348811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11227", "0.0", "1.752", "1678352411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11227", "0.0", "3.504", "1678352411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11227", "0.0", "1.752", "1678352411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11227", "0.0", "3.504", "1678352411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11228", "0.0", "1.752", "1678356011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11228", "0.0", "3.504", "1678356011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11228", "0.0", "1.752", "1678356011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11228", "0.0", "3.504", "1678356011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11229", "0.0", "1.752", "1678359611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11229", "0.0", "3.504", "1678359611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11229", "0.0", "1.752", "1678359611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11229", "0.0", "3.504", "1678359611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11230", "0.0", "1.752", "1678363211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11230", "0.0", "3.504", "1678363211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11230", "0.0", "1.752", "1678363211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11230", "0.0", "3.504", "1678363211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11231", "0.0", "1.752", "1678366811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11231", "0.0", "3.504", "1678366811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11231", "0.0", "1.752", "1678366811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11231", "0.0", "3.504", "1678366811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11232", "0.0", "1.752", "1678370411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11232", "0.0", "3.504", "1678370411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11232", "0.0", "1.752", "1678370411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11232", "0.0", "3.504", "1678370411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11233", "0.0", "1.752", "1678374011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11233", "0.0", "3.504", "1678374011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11233", "0.0", "1.752", "1678374011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11233", "0.0", "3.504", "1678374011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11234", "0.0", "1.752", "1678377611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11234", "0.0", "3.504", "1678377611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11234", "0.0", "1.752", "1678377611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11234", "0.0", "3.504", "1678377611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11235", "0.0", "1.752", "1678381211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11235", "0.0", "3.504", "1678381211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11235", "0.0", "1.752", "1678381211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11235", "0.0", "3.504", "1678381211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11236", "0.0", "1.752", "1678384811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11236", "0.0", "3.504", "1678384811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11236", "0.0", "1.752", "1678384811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11236", "0.0", "3.504", "1678384811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11237", "0.0", "1.752", "1678388411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11237", "0.0", "3.504", "1678388411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11237", "0.0", "1.752", "1678388411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11237", "0.0", "3.504", "1678388411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11238", "0.0", "1.752", "1678392011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11238", "0.0", "3.504", "1678392011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11238", "0.0", "1.752", "1678392011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11238", "0.0", "3.504", "1678392011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11239", "0.0", "1.752", "1678395683"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11239", "0.0", "3.504", "1678395683"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11239", "0.0", "1.752", "1678395683"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11239", "0.0", "3.504", "1678395683"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11240", "0.0", "1.752", "1678399211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11240", "0.0", "3.504", "1678399211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11240", "0.0", "1.752", "1678399211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11240", "0.0", "3.504", "1678399211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11241", "0.0", "1.752", "1678402823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11241", "0.0", "3.504", "1678402823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11241", "0.0", "1.752", "1678402823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11241", "0.0", "3.504", "1678402823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11242", "0.0", "1.752", "1678406411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11242", "0.0", "3.504", "1678406411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11242", "0.0", "1.752", "1678406411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11242", "0.0", "3.504", "1678406411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11243", "0.0", "1.752", "1678410011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11243", "0.0", "3.504", "1678410011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11243", "0.0", "1.752", "1678410011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11243", "0.0", "3.504", "1678410011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11244", "0.0", "1.752", "1678413611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11244", "0.0", "3.504", "1678413611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11244", "0.0", "1.752", "1678413611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11244", "0.0", "3.504", "1678413611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11245", "0.0", "1.752", "1678417211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11245", "0.0", "3.504", "1678417211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11245", "0.0", "1.752", "1678417211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11245", "0.0", "3.504", "1678417211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11246", "0.0", "1.752", "1678420811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11246", "0.0", "3.504", "1678420811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11246", "0.0", "1.752", "1678420811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11246", "0.0", "3.504", "1678420811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11247", "0.0", "1.752", "1678424411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11247", "0.0", "3.504", "1678424411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11247", "0.0", "1.752", "1678424411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11247", "0.0", "3.504", "1678424411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11248", "0.0", "1.752", "1678428011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11248", "0.0", "3.504", "1678428011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11248", "0.0", "1.752", "1678428011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11248", "0.0", "3.504", "1678428011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11249", "0.0", "1.752", "1678431611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11249", "0.0", "3.504", "1678431611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11249", "0.0", "1.752", "1678431611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11249", "0.0", "3.504", "1678431611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11250", "0.0", "1.752", "1678435211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11250", "0.0", "3.504", "1678435211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11250", "0.0", "1.752", "1678435211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11250", "0.0", "3.504", "1678435211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11251", "0.0", "1.752", "1678438811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11251", "0.0", "3.504", "1678438811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11251", "0.0", "1.752", "1678438811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11251", "0.0", "3.504", "1678438811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11252", "0.0", "1.752", "1678442411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11252", "0.0", "3.504", "1678442411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11252", "0.0", "1.752", "1678442411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11252", "0.0", "3.504", "1678442411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11253", "0.0", "1.752", "1678446011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11253", "0.0", "3.504", "1678446011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11253", "0.0", "1.752", "1678446011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11253", "0.0", "3.504", "1678446011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11254", "0.0", "1.752", "1678449623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11254", "0.0", "3.504", "1678449623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11254", "0.0", "1.752", "1678449623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11254", "0.0", "3.504", "1678449623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11255", "0.0", "1.752", "1678453211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11255", "0.0", "3.504", "1678453211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11255", "0.0", "1.752", "1678453211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11255", "0.0", "3.504", "1678453211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11256", "0.0", "1.752", "1678456811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11256", "0.0", "3.504", "1678456811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11256", "0.0", "1.752", "1678456811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11256", "0.0", "3.504", "1678456811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11257", "0.0", "1.752", "1678460423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11257", "0.0", "3.504", "1678460423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11257", "0.0", "1.752", "1678460423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11257", "0.0", "3.504", "1678460423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11258", "0.0", "1.752", "1678464011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11258", "0.0", "3.504", "1678464011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11258", "0.0", "1.752", "1678464011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11258", "0.0", "3.504", "1678464011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11259", "0.0", "1.752", "1678467611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11259", "0.0", "3.504", "1678467611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11259", "0.0", "1.752", "1678467611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11259", "0.0", "3.504", "1678467611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11260", "0.0", "1.752", "1678471211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11260", "0.0", "3.504", "1678471211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11260", "0.0", "1.752", "1678471211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11260", "0.0", "3.504", "1678471211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11261", "0.0", "1.752", "1678474811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11261", "0.0", "3.504", "1678474811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11261", "0.0", "1.752", "1678474811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11261", "0.0", "3.504", "1678474811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11262", "0.0", "1.752", "1678478423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11262", "0.0", "3.504", "1678478423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11262", "0.0", "1.752", "1678478423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11262", "0.0", "3.504", "1678478423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11263", "0.0", "1.752", "1678482011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11263", "0.0", "3.504", "1678482011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11263", "0.0", "1.752", "1678482011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11263", "0.0", "3.504", "1678482011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11264", "0.0", "1.752", "1678485611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11264", "0.0", "3.504", "1678485611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11264", "0.0", "1.752", "1678485611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11264", "0.0", "3.504", "1678485611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11265", "0.0", "1.752", "1678489211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11265", "0.0", "3.504", "1678489211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11265", "0.0", "1.752", "1678489211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11265", "0.0", "3.504", "1678489211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11266", "0.0", "1.752", "1678492811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11266", "0.0", "3.504", "1678492811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11266", "0.0", "1.752", "1678492811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11266", "0.0", "3.504", "1678492811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11267", "0.0", "1.752", "1678496411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11267", "0.0", "3.504", "1678496411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11267", "0.0", "1.752", "1678496411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11267", "0.0", "3.504", "1678496411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11268", "0.0", "1.752", "1678500047"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11268", "0.0", "3.504", "1678500047"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11268", "0.0", "1.752", "1678500047"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11268", "0.0", "3.504", "1678500047"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11269", "0.0", "1.752", "1678503623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11269", "0.0", "3.504", "1678503623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11269", "0.0", "1.752", "1678503623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11269", "0.0", "3.504", "1678503623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11270", "0.0", "1.752", "1678507331"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11270", "0.0", "3.504", "1678507331"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11270", "0.0", "1.752", "1678507331"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11270", "0.0", "3.504", "1678507331"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11271", "0.0", "1.752", "1678510859"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11271", "0.0", "3.504", "1678510859"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11271", "0.0", "1.752", "1678510859"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11271", "0.0", "3.504", "1678510859"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11272", "0.0", "1.752", "1678514435"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11272", "0.0", "3.504", "1678514435"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11272", "0.0", "1.752", "1678514435"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11272", "0.0", "3.504", "1678514435"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11273", "0.0", "1.752", "1678518155"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11273", "0.0", "3.504", "1678518155"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11273", "0.0", "1.752", "1678518155"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11273", "0.0", "3.504", "1678518155"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11274", "0.0", "1.752", "1678521755"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11274", "0.0", "3.504", "1678521755"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11274", "0.0", "1.752", "1678521755"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11274", "0.0", "3.504", "1678521755"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11275", "0.0", "1.752", "1678525295"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11275", "0.0", "3.504", "1678525295"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11275", "0.0", "1.752", "1678525295"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11275", "0.0", "3.504", "1678525295"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11276", "0.0", "1.752", "1678528811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11276", "0.0", "3.504", "1678528811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11276", "0.0", "1.752", "1678528811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11276", "0.0", "3.504", "1678528811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11277", "0.0", "1.752", "1678532411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11277", "0.0", "3.504", "1678532411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11277", "0.0", "1.752", "1678532411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11277", "0.0", "3.504", "1678532411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11278", "0.0", "1.752", "1678536011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11278", "0.0", "3.504", "1678536011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11278", "0.0", "1.752", "1678536011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11278", "0.0", "3.504", "1678536011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11279", "0.0", "1.752", "1678539611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11279", "0.0", "3.504", "1678539611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11279", "0.0", "1.752", "1678539611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11279", "0.0", "3.504", "1678539611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11280", "0.0", "1.752", "1678543211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11280", "0.0", "3.504", "1678543211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11280", "0.0", "1.752", "1678543211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11280", "0.0", "3.504", "1678543211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11281", "0.0", "1.752", "1678546811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11281", "0.0", "3.504", "1678546811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11281", "0.0", "1.752", "1678546811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11281", "0.0", "3.504", "1678546811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11282", "0.0", "1.752", "1678550411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11282", "0.0", "3.504", "1678550411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11282", "0.0", "1.752", "1678550411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11282", "0.0", "3.504", "1678550411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11283", "0.0", "1.752", "1678554011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11283", "0.0", "3.504", "1678554011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11283", "0.0", "1.752", "1678554011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11283", "0.0", "3.504", "1678554011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11284", "0.0", "1.752", "1678557611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11284", "0.0", "3.504", "1678557611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11284", "0.0", "1.752", "1678557611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11284", "0.0", "3.504", "1678557611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11285", "0.0", "1.752", "1678561211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11285", "0.0", "3.504", "1678561211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11285", "0.0", "1.752", "1678561211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11285", "0.0", "3.504", "1678561211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11286", "0.0", "1.752", "1678564811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11286", "0.0", "3.504", "1678564811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11286", "0.0", "1.752", "1678564811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11286", "0.0", "3.504", "1678564811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11287", "0.0", "1.752", "1678568423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11287", "0.0", "3.504", "1678568423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11287", "0.0", "1.752", "1678568423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11287", "0.0", "3.504", "1678568423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11288", "0.0", "1.752", "1678572011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11288", "0.0", "3.504", "1678572011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11288", "0.0", "1.752", "1678572011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11288", "0.0", "3.504", "1678572011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11289", "0.0", "1.752", "1678575611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11289", "0.0", "3.504", "1678575611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11289", "0.0", "1.752", "1678575611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11289", "0.0", "3.504", "1678575611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11290", "0.0", "1.752", "1678579211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11290", "0.0", "3.504", "1678579211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11290", "0.0", "1.752", "1678579211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11290", "0.0", "3.504", "1678579211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11291", "0.0", "1.752", "1678582811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11291", "0.0", "3.504", "1678582811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11291", "0.0", "1.752", "1678582811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11291", "0.0", "3.504", "1678582811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11292", "0.0", "1.752", "1678586411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11292", "0.0", "3.504", "1678586411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11292", "0.0", "1.752", "1678586411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11292", "0.0", "3.504", "1678586411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11293", "0.0", "1.752", "1678590011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11293", "0.0", "3.504", "1678590011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11293", "0.0", "1.752", "1678590011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11293", "0.0", "3.504", "1678590011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11294", "0.0", "1.752", "1678593623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11294", "0.0", "3.504", "1678593623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11294", "0.0", "1.752", "1678593623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11294", "0.0", "3.504", "1678593623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11295", "0.0", "1.752", "1678597211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11295", "0.0", "3.504", "1678597211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11295", "0.0", "1.752", "1678597211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11295", "0.0", "3.504", "1678597211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11296", "0.0", "1.752", "1678600811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11296", "0.0", "3.504", "1678600811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11296", "0.0", "1.752", "1678600811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11296", "0.0", "3.504", "1678600811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11297", "0.0", "1.752", "1678604411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11297", "0.0", "3.504", "1678604411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11297", "0.0", "1.752", "1678604411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11297", "0.0", "3.504", "1678604411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11298", "0.0", "1.752", "1678608011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11298", "0.0", "3.504", "1678608011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11298", "0.0", "1.752", "1678608011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11298", "0.0", "3.504", "1678608011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11299", "0.0", "1.752", "1678611611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11299", "0.0", "3.504", "1678611611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11299", "0.0", "1.752", "1678611611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11299", "0.0", "3.504", "1678611611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11300", "0.0", "1.752", "1678615211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11300", "0.0", "3.504", "1678615211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11300", "0.0", "1.752", "1678615211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11300", "0.0", "3.504", "1678615211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11301", "0.0", "1.752", "1678618811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11301", "0.0", "3.504", "1678618811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11301", "0.0", "1.752", "1678618811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11301", "0.0", "3.504", "1678618811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11302", "0.0", "1.752", "1678622411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11302", "0.0", "3.504", "1678622411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11302", "0.0", "1.752", "1678622411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11302", "0.0", "3.504", "1678622411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11303", "0.0", "1.752", "1678626011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11303", "0.0", "3.504", "1678626011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11303", "0.0", "1.752", "1678626011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11303", "0.0", "3.504", "1678626011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11304", "0.0", "1.752", "1678629611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11304", "0.0", "3.504", "1678629611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11304", "0.0", "1.752", "1678629611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11304", "0.0", "3.504", "1678629611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11305", "0.0", "1.752", "1678633223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11305", "0.0", "3.504", "1678633223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11305", "0.0", "1.752", "1678633223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11305", "0.0", "3.504", "1678633223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11306", "0.0", "1.752", "1678636811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11306", "0.0", "3.504", "1678636811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11306", "0.0", "1.752", "1678636811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11306", "0.0", "3.504", "1678636811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11307", "0.0", "1.752", "1678640411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11307", "0.0", "3.504", "1678640411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11307", "0.0", "1.752", "1678640411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11307", "0.0", "3.504", "1678640411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11308", "0.0", "1.752", "1678644011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11308", "0.0", "3.504", "1678644011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11308", "0.0", "1.752", "1678644011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11308", "0.0", "3.504", "1678644011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11309", "0.0", "1.752", "1678647611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11309", "0.0", "3.504", "1678647611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11309", "0.0", "1.752", "1678647611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11309", "0.0", "3.504", "1678647611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11310", "0.0", "1.752", "1678651211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11310", "0.0", "3.504", "1678651211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11310", "0.0", "1.752", "1678651211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11310", "0.0", "3.504", "1678651211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11311", "0.0", "1.752", "1678654811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11311", "0.0", "3.504", "1678654811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11311", "0.0", "1.752", "1678654811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11311", "0.0", "3.504", "1678654811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11312", "0.0", "1.752", "1678658411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11312", "0.0", "3.504", "1678658411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11312", "0.0", "1.752", "1678658411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11312", "0.0", "3.504", "1678658411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11313", "0.0", "1.752", "1678662023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11313", "0.0", "3.504", "1678662023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11313", "0.0", "1.752", "1678662023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11313", "0.0", "3.504", "1678662023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11314", "0.0", "1.752", "1678665611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11314", "0.0", "3.504", "1678665611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11314", "0.0", "1.752", "1678665611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11314", "0.0", "3.504", "1678665611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11315", "0.0", "1.752", "1678669211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11315", "0.0", "3.504", "1678669211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11315", "0.0", "1.752", "1678669211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11315", "0.0", "3.504", "1678669211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11316", "0.0", "1.752", "1678672811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11316", "0.0", "3.504", "1678672811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11316", "0.0", "1.752", "1678672811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11316", "0.0", "3.504", "1678672811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11317", "0.0", "1.752", "1678676411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11317", "0.0", "3.504", "1678676411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11317", "0.0", "1.752", "1678676411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11317", "0.0", "3.504", "1678676411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11318", "0.0", "1.752", "1678680011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11318", "0.0", "3.504", "1678680011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11318", "0.0", "1.752", "1678680011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11318", "0.0", "3.504", "1678680011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11319", "0.0", "1.752", "1678683611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11319", "0.0", "3.504", "1678683611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11319", "0.0", "1.752", "1678683611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11319", "0.0", "3.504", "1678683611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11320", "0.0", "1.752", "1678687211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11320", "0.0", "3.504", "1678687211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11320", "0.0", "1.752", "1678687211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11320", "0.0", "3.504", "1678687211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11321", "0.0", "1.752", "1678690811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11321", "0.0", "3.504", "1678690811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11321", "0.0", "1.752", "1678690811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11321", "0.0", "3.504", "1678690811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11322", "0.0", "1.752", "1678694411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11322", "0.0", "3.504", "1678694411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11322", "0.0", "1.752", "1678694411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11322", "0.0", "3.504", "1678694411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11323", "0.0", "1.752", "1678698011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11323", "0.0", "3.504", "1678698011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11323", "0.0", "1.752", "1678698011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11323", "0.0", "3.504", "1678698011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11324", "0.0", "1.752", "1678701611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11324", "0.0", "3.504", "1678701611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11324", "0.0", "1.752", "1678701611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11324", "0.0", "3.504", "1678701611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11325", "0.0", "1.752", "1678705211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11325", "0.0", "3.504", "1678705211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11325", "0.0", "1.752", "1678705211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11325", "0.0", "3.504", "1678705211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11326", "0.0", "1.752", "1678708811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11326", "0.0", "3.504", "1678708811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11326", "0.0", "1.752", "1678708811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11326", "0.0", "3.504", "1678708811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11327", "0.0", "1.752", "1678712423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11327", "0.0", "3.504", "1678712423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11327", "0.0", "1.752", "1678712423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11327", "0.0", "3.504", "1678712423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11328", "0.0", "1.752", "1678716071"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11328", "0.0", "3.504", "1678716071"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11328", "0.0", "1.752", "1678716071"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11328", "0.0", "3.504", "1678716071"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11329", "0.0", "1.752", "1678719611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11329", "0.0", "3.504", "1678719611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11329", "0.0", "1.752", "1678719611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11329", "0.0", "3.504", "1678719611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11330", "0.0", "1.752", "1678723211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11330", "0.0", "3.504", "1678723211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11330", "0.0", "1.752", "1678723211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11330", "0.0", "3.504", "1678723211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11331", "0.0", "1.752", "1678726811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11331", "0.0", "3.504", "1678726811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11331", "0.0", "1.752", "1678726811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11331", "0.0", "3.504", "1678726811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11332", "0.0", "1.752", "1678730411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11332", "0.0", "3.504", "1678730411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11332", "0.0", "1.752", "1678730411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11332", "0.0", "3.504", "1678730411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11333", "0.0", "1.752", "1678734011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11333", "0.0", "3.504", "1678734011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11333", "0.0", "1.752", "1678734011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11333", "0.0", "3.504", "1678734011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11334", "0.0", "1.752", "1678737611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11334", "0.0", "3.504", "1678737611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11334", "0.0", "1.752", "1678737611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11334", "0.0", "3.504", "1678737611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11335", "0.0", "1.752", "1678741211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11335", "0.0", "3.504", "1678741211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11335", "0.0", "1.752", "1678741211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11335", "0.0", "3.504", "1678741211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11336", "0.0", "1.752", "1678744811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11336", "0.0", "3.504", "1678744811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11336", "0.0", "1.752", "1678744811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11336", "0.0", "3.504", "1678744811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11337", "0.0", "1.752", "1678748411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11337", "0.0", "3.504", "1678748411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11337", "0.0", "1.752", "1678748411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11337", "0.0", "3.504", "1678748411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11338", "0.0", "1.752", "1678752011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11338", "0.0", "3.504", "1678752011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11338", "0.0", "1.752", "1678752011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11338", "0.0", "3.504", "1678752011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11339", "0.0", "1.752", "1678755611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11339", "0.0", "3.504", "1678755611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11339", "0.0", "1.752", "1678755611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11339", "0.0", "3.504", "1678755611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11340", "0.0", "1.752", "1678759223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11340", "0.0", "3.504", "1678759223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11340", "0.0", "1.752", "1678759223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11340", "0.0", "3.504", "1678759223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11341", "0.0", "1.752", "1678762811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11341", "0.0", "3.504", "1678762811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11341", "0.0", "1.752", "1678762811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11341", "0.0", "3.504", "1678762811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11342", "0.0", "1.752", "1678766411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11342", "0.0", "3.504", "1678766411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11342", "0.0", "1.752", "1678766411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11342", "0.0", "3.504", "1678766411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11343", "0.0", "1.752", "1678770011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11343", "0.0", "3.504", "1678770011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11343", "0.0", "1.752", "1678770011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11343", "0.0", "3.504", "1678770011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11344", "0.0", "1.752", "1678773611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11344", "0.0", "3.504", "1678773611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11344", "0.0", "1.752", "1678773611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11344", "0.0", "3.504", "1678773611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11345", "0.0", "1.752", "1678777211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11345", "0.0", "3.504", "1678777211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11345", "0.0", "1.752", "1678777211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11345", "0.0", "3.504", "1678777211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11346", "0.0", "1.752", "1678780811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11346", "0.0", "3.504", "1678780811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11346", "0.0", "1.752", "1678780811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11346", "0.0", "3.504", "1678780811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11347", "0.0", "1.752", "1678784411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11347", "0.0", "3.504", "1678784411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11347", "0.0", "1.752", "1678784411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11347", "0.0", "3.504", "1678784411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11348", "0.0", "1.752", "1678788011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11348", "0.0", "3.504", "1678788011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11348", "0.0", "1.752", "1678788011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11348", "0.0", "3.504", "1678788011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11349", "0.0", "1.752", "1678791611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11349", "0.0", "3.504", "1678791611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11349", "0.0", "1.752", "1678791611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11349", "0.0", "3.504", "1678791611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11350", "0.0", "1.752", "1678795211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11350", "0.0", "3.504", "1678795211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11350", "0.0", "1.752", "1678795211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11350", "0.0", "3.504", "1678795211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11351", "0.0", "1.752", "1678798811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11351", "0.0", "3.504", "1678798811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11351", "0.0", "1.752", "1678798811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11351", "0.0", "3.504", "1678798811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11352", "0.0", "1.752", "1678802411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11352", "0.0", "3.504", "1678802411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11352", "0.0", "1.752", "1678802411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11352", "0.0", "3.504", "1678802411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11353", "0.0", "1.752", "1678806023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11353", "0.0", "3.504", "1678806023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11353", "0.0", "1.752", "1678806023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11353", "0.0", "3.504", "1678806023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11354", "0.0", "1.752", "1678809611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11354", "0.0", "3.504", "1678809611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11354", "0.0", "1.752", "1678809611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11354", "0.0", "3.504", "1678809611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11355", "0.0", "1.752", "1678813211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11355", "0.0", "3.504", "1678813211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11355", "0.0", "1.752", "1678813211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11355", "0.0", "3.504", "1678813211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11356", "0.0", "1.752", "1678816811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11356", "0.0", "3.504", "1678816811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11356", "0.0", "1.752", "1678816811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11356", "0.0", "3.504", "1678816811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11357", "0.0", "1.752", "1678820411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11357", "0.0", "3.504", "1678820411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11357", "0.0", "1.752", "1678820411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11357", "0.0", "3.504", "1678820411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11358", "0.0", "1.752", "1678824023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11358", "0.0", "3.504", "1678824023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11358", "0.0", "1.752", "1678824023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11358", "0.0", "3.504", "1678824023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11359", "0.0", "1.752", "1678827611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11359", "0.0", "3.504", "1678827611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11359", "0.0", "1.752", "1678827611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11359", "0.0", "3.504", "1678827611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11360", "0.0", "1.752", "1678831223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11360", "0.0", "3.504", "1678831223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11360", "0.0", "1.752", "1678831223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11360", "0.0", "3.504", "1678831223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11361", "0.0", "1.752", "1678834811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11361", "0.0", "3.504", "1678834811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11361", "0.0", "1.752", "1678834811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11361", "0.0", "3.504", "1678834811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11362", "0.0", "1.752", "1678838411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11362", "0.0", "3.504", "1678838411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11362", "0.0", "1.752", "1678838411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11362", "0.0", "3.504", "1678838411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11363", "0.0", "1.752", "1678842011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11363", "0.0", "3.504", "1678842011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11363", "0.0", "1.752", "1678842011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11363", "0.0", "3.504", "1678842011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11364", "0.0", "1.752", "1678845611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11364", "0.0", "3.504", "1678845611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11364", "0.0", "1.752", "1678845611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11364", "0.0", "3.504", "1678845611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11365", "0.0", "1.752", "1678849211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11365", "0.0", "3.504", "1678849211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11365", "0.0", "1.752", "1678849211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11365", "0.0", "3.504", "1678849211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11366", "0.0", "1.752", "1678852811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11366", "0.0", "3.504", "1678852811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11366", "0.0", "1.752", "1678852811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11366", "0.0", "3.504", "1678852811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11367", "0.0", "1.752", "1678856411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11367", "0.0", "3.504", "1678856411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11367", "0.0", "1.752", "1678856411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11367", "0.0", "3.504", "1678856411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11368", "0.0", "1.752", "1678860023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11368", "0.0", "3.504", "1678860023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11368", "0.0", "1.752", "1678860023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11368", "0.0", "3.504", "1678860023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11369", "0.0", "1.752", "1678863611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11369", "0.0", "3.504", "1678863611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11369", "0.0", "1.752", "1678863611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11369", "0.0", "3.504", "1678863611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11370", "0.0", "1.752", "1678867211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11370", "0.0", "3.504", "1678867211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11370", "0.0", "1.752", "1678867211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11370", "0.0", "3.504", "1678867211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11371", "0.0", "1.752", "1678870811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11371", "0.0", "3.504", "1678870811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11371", "0.0", "1.752", "1678870811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11371", "0.0", "3.504", "1678870811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11372", "0.0", "1.752", "1678874411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11372", "0.0", "3.504", "1678874411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11372", "0.0", "1.752", "1678874411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11372", "0.0", "3.504", "1678874411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11373", "0.0", "1.752", "1678878011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11373", "0.0", "3.504", "1678878011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11373", "0.0", "1.752", "1678878011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11373", "0.0", "3.504", "1678878011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11374", "0.0", "1.752", "1678881611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11374", "0.0", "3.504", "1678881611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11374", "0.0", "1.752", "1678881611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11374", "0.0", "3.504", "1678881611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11375", "0.0", "1.752", "1678885211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11375", "0.0", "3.504", "1678885211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11375", "0.0", "1.752", "1678885211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11375", "0.0", "3.504", "1678885211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11376", "0.0", "1.752", "1678888811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11376", "0.0", "3.504", "1678888811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11376", "0.0", "1.752", "1678888811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11376", "0.0", "3.504", "1678888811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11377", "0.0", "1.752", "1678892411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11377", "0.0", "3.504", "1678892411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11377", "0.0", "1.752", "1678892411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11377", "0.0", "3.504", "1678892411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11378", "0.0", "1.752", "1678896095"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11378", "0.0", "3.504", "1678896095"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11378", "0.0", "1.752", "1678896095"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11378", "0.0", "3.504", "1678896095"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11379", "0.0", "1.752", "1678899623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11379", "0.0", "3.504", "1678899623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11379", "0.0", "1.752", "1678899623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11379", "0.0", "3.504", "1678899623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11380", "0.0", "1.752", "1678903211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11380", "0.0", "3.504", "1678903211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11380", "0.0", "1.752", "1678903211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11380", "0.0", "3.504", "1678903211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11381", "0.0", "1.752", "1678906811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11381", "0.0", "3.504", "1678906811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11381", "0.0", "1.752", "1678906811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11381", "0.0", "3.504", "1678906811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11382", "0.0", "1.752", "1678910411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11382", "0.0", "3.504", "1678910411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11382", "0.0", "1.752", "1678910411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11382", "0.0", "3.504", "1678910411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11383", "0.0", "1.752", "1678914011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11383", "0.0", "3.504", "1678914011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11383", "0.0", "1.752", "1678914011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11383", "0.0", "3.504", "1678914011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11384", "0.0", "1.752", "1678917635"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11384", "0.0", "3.504", "1678917635"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11384", "0.0", "1.752", "1678917635"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11384", "0.0", "3.504", "1678917635"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11385", "0.0", "1.752", "1678921211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11385", "0.0", "3.504", "1678921211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11385", "0.0", "1.752", "1678921211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11385", "0.0", "3.504", "1678921211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11386", "0.0", "1.752", "1678924823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11386", "0.0", "3.504", "1678924823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11386", "0.0", "1.752", "1678924823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11386", "0.0", "3.504", "1678924823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11387", "0.0", "1.752", "1678928423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11387", "0.0", "3.504", "1678928423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11387", "0.0", "1.752", "1678928423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11387", "0.0", "3.504", "1678928423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11388", "0.0", "1.752", "1678932023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11388", "0.0", "3.504", "1678932023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11388", "0.0", "1.752", "1678932023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11388", "0.0", "3.504", "1678932023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11389", "0.0", "1.752", "1678935611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11389", "0.0", "3.504", "1678935611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11389", "0.0", "1.752", "1678935611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11389", "0.0", "3.504", "1678935611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11390", "0.0", "1.752", "1678939211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11390", "0.0", "3.504", "1678939211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11390", "0.0", "1.752", "1678939211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11390", "0.0", "3.504", "1678939211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11391", "0.0", "1.752", "1678942811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11391", "0.0", "3.504", "1678942811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11391", "0.0", "1.752", "1678942811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11391", "0.0", "3.504", "1678942811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11392", "0.0", "1.752", "1678946411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11392", "0.0", "3.504", "1678946411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11392", "0.0", "1.752", "1678946411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11392", "0.0", "3.504", "1678946411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11393", "0.0", "1.752", "1678950011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11393", "0.0", "3.504", "1678950011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11393", "0.0", "1.752", "1678950011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11393", "0.0", "3.504", "1678950011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11394", "0.0", "1.752", "1678953611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11394", "0.0", "3.504", "1678953611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11394", "0.0", "1.752", "1678953611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11394", "0.0", "3.504", "1678953611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11395", "0.0", "1.752", "1678957211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11395", "0.0", "3.504", "1678957211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11395", "0.0", "1.752", "1678957211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11395", "0.0", "3.504", "1678957211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11396", "0.0", "1.752", "1678960811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11396", "0.0", "3.504", "1678960811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11396", "0.0", "1.752", "1678960811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11396", "0.0", "3.504", "1678960811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11397", "0.0", "1.752", "1678964411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11397", "0.0", "3.504", "1678964411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11397", "0.0", "1.752", "1678964411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11397", "0.0", "3.504", "1678964411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11398", "0.0", "1.752", "1678968011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11398", "0.0", "3.504", "1678968011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11398", "0.0", "1.752", "1678968011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11398", "0.0", "3.504", "1678968011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11399", "0.0", "1.752", "1678971611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11399", "0.0", "3.504", "1678971611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11399", "0.0", "1.752", "1678971611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11399", "0.0", "3.504", "1678971611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11400", "0.0", "1.752", "1678975211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11400", "0.0", "3.504", "1678975211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11400", "0.0", "1.752", "1678975211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11400", "0.0", "3.504", "1678975211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11401", "0.0", "1.752", "1678978823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11401", "0.0", "3.504", "1678978823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11401", "0.0", "1.752", "1678978823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11401", "0.0", "3.504", "1678978823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11402", "0.0", "1.752", "1678982411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11402", "0.0", "3.504", "1678982411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11402", "0.0", "1.752", "1678982411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11402", "0.0", "3.504", "1678982411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11403", "0.0", "1.752", "1678986011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11403", "0.0", "3.504", "1678986011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11403", "0.0", "1.752", "1678986011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11403", "0.0", "3.504", "1678986011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11404", "0.0", "1.752", "1678989623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11404", "0.0", "3.504", "1678989623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11404", "0.0", "1.752", "1678989623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11404", "0.0", "3.504", "1678989623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11405", "0.0", "1.752", "1678993211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11405", "0.0", "3.504", "1678993211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11405", "0.0", "1.752", "1678993211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11405", "0.0", "3.504", "1678993211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11406", "0.0", "1.752", "1678996811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11406", "0.0", "3.504", "1678996811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11406", "0.0", "1.752", "1678996811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11406", "0.0", "3.504", "1678996811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11407", "0.0", "1.752", "1679000411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11407", "0.0", "3.504", "1679000411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11407", "0.0", "1.752", "1679000411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11407", "0.0", "3.504", "1679000411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11408", "0.0", "1.752", "1679004011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11408", "0.0", "3.504", "1679004011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11408", "0.0", "1.752", "1679004011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11408", "0.0", "3.504", "1679004011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11409", "0.0", "1.752", "1679007611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11409", "0.0", "3.504", "1679007611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11409", "0.0", "1.752", "1679007611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11409", "0.0", "3.504", "1679007611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11410", "0.0", "1.752", "1679011211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11410", "0.0", "3.504", "1679011211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11410", "0.0", "1.752", "1679011211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11410", "0.0", "3.504", "1679011211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11411", "0.0", "1.752", "1679014811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11411", "0.0", "3.504", "1679014811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11411", "0.0", "1.752", "1679014811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11411", "0.0", "3.504", "1679014811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11412", "0.0", "1.752", "1679018447"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11412", "0.0", "3.504", "1679018447"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11412", "0.0", "1.752", "1679018447"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11412", "0.0", "3.504", "1679018447"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11413", "0.0", "1.752", "1679022011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11413", "0.0", "3.504", "1679022011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11413", "0.0", "1.752", "1679022011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11413", "0.0", "3.504", "1679022011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11414", "0.0", "1.752", "1679025611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11414", "0.0", "3.504", "1679025611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11414", "0.0", "1.752", "1679025611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11414", "0.0", "3.504", "1679025611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11415", "0.0", "1.752", "1679029211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11415", "0.0", "3.504", "1679029211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11415", "0.0", "1.752", "1679029211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11415", "0.0", "3.504", "1679029211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11416", "0.0", "1.752", "1679032811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11416", "0.0", "3.504", "1679032811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11416", "0.0", "1.752", "1679032811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11416", "0.0", "3.504", "1679032811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11417", "0.0", "1.752", "1679036411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11417", "0.0", "3.504", "1679036411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11417", "0.0", "1.752", "1679036411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11417", "0.0", "3.504", "1679036411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11418", "0.0", "1.752", "1679040011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11418", "0.0", "3.504", "1679040011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11418", "0.0", "1.752", "1679040011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11418", "0.0", "3.504", "1679040011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11419", "0.0", "1.752", "1679043611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11419", "0.0", "3.504", "1679043611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11419", "0.0", "1.752", "1679043611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11419", "0.0", "3.504", "1679043611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11420", "0.0", "1.752", "1679047211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11420", "0.0", "3.504", "1679047211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11420", "0.0", "1.752", "1679047211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11420", "0.0", "3.504", "1679047211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11421", "0.0", "1.752", "1679050811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11421", "0.0", "3.504", "1679050811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11421", "0.0", "1.752", "1679050811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11421", "0.0", "3.504", "1679050811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11422", "0.0", "1.752", "1679054411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11422", "0.0", "3.504", "1679054411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11422", "0.0", "1.752", "1679054411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11422", "0.0", "3.504", "1679054411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11423", "0.0", "1.752", "1679058011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11423", "0.0", "3.504", "1679058011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11423", "0.0", "1.752", "1679058011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11423", "0.0", "3.504", "1679058011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11424", "0.0", "1.752", "1679061611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11424", "0.0", "3.504", "1679061611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11424", "0.0", "1.752", "1679061611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11424", "0.0", "3.504", "1679061611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11425", "0.0", "1.752", "1679065211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11425", "0.0", "3.504", "1679065211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11425", "0.0", "1.752", "1679065211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11425", "0.0", "3.504", "1679065211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11426", "0.0", "1.752", "1679068811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11426", "0.0", "3.504", "1679068811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11426", "0.0", "1.752", "1679068811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11426", "0.0", "3.504", "1679068811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11427", "0.0", "1.752", "1679072411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11427", "0.0", "3.504", "1679072411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11427", "0.0", "1.752", "1679072411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11427", "0.0", "3.504", "1679072411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11428", "0.0", "1.752", "1679076023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11428", "0.0", "3.504", "1679076023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11428", "0.0", "1.752", "1679076023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11428", "0.0", "3.504", "1679076023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11429", "0.0", "1.752", "1679079611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11429", "0.0", "3.504", "1679079611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11429", "0.0", "1.752", "1679079611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11429", "0.0", "3.504", "1679079611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11430", "0.0", "1.752", "1679083211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11430", "0.0", "3.504", "1679083211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11430", "0.0", "1.752", "1679083211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11430", "0.0", "3.504", "1679083211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11431", "0.0", "1.752", "1679086811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11431", "0.0", "3.504", "1679086811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11431", "0.0", "1.752", "1679086811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11431", "0.0", "3.504", "1679086811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11432", "0.0", "1.752", "1679090411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11432", "0.0", "3.504", "1679090411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11432", "0.0", "1.752", "1679090411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11432", "0.0", "3.504", "1679090411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11433", "0.0", "1.752", "1679094011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11433", "0.0", "3.504", "1679094011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11433", "0.0", "1.752", "1679094011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11433", "0.0", "3.504", "1679094011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11434", "0.0", "1.752", "1679097611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11434", "0.0", "3.504", "1679097611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11434", "0.0", "1.752", "1679097611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11434", "0.0", "3.504", "1679097611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11435", "0.0", "1.752", "1679101211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11435", "0.0", "3.504", "1679101211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11435", "0.0", "1.752", "1679101211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11435", "0.0", "3.504", "1679101211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11436", "0.0", "1.752", "1679104811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11436", "0.0", "3.504", "1679104811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11436", "0.0", "1.752", "1679104811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11436", "0.0", "3.504", "1679104811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11437", "0.0", "1.752", "1679108411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11437", "0.0", "3.504", "1679108411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11437", "0.0", "1.752", "1679108411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11437", "0.0", "3.504", "1679108411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11438", "0.0", "1.752", "1679112011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11438", "0.0", "3.504", "1679112011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11438", "0.0", "1.752", "1679112011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11438", "0.0", "3.504", "1679112011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11439", "0.0", "1.752", "1679115611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11439", "0.0", "3.504", "1679115611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11439", "0.0", "1.752", "1679115611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11439", "0.0", "3.504", "1679115611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11440", "0.0", "1.752", "1679119211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11440", "0.0", "3.504", "1679119211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11440", "0.0", "1.752", "1679119211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11440", "0.0", "3.504", "1679119211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11441", "0.0", "1.752", "1679122811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11441", "0.0", "3.504", "1679122811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11441", "0.0", "1.752", "1679122811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11441", "0.0", "3.504", "1679122811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11442", "0.0", "1.752", "1679126411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11442", "0.0", "3.504", "1679126411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11442", "0.0", "1.752", "1679126411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11442", "0.0", "3.504", "1679126411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11443", "0.0", "1.752", "1679130011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11443", "0.0", "3.504", "1679130011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11443", "0.0", "1.752", "1679130011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11443", "0.0", "3.504", "1679130011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11444", "0.0", "1.752", "1679133611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11444", "0.0", "3.504", "1679133611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11444", "0.0", "1.752", "1679133611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11444", "0.0", "3.504", "1679133611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11445", "0.0", "1.752", "1679137223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11445", "0.0", "3.504", "1679137223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11445", "0.0", "1.752", "1679137223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11445", "0.0", "3.504", "1679137223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11446", "0.0", "1.752", "1679140811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11446", "0.0", "3.504", "1679140811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11446", "0.0", "1.752", "1679140811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11446", "0.0", "3.504", "1679140811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11447", "0.0", "1.752", "1679144411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11447", "0.0", "3.504", "1679144411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11447", "0.0", "1.752", "1679144411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11447", "0.0", "3.504", "1679144411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11448", "0.0", "1.752", "1679148011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11448", "0.0", "3.504", "1679148011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11448", "0.0", "1.752", "1679148011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11448", "0.0", "3.504", "1679148011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11449", "0.0", "1.752", "1679151611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11449", "0.0", "3.504", "1679151611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11449", "0.0", "1.752", "1679151611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11449", "0.0", "3.504", "1679151611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11450", "0.0", "1.752", "1679155211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11450", "0.0", "3.504", "1679155211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11450", "0.0", "1.752", "1679155211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11450", "0.0", "3.504", "1679155211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11451", "0.0", "1.752", "1679158811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11451", "0.0", "3.504", "1679158811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11451", "0.0", "1.752", "1679158811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11451", "0.0", "3.504", "1679158811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11452", "0.0", "1.752", "1679162411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11452", "0.0", "3.504", "1679162411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11452", "0.0", "1.752", "1679162411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11452", "0.0", "3.504", "1679162411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11453", "0.0", "1.752", "1679166011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11453", "0.0", "3.504", "1679166011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11453", "0.0", "1.752", "1679166011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11453", "0.0", "3.504", "1679166011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11454", "0.0", "1.752", "1679169611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11454", "0.0", "3.504", "1679169611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11454", "0.0", "1.752", "1679169611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11454", "0.0", "3.504", "1679169611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11455", "0.0", "1.752", "1679173211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11455", "0.0", "3.504", "1679173211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11455", "0.0", "1.752", "1679173211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11455", "0.0", "3.504", "1679173211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11456", "0.0", "1.752", "1679176811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11456", "0.0", "3.504", "1679176811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11456", "0.0", "1.752", "1679176811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11456", "0.0", "3.504", "1679176811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11457", "0.0", "1.752", "1679180411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11457", "0.0", "3.504", "1679180411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11457", "0.0", "1.752", "1679180411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11457", "0.0", "3.504", "1679180411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11458", "0.0", "1.752", "1679184011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11458", "0.0", "3.504", "1679184011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11458", "0.0", "1.752", "1679184011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11458", "0.0", "3.504", "1679184011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11459", "0.0", "1.752", "1679187611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11459", "0.0", "3.504", "1679187611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11459", "0.0", "1.752", "1679187611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11459", "0.0", "3.504", "1679187611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11460", "0.0", "1.752", "1679191211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11460", "0.0", "3.504", "1679191211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11460", "0.0", "1.752", "1679191211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11460", "0.0", "3.504", "1679191211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11461", "0.0", "1.752", "1679194811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11461", "0.0", "3.504", "1679194811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11461", "0.0", "1.752", "1679194811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11461", "0.0", "3.504", "1679194811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11462", "0.0", "1.752", "1679198411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11462", "0.0", "3.504", "1679198411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11462", "0.0", "1.752", "1679198411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11462", "0.0", "3.504", "1679198411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11463", "0.0", "1.752", "1679202011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11463", "0.0", "3.504", "1679202011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11463", "0.0", "1.752", "1679202011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11463", "0.0", "3.504", "1679202011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11464", "0.0", "1.752", "1679205611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11464", "0.0", "3.504", "1679205611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11464", "0.0", "1.752", "1679205611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11464", "0.0", "3.504", "1679205611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11465", "0.0", "1.752", "1679209211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11465", "0.0", "3.504", "1679209211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11465", "0.0", "1.752", "1679209211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11465", "0.0", "3.504", "1679209211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11466", "0.0", "1.752", "1679212811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11466", "0.0", "3.504", "1679212811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11466", "0.0", "1.752", "1679212811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11466", "0.0", "3.504", "1679212811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11467", "0.0", "1.752", "1679216411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11467", "0.0", "3.504", "1679216411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11467", "0.0", "1.752", "1679216411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11467", "0.0", "3.504", "1679216411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11468", "0.0", "1.752", "1679220011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11468", "0.0", "3.504", "1679220011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11468", "0.0", "1.752", "1679220011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11468", "0.0", "3.504", "1679220011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11469", "0.0", "1.752", "1679223611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11469", "0.0", "3.504", "1679223611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11469", "0.0", "1.752", "1679223611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11469", "0.0", "3.504", "1679223611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11470", "0.0", "1.752", "1679227211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11470", "0.0", "3.504", "1679227211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11470", "0.0", "1.752", "1679227211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11470", "0.0", "3.504", "1679227211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11471", "0.0", "1.752", "1679230811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11471", "0.0", "3.504", "1679230811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11471", "0.0", "1.752", "1679230811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11471", "0.0", "3.504", "1679230811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11472", "0.0", "1.752", "1679234411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11472", "0.0", "3.504", "1679234411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11472", "0.0", "1.752", "1679234411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11472", "0.0", "3.504", "1679234411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11473", "0.0", "1.752", "1679238011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11473", "0.0", "3.504", "1679238011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11473", "0.0", "1.752", "1679238011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11473", "0.0", "3.504", "1679238011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11474", "0.0", "1.752", "1679241611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11474", "0.0", "3.504", "1679241611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11474", "0.0", "1.752", "1679241611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11474", "0.0", "3.504", "1679241611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11475", "0.0", "1.752", "1679245211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11475", "0.0", "3.504", "1679245211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11475", "0.0", "1.752", "1679245211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11475", "0.0", "3.504", "1679245211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11476", "0.0", "1.752", "1679248811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11476", "0.0", "3.504", "1679248811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11476", "0.0", "1.752", "1679248811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11476", "0.0", "3.504", "1679248811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11477", "0.0", "1.752", "1679252423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11477", "0.0", "3.504", "1679252423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11477", "0.0", "1.752", "1679252423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11477", "0.0", "3.504", "1679252423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11478", "0.0", "1.752", "1679256011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11478", "0.0", "3.504", "1679256011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11478", "0.0", "1.752", "1679256011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11478", "0.0", "3.504", "1679256011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11479", "0.0", "1.752", "1679259611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11479", "0.0", "3.504", "1679259611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11479", "0.0", "1.752", "1679259611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11479", "0.0", "3.504", "1679259611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11480", "0.0", "1.752", "1679263211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11480", "0.0", "3.504", "1679263211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11480", "0.0", "1.752", "1679263211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11480", "0.0", "3.504", "1679263211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11481", "0.0", "1.752", "1679266811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11481", "0.0", "3.504", "1679266811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11481", "0.0", "1.752", "1679266811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11481", "0.0", "3.504", "1679266811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11482", "0.0", "1.752", "1679270411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11482", "0.0", "3.504", "1679270411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11482", "0.0", "1.752", "1679270411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11482", "0.0", "3.504", "1679270411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11483", "0.0", "1.752", "1679274011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11483", "0.0", "3.504", "1679274011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11483", "0.0", "1.752", "1679274011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11483", "0.0", "3.504", "1679274011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11484", "0.0", "1.752", "1679277611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11484", "0.0", "3.504", "1679277611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11484", "0.0", "1.752", "1679277611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11484", "0.0", "3.504", "1679277611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11485", "0.0", "1.752", "1679281211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11485", "0.0", "3.504", "1679281211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11485", "0.0", "1.752", "1679281211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11485", "0.0", "3.504", "1679281211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11486", "0.0", "1.752", "1679284811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11486", "0.0", "3.504", "1679284811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11486", "0.0", "1.752", "1679284811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11486", "0.0", "3.504", "1679284811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11487", "0.0", "1.752", "1679288411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11487", "0.0", "3.504", "1679288411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11487", "0.0", "1.752", "1679288411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11487", "0.0", "3.504", "1679288411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11488", "0.0", "1.752", "1679292011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11488", "0.0", "3.504", "1679292011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11488", "0.0", "1.752", "1679292011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11488", "0.0", "3.504", "1679292011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11489", "0.0", "1.752", "1679295611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11489", "0.0", "3.504", "1679295611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11489", "0.0", "1.752", "1679295611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11489", "0.0", "3.504", "1679295611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11490", "0.0", "1.752", "1679299211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11490", "0.0", "3.504", "1679299211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11490", "0.0", "1.752", "1679299211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11490", "0.0", "3.504", "1679299211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11491", "0.0", "1.752", "1679302811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11491", "0.0", "3.504", "1679302811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11491", "0.0", "1.752", "1679302811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11491", "0.0", "3.504", "1679302811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11492", "0.0", "1.752", "1679306411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11492", "0.0", "3.504", "1679306411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11492", "0.0", "1.752", "1679306411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11492", "0.0", "3.504", "1679306411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11493", "0.0", "1.752", "1679310011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11493", "0.0", "3.504", "1679310011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11493", "0.0", "1.752", "1679310011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11493", "0.0", "3.504", "1679310011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11494", "0.0", "1.752", "1679313611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11494", "0.0", "3.504", "1679313611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11494", "0.0", "1.752", "1679313611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11494", "0.0", "3.504", "1679313611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11495", "0.0", "1.752", "1679317211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11495", "0.0", "3.504", "1679317211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11495", "0.0", "1.752", "1679317211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11495", "0.0", "3.504", "1679317211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11496", "0.0", "1.752", "1679320811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11496", "0.0", "3.504", "1679320811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11496", "0.0", "1.752", "1679320811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11496", "0.0", "3.504", "1679320811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11497", "0.0", "1.752", "1679324423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11497", "0.0", "3.504", "1679324423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11497", "0.0", "1.752", "1679324423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11497", "0.0", "3.504", "1679324423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11498", "0.0", "1.752", "1679328011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11498", "0.0", "3.504", "1679328011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11498", "0.0", "1.752", "1679328011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11498", "0.0", "3.504", "1679328011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11499", "0.0", "1.752", "1679331611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11499", "0.0", "3.504", "1679331611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11499", "0.0", "1.752", "1679331611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11499", "0.0", "3.504", "1679331611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11500", "0.0", "1.752", "1679335211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11500", "0.0", "3.504", "1679335211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11500", "0.0", "1.752", "1679335211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11500", "0.0", "3.504", "1679335211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11501", "0.0", "1.752", "1679338823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11501", "0.0", "3.504", "1679338823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11501", "0.0", "1.752", "1679338823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11501", "0.0", "3.504", "1679338823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11502", "0.0", "1.752", "1679342411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11502", "0.0", "3.504", "1679342411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11502", "0.0", "1.752", "1679342411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11502", "0.0", "3.504", "1679342411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11503", "0.0", "1.752", "1679346011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11503", "0.0", "3.504", "1679346011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11503", "0.0", "1.752", "1679346011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11503", "0.0", "3.504", "1679346011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11504", "0.0", "1.752", "1679349611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11504", "0.0", "3.504", "1679349611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11504", "0.0", "1.752", "1679349611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11504", "0.0", "3.504", "1679349611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11505", "0.0", "1.752", "1679353211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11505", "0.0", "3.504", "1679353211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11505", "0.0", "1.752", "1679353211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11505", "0.0", "3.504", "1679353211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11506", "0.0", "1.752", "1679356811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11506", "0.0", "3.504", "1679356811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11506", "0.0", "1.752", "1679356811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11506", "0.0", "3.504", "1679356811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11507", "0.0", "1.752", "1679360411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11507", "0.0", "3.504", "1679360411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11507", "0.0", "1.752", "1679360411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11507", "0.0", "3.504", "1679360411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11508", "0.0", "1.752", "1679364011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11508", "0.0", "3.504", "1679364011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11508", "0.0", "1.752", "1679364011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11508", "0.0", "3.504", "1679364011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11509", "0.0", "1.752", "1679367611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11509", "0.0", "3.504", "1679367611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11509", "0.0", "1.752", "1679367611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11509", "0.0", "3.504", "1679367611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11510", "0.0", "1.752", "1679371211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11510", "0.0", "3.504", "1679371211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11510", "0.0", "1.752", "1679371211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11510", "0.0", "3.504", "1679371211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11511", "0.0", "1.752", "1679374811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11511", "0.0", "3.504", "1679374811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11511", "0.0", "1.752", "1679374811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11511", "0.0", "3.504", "1679374811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11512", "0.0", "1.752", "1679378411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11512", "0.0", "3.504", "1679378411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11512", "0.0", "1.752", "1679378411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11512", "0.0", "3.504", "1679378411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11513", "0.0", "1.752", "1679382011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11513", "0.0", "3.504", "1679382011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11513", "0.0", "1.752", "1679382011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11513", "0.0", "3.504", "1679382011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11514", "0.0", "1.752", "1679385611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11514", "0.0", "3.504", "1679385611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11514", "0.0", "1.752", "1679385611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11514", "0.0", "3.504", "1679385611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11515", "0.0", "1.752", "1679389211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11515", "0.0", "3.504", "1679389211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11515", "0.0", "1.752", "1679389211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11515", "0.0", "3.504", "1679389211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11516", "0.0", "1.752", "1679392811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11516", "0.0", "3.504", "1679392811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11516", "0.0", "1.752", "1679392811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11516", "0.0", "3.504", "1679392811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11517", "0.0", "1.752", "1679396411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11517", "0.0", "3.504", "1679396411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11517", "0.0", "1.752", "1679396411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11517", "0.0", "3.504", "1679396411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11518", "0.0", "1.752", "1679400011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11518", "0.0", "3.504", "1679400011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11518", "0.0", "1.752", "1679400011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11518", "0.0", "3.504", "1679400011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11519", "0.0", "1.752", "1679403611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11519", "0.0", "3.504", "1679403611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11519", "0.0", "1.752", "1679403611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11519", "0.0", "3.504", "1679403611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11520", "0.0", "1.752", "1679407211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11520", "0.0", "3.504", "1679407211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11520", "0.0", "1.752", "1679407211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11520", "0.0", "3.504", "1679407211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11521", "0.0", "1.752", "1679410811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11521", "0.0", "3.504", "1679410811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11521", "0.0", "1.752", "1679410811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11521", "0.0", "3.504", "1679410811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11522", "0.0", "1.752", "1679414411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11522", "0.0", "3.504", "1679414411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11522", "0.0", "1.752", "1679414411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11522", "0.0", "3.504", "1679414411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11523", "0.0", "1.752", "1679418011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11523", "0.0", "3.504", "1679418011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11523", "0.0", "1.752", "1679418011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11523", "0.0", "3.504", "1679418011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11524", "0.0", "1.752", "1679421611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11524", "0.0", "3.504", "1679421611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11524", "0.0", "1.752", "1679421611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11524", "0.0", "3.504", "1679421611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11525", "0.0", "1.752", "1679425211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11525", "0.0", "3.504", "1679425211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11525", "0.0", "1.752", "1679425211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11525", "0.0", "3.504", "1679425211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11526", "0.0", "1.752", "1679428811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11526", "0.0", "3.504", "1679428811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11526", "0.0", "1.752", "1679428811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11526", "0.0", "3.504", "1679428811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11527", "0.0", "1.752", "1679432411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11527", "0.0", "3.504", "1679432411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11527", "0.0", "1.752", "1679432411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11527", "0.0", "3.504", "1679432411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11528", "0.0", "1.752", "1679436011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11528", "0.0", "3.504", "1679436011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11528", "0.0", "1.752", "1679436011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11528", "0.0", "3.504", "1679436011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11529", "0.0", "1.752", "1679439611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11529", "0.0", "3.504", "1679439611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11529", "0.0", "1.752", "1679439611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11529", "0.0", "3.504", "1679439611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11530", "0.0", "1.752", "1679443211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11530", "0.0", "3.504", "1679443211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11530", "0.0", "1.752", "1679443211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11530", "0.0", "3.504", "1679443211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11531", "0.0", "1.752", "1679446811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11531", "0.0", "3.504", "1679446811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11531", "0.0", "1.752", "1679446811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11531", "0.0", "3.504", "1679446811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11532", "0.0", "1.752", "1679450411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11532", "0.0", "3.504", "1679450411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11532", "0.0", "1.752", "1679450411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11532", "0.0", "3.504", "1679450411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11533", "0.0", "1.752", "1679454011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11533", "0.0", "3.504", "1679454011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11533", "0.0", "1.752", "1679454011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11533", "0.0", "3.504", "1679454011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11534", "0.0", "1.752", "1679457611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11534", "0.0", "3.504", "1679457611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11534", "0.0", "1.752", "1679457611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11534", "0.0", "3.504", "1679457611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11535", "0.0", "1.752", "1679461211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11535", "0.0", "3.504", "1679461211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11535", "0.0", "1.752", "1679461211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11535", "0.0", "3.504", "1679461211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11536", "0.0", "1.752", "1679464811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11536", "0.0", "3.504", "1679464811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11536", "0.0", "1.752", "1679464811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11536", "0.0", "3.504", "1679464811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11537", "0.0", "1.752", "1679468411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11537", "0.0", "3.504", "1679468411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11537", "0.0", "1.752", "1679468411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11537", "0.0", "3.504", "1679468411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11538", "0.0", "1.752", "1679472011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11538", "0.0", "3.504", "1679472011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11538", "0.0", "1.752", "1679472011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11538", "0.0", "3.504", "1679472011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11539", "0.0", "1.752", "1679475611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11539", "0.0", "3.504", "1679475611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11539", "0.0", "1.752", "1679475611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11539", "0.0", "3.504", "1679475611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11540", "0.0", "1.752", "1679479211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11540", "0.0", "3.504", "1679479211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11540", "0.0", "1.752", "1679479211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11540", "0.0", "3.504", "1679479211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11541", "0.0", "1.752", "1679482811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11541", "0.0", "3.504", "1679482811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11541", "0.0", "1.752", "1679482811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11541", "0.0", "3.504", "1679482811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11542", "0.0", "1.752", "1679486411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11542", "0.0", "3.504", "1679486411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11542", "0.0", "1.752", "1679486411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11542", "0.0", "3.504", "1679486411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11543", "0.0", "1.752", "1679490011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11543", "0.0", "3.504", "1679490011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11543", "0.0", "1.752", "1679490011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11543", "0.0", "3.504", "1679490011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11544", "0.0", "1.752", "1679493611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11544", "0.0", "3.504", "1679493611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11544", "0.0", "1.752", "1679493611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11544", "0.0", "3.504", "1679493611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11545", "0.0", "1.752", "1679497235"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11545", "0.0", "3.504", "1679497235"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11545", "0.0", "1.752", "1679497235"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11545", "0.0", "3.504", "1679497235"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11546", "0.0", "1.752", "1679500847"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11546", "0.0", "3.504", "1679500847"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11546", "0.0", "1.752", "1679500847"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11546", "0.0", "3.504", "1679500847"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11547", "0.0", "1.752", "1679504411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11547", "0.0", "3.504", "1679504411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11547", "0.0", "1.752", "1679504411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11547", "0.0", "3.504", "1679504411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11548", "0.0", "1.752", "1679508035"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11548", "0.0", "3.504", "1679508035"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11548", "0.0", "1.752", "1679508035"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11548", "0.0", "3.504", "1679508035"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11549", "0.0", "1.752", "1679511611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11549", "0.0", "3.504", "1679511611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11549", "0.0", "1.752", "1679511611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11549", "0.0", "3.504", "1679511611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11550", "0.0", "1.752", "1679515211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11550", "0.0", "3.504", "1679515211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11550", "0.0", "1.752", "1679515211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11550", "0.0", "3.504", "1679515211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11551", "0.0", "1.752", "1679518811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11551", "0.0", "3.504", "1679518811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11551", "0.0", "1.752", "1679518811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11551", "0.0", "3.504", "1679518811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11552", "0.0", "1.752", "1679522411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11552", "0.0", "3.504", "1679522411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11552", "0.0", "1.752", "1679522411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11552", "0.0", "3.504", "1679522411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11553", "0.0", "1.752", "1679526011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11553", "0.0", "3.504", "1679526011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11553", "0.0", "1.752", "1679526011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11553", "0.0", "3.504", "1679526011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11554", "0.0", "1.752", "1679529623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11554", "0.0", "3.504", "1679529623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11554", "0.0", "1.752", "1679529623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11554", "0.0", "3.504", "1679529623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11555", "0.0", "1.752", "1679533211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11555", "0.0", "3.504", "1679533211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11555", "0.0", "1.752", "1679533211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11555", "0.0", "3.504", "1679533211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11556", "0.0", "1.752", "1679536811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11556", "0.0", "3.504", "1679536811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11556", "0.0", "1.752", "1679536811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11556", "0.0", "3.504", "1679536811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11557", "0.0", "1.752", "1679540411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11557", "0.0", "3.504", "1679540411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11557", "0.0", "1.752", "1679540411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11557", "0.0", "3.504", "1679540411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11558", "0.0", "1.752", "1679544011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11558", "0.0", "3.504", "1679544011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11558", "0.0", "1.752", "1679544011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11558", "0.0", "3.504", "1679544011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11559", "0.0", "1.752", "1679547611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11559", "0.0", "3.504", "1679547611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11559", "0.0", "1.752", "1679547611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11559", "0.0", "3.504", "1679547611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11560", "0.0", "1.752", "1679551211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11560", "0.0", "3.504", "1679551211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11560", "0.0", "1.752", "1679551211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11560", "0.0", "3.504", "1679551211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11561", "0.0", "1.752", "1679554811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11561", "0.0", "3.504", "1679554811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11561", "0.0", "1.752", "1679554811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11561", "0.0", "3.504", "1679554811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11562", "0.0", "1.752", "1679558411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11562", "0.0", "3.504", "1679558411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11562", "0.0", "1.752", "1679558411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11562", "0.0", "3.504", "1679558411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11563", "0.0", "1.752", "1679562011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11563", "0.0", "3.504", "1679562011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11563", "0.0", "1.752", "1679562011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11563", "0.0", "3.504", "1679562011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11564", "0.0", "1.752", "1679565623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11564", "0.0", "3.504", "1679565623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11564", "0.0", "1.752", "1679565623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11564", "0.0", "3.504", "1679565623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11565", "0.0", "1.752", "1679569211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11565", "0.0", "3.504", "1679569211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11565", "0.0", "1.752", "1679569211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11565", "0.0", "3.504", "1679569211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11566", "0.0", "1.752", "1679572811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11566", "0.0", "3.504", "1679572811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11566", "0.0", "1.752", "1679572811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11566", "0.0", "3.504", "1679572811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11567", "0.0", "1.752", "1679576411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11567", "0.0", "3.504", "1679576411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11567", "0.0", "1.752", "1679576411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11567", "0.0", "3.504", "1679576411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11568", "0.0", "1.752", "1679580011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11568", "0.0", "3.504", "1679580011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11568", "0.0", "1.752", "1679580011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11568", "0.0", "3.504", "1679580011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11569", "0.0", "1.752", "1679583611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11569", "0.0", "3.504", "1679583611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11569", "0.0", "1.752", "1679583611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11569", "0.0", "3.504", "1679583611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11570", "0.0", "1.752", "1679587211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11570", "0.0", "3.504", "1679587211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11570", "0.0", "1.752", "1679587211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11570", "0.0", "3.504", "1679587211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11571", "0.0", "1.752", "1679590811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11571", "0.0", "3.504", "1679590811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11571", "0.0", "1.752", "1679590811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11571", "0.0", "3.504", "1679590811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11572", "0.0", "1.752", "1679594423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11572", "0.0", "3.504", "1679594423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11572", "0.0", "1.752", "1679594423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11572", "0.0", "3.504", "1679594423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11573", "0.0", "1.752", "1679598011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11573", "0.0", "3.504", "1679598011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11573", "0.0", "1.752", "1679598011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11573", "0.0", "3.504", "1679598011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11574", "0.0", "1.752", "1679601611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11574", "0.0", "3.504", "1679601611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11574", "0.0", "1.752", "1679601611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11574", "0.0", "3.504", "1679601611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11575", "0.0", "1.752", "1679605211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11575", "0.0", "3.504", "1679605211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11575", "0.0", "1.752", "1679605211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11575", "0.0", "3.504", "1679605211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11576", "0.0", "1.752", "1679608811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11576", "0.0", "3.504", "1679608811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11576", "0.0", "1.752", "1679608811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11576", "0.0", "3.504", "1679608811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11577", "0.0", "1.752", "1679612411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11577", "0.0", "3.504", "1679612411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11577", "0.0", "1.752", "1679612411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11577", "0.0", "3.504", "1679612411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11578", "0.0", "1.752", "1679616023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11578", "0.0", "3.504", "1679616023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11578", "0.0", "1.752", "1679616023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11578", "0.0", "3.504", "1679616023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11579", "0.0", "1.752", "1679619611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11579", "0.0", "3.504", "1679619611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11579", "0.0", "1.752", "1679619611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11579", "0.0", "3.504", "1679619611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11580", "0.0", "1.752", "1679623211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11580", "0.0", "3.504", "1679623211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11580", "0.0", "1.752", "1679623211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11580", "0.0", "3.504", "1679623211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11581", "0.0", "1.752", "1679626811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11581", "0.0", "3.504", "1679626811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11581", "0.0", "1.752", "1679626811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11581", "0.0", "3.504", "1679626811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11582", "0.0", "1.752", "1679630411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11582", "0.0", "3.504", "1679630411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11582", "0.0", "1.752", "1679630411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11582", "0.0", "3.504", "1679630411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11583", "0.0", "1.752", "1679634011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11583", "0.0", "3.504", "1679634011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11583", "0.0", "1.752", "1679634011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11583", "0.0", "3.504", "1679634011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11584", "0.0", "1.752", "1679637611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11584", "0.0", "3.504", "1679637611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11584", "0.0", "1.752", "1679637611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11584", "0.0", "3.504", "1679637611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11585", "0.0", "1.752", "1679641211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11585", "0.0", "3.504", "1679641211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11585", "0.0", "1.752", "1679641211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11585", "0.0", "3.504", "1679641211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11586", "0.0", "1.752", "1679644811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11586", "0.0", "3.504", "1679644811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11586", "0.0", "1.752", "1679644811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11586", "0.0", "3.504", "1679644811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11587", "0.0", "1.752", "1679648411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11587", "0.0", "3.504", "1679648411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11587", "0.0", "1.752", "1679648411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11587", "0.0", "3.504", "1679648411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11588", "0.0", "1.752", "1679652011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11588", "0.0", "3.504", "1679652011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11588", "0.0", "1.752", "1679652011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11588", "0.0", "3.504", "1679652011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11589", "0.0", "1.752", "1679655611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11589", "0.0", "3.504", "1679655611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11589", "0.0", "1.752", "1679655611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11589", "0.0", "3.504", "1679655611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11590", "0.0", "1.752", "1679659223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11590", "0.0", "3.504", "1679659223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11590", "0.0", "1.752", "1679659223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11590", "0.0", "3.504", "1679659223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11591", "0.0", "1.752", "1679662811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11591", "0.0", "3.504", "1679662811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11591", "0.0", "1.752", "1679662811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11591", "0.0", "3.504", "1679662811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11592", "0.0", "1.752", "1679666411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11592", "0.0", "3.504", "1679666411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11592", "0.0", "1.752", "1679666411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11592", "0.0", "3.504", "1679666411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11593", "0.0", "1.752", "1679670011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11593", "0.0", "3.504", "1679670011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11593", "0.0", "1.752", "1679670011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11593", "0.0", "3.504", "1679670011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11594", "0.0", "1.752", "1679673635"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11594", "0.0", "3.504", "1679673635"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11594", "0.0", "1.752", "1679673635"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11594", "0.0", "3.504", "1679673635"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11595", "0.0", "1.752", "1679677211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11595", "0.0", "3.504", "1679677211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11595", "0.0", "1.752", "1679677211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11595", "0.0", "3.504", "1679677211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11596", "0.0", "1.752", "1679680811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11596", "0.0", "3.504", "1679680811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11596", "0.0", "1.752", "1679680811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11596", "0.0", "3.504", "1679680811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11597", "0.0", "1.752", "1679684411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11597", "0.0", "3.504", "1679684411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11597", "0.0", "1.752", "1679684411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11597", "0.0", "3.504", "1679684411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11598", "0.0", "1.752", "1679688011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11598", "0.0", "3.504", "1679688011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11598", "0.0", "1.752", "1679688011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11598", "0.0", "3.504", "1679688011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11599", "0.0", "1.752", "1679691611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11599", "0.0", "3.504", "1679691611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11599", "0.0", "1.752", "1679691611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11599", "0.0", "3.504", "1679691611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11600", "0.0", "1.752", "1679695211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11600", "0.0", "3.504", "1679695211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11600", "0.0", "1.752", "1679695211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11600", "0.0", "3.504", "1679695211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11601", "0.0", "1.752", "1679698811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11601", "0.0", "3.504", "1679698811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11601", "0.0", "1.752", "1679698811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11601", "0.0", "3.504", "1679698811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11602", "0.0", "1.752", "1679702411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11602", "0.0", "3.504", "1679702411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11602", "0.0", "1.752", "1679702411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11602", "0.0", "3.504", "1679702411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11603", "0.0", "1.752", "1679706011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11603", "0.0", "3.504", "1679706011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11603", "0.0", "1.752", "1679706011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11603", "0.0", "3.504", "1679706011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11604", "0.0", "1.752", "1679709611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11604", "0.0", "3.504", "1679709611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11604", "0.0", "1.752", "1679709611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11604", "0.0", "3.504", "1679709611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11605", "0.0", "1.752", "1679713211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11605", "0.0", "3.504", "1679713211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11605", "0.0", "1.752", "1679713211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11605", "0.0", "3.504", "1679713211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11606", "0.0", "1.752", "1679716811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11606", "0.0", "3.504", "1679716811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11606", "0.0", "1.752", "1679716811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11606", "0.0", "3.504", "1679716811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11607", "0.0", "1.752", "1679720411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11607", "0.0", "3.504", "1679720411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11607", "0.0", "1.752", "1679720411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11607", "0.0", "3.504", "1679720411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11608", "0.0", "1.752", "1679724011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11608", "0.0", "3.504", "1679724011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11608", "0.0", "1.752", "1679724011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11608", "0.0", "3.504", "1679724011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11609", "0.0", "1.752", "1679727611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11609", "0.0", "3.504", "1679727611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11609", "0.0", "1.752", "1679727611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11609", "0.0", "3.504", "1679727611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11610", "0.0", "1.752", "1679731211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11610", "0.0", "3.504", "1679731211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11610", "0.0", "1.752", "1679731211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11610", "0.0", "3.504", "1679731211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11611", "0.0", "1.752", "1679734811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11611", "0.0", "3.504", "1679734811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11611", "0.0", "1.752", "1679734811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11611", "0.0", "3.504", "1679734811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11612", "0.0", "1.752", "1679738411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11612", "0.0", "3.504", "1679738411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11612", "0.0", "1.752", "1679738411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11612", "0.0", "3.504", "1679738411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11613", "0.0", "1.752", "1679742011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11613", "0.0", "3.504", "1679742011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11613", "0.0", "1.752", "1679742011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11613", "0.0", "3.504", "1679742011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11614", "0.0", "1.752", "1679745611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11614", "0.0", "3.504", "1679745611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11614", "0.0", "1.752", "1679745611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11614", "0.0", "3.504", "1679745611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11615", "0.0", "1.752", "1679749211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11615", "0.0", "3.504", "1679749211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11615", "0.0", "1.752", "1679749211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11615", "0.0", "3.504", "1679749211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11616", "0.0", "1.752", "1679752811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11616", "0.0", "3.504", "1679752811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11616", "0.0", "1.752", "1679752811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11616", "0.0", "3.504", "1679752811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11617", "0.0", "1.752", "1679756411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11617", "0.0", "3.504", "1679756411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11617", "0.0", "1.752", "1679756411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11617", "0.0", "3.504", "1679756411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11618", "0.0", "1.752", "1679760011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11618", "0.0", "3.504", "1679760011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11618", "0.0", "1.752", "1679760011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11618", "0.0", "3.504", "1679760011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11619", "0.0", "1.752", "1679763611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11619", "0.0", "3.504", "1679763611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11619", "0.0", "1.752", "1679763611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11619", "0.0", "3.504", "1679763611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11620", "0.0", "1.752", "1679767211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11620", "0.0", "3.504", "1679767211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11620", "0.0", "1.752", "1679767211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11620", "0.0", "3.504", "1679767211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11621", "0.0", "1.752", "1679770811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11621", "0.0", "3.504", "1679770811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11621", "0.0", "1.752", "1679770811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11621", "0.0", "3.504", "1679770811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11622", "0.0", "1.752", "1679774411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11622", "0.0", "3.504", "1679774411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11622", "0.0", "1.752", "1679774411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11622", "0.0", "3.504", "1679774411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11623", "0.0", "1.752", "1679778011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11623", "0.0", "3.504", "1679778011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11623", "0.0", "1.752", "1679778011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11623", "0.0", "3.504", "1679778011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11624", "0.0", "1.752", "1679781611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11624", "0.0", "3.504", "1679781611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11624", "0.0", "1.752", "1679781611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11624", "0.0", "3.504", "1679781611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11625", "0.0", "1.752", "1679785211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11625", "0.0", "3.504", "1679785211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11625", "0.0", "1.752", "1679785211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11625", "0.0", "3.504", "1679785211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11626", "0.0", "1.752", "1679788811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11626", "0.0", "3.504", "1679788811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11626", "0.0", "1.752", "1679788811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11626", "0.0", "3.504", "1679788811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11627", "0.0", "1.752", "1679792411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11627", "0.0", "3.504", "1679792411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11627", "0.0", "1.752", "1679792411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11627", "0.0", "3.504", "1679792411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11628", "0.0", "1.752", "1679796011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11628", "0.0", "3.504", "1679796011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11628", "0.0", "1.752", "1679796011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11628", "0.0", "3.504", "1679796011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11629", "0.0", "1.752", "1679799611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11629", "0.0", "3.504", "1679799611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11629", "0.0", "1.752", "1679799611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11629", "0.0", "3.504", "1679799611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11630", "0.0", "1.752", "1679803211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11630", "0.0", "3.504", "1679803211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11630", "0.0", "1.752", "1679803211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11630", "0.0", "3.504", "1679803211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11631", "0.0", "1.752", "1679806811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11631", "0.0", "3.504", "1679806811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11631", "0.0", "1.752", "1679806811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11631", "0.0", "3.504", "1679806811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11632", "0.0", "1.752", "1679810411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11632", "0.0", "3.504", "1679810411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11632", "0.0", "1.752", "1679810411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11632", "0.0", "3.504", "1679810411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11633", "0.0", "1.752", "1679814011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11633", "0.0", "3.504", "1679814011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11633", "0.0", "1.752", "1679814011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11633", "0.0", "3.504", "1679814011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11634", "0.0", "1.752", "1679817611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11634", "0.0", "3.504", "1679817611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11634", "0.0", "1.752", "1679817611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11634", "0.0", "3.504", "1679817611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11635", "0.0", "1.752", "1679821211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11635", "0.0", "3.504", "1679821211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11635", "0.0", "1.752", "1679821211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11635", "0.0", "3.504", "1679821211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11636", "0.0", "1.752", "1679824811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11636", "0.0", "3.504", "1679824811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11636", "0.0", "1.752", "1679824811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11636", "0.0", "3.504", "1679824811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11637", "0.0", "1.752", "1679828423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11637", "0.0", "3.504", "1679828423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11637", "0.0", "1.752", "1679828423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11637", "0.0", "3.504", "1679828423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11638", "0.0", "1.752", "1679832011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11638", "0.0", "3.504", "1679832011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11638", "0.0", "1.752", "1679832011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11638", "0.0", "3.504", "1679832011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11639", "0.0", "1.752", "1679835611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11639", "0.0", "3.504", "1679835611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11639", "0.0", "1.752", "1679835611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11639", "0.0", "3.504", "1679835611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11640", "0.0", "1.752", "1679839211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11640", "0.0", "3.504", "1679839211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11640", "0.0", "1.752", "1679839211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11640", "0.0", "3.504", "1679839211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11641", "0.0", "1.752", "1679842811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11641", "0.0", "3.504", "1679842811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11641", "0.0", "1.752", "1679842811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11641", "0.0", "3.504", "1679842811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11642", "0.0", "1.752", "1679846411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11642", "0.0", "3.504", "1679846411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11642", "0.0", "1.752", "1679846411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11642", "0.0", "3.504", "1679846411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11643", "0.0", "1.752", "1679850011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11643", "0.0", "3.504", "1679850011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11643", "0.0", "1.752", "1679850011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11643", "0.0", "3.504", "1679850011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11644", "0.0", "1.752", "1679853611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11644", "0.0", "3.504", "1679853611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11644", "0.0", "1.752", "1679853611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11644", "0.0", "3.504", "1679853611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11645", "0.0", "1.752", "1679857211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11645", "0.0", "3.504", "1679857211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11645", "0.0", "1.752", "1679857211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11645", "0.0", "3.504", "1679857211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11646", "0.0", "1.752", "1679860811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11646", "0.0", "3.504", "1679860811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11646", "0.0", "1.752", "1679860811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11646", "0.0", "3.504", "1679860811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11647", "0.0", "1.752", "1679864411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11647", "0.0", "3.504", "1679864411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11647", "0.0", "1.752", "1679864411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11647", "0.0", "3.504", "1679864411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11648", "0.0", "1.752", "1679868023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11648", "0.0", "3.504", "1679868023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11648", "0.0", "1.752", "1679868023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11648", "0.0", "3.504", "1679868023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11649", "0.0", "1.752", "1679871611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11649", "0.0", "3.504", "1679871611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11649", "0.0", "1.752", "1679871611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11649", "0.0", "3.504", "1679871611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11650", "0.0", "1.752", "1679875211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11650", "0.0", "3.504", "1679875211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11650", "0.0", "1.752", "1679875211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11650", "0.0", "3.504", "1679875211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11651", "0.0", "1.752", "1679878811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11651", "0.0", "3.504", "1679878811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11651", "0.0", "1.752", "1679878811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11651", "0.0", "3.504", "1679878811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11652", "0.0", "1.752", "1679882411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11652", "0.0", "3.504", "1679882411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11652", "0.0", "1.752", "1679882411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11652", "0.0", "3.504", "1679882411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11653", "0.0", "1.752", "1679886011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11653", "0.0", "3.504", "1679886011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11653", "0.0", "1.752", "1679886011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11653", "0.0", "3.504", "1679886011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11654", "0.0", "1.752", "1679889611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11654", "0.0", "3.504", "1679889611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11654", "0.0", "1.752", "1679889611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11654", "0.0", "3.504", "1679889611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11655", "0.0", "1.752", "1679893211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11655", "0.0", "3.504", "1679893211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11655", "0.0", "1.752", "1679893211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11655", "0.0", "3.504", "1679893211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11656", "0.0", "1.752", "1679896811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11656", "0.0", "3.504", "1679896811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11656", "0.0", "1.752", "1679896811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11656", "0.0", "3.504", "1679896811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11657", "0.0", "1.752", "1679900411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11657", "0.0", "3.504", "1679900411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11657", "0.0", "1.752", "1679900411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11657", "0.0", "3.504", "1679900411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11658", "0.0", "1.752", "1679904011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11658", "0.0", "3.504", "1679904011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11658", "0.0", "1.752", "1679904011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11658", "0.0", "3.504", "1679904011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11659", "0.0", "1.752", "1679907611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11659", "0.0", "3.504", "1679907611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11659", "0.0", "1.752", "1679907611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11659", "0.0", "3.504", "1679907611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11660", "0.0", "1.752", "1679911211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11660", "0.0", "3.504", "1679911211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11660", "0.0", "1.752", "1679911211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11660", "0.0", "3.504", "1679911211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11661", "0.0", "1.752", "1679914811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11661", "0.0", "3.504", "1679914811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11661", "0.0", "1.752", "1679914811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11661", "0.0", "3.504", "1679914811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11662", "0.0", "1.752", "1679918411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11662", "0.0", "3.504", "1679918411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11662", "0.0", "1.752", "1679918411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11662", "0.0", "3.504", "1679918411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11663", "0.0", "1.752", "1679922011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11663", "0.0", "3.504", "1679922011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11663", "0.0", "1.752", "1679922011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11663", "0.0", "3.504", "1679922011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11664", "0.0", "1.752", "1679925623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11664", "0.0", "3.504", "1679925623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11664", "0.0", "1.752", "1679925623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11664", "0.0", "3.504", "1679925623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11665", "0.0", "1.752", "1679929235"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11665", "0.0", "3.504", "1679929235"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11665", "0.0", "1.752", "1679929235"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11665", "0.0", "3.504", "1679929235"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11666", "0.0", "1.752", "1679932811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11666", "0.0", "3.504", "1679932811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11666", "0.0", "1.752", "1679932811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11666", "0.0", "3.504", "1679932811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11667", "0.0", "1.752", "1679936411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11667", "0.0", "3.504", "1679936411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11667", "0.0", "1.752", "1679936411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11667", "0.0", "3.504", "1679936411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11668", "0.0", "1.752", "1679940023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11668", "0.0", "3.504", "1679940023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11668", "0.0", "1.752", "1679940023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11668", "0.0", "3.504", "1679940023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11669", "0.0", "1.752", "1679943623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11669", "0.0", "3.504", "1679943623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11669", "0.0", "1.752", "1679943623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11669", "0.0", "3.504", "1679943623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11670", "0.0", "1.752", "1679947211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11670", "0.0", "3.504", "1679947211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11670", "0.0", "1.752", "1679947211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11670", "0.0", "3.504", "1679947211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11671", "0.0", "1.752", "1679950823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11671", "0.0", "3.504", "1679950823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11671", "0.0", "1.752", "1679950823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11671", "0.0", "3.504", "1679950823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11672", "0.0", "1.752", "1679954411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11672", "0.0", "3.504", "1679954411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11672", "0.0", "1.752", "1679954411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11672", "0.0", "3.504", "1679954411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11673", "0.0", "1.752", "1679958011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11673", "0.0", "3.504", "1679958011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11673", "0.0", "1.752", "1679958011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11673", "0.0", "3.504", "1679958011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11674", "0.0", "1.752", "1679961611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11674", "0.0", "3.504", "1679961611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11674", "0.0", "1.752", "1679961611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11674", "0.0", "3.504", "1679961611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11675", "0.0", "1.752", "1679965211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11675", "0.0", "3.504", "1679965211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11675", "0.0", "1.752", "1679965211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11675", "0.0", "3.504", "1679965211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11676", "0.0", "1.752", "1679968811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11676", "0.0", "3.504", "1679968811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11676", "0.0", "1.752", "1679968811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11676", "0.0", "3.504", "1679968811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11677", "0.0", "1.752", "1679972411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11677", "0.0", "3.504", "1679972411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11677", "0.0", "1.752", "1679972411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11677", "0.0", "3.504", "1679972411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11678", "0.0", "1.752", "1679976011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11678", "0.0", "3.504", "1679976011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11678", "0.0", "1.752", "1679976011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11678", "0.0", "3.504", "1679976011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11679", "0.0", "1.752", "1679979611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11679", "0.0", "3.504", "1679979611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11679", "0.0", "1.752", "1679979611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11679", "0.0", "3.504", "1679979611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11680", "0.0", "1.752", "1679983211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11680", "0.0", "3.504", "1679983211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11680", "0.0", "1.752", "1679983211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11680", "0.0", "3.504", "1679983211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11681", "0.0", "1.752", "1679986811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11681", "0.0", "3.504", "1679986811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11681", "0.0", "1.752", "1679986811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11681", "0.0", "3.504", "1679986811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11682", "0.0", "1.752", "1679990411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11682", "0.0", "3.504", "1679990411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11682", "0.0", "1.752", "1679990411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11682", "0.0", "3.504", "1679990411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11683", "0.0", "1.752", "1679994011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11683", "0.0", "3.504", "1679994011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11683", "0.0", "1.752", "1679994011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11683", "0.0", "3.504", "1679994011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11684", "0.0", "1.752", "1679997611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11684", "0.0", "3.504", "1679997611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11684", "0.0", "1.752", "1679997611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11684", "0.0", "3.504", "1679997611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11685", "0.0", "1.752", "1680001211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11685", "0.0", "3.504", "1680001211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11685", "0.0", "1.752", "1680001211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11685", "0.0", "3.504", "1680001211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11686", "0.0", "1.752", "1680004811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11686", "0.0", "3.504", "1680004811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11686", "0.0", "1.752", "1680004811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11686", "0.0", "3.504", "1680004811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11687", "0.0", "1.752", "1680008411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11687", "0.0", "3.504", "1680008411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11687", "0.0", "1.752", "1680008411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11687", "0.0", "3.504", "1680008411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11688", "0.0", "1.752", "1680012011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11688", "0.0", "3.504", "1680012011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11688", "0.0", "1.752", "1680012011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11688", "0.0", "3.504", "1680012011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11689", "0.0", "1.752", "1680015611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11689", "0.0", "3.504", "1680015611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11689", "0.0", "1.752", "1680015611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11689", "0.0", "3.504", "1680015611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11690", "0.0", "1.752", "1680019211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11690", "0.0", "3.504", "1680019211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11690", "0.0", "1.752", "1680019211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11690", "0.0", "3.504", "1680019211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11691", "0.0", "1.752", "1680022811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11691", "0.0", "3.504", "1680022811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11691", "0.0", "1.752", "1680022811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11691", "0.0", "3.504", "1680022811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11692", "0.0", "1.752", "1680026411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11692", "0.0", "3.504", "1680026411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11692", "0.0", "1.752", "1680026411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11692", "0.0", "3.504", "1680026411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11693", "0.0", "1.752", "1680030011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11693", "0.0", "3.504", "1680030011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11693", "0.0", "1.752", "1680030011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11693", "0.0", "3.504", "1680030011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11694", "0.0", "1.752", "1680033647"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11694", "0.0", "3.504", "1680033647"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11694", "0.0", "1.752", "1680033647"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11694", "0.0", "3.504", "1680033647"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11695", "0.0", "1.752", "1680037211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11695", "0.0", "3.504", "1680037211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11695", "0.0", "1.752", "1680037211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11695", "0.0", "3.504", "1680037211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11696", "0.0", "1.752", "1680040811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11696", "0.0", "3.504", "1680040811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11696", "0.0", "1.752", "1680040811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11696", "0.0", "3.504", "1680040811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11697", "0.0", "1.752", "1680044411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11697", "0.0", "3.504", "1680044411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11697", "0.0", "1.752", "1680044411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11697", "0.0", "3.504", "1680044411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11698", "0.0", "1.752", "1680048011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11698", "0.0", "3.504", "1680048011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11698", "0.0", "1.752", "1680048011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11698", "0.0", "3.504", "1680048011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11699", "0.0", "1.752", "1680051611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11699", "0.0", "3.504", "1680051611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11699", "0.0", "1.752", "1680051611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11699", "0.0", "3.504", "1680051611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11700", "0.0", "1.752", "1680055211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11700", "0.0", "3.504", "1680055211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11700", "0.0", "1.752", "1680055211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11700", "0.0", "3.504", "1680055211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11701", "0.0", "1.752", "1680058811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11701", "0.0", "3.504", "1680058811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11701", "0.0", "1.752", "1680058811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11701", "0.0", "3.504", "1680058811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11702", "0.0", "1.752", "1680062411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11702", "0.0", "3.504", "1680062411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11702", "0.0", "1.752", "1680062411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11702", "0.0", "3.504", "1680062411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11703", "0.0", "1.752", "1680066011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11703", "0.0", "3.504", "1680066011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11703", "0.0", "1.752", "1680066011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11703", "0.0", "3.504", "1680066011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11704", "0.0", "1.752", "1680069611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11704", "0.0", "3.504", "1680069611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11704", "0.0", "1.752", "1680069611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11704", "0.0", "3.504", "1680069611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11705", "0.0", "1.752", "1680073211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11705", "0.0", "3.504", "1680073211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11705", "0.0", "1.752", "1680073211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11705", "0.0", "3.504", "1680073211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11706", "0.0", "1.752", "1680076811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11706", "0.0", "3.504", "1680076811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11706", "0.0", "1.752", "1680076811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11706", "0.0", "3.504", "1680076811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11707", "0.0", "1.752", "1680080411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11707", "0.0", "3.504", "1680080411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11707", "0.0", "1.752", "1680080411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11707", "0.0", "3.504", "1680080411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11708", "0.0", "1.752", "1680084011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11708", "0.0", "3.504", "1680084011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11708", "0.0", "1.752", "1680084011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11708", "0.0", "3.504", "1680084011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11709", "0.0", "1.752", "1680087611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11709", "0.0", "3.504", "1680087611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11709", "0.0", "1.752", "1680087611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11709", "0.0", "3.504", "1680087611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11710", "0.0", "1.752", "1680091211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11710", "0.0", "3.504", "1680091211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11710", "0.0", "1.752", "1680091211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11710", "0.0", "3.504", "1680091211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11711", "0.0", "1.752", "1680094811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11711", "0.0", "3.504", "1680094811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11711", "0.0", "1.752", "1680094811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11711", "0.0", "3.504", "1680094811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11712", "0.0", "1.752", "1680098411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11712", "0.0", "3.504", "1680098411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11712", "0.0", "1.752", "1680098411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11712", "0.0", "3.504", "1680098411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11713", "0.0", "1.752", "1680102011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11713", "0.0", "3.504", "1680102011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11713", "0.0", "1.752", "1680102011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11713", "0.0", "3.504", "1680102011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11714", "0.0", "1.752", "1680105611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11714", "0.0", "3.504", "1680105611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11714", "0.0", "1.752", "1680105611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11714", "0.0", "3.504", "1680105611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11715", "0.0", "1.752", "1680109211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11715", "0.0", "3.504", "1680109211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11715", "0.0", "1.752", "1680109211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11715", "0.0", "3.504", "1680109211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11716", "0.0", "1.752", "1680112811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11716", "0.0", "3.504", "1680112811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11716", "0.0", "1.752", "1680112811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11716", "0.0", "3.504", "1680112811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11717", "0.0", "1.752", "1680116411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11717", "0.0", "3.504", "1680116411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11717", "0.0", "1.752", "1680116411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11717", "0.0", "3.504", "1680116411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11718", "0.0", "1.752", "1680120011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11718", "0.0", "3.504", "1680120011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11718", "0.0", "1.752", "1680120011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11718", "0.0", "3.504", "1680120011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11719", "0.0", "1.752", "1680123611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11719", "0.0", "3.504", "1680123611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11719", "0.0", "1.752", "1680123611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11719", "0.0", "3.504", "1680123611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11720", "0.0", "1.752", "1680127211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11720", "0.0", "3.504", "1680127211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11720", "0.0", "1.752", "1680127211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11720", "0.0", "3.504", "1680127211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11721", "0.0", "1.752", "1680130811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11721", "0.0", "3.504", "1680130811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11721", "0.0", "1.752", "1680130811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11721", "0.0", "3.504", "1680130811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11722", "0.0", "1.752", "1680134411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11722", "0.0", "3.504", "1680134411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11722", "0.0", "1.752", "1680134411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11722", "0.0", "3.504", "1680134411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11723", "0.0", "1.752", "1680138011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11723", "0.0", "3.504", "1680138011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11723", "0.0", "1.752", "1680138011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11723", "0.0", "3.504", "1680138011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11724", "0.0", "1.752", "1680141611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11724", "0.0", "3.504", "1680141611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11724", "0.0", "1.752", "1680141611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11724", "0.0", "3.504", "1680141611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11725", "0.0", "1.752", "1680145211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11725", "0.0", "3.504", "1680145211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11725", "0.0", "1.752", "1680145211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11725", "0.0", "3.504", "1680145211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11726", "0.0", "1.752", "1680148811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11726", "0.0", "3.504", "1680148811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11726", "0.0", "1.752", "1680148811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11726", "0.0", "3.504", "1680148811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11727", "0.0", "1.752", "1680152411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11727", "0.0", "3.504", "1680152411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11727", "0.0", "1.752", "1680152411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11727", "0.0", "3.504", "1680152411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11728", "0.0", "1.752", "1680156035"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11728", "0.0", "3.504", "1680156035"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11728", "0.0", "1.752", "1680156035"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11728", "0.0", "3.504", "1680156035"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11729", "0.0", "1.752", "1680159611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11729", "0.0", "3.504", "1680159611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11729", "0.0", "1.752", "1680159611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11729", "0.0", "3.504", "1680159611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11730", "0.0", "1.752", "1680163211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11730", "0.0", "3.504", "1680163211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11730", "0.0", "1.752", "1680163211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11730", "0.0", "3.504", "1680163211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11731", "0.0", "1.752", "1680166811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11731", "0.0", "3.504", "1680166811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11731", "0.0", "1.752", "1680166811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11731", "0.0", "3.504", "1680166811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11732", "0.0", "1.752", "1680170411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11732", "0.0", "3.504", "1680170411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11732", "0.0", "1.752", "1680170411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11732", "0.0", "3.504", "1680170411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11733", "0.0", "1.752", "1680174011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11733", "0.0", "3.504", "1680174011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11733", "0.0", "1.752", "1680174011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11733", "0.0", "3.504", "1680174011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11734", "0.0", "1.752", "1680177611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11734", "0.0", "3.504", "1680177611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11734", "0.0", "1.752", "1680177611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11734", "0.0", "3.504", "1680177611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11735", "0.0", "1.752", "1680181211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11735", "0.0", "3.504", "1680181211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11735", "0.0", "1.752", "1680181211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11735", "0.0", "3.504", "1680181211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11736", "0.0", "1.752", "1680184811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11736", "0.0", "3.504", "1680184811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11736", "0.0", "1.752", "1680184811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11736", "0.0", "3.504", "1680184811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11737", "0.0", "1.752", "1680188411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11737", "0.0", "3.504", "1680188411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11737", "0.0", "1.752", "1680188411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11737", "0.0", "3.504", "1680188411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11738", "0.0", "1.752", "1680192011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11738", "0.0", "3.504", "1680192011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11738", "0.0", "1.752", "1680192011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11738", "0.0", "3.504", "1680192011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11739", "0.0", "1.752", "1680195611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11739", "0.0", "3.504", "1680195611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11739", "0.0", "1.752", "1680195611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11739", "0.0", "3.504", "1680195611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11740", "0.0", "1.752", "1680199211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11740", "0.0", "3.504", "1680199211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11740", "0.0", "1.752", "1680199211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11740", "0.0", "3.504", "1680199211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11741", "0.0", "1.752", "1680202811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11741", "0.0", "3.504", "1680202811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11741", "0.0", "1.752", "1680202811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11741", "0.0", "3.504", "1680202811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11742", "0.0", "1.752", "1680206411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11742", "0.0", "3.504", "1680206411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11742", "0.0", "1.752", "1680206411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11742", "0.0", "3.504", "1680206411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11743", "0.0", "1.752", "1680210011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11743", "0.0", "3.504", "1680210011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11743", "0.0", "1.752", "1680210011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11743", "0.0", "3.504", "1680210011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11744", "0.0", "1.752", "1680213611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11744", "0.0", "3.504", "1680213611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11744", "0.0", "1.752", "1680213611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11744", "0.0", "3.504", "1680213611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11745", "0.0", "1.752", "1680217211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11745", "0.0", "3.504", "1680217211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11745", "0.0", "1.752", "1680217211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11745", "0.0", "3.504", "1680217211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11746", "0.0", "1.752", "1680220811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11746", "0.0", "3.504", "1680220811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11746", "0.0", "1.752", "1680220811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11746", "0.0", "3.504", "1680220811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11747", "0.0", "1.752", "1680224411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11747", "0.0", "3.504", "1680224411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11747", "0.0", "1.752", "1680224411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11747", "0.0", "3.504", "1680224411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11748", "0.0", "1.752", "1680228011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11748", "0.0", "3.504", "1680228011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11748", "0.0", "1.752", "1680228011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11748", "0.0", "3.504", "1680228011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11749", "0.0", "1.752", "1680231611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11749", "0.0", "3.504", "1680231611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11749", "0.0", "1.752", "1680231611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11749", "0.0", "3.504", "1680231611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11750", "0.0", "1.752", "1680235211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11750", "0.0", "3.504", "1680235211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11750", "0.0", "1.752", "1680235211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11750", "0.0", "3.504", "1680235211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11751", "0.0", "1.752", "1680238811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11751", "0.0", "3.504", "1680238811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11751", "0.0", "1.752", "1680238811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11751", "0.0", "3.504", "1680238811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11752", "0.0", "1.752", "1680242411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11752", "0.0", "3.504", "1680242411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11752", "0.0", "1.752", "1680242411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11752", "0.0", "3.504", "1680242411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11753", "0.0", "1.752", "1680246011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11753", "0.0", "3.504", "1680246011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11753", "0.0", "1.752", "1680246011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11753", "0.0", "3.504", "1680246011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11754", "0.0", "1.752", "1680249611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11754", "0.0", "3.504", "1680249611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11754", "0.0", "1.752", "1680249611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11754", "0.0", "3.504", "1680249611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11755", "0.0", "1.752", "1680253211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11755", "0.0", "3.504", "1680253211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11755", "0.0", "1.752", "1680253211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11755", "0.0", "3.504", "1680253211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11756", "0.0", "1.752", "1680256811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11756", "0.0", "3.504", "1680256811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11756", "0.0", "1.752", "1680256811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11756", "0.0", "3.504", "1680256811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11757", "0.0", "1.752", "1680260411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11757", "0.0", "3.504", "1680260411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11757", "0.0", "1.752", "1680260411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11757", "0.0", "3.504", "1680260411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11758", "0.0", "1.752", "1680264011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11758", "0.0", "3.504", "1680264011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11758", "0.0", "1.752", "1680264011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11758", "0.0", "3.504", "1680264011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11759", "0.0", "1.752", "1680267611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11759", "0.0", "3.504", "1680267611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11759", "0.0", "1.752", "1680267611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11759", "0.0", "3.504", "1680267611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11760", "0.0", "1.752", "1680271211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11760", "0.0", "3.504", "1680271211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11760", "0.0", "1.752", "1680271211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11760", "0.0", "3.504", "1680271211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11761", "0.0", "1.752", "1680274811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11761", "0.0", "3.504", "1680274811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11761", "0.0", "1.752", "1680274811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11761", "0.0", "3.504", "1680274811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11762", "0.0", "1.752", "1680278423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11762", "0.0", "3.504", "1680278423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11762", "0.0", "1.752", "1680278423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11762", "0.0", "3.504", "1680278423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11763", "0.0", "1.752", "1680282011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11763", "0.0", "3.504", "1680282011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11763", "0.0", "1.752", "1680282011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11763", "0.0", "3.504", "1680282011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11764", "0.0", "1.752", "1680285611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11764", "0.0", "3.504", "1680285611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11764", "0.0", "1.752", "1680285611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11764", "0.0", "3.504", "1680285611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11765", "0.0", "1.752", "1680289211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11765", "0.0", "3.504", "1680289211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11765", "0.0", "1.752", "1680289211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11765", "0.0", "3.504", "1680289211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11766", "0.0", "1.752", "1680292811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11766", "0.0", "3.504", "1680292811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11766", "0.0", "1.752", "1680292811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11766", "0.0", "3.504", "1680292811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11767", "0.0", "1.752", "1680296411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11767", "0.0", "3.504", "1680296411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11767", "0.0", "1.752", "1680296411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11767", "0.0", "3.504", "1680296411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11768", "0.0", "1.752", "1680300011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11768", "0.0", "3.504", "1680300011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11768", "0.0", "1.752", "1680300011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11768", "0.0", "3.504", "1680300011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11769", "0.0", "1.752", "1680303611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11769", "0.0", "3.504", "1680303611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11769", "0.0", "1.752", "1680303611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11769", "0.0", "3.504", "1680303611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11770", "0.0", "1.752", "1680307211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11770", "0.0", "3.504", "1680307211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11770", "0.0", "1.752", "1680307211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11770", "0.0", "3.504", "1680307211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11771", "0.0", "1.752", "1680310811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11771", "0.0", "3.504", "1680310811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11771", "0.0", "1.752", "1680310811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11771", "0.0", "3.504", "1680310811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11772", "0.0", "1.752", "1680314411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11772", "0.0", "3.504", "1680314411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11772", "0.0", "1.752", "1680314411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11772", "0.0", "3.504", "1680314411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11773", "0.0", "1.752", "1680318011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11773", "0.0", "3.504", "1680318011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11773", "0.0", "1.752", "1680318011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11773", "0.0", "3.504", "1680318011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11774", "0.0", "1.752", "1680321611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11774", "0.0", "3.504", "1680321611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11774", "0.0", "1.752", "1680321611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11774", "0.0", "3.504", "1680321611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11775", "0.0", "1.752", "1680325211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11775", "0.0", "3.504", "1680325211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11775", "0.0", "1.752", "1680325211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11775", "0.0", "3.504", "1680325211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11776", "0.0", "1.752", "1680328811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11776", "0.0", "3.504", "1680328811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11776", "0.0", "1.752", "1680328811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11776", "0.0", "3.504", "1680328811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11777", "0.0", "1.752", "1680332411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11777", "0.0", "3.504", "1680332411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11777", "0.0", "1.752", "1680332411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11777", "0.0", "3.504", "1680332411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11778", "0.0", "1.752", "1680336011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11778", "0.0", "3.504", "1680336011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11778", "0.0", "1.752", "1680336011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11778", "0.0", "3.504", "1680336011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11779", "0.0", "1.752", "1680339611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11779", "0.0", "3.504", "1680339611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11779", "0.0", "1.752", "1680339611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11779", "0.0", "3.504", "1680339611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11780", "0.0", "1.752", "1680343211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11780", "0.0", "3.504", "1680343211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11780", "0.0", "1.752", "1680343211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11780", "0.0", "3.504", "1680343211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11781", "0.0", "1.752", "1680346811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11781", "0.0", "3.504", "1680346811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11781", "0.0", "1.752", "1680346811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11781", "0.0", "3.504", "1680346811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11782", "0.0", "1.752", "1680350411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11782", "0.0", "3.504", "1680350411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11782", "0.0", "1.752", "1680350411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11782", "0.0", "3.504", "1680350411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11783", "0.0", "1.752", "1680354011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11783", "0.0", "3.504", "1680354011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11783", "0.0", "1.752", "1680354011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11783", "0.0", "3.504", "1680354011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11784", "0.0", "1.752", "1680357611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11784", "0.0", "3.504", "1680357611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11784", "0.0", "1.752", "1680357611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11784", "0.0", "3.504", "1680357611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11785", "0.0", "1.752", "1680361211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11785", "0.0", "3.504", "1680361211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11785", "0.0", "1.752", "1680361211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11785", "0.0", "3.504", "1680361211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11786", "0.0", "1.752", "1680364811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11786", "0.0", "3.504", "1680364811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11786", "0.0", "1.752", "1680364811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11786", "0.0", "3.504", "1680364811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11787", "0.0", "1.752", "1680368411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11787", "0.0", "3.504", "1680368411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11787", "0.0", "1.752", "1680368411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11787", "0.0", "3.504", "1680368411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11788", "0.0", "1.752", "1680372011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11788", "0.0", "3.504", "1680372011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11788", "0.0", "1.752", "1680372011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11788", "0.0", "3.504", "1680372011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11789", "0.0", "1.752", "1680375611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11789", "0.0", "3.504", "1680375611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11789", "0.0", "1.752", "1680375611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11789", "0.0", "3.504", "1680375611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11790", "0.0", "1.752", "1680379211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11790", "0.0", "3.504", "1680379211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11790", "0.0", "1.752", "1680379211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11790", "0.0", "3.504", "1680379211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11791", "0.0", "1.752", "1680382811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11791", "0.0", "3.504", "1680382811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11791", "0.0", "1.752", "1680382811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11791", "0.0", "3.504", "1680382811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11792", "0.0", "1.752", "1680386411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11792", "0.0", "3.504", "1680386411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11792", "0.0", "1.752", "1680386411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11792", "0.0", "3.504", "1680386411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11793", "0.0", "1.752", "1680390011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11793", "0.0", "3.504", "1680390011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11793", "0.0", "1.752", "1680390011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11793", "0.0", "3.504", "1680390011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11794", "0.0", "1.752", "1680393611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11794", "0.0", "3.504", "1680393611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11794", "0.0", "1.752", "1680393611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11794", "0.0", "3.504", "1680393611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11795", "0.0", "1.752", "1680397211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11795", "0.0", "3.504", "1680397211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11795", "0.0", "1.752", "1680397211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11795", "0.0", "3.504", "1680397211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11796", "0.0", "1.752", "1680400811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11796", "0.0", "3.504", "1680400811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11796", "0.0", "1.752", "1680400811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11796", "0.0", "3.504", "1680400811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11797", "0.0", "1.752", "1680404411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11797", "0.0", "3.504", "1680404411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11797", "0.0", "1.752", "1680404411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11797", "0.0", "3.504", "1680404411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11798", "0.0", "1.752", "1680408011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11798", "0.0", "3.504", "1680408011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11798", "0.0", "1.752", "1680408011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11798", "0.0", "3.504", "1680408011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11799", "0.0", "1.752", "1680411611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11799", "0.0", "3.504", "1680411611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11799", "0.0", "1.752", "1680411611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11799", "0.0", "3.504", "1680411611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11800", "0.0", "1.752", "1680415223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11800", "0.0", "3.504", "1680415223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11800", "0.0", "1.752", "1680415223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11800", "0.0", "3.504", "1680415223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11801", "0.0", "1.752", "1680418811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11801", "0.0", "3.504", "1680418811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11801", "0.0", "1.752", "1680418811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11801", "0.0", "3.504", "1680418811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11802", "0.0", "1.752", "1680422423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11802", "0.0", "3.504", "1680422423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11802", "0.0", "1.752", "1680422423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11802", "0.0", "3.504", "1680422423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11803", "0.0", "1.752", "1680426023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11803", "0.0", "3.504", "1680426023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11803", "0.0", "1.752", "1680426023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11803", "0.0", "3.504", "1680426023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11804", "0.0", "1.752", "1680429611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11804", "0.0", "3.504", "1680429611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11804", "0.0", "1.752", "1680429611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11804", "0.0", "3.504", "1680429611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11805", "0.0", "1.752", "1680433211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11805", "0.0", "3.504", "1680433211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11805", "0.0", "1.752", "1680433211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11805", "0.0", "3.504", "1680433211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11806", "0.0", "1.752", "1680436811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11806", "0.0", "3.504", "1680436811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11806", "0.0", "1.752", "1680436811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11806", "0.0", "3.504", "1680436811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11807", "0.0", "1.752", "1680440411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11807", "0.0", "3.504", "1680440411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11807", "0.0", "1.752", "1680440411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11807", "0.0", "3.504", "1680440411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11808", "0.0", "1.752", "1680444011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11808", "0.0", "3.504", "1680444011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11808", "0.0", "1.752", "1680444011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11808", "0.0", "3.504", "1680444011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11809", "0.0", "1.752", "1680447611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11809", "0.0", "3.504", "1680447611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11809", "0.0", "1.752", "1680447611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11809", "0.0", "3.504", "1680447611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11810", "0.0", "1.752", "1680451211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11810", "0.0", "3.504", "1680451211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11810", "0.0", "1.752", "1680451211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11810", "0.0", "3.504", "1680451211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11811", "0.0", "1.752", "1680454811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11811", "0.0", "3.504", "1680454811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11811", "0.0", "1.752", "1680454811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11811", "0.0", "3.504", "1680454811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11812", "0.0", "1.752", "1680458411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11812", "0.0", "3.504", "1680458411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11812", "0.0", "1.752", "1680458411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11812", "0.0", "3.504", "1680458411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11813", "0.0", "1.752", "1680462011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11813", "0.0", "3.504", "1680462011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11813", "0.0", "1.752", "1680462011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11813", "0.0", "3.504", "1680462011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11814", "0.0", "1.752", "1680465611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11814", "0.0", "3.504", "1680465611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11814", "0.0", "1.752", "1680465611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11814", "0.0", "3.504", "1680465611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11815", "0.0", "1.752", "1680469211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11815", "0.0", "3.504", "1680469211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11815", "0.0", "1.752", "1680469211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11815", "0.0", "3.504", "1680469211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11816", "0.0", "1.752", "1680472811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11816", "0.0", "3.504", "1680472811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11816", "0.0", "1.752", "1680472811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11816", "0.0", "3.504", "1680472811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11817", "0.0", "1.752", "1680476411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11817", "0.0", "3.504", "1680476411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11817", "0.0", "1.752", "1680476411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11817", "0.0", "3.504", "1680476411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11818", "0.0", "1.752", "1680480011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11818", "0.0", "3.504", "1680480011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11818", "0.0", "1.752", "1680480011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11818", "0.0", "3.504", "1680480011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11819", "0.0", "1.752", "1680483611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11819", "0.0", "3.504", "1680483611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11819", "0.0", "1.752", "1680483611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11819", "0.0", "3.504", "1680483611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11820", "0.0", "1.752", "1680487211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11820", "0.0", "3.504", "1680487211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11820", "0.0", "1.752", "1680487211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11820", "0.0", "3.504", "1680487211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11821", "0.0", "1.752", "1680490811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11821", "0.0", "3.504", "1680490811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11821", "0.0", "1.752", "1680490811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11821", "0.0", "3.504", "1680490811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11822", "0.0", "1.752", "1680494411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11822", "0.0", "3.504", "1680494411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11822", "0.0", "1.752", "1680494411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11822", "0.0", "3.504", "1680494411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11823", "0.0", "1.752", "1680498011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11823", "0.0", "3.504", "1680498011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11823", "0.0", "1.752", "1680498011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11823", "0.0", "3.504", "1680498011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11824", "0.0", "1.752", "1680501611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11824", "0.0", "3.504", "1680501611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11824", "0.0", "1.752", "1680501611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11824", "0.0", "3.504", "1680501611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11825", "0.0", "1.752", "1680505211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11825", "0.0", "3.504", "1680505211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11825", "0.0", "1.752", "1680505211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11825", "0.0", "3.504", "1680505211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11826", "0.0", "1.752", "1680508811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11826", "0.0", "3.504", "1680508811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11826", "0.0", "1.752", "1680508811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11826", "0.0", "3.504", "1680508811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11827", "0.0", "1.752", "1680512411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11827", "0.0", "3.504", "1680512411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11827", "0.0", "1.752", "1680512411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11827", "0.0", "3.504", "1680512411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11828", "0.0", "1.752", "1680516047"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11828", "0.0", "3.504", "1680516047"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11828", "0.0", "1.752", "1680516047"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11828", "0.0", "3.504", "1680516047"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11829", "0.0", "1.752", "1680519623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11829", "0.0", "3.504", "1680519623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11829", "0.0", "1.752", "1680519623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11829", "0.0", "3.504", "1680519623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11830", "0.0", "1.752", "1680523211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11830", "0.0", "3.504", "1680523211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11830", "0.0", "1.752", "1680523211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11830", "0.0", "3.504", "1680523211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11831", "0.0", "1.752", "1680526811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11831", "0.0", "3.504", "1680526811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11831", "0.0", "1.752", "1680526811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11831", "0.0", "3.504", "1680526811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11832", "0.0", "1.752", "1680530411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11832", "0.0", "3.504", "1680530411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11832", "0.0", "1.752", "1680530411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11832", "0.0", "3.504", "1680530411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11833", "0.0", "1.752", "1680534011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11833", "0.0", "3.504", "1680534011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11833", "0.0", "1.752", "1680534011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11833", "0.0", "3.504", "1680534011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11834", "0.0", "1.752", "1680537611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11834", "0.0", "3.504", "1680537611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11834", "0.0", "1.752", "1680537611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11834", "0.0", "3.504", "1680537611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11835", "0.0", "1.752", "1680541211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11835", "0.0", "3.504", "1680541211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11835", "0.0", "1.752", "1680541211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11835", "0.0", "3.504", "1680541211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11836", "0.0", "1.752", "1680544811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11836", "0.0", "3.504", "1680544811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11836", "0.0", "1.752", "1680544811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11836", "0.0", "3.504", "1680544811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11837", "0.0", "1.752", "1680548423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11837", "0.0", "3.504", "1680548423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11837", "0.0", "1.752", "1680548423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11837", "0.0", "3.504", "1680548423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11838", "0.0", "1.752", "1680552011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11838", "0.0", "3.504", "1680552011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11838", "0.0", "1.752", "1680552011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11838", "0.0", "3.504", "1680552011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11839", "0.0", "1.752", "1680555611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11839", "0.0", "3.504", "1680555611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11839", "0.0", "1.752", "1680555611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11839", "0.0", "3.504", "1680555611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11840", "0.0", "1.752", "1680559211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11840", "0.0", "3.504", "1680559211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11840", "0.0", "1.752", "1680559211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11840", "0.0", "3.504", "1680559211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11841", "0.0", "1.752", "1680562823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11841", "0.0", "3.504", "1680562823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11841", "0.0", "1.752", "1680562823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11841", "0.0", "3.504", "1680562823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11842", "0.0", "1.752", "1680566411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11842", "0.0", "3.504", "1680566411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11842", "0.0", "1.752", "1680566411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11842", "0.0", "3.504", "1680566411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11843", "0.0", "1.752", "1680570011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11843", "0.0", "3.504", "1680570011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11843", "0.0", "1.752", "1680570011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11843", "0.0", "3.504", "1680570011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11844", "0.0", "1.752", "1680573611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11844", "0.0", "3.504", "1680573611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11844", "0.0", "1.752", "1680573611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11844", "0.0", "3.504", "1680573611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11845", "0.0", "1.752", "1680577211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11845", "0.0", "3.504", "1680577211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11845", "0.0", "1.752", "1680577211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11845", "0.0", "3.504", "1680577211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11846", "0.0", "1.752", "1680580811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11846", "0.0", "3.504", "1680580811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11846", "0.0", "1.752", "1680580811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11846", "0.0", "3.504", "1680580811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11847", "0.0", "1.752", "1680584411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11847", "0.0", "3.504", "1680584411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11847", "0.0", "1.752", "1680584411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11847", "0.0", "3.504", "1680584411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11848", "0.0", "1.752", "1680588011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11848", "0.0", "3.504", "1680588011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11848", "0.0", "1.752", "1680588011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11848", "0.0", "3.504", "1680588011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11849", "0.0", "1.752", "1680591611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11849", "0.0", "3.504", "1680591611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11849", "0.0", "1.752", "1680591611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11849", "0.0", "3.504", "1680591611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11850", "0.0", "1.752", "1680595211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11850", "0.0", "3.504", "1680595211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11850", "0.0", "1.752", "1680595211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11850", "0.0", "3.504", "1680595211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11851", "0.0", "1.752", "1680598823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11851", "0.0", "3.504", "1680598823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11851", "0.0", "1.752", "1680598823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11851", "0.0", "3.504", "1680598823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11852", "0.0", "1.752", "1680602411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11852", "0.0", "3.504", "1680602411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11852", "0.0", "1.752", "1680602411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11852", "0.0", "3.504", "1680602411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11853", "0.0", "1.752", "1680606011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11853", "0.0", "3.504", "1680606011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11853", "0.0", "1.752", "1680606011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11853", "0.0", "3.504", "1680606011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11854", "0.0", "1.752", "1680609623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11854", "0.0", "3.504", "1680609623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11854", "0.0", "1.752", "1680609623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11854", "0.0", "3.504", "1680609623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11855", "0.0", "1.752", "1680613211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11855", "0.0", "3.504", "1680613211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11855", "0.0", "1.752", "1680613211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11855", "0.0", "3.504", "1680613211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11856", "0.0", "1.752", "1680616811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11856", "0.0", "3.504", "1680616811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11856", "0.0", "1.752", "1680616811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11856", "0.0", "3.504", "1680616811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11857", "0.0", "1.752", "1680620411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11857", "0.0", "3.504", "1680620411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11857", "0.0", "1.752", "1680620411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11857", "0.0", "3.504", "1680620411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11858", "0.0", "1.752", "1680624011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11858", "0.0", "3.504", "1680624011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11858", "0.0", "1.752", "1680624011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11858", "0.0", "3.504", "1680624011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11859", "0.0", "1.752", "1680627611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11859", "0.0", "3.504", "1680627611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11859", "0.0", "1.752", "1680627611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11859", "0.0", "3.504", "1680627611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11860", "0.0", "1.752", "1680631211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11860", "0.0", "3.504", "1680631211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11860", "0.0", "1.752", "1680631211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11860", "0.0", "3.504", "1680631211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11861", "0.0", "1.752", "1680634823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11861", "0.0", "3.504", "1680634823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11861", "0.0", "1.752", "1680634823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11861", "0.0", "3.504", "1680634823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11862", "0.0", "1.752", "1680638411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11862", "0.0", "3.504", "1680638411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11862", "0.0", "1.752", "1680638411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11862", "0.0", "3.504", "1680638411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11863", "0.0", "1.752", "1680642011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11863", "0.0", "3.504", "1680642011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11863", "0.0", "1.752", "1680642011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11863", "0.0", "3.504", "1680642011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11864", "0.0", "1.752", "1680645623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11864", "0.0", "3.504", "1680645623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11864", "0.0", "1.752", "1680645623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11864", "0.0", "3.504", "1680645623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11865", "0.0", "1.752", "1680649235"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11865", "0.0", "3.504", "1680649235"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11865", "0.0", "1.752", "1680649235"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11865", "0.0", "3.504", "1680649235"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11866", "0.0", "1.752", "1680652811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11866", "0.0", "3.504", "1680652811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11866", "0.0", "1.752", "1680652811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11866", "0.0", "3.504", "1680652811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11867", "0.0", "1.752", "1680656435"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11867", "0.0", "3.504", "1680656435"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11867", "0.0", "1.752", "1680656435"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11867", "0.0", "3.504", "1680656435"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11868", "0.0", "1.752", "1680660011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11868", "0.0", "3.504", "1680660011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11868", "0.0", "1.752", "1680660011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11868", "0.0", "3.504", "1680660011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11869", "0.0", "1.752", "1680663611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11869", "0.0", "3.504", "1680663611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11869", "0.0", "1.752", "1680663611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11869", "0.0", "3.504", "1680663611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11870", "0.0", "1.752", "1680667211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11870", "0.0", "3.504", "1680667211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11870", "0.0", "1.752", "1680667211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11870", "0.0", "3.504", "1680667211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11871", "0.0", "1.752", "1680670811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11871", "0.0", "3.504", "1680670811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11871", "0.0", "1.752", "1680670811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11871", "0.0", "3.504", "1680670811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11872", "0.0", "1.752", "1680674411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11872", "0.0", "3.504", "1680674411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11872", "0.0", "1.752", "1680674411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11872", "0.0", "3.504", "1680674411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11873", "0.0", "1.752", "1680678011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11873", "0.0", "3.504", "1680678011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11873", "0.0", "1.752", "1680678011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11873", "0.0", "3.504", "1680678011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11874", "0.0", "1.752", "1680681611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11874", "0.0", "3.504", "1680681611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11874", "0.0", "1.752", "1680681611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11874", "0.0", "3.504", "1680681611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11875", "0.0", "1.752", "1680685211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11875", "0.0", "3.504", "1680685211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11875", "0.0", "1.752", "1680685211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11875", "0.0", "3.504", "1680685211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11876", "0.0", "1.752", "1680688823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11876", "0.0", "3.504", "1680688823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11876", "0.0", "1.752", "1680688823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11876", "0.0", "3.504", "1680688823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11877", "0.0", "1.752", "1680692423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11877", "0.0", "3.504", "1680692423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11877", "0.0", "1.752", "1680692423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11877", "0.0", "3.504", "1680692423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11878", "0.0", "1.752", "1680696011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11878", "0.0", "3.504", "1680696011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11878", "0.0", "1.752", "1680696011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11878", "0.0", "3.504", "1680696011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11879", "0.0", "1.752", "1680699611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11879", "0.0", "3.504", "1680699611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11879", "0.0", "1.752", "1680699611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11879", "0.0", "3.504", "1680699611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11880", "0.0", "1.752", "1680703211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11880", "0.0", "3.504", "1680703211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11880", "0.0", "1.752", "1680703211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11880", "0.0", "3.504", "1680703211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11881", "0.0", "1.752", "1680706811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11881", "0.0", "3.504", "1680706811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11881", "0.0", "1.752", "1680706811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11881", "0.0", "3.504", "1680706811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11882", "0.0", "1.752", "1680710411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11882", "0.0", "3.504", "1680710411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11882", "0.0", "1.752", "1680710411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11882", "0.0", "3.504", "1680710411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11883", "0.0", "1.752", "1680714011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11883", "0.0", "3.504", "1680714011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11883", "0.0", "1.752", "1680714011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11883", "0.0", "3.504", "1680714011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11884", "0.0", "1.752", "1680717611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11884", "0.0", "3.504", "1680717611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11884", "0.0", "1.752", "1680717611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11884", "0.0", "3.504", "1680717611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11885", "0.0", "1.752", "1680721211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11885", "0.0", "3.504", "1680721211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11885", "0.0", "1.752", "1680721211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11885", "0.0", "3.504", "1680721211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11886", "0.0", "1.752", "1680724811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11886", "0.0", "3.504", "1680724811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11886", "0.0", "1.752", "1680724811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11886", "0.0", "3.504", "1680724811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11887", "0.0", "1.752", "1680728411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11887", "0.0", "3.504", "1680728411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11887", "0.0", "1.752", "1680728411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11887", "0.0", "3.504", "1680728411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11888", "0.0", "1.752", "1680732023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11888", "0.0", "3.504", "1680732023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11888", "0.0", "1.752", "1680732023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11888", "0.0", "3.504", "1680732023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11889", "0.0", "1.752", "1680735611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11889", "0.0", "3.504", "1680735611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11889", "0.0", "1.752", "1680735611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11889", "0.0", "3.504", "1680735611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11890", "0.0", "1.752", "1680739211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11890", "0.0", "3.504", "1680739211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11890", "0.0", "1.752", "1680739211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11890", "0.0", "3.504", "1680739211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11891", "0.0", "1.752", "1680742811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11891", "0.0", "3.504", "1680742811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11891", "0.0", "1.752", "1680742811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11891", "0.0", "3.504", "1680742811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11892", "0.0", "1.752", "1680746423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11892", "0.0", "3.504", "1680746423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11892", "0.0", "1.752", "1680746423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11892", "0.0", "3.504", "1680746423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11893", "0.0", "1.752", "1680750011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11893", "0.0", "3.504", "1680750011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11893", "0.0", "1.752", "1680750011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11893", "0.0", "3.504", "1680750011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11894", "0.0", "1.752", "1680753611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11894", "0.0", "3.504", "1680753611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11894", "0.0", "1.752", "1680753611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11894", "0.0", "3.504", "1680753611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11895", "0.0", "1.752", "1680757211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11895", "0.0", "3.504", "1680757211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11895", "0.0", "1.752", "1680757211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11895", "0.0", "3.504", "1680757211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11896", "0.0", "1.752", "1680760811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11896", "0.0", "3.504", "1680760811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11896", "0.0", "1.752", "1680760811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11896", "0.0", "3.504", "1680760811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11897", "0.0", "1.752", "1680764423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11897", "0.0", "3.504", "1680764423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11897", "0.0", "1.752", "1680764423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11897", "0.0", "3.504", "1680764423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11898", "0.0", "1.752", "1680768011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11898", "0.0", "3.504", "1680768011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11898", "0.0", "1.752", "1680768011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11898", "0.0", "3.504", "1680768011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11899", "0.0", "1.752", "1680771611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11899", "0.0", "3.504", "1680771611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11899", "0.0", "1.752", "1680771611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11899", "0.0", "3.504", "1680771611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11900", "0.0", "1.752", "1680775211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11900", "0.0", "3.504", "1680775211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11900", "0.0", "1.752", "1680775211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11900", "0.0", "3.504", "1680775211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11901", "0.0", "1.752", "1680778811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11901", "0.0", "3.504", "1680778811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11901", "0.0", "1.752", "1680778811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11901", "0.0", "3.504", "1680778811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11902", "0.0", "1.752", "1680782411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11902", "0.0", "3.504", "1680782411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11902", "0.0", "1.752", "1680782411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11902", "0.0", "3.504", "1680782411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11903", "0.0", "1.752", "1680786011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11903", "0.0", "3.504", "1680786011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11903", "0.0", "1.752", "1680786011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11903", "0.0", "3.504", "1680786011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11904", "0.0", "1.752", "1680789623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11904", "0.0", "3.504", "1680789623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11904", "0.0", "1.752", "1680789623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11904", "0.0", "3.504", "1680789623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11905", "0.0", "1.752", "1680793211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11905", "0.0", "3.504", "1680793211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11905", "0.0", "1.752", "1680793211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11905", "0.0", "3.504", "1680793211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11906", "0.0", "1.752", "1680796811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11906", "0.0", "3.504", "1680796811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11906", "0.0", "1.752", "1680796811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11906", "0.0", "3.504", "1680796811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11907", "0.0", "1.752", "1680800411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11907", "0.0", "3.504", "1680800411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11907", "0.0", "1.752", "1680800411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11907", "0.0", "3.504", "1680800411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11908", "0.0", "1.752", "1680804011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11908", "0.0", "3.504", "1680804011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11908", "0.0", "1.752", "1680804011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11908", "0.0", "3.504", "1680804011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11909", "0.0", "1.752", "1680807611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11909", "0.0", "3.504", "1680807611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11909", "0.0", "1.752", "1680807611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11909", "0.0", "3.504", "1680807611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11910", "0.0", "1.752", "1680811211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11910", "0.0", "3.504", "1680811211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11910", "0.0", "1.752", "1680811211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11910", "0.0", "3.504", "1680811211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11911", "0.0", "1.752", "1680814823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11911", "0.0", "3.504", "1680814823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11911", "0.0", "1.752", "1680814823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11911", "0.0", "3.504", "1680814823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11912", "0.0", "1.752", "1680818411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11912", "0.0", "3.504", "1680818411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11912", "0.0", "1.752", "1680818411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11912", "0.0", "3.504", "1680818411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11913", "0.0", "1.752", "1680822011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11913", "0.0", "3.504", "1680822011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11913", "0.0", "1.752", "1680822011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11913", "0.0", "3.504", "1680822011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11914", "0.0", "1.752", "1680825611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11914", "0.0", "3.504", "1680825611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11914", "0.0", "1.752", "1680825611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11914", "0.0", "3.504", "1680825611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11915", "0.0", "1.752", "1680829211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11915", "0.0", "3.504", "1680829211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11915", "0.0", "1.752", "1680829211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11915", "0.0", "3.504", "1680829211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11916", "0.0", "1.752", "1680832811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11916", "0.0", "3.504", "1680832811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11916", "0.0", "1.752", "1680832811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11916", "0.0", "3.504", "1680832811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11917", "0.0", "1.752", "1680836411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11917", "0.0", "3.504", "1680836411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11917", "0.0", "1.752", "1680836411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11917", "0.0", "3.504", "1680836411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11918", "0.0", "1.752", "1680840023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11918", "0.0", "3.504", "1680840023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11918", "0.0", "1.752", "1680840023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11918", "0.0", "3.504", "1680840023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11919", "0.0", "1.752", "1680843611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11919", "0.0", "3.504", "1680843611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11919", "0.0", "1.752", "1680843611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11919", "0.0", "3.504", "1680843611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11920", "0.0", "1.752", "1680847211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11920", "0.0", "3.504", "1680847211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11920", "0.0", "1.752", "1680847211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11920", "0.0", "3.504", "1680847211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11921", "0.0", "1.752", "1680850835"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11921", "0.0", "3.504", "1680850835"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11921", "0.0", "1.752", "1680850835"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11921", "0.0", "3.504", "1680850835"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11922", "0.0", "1.752", "1680854411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11922", "0.0", "3.504", "1680854411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11922", "0.0", "1.752", "1680854411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11922", "0.0", "3.504", "1680854411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11923", "0.0", "1.752", "1680858011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11923", "0.0", "3.504", "1680858011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11923", "0.0", "1.752", "1680858011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11923", "0.0", "3.504", "1680858011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11924", "0.0", "1.752", "1680861611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11924", "0.0", "3.504", "1680861611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11924", "0.0", "1.752", "1680861611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11924", "0.0", "3.504", "1680861611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11925", "0.0", "1.752", "1680865211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11925", "0.0", "3.504", "1680865211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11925", "0.0", "1.752", "1680865211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11925", "0.0", "3.504", "1680865211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11926", "0.0", "1.752", "1680868811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11926", "0.0", "3.504", "1680868811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11926", "0.0", "1.752", "1680868811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11926", "0.0", "3.504", "1680868811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11927", "0.0", "1.752", "1680872447"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11927", "0.0", "3.504", "1680872447"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11927", "0.0", "1.752", "1680872447"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11927", "0.0", "3.504", "1680872447"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11928", "0.0", "1.752", "1680876011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11928", "0.0", "3.504", "1680876011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11928", "0.0", "1.752", "1680876011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11928", "0.0", "3.504", "1680876011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11929", "0.0", "1.752", "1680879611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11929", "0.0", "3.504", "1680879611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11929", "0.0", "1.752", "1680879611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11929", "0.0", "3.504", "1680879611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11930", "0.0", "1.752", "1680883211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11930", "0.0", "3.504", "1680883211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11930", "0.0", "1.752", "1680883211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11930", "0.0", "3.504", "1680883211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11931", "0.0", "1.752", "1680886811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11931", "0.0", "3.504", "1680886811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11931", "0.0", "1.752", "1680886811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11931", "0.0", "3.504", "1680886811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11932", "0.0", "1.752", "1680890411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11932", "0.0", "3.504", "1680890411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11932", "0.0", "1.752", "1680890411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11932", "0.0", "3.504", "1680890411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11933", "0.0", "1.752", "1680894011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11933", "0.0", "3.504", "1680894011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11933", "0.0", "1.752", "1680894011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11933", "0.0", "3.504", "1680894011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11934", "0.0", "1.752", "1680897611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11934", "0.0", "3.504", "1680897611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11934", "0.0", "1.752", "1680897611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11934", "0.0", "3.504", "1680897611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11935", "0.0", "1.752", "1680901211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11935", "0.0", "3.504", "1680901211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11935", "0.0", "1.752", "1680901211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11935", "0.0", "3.504", "1680901211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11936", "0.0", "1.752", "1680904811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11936", "0.0", "3.504", "1680904811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11936", "0.0", "1.752", "1680904811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11936", "0.0", "3.504", "1680904811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11937", "0.0", "1.752", "1680908423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11937", "0.0", "3.504", "1680908423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11937", "0.0", "1.752", "1680908423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11937", "0.0", "3.504", "1680908423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11938", "0.0", "1.752", "1680912011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11938", "0.0", "3.504", "1680912011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11938", "0.0", "1.752", "1680912011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11938", "0.0", "3.504", "1680912011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11939", "0.0", "1.752", "1680915611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11939", "0.0", "3.504", "1680915611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11939", "0.0", "1.752", "1680915611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11939", "0.0", "3.504", "1680915611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11940", "0.0", "1.752", "1680919211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11940", "0.0", "3.504", "1680919211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11940", "0.0", "1.752", "1680919211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11940", "0.0", "3.504", "1680919211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11941", "0.0", "1.752", "1680922811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11941", "0.0", "3.504", "1680922811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11941", "0.0", "1.752", "1680922811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11941", "0.0", "3.504", "1680922811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11942", "0.0", "1.752", "1680926411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11942", "0.0", "3.504", "1680926411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11942", "0.0", "1.752", "1680926411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11942", "0.0", "3.504", "1680926411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11943", "0.0", "1.752", "1680930011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11943", "0.0", "3.504", "1680930011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11943", "0.0", "1.752", "1680930011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11943", "0.0", "3.504", "1680930011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11944", "0.0", "1.752", "1680933611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11944", "0.0", "3.504", "1680933611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11944", "0.0", "1.752", "1680933611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11944", "0.0", "3.504", "1680933611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11945", "0.0", "1.752", "1680937211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11945", "0.0", "3.504", "1680937211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11945", "0.0", "1.752", "1680937211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11945", "0.0", "3.504", "1680937211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11946", "0.0", "1.752", "1680940811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11946", "0.0", "3.504", "1680940811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11946", "0.0", "1.752", "1680940811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11946", "0.0", "3.504", "1680940811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11947", "0.0", "1.752", "1680944411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11947", "0.0", "3.504", "1680944411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11947", "0.0", "1.752", "1680944411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11947", "0.0", "3.504", "1680944411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11948", "0.0", "1.752", "1680948011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11948", "0.0", "3.504", "1680948011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11948", "0.0", "1.752", "1680948011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11948", "0.0", "3.504", "1680948011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11949", "0.0", "1.752", "1680951635"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11949", "0.0", "3.504", "1680951635"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11949", "0.0", "1.752", "1680951635"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11949", "0.0", "3.504", "1680951635"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11950", "0.0", "1.752", "1680955211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11950", "0.0", "3.504", "1680955211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11950", "0.0", "1.752", "1680955211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11950", "0.0", "3.504", "1680955211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11951", "0.0", "1.752", "1680958811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11951", "0.0", "3.504", "1680958811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11951", "0.0", "1.752", "1680958811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11951", "0.0", "3.504", "1680958811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11952", "0.0", "1.752", "1680962411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11952", "0.0", "3.504", "1680962411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11952", "0.0", "1.752", "1680962411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11952", "0.0", "3.504", "1680962411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11953", "0.0", "1.752", "1680966011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11953", "0.0", "3.504", "1680966011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11953", "0.0", "1.752", "1680966011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11953", "0.0", "3.504", "1680966011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11954", "0.0", "1.752", "1680969611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11954", "0.0", "3.504", "1680969611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11954", "0.0", "1.752", "1680969611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11954", "0.0", "3.504", "1680969611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11955", "0.0", "1.752", "1680973211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11955", "0.0", "3.504", "1680973211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11955", "0.0", "1.752", "1680973211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11955", "0.0", "3.504", "1680973211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11956", "0.0", "1.752", "1680976811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11956", "0.0", "3.504", "1680976811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11956", "0.0", "1.752", "1680976811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11956", "0.0", "3.504", "1680976811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11957", "0.0", "1.752", "1680980423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11957", "0.0", "3.504", "1680980423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11957", "0.0", "1.752", "1680980423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11957", "0.0", "3.504", "1680980423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11958", "0.0", "1.752", "1680984011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11958", "0.0", "3.504", "1680984011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11958", "0.0", "1.752", "1680984011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11958", "0.0", "3.504", "1680984011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11959", "0.0", "1.752", "1680987611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11959", "0.0", "3.504", "1680987611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11959", "0.0", "1.752", "1680987611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11959", "0.0", "3.504", "1680987611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11960", "0.0", "1.752", "1680991211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11960", "0.0", "3.504", "1680991211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11960", "0.0", "1.752", "1680991211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11960", "0.0", "3.504", "1680991211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11961", "0.0", "1.752", "1680994811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11961", "0.0", "3.504", "1680994811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11961", "0.0", "1.752", "1680994811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11961", "0.0", "3.504", "1680994811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11962", "0.0", "1.752", "1680998411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11962", "0.0", "3.504", "1680998411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11962", "0.0", "1.752", "1680998411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11962", "0.0", "3.504", "1680998411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11963", "0.0", "1.752", "1681002011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11963", "0.0", "3.504", "1681002011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11963", "0.0", "1.752", "1681002011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11963", "0.0", "3.504", "1681002011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11964", "0.0", "1.752", "1681005611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11964", "0.0", "3.504", "1681005611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11964", "0.0", "1.752", "1681005611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11964", "0.0", "3.504", "1681005611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11965", "0.0", "1.752", "1681009211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11965", "0.0", "3.504", "1681009211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11965", "0.0", "1.752", "1681009211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11965", "0.0", "3.504", "1681009211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11966", "0.0", "1.752", "1681012811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11966", "0.0", "3.504", "1681012811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11966", "0.0", "1.752", "1681012811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11966", "0.0", "3.504", "1681012811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11967", "0.0", "1.752", "1681016411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11967", "0.0", "3.504", "1681016411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11967", "0.0", "1.752", "1681016411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11967", "0.0", "3.504", "1681016411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11968", "0.0", "1.752", "1681020011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11968", "0.0", "3.504", "1681020011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11968", "0.0", "1.752", "1681020011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11968", "0.0", "3.504", "1681020011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11969", "0.0", "1.752", "1681023611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11969", "0.0", "3.504", "1681023611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11969", "0.0", "1.752", "1681023611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11969", "0.0", "3.504", "1681023611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11970", "0.0", "1.752", "1681027211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11970", "0.0", "3.504", "1681027211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11970", "0.0", "1.752", "1681027211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11970", "0.0", "3.504", "1681027211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11971", "0.0", "1.752", "1681030811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11971", "0.0", "3.504", "1681030811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11971", "0.0", "1.752", "1681030811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11971", "0.0", "3.504", "1681030811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11972", "0.0", "1.752", "1681034423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11972", "0.0", "3.504", "1681034423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11972", "0.0", "1.752", "1681034423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11972", "0.0", "3.504", "1681034423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11973", "0.0", "1.752", "1681038011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11973", "0.0", "3.504", "1681038011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11973", "0.0", "1.752", "1681038011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11973", "0.0", "3.504", "1681038011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11974", "0.0", "1.752", "1681041611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11974", "0.0", "3.504", "1681041611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11974", "0.0", "1.752", "1681041611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11974", "0.0", "3.504", "1681041611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11975", "0.0", "1.752", "1681045211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11975", "0.0", "3.504", "1681045211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11975", "0.0", "1.752", "1681045211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11975", "0.0", "3.504", "1681045211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11976", "0.0", "1.752", "1681048811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11976", "0.0", "3.504", "1681048811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11976", "0.0", "1.752", "1681048811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11976", "0.0", "3.504", "1681048811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11977", "0.0", "1.752", "1681052411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11977", "0.0", "3.504", "1681052411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11977", "0.0", "1.752", "1681052411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11977", "0.0", "3.504", "1681052411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11978", "0.0", "1.752", "1681056011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11978", "0.0", "3.504", "1681056011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11978", "0.0", "1.752", "1681056011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11978", "0.0", "3.504", "1681056011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11979", "0.0", "1.752", "1681059623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11979", "0.0", "3.504", "1681059623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11979", "0.0", "1.752", "1681059623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11979", "0.0", "3.504", "1681059623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11980", "0.0", "1.752", "1681063223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11980", "0.0", "3.504", "1681063223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11980", "0.0", "1.752", "1681063223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11980", "0.0", "3.504", "1681063223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11981", "0.0", "1.752", "1681066811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11981", "0.0", "3.504", "1681066811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11981", "0.0", "1.752", "1681066811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11981", "0.0", "3.504", "1681066811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11982", "0.0", "1.752", "1681070411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11982", "0.0", "3.504", "1681070411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11982", "0.0", "1.752", "1681070411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11982", "0.0", "3.504", "1681070411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11983", "0.0", "1.752", "1681074023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11983", "0.0", "3.504", "1681074023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11983", "0.0", "1.752", "1681074023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11983", "0.0", "3.504", "1681074023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11984", "0.0", "1.752", "1681077611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11984", "0.0", "3.504", "1681077611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11984", "0.0", "1.752", "1681077611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11984", "0.0", "3.504", "1681077611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11985", "0.0", "1.752", "1681081211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11985", "0.0", "3.504", "1681081211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11985", "0.0", "1.752", "1681081211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11985", "0.0", "3.504", "1681081211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11986", "0.0", "1.752", "1681084811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11986", "0.0", "3.504", "1681084811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11986", "0.0", "1.752", "1681084811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11986", "0.0", "3.504", "1681084811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11987", "0.0", "1.752", "1681088411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11987", "0.0", "3.504", "1681088411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11987", "0.0", "1.752", "1681088411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11987", "0.0", "3.504", "1681088411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11988", "0.0", "1.752", "1681092011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11988", "0.0", "3.504", "1681092011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11988", "0.0", "1.752", "1681092011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11988", "0.0", "3.504", "1681092011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11989", "0.0", "1.752", "1681095611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11989", "0.0", "3.504", "1681095611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11989", "0.0", "1.752", "1681095611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11989", "0.0", "3.504", "1681095611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11990", "0.0", "1.752", "1681099211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11990", "0.0", "3.504", "1681099211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11990", "0.0", "1.752", "1681099211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11990", "0.0", "3.504", "1681099211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11991", "0.0", "1.752", "1681102823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11991", "0.0", "3.504", "1681102823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11991", "0.0", "1.752", "1681102823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11991", "0.0", "3.504", "1681102823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11992", "0.0", "1.752", "1681106411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11992", "0.0", "3.504", "1681106411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11992", "0.0", "1.752", "1681106411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11992", "0.0", "3.504", "1681106411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11993", "0.0", "1.752", "1681110011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11993", "0.0", "3.504", "1681110011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11993", "0.0", "1.752", "1681110011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11993", "0.0", "3.504", "1681110011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11994", "0.0", "1.752", "1681113611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11994", "0.0", "3.504", "1681113611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11994", "0.0", "1.752", "1681113611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11994", "0.0", "3.504", "1681113611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11995", "0.0", "1.752", "1681117211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11995", "0.0", "3.504", "1681117211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11995", "0.0", "1.752", "1681117211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11995", "0.0", "3.504", "1681117211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11996", "0.0", "1.752", "1681120811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11996", "0.0", "3.504", "1681120811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11996", "0.0", "1.752", "1681120811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11996", "0.0", "3.504", "1681120811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11997", "0.0", "1.752", "1681124411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11997", "0.0", "3.504", "1681124411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11997", "0.0", "1.752", "1681124411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11997", "0.0", "3.504", "1681124411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11998", "0.0", "1.752", "1681128011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11998", "0.0", "3.504", "1681128011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11998", "0.0", "1.752", "1681128011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11998", "0.0", "3.504", "1681128011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "11999", "0.0", "1.752", "1681131611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "11999", "0.0", "3.504", "1681131611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "11999", "0.0", "1.752", "1681131611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "11999", "0.0", "3.504", "1681131611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12000", "0.0", "1.752", "1681135211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12000", "0.0", "3.504", "1681135211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12000", "0.0", "1.752", "1681135211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12000", "0.0", "3.504", "1681135211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12001", "0.0", "1.752", "1681138811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12001", "0.0", "3.504", "1681138811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12001", "0.0", "1.752", "1681138811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12001", "0.0", "3.504", "1681138811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12002", "0.0", "1.752", "1681142411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12002", "0.0", "3.504", "1681142411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12002", "0.0", "1.752", "1681142411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12002", "0.0", "3.504", "1681142411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12003", "0.0", "1.752", "1681146011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12003", "0.0", "3.504", "1681146011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12003", "0.0", "1.752", "1681146011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12003", "0.0", "3.504", "1681146011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12004", "0.0", "1.752", "1681149611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12004", "0.0", "3.504", "1681149611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12004", "0.0", "1.752", "1681149611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12004", "0.0", "3.504", "1681149611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12005", "0.0", "1.752", "1681153223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12005", "0.0", "3.504", "1681153223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12005", "0.0", "1.752", "1681153223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12005", "0.0", "3.504", "1681153223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12006", "0.0", "1.752", "1681156811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12006", "0.0", "3.504", "1681156811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12006", "0.0", "1.752", "1681156811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12006", "0.0", "3.504", "1681156811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12007", "0.0", "1.752", "1681160411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12007", "0.0", "3.504", "1681160411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12007", "0.0", "1.752", "1681160411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12007", "0.0", "3.504", "1681160411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12008", "0.0", "1.752", "1681164011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12008", "0.0", "3.504", "1681164011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12008", "0.0", "1.752", "1681164011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12008", "0.0", "3.504", "1681164011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12009", "0.0", "1.752", "1681167611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12009", "0.0", "3.504", "1681167611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12009", "0.0", "1.752", "1681167611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12009", "0.0", "3.504", "1681167611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12010", "0.0", "1.752", "1681171211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12010", "0.0", "3.504", "1681171211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12010", "0.0", "1.752", "1681171211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12010", "0.0", "3.504", "1681171211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12011", "0.0", "1.752", "1681174811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12011", "0.0", "3.504", "1681174811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12011", "0.0", "1.752", "1681174811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12011", "0.0", "3.504", "1681174811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12012", "0.0", "1.752", "1681178411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12012", "0.0", "3.504", "1681178411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12012", "0.0", "1.752", "1681178411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12012", "0.0", "3.504", "1681178411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12013", "0.0", "1.752", "1681182011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12013", "0.0", "3.504", "1681182011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12013", "0.0", "1.752", "1681182011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12013", "0.0", "3.504", "1681182011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12014", "0.0", "1.752", "1681185611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12014", "0.0", "3.504", "1681185611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12014", "0.0", "1.752", "1681185611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12014", "0.0", "3.504", "1681185611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12015", "0.0", "1.752", "1681189211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12015", "0.0", "3.504", "1681189211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12015", "0.0", "1.752", "1681189211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12015", "0.0", "3.504", "1681189211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12016", "0.0", "1.752", "1681192811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12016", "0.0", "3.504", "1681192811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12016", "0.0", "1.752", "1681192811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12016", "0.0", "3.504", "1681192811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12017", "0.0", "1.752", "1681196411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12017", "0.0", "3.504", "1681196411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12017", "0.0", "1.752", "1681196411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12017", "0.0", "3.504", "1681196411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12018", "0.0", "1.752", "1681200011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12018", "0.0", "3.504", "1681200011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12018", "0.0", "1.752", "1681200011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12018", "0.0", "3.504", "1681200011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12019", "0.0", "1.752", "1681203611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12019", "0.0", "3.504", "1681203611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12019", "0.0", "1.752", "1681203611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12019", "0.0", "3.504", "1681203611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12020", "0.0", "1.752", "1681207211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12020", "0.0", "3.504", "1681207211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12020", "0.0", "1.752", "1681207211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12020", "0.0", "3.504", "1681207211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12021", "0.0", "1.752", "1681210811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12021", "0.0", "3.504", "1681210811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12021", "0.0", "1.752", "1681210811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12021", "0.0", "3.504", "1681210811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12022", "0.0", "1.752", "1681214411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12022", "0.0", "3.504", "1681214411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12022", "0.0", "1.752", "1681214411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12022", "0.0", "3.504", "1681214411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12023", "0.0", "1.752", "1681218011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12023", "0.0", "3.504", "1681218011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12023", "0.0", "1.752", "1681218011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12023", "0.0", "3.504", "1681218011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12024", "0.0", "1.752", "1681221611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12024", "0.0", "3.504", "1681221611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12024", "0.0", "1.752", "1681221611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12024", "0.0", "3.504", "1681221611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12025", "0.0", "1.752", "1681225211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12025", "0.0", "3.504", "1681225211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12025", "0.0", "1.752", "1681225211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12025", "0.0", "3.504", "1681225211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12026", "0.0", "1.752", "1681228859"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12026", "0.0", "3.504", "1681228859"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12026", "0.0", "1.752", "1681228859"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12026", "0.0", "3.504", "1681228859"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12027", "0.0", "1.752", "1681232423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12027", "0.0", "3.504", "1681232423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12027", "0.0", "1.752", "1681232423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12027", "0.0", "3.504", "1681232423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12028", "0.0", "1.752", "1681236011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12028", "0.0", "3.504", "1681236011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12028", "0.0", "1.752", "1681236011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12028", "0.0", "3.504", "1681236011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12029", "0.0", "1.752", "1681239767"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12029", "0.0", "3.504", "1681239767"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12029", "0.0", "1.752", "1681239767"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12029", "0.0", "3.504", "1681239767"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12030", "0.0", "1.752", "1681243211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12030", "0.0", "3.504", "1681243211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12030", "0.0", "1.752", "1681243211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12030", "0.0", "3.504", "1681243211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12031", "0.0", "1.752", "1681246811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12031", "0.0", "3.504", "1681246811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12031", "0.0", "1.752", "1681246811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12031", "0.0", "3.504", "1681246811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12032", "0.0", "1.752", "1681250411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12032", "0.0", "3.504", "1681250411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12032", "0.0", "1.752", "1681250411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12032", "0.0", "3.504", "1681250411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12033", "0.0", "1.752", "1681254011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12033", "0.0", "3.504", "1681254011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12033", "0.0", "1.752", "1681254011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12033", "0.0", "3.504", "1681254011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12034", "0.0", "1.752", "1681257611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12034", "0.0", "3.504", "1681257611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12034", "0.0", "1.752", "1681257611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12034", "0.0", "3.504", "1681257611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12035", "0.0", "1.752", "1681261235"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12035", "0.0", "3.504", "1681261235"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12035", "0.0", "1.752", "1681261235"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12035", "0.0", "3.504", "1681261235"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12036", "0.0", "1.752", "1681264811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12036", "0.0", "3.504", "1681264811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12036", "0.0", "1.752", "1681264811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12036", "0.0", "3.504", "1681264811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12037", "0.0", "1.752", "1681268411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12037", "0.0", "3.504", "1681268411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12037", "0.0", "1.752", "1681268411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12037", "0.0", "3.504", "1681268411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12038", "0.0", "1.752", "1681272011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12038", "0.0", "3.504", "1681272011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12038", "0.0", "1.752", "1681272011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12038", "0.0", "3.504", "1681272011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12039", "0.0", "1.752", "1681275623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12039", "0.0", "3.504", "1681275623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12039", "0.0", "1.752", "1681275623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12039", "0.0", "3.504", "1681275623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12040", "0.0", "1.752", "1681279211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12040", "0.0", "3.504", "1681279211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12040", "0.0", "1.752", "1681279211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12040", "0.0", "3.504", "1681279211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12041", "0.0", "1.752", "1681282811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12041", "0.0", "3.504", "1681282811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12041", "0.0", "1.752", "1681282811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12041", "0.0", "3.504", "1681282811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12042", "0.0", "1.752", "1681286411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12042", "0.0", "3.504", "1681286411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12042", "0.0", "1.752", "1681286411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12042", "0.0", "3.504", "1681286411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12043", "0.0", "1.752", "1681290011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12043", "0.0", "3.504", "1681290011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12043", "0.0", "1.752", "1681290011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12043", "0.0", "3.504", "1681290011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12044", "0.0", "1.752", "1681293611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12044", "0.0", "3.504", "1681293611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12044", "0.0", "1.752", "1681293611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12044", "0.0", "3.504", "1681293611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12045", "0.0", "1.752", "1681297211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12045", "0.0", "3.504", "1681297211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12045", "0.0", "1.752", "1681297211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12045", "0.0", "3.504", "1681297211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12046", "0.0", "1.752", "1681300811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12046", "0.0", "3.504", "1681300811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12046", "0.0", "1.752", "1681300811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12046", "0.0", "3.504", "1681300811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12047", "0.0", "1.752", "1681304411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12047", "0.0", "3.504", "1681304411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12047", "0.0", "1.752", "1681304411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12047", "0.0", "3.504", "1681304411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12048", "0.0", "1.752", "1681308011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12048", "0.0", "3.504", "1681308011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12048", "0.0", "1.752", "1681308011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12048", "0.0", "3.504", "1681308011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12049", "0.0", "1.752", "1681311611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12049", "0.0", "3.504", "1681311611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12049", "0.0", "1.752", "1681311611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12049", "0.0", "3.504", "1681311611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12050", "0.0", "1.752", "1681315211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12050", "0.0", "3.504", "1681315211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12050", "0.0", "1.752", "1681315211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12050", "0.0", "3.504", "1681315211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12051", "0.0", "1.752", "1681318811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12051", "0.0", "3.504", "1681318811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12051", "0.0", "1.752", "1681318811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12051", "0.0", "3.504", "1681318811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12052", "0.0", "1.752", "1681322411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12052", "0.0", "3.504", "1681322411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12052", "0.0", "1.752", "1681322411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12052", "0.0", "3.504", "1681322411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12053", "0.0", "1.752", "1681326011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12053", "0.0", "3.504", "1681326011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12053", "0.0", "1.752", "1681326011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12053", "0.0", "3.504", "1681326011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12054", "0.0", "1.752", "1681329611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12054", "0.0", "3.504", "1681329611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12054", "0.0", "1.752", "1681329611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12054", "0.0", "3.504", "1681329611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12055", "0.0", "1.752", "1681333211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12055", "0.0", "3.504", "1681333211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12055", "0.0", "1.752", "1681333211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12055", "0.0", "3.504", "1681333211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12056", "0.0", "1.752", "1681336823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12056", "0.0", "3.504", "1681336823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12056", "0.0", "1.752", "1681336823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12056", "0.0", "3.504", "1681336823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12057", "0.0", "1.752", "1681340423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12057", "0.0", "3.504", "1681340423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12057", "0.0", "1.752", "1681340423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12057", "0.0", "3.504", "1681340423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12058", "0.0", "1.752", "1681344035"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12058", "0.0", "3.504", "1681344035"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12058", "0.0", "1.752", "1681344035"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12058", "0.0", "3.504", "1681344035"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12059", "0.0", "1.752", "1681347611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12059", "0.0", "3.504", "1681347611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12059", "0.0", "1.752", "1681347611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12059", "0.0", "3.504", "1681347611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12060", "0.0", "1.752", "1681351211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12060", "0.0", "3.504", "1681351211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12060", "0.0", "1.752", "1681351211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12060", "0.0", "3.504", "1681351211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12061", "0.0", "1.752", "1681354811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12061", "0.0", "3.504", "1681354811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12061", "0.0", "1.752", "1681354811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12061", "0.0", "3.504", "1681354811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12062", "0.0", "1.752", "1681358411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12062", "0.0", "3.504", "1681358411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12062", "0.0", "1.752", "1681358411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12062", "0.0", "3.504", "1681358411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12063", "0.0", "1.752", "1681362011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12063", "0.0", "3.504", "1681362011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12063", "0.0", "1.752", "1681362011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12063", "0.0", "3.504", "1681362011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12064", "0.0", "1.752", "1681365635"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12064", "0.0", "3.504", "1681365635"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12064", "0.0", "1.752", "1681365635"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12064", "0.0", "3.504", "1681365635"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12065", "0.0", "1.752", "1681369211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12065", "0.0", "3.504", "1681369211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12065", "0.0", "1.752", "1681369211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12065", "0.0", "3.504", "1681369211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12066", "0.0", "1.752", "1681372811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12066", "0.0", "3.504", "1681372811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12066", "0.0", "1.752", "1681372811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12066", "0.0", "3.504", "1681372811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12067", "0.0", "1.752", "1681376411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12067", "0.0", "3.504", "1681376411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12067", "0.0", "1.752", "1681376411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12067", "0.0", "3.504", "1681376411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12068", "0.0", "1.752", "1681380011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12068", "0.0", "3.504", "1681380011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12068", "0.0", "1.752", "1681380011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12068", "0.0", "3.504", "1681380011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12069", "0.0", "1.752", "1681383647"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12069", "0.0", "3.504", "1681383647"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12069", "0.0", "1.752", "1681383647"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12069", "0.0", "3.504", "1681383647"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12070", "0.0", "1.752", "1681387211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12070", "0.0", "3.504", "1681387211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12070", "0.0", "1.752", "1681387211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12070", "0.0", "3.504", "1681387211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12071", "0.0", "1.752", "1681390811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12071", "0.0", "3.504", "1681390811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12071", "0.0", "1.752", "1681390811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12071", "0.0", "3.504", "1681390811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12072", "0.0", "1.752", "1681394423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12072", "0.0", "3.504", "1681394423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12072", "0.0", "1.752", "1681394423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12072", "0.0", "3.504", "1681394423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12073", "0.0", "1.752", "1681398011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12073", "0.0", "3.504", "1681398011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12073", "0.0", "1.752", "1681398011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12073", "0.0", "3.504", "1681398011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12074", "0.0", "1.752", "1681401611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12074", "0.0", "3.504", "1681401611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12074", "0.0", "1.752", "1681401611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12074", "0.0", "3.504", "1681401611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12075", "0.0", "1.752", "1681405211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12075", "0.0", "3.504", "1681405211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12075", "0.0", "1.752", "1681405211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12075", "0.0", "3.504", "1681405211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12076", "0.0", "1.752", "1681408823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12076", "0.0", "3.504", "1681408823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12076", "0.0", "1.752", "1681408823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12076", "0.0", "3.504", "1681408823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12077", "0.0", "1.752", "1681412519"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12077", "0.0", "3.504", "1681412519"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12077", "0.0", "1.752", "1681412519"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12077", "0.0", "3.504", "1681412519"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12078", "0.0", "1.752", "1681416011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12078", "0.0", "3.504", "1681416011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12078", "0.0", "1.752", "1681416011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12078", "0.0", "3.504", "1681416011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12079", "0.0", "1.752", "1681419611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12079", "0.0", "3.504", "1681419611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12079", "0.0", "1.752", "1681419611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12079", "0.0", "3.504", "1681419611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12080", "0.0", "1.752", "1681423211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12080", "0.0", "3.504", "1681423211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12080", "0.0", "1.752", "1681423211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12080", "0.0", "3.504", "1681423211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12081", "0.0", "1.752", "1681426823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12081", "0.0", "3.504", "1681426823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12081", "0.0", "1.752", "1681426823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12081", "0.0", "3.504", "1681426823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12082", "0.0", "1.752", "1681430411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12082", "0.0", "3.504", "1681430411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12082", "0.0", "1.752", "1681430411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12082", "0.0", "3.504", "1681430411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12083", "0.0", "1.752", "1681434011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12083", "0.0", "3.504", "1681434011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12083", "0.0", "1.752", "1681434011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12083", "0.0", "3.504", "1681434011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12084", "0.0", "1.752", "1681437611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12084", "0.0", "3.504", "1681437611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12084", "0.0", "1.752", "1681437611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12084", "0.0", "3.504", "1681437611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12085", "0.0", "1.752", "1681441211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12085", "0.0", "3.504", "1681441211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12085", "0.0", "1.752", "1681441211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12085", "0.0", "3.504", "1681441211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12086", "0.0", "1.752", "1681444823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12086", "0.0", "3.504", "1681444823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12086", "0.0", "1.752", "1681444823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12086", "0.0", "3.504", "1681444823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12087", "0.0", "1.752", "1681448411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12087", "0.0", "3.504", "1681448411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12087", "0.0", "1.752", "1681448411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12087", "0.0", "3.504", "1681448411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12088", "0.0", "1.752", "1681452011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12088", "0.0", "3.504", "1681452011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12088", "0.0", "1.752", "1681452011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12088", "0.0", "3.504", "1681452011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12089", "0.0", "1.752", "1681455611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12089", "0.0", "3.504", "1681455611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12089", "0.0", "1.752", "1681455611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12089", "0.0", "3.504", "1681455611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12090", "0.0", "1.752", "1681459211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12090", "0.0", "3.504", "1681459211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12090", "0.0", "1.752", "1681459211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12090", "0.0", "3.504", "1681459211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12091", "0.0", "1.752", "1681462811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12091", "0.0", "3.504", "1681462811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12091", "0.0", "1.752", "1681462811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12091", "0.0", "3.504", "1681462811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12092", "0.0", "1.752", "1681466411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12092", "0.0", "3.504", "1681466411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12092", "0.0", "1.752", "1681466411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12092", "0.0", "3.504", "1681466411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12093", "0.0", "1.752", "1681470011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12093", "0.0", "3.504", "1681470011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12093", "0.0", "1.752", "1681470011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12093", "0.0", "3.504", "1681470011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12094", "0.0", "1.752", "1681473635"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12094", "0.0", "3.504", "1681473635"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12094", "0.0", "1.752", "1681473635"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12094", "0.0", "3.504", "1681473635"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12095", "0.0", "1.752", "1681477211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12095", "0.0", "3.504", "1681477211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12095", "0.0", "1.752", "1681477211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12095", "0.0", "3.504", "1681477211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12096", "0.0", "1.752", "1681480811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12096", "0.0", "3.504", "1681480811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12096", "0.0", "1.752", "1681480811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12096", "0.0", "3.504", "1681480811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12097", "0.0", "1.752", "1681484507"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12097", "0.0", "3.504", "1681484507"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12097", "0.0", "1.752", "1681484507"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12097", "0.0", "3.504", "1681484507"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12098", "0.0", "1.752", "1681488023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12098", "0.0", "3.504", "1681488023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12098", "0.0", "1.752", "1681488023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12098", "0.0", "3.504", "1681488023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12099", "0.0", "1.752", "1681491623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12099", "0.0", "3.504", "1681491623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12099", "0.0", "1.752", "1681491623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12099", "0.0", "3.504", "1681491623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12100", "0.0", "1.752", "1681495211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12100", "0.0", "3.504", "1681495211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12100", "0.0", "1.752", "1681495211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12100", "0.0", "3.504", "1681495211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12101", "0.0", "1.752", "1681498811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12101", "0.0", "3.504", "1681498811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12101", "0.0", "1.752", "1681498811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12101", "0.0", "3.504", "1681498811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12102", "0.0", "1.752", "1681502411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12102", "0.0", "3.504", "1681502411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12102", "0.0", "1.752", "1681502411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12102", "0.0", "3.504", "1681502411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12103", "0.0", "1.752", "1681506011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12103", "0.0", "3.504", "1681506011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12103", "0.0", "1.752", "1681506011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12103", "0.0", "3.504", "1681506011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12104", "0.0", "1.752", "1681509623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12104", "0.0", "3.504", "1681509623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12104", "0.0", "1.752", "1681509623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12104", "0.0", "3.504", "1681509623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12105", "0.0", "1.752", "1681513211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12105", "0.0", "3.504", "1681513211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12105", "0.0", "1.752", "1681513211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12105", "0.0", "3.504", "1681513211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12106", "0.0", "1.752", "1681516811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12106", "0.0", "3.504", "1681516811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12106", "0.0", "1.752", "1681516811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12106", "0.0", "3.504", "1681516811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12107", "0.0", "1.752", "1681520411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12107", "0.0", "3.504", "1681520411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12107", "0.0", "1.752", "1681520411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12107", "0.0", "3.504", "1681520411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12108", "0.0", "1.752", "1681524011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12108", "0.0", "3.504", "1681524011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12108", "0.0", "1.752", "1681524011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12108", "0.0", "3.504", "1681524011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12109", "0.0", "1.752", "1681527611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12109", "0.0", "3.504", "1681527611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12109", "0.0", "1.752", "1681527611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12109", "0.0", "3.504", "1681527611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12110", "0.0", "1.752", "1681531211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12110", "0.0", "3.504", "1681531211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12110", "0.0", "1.752", "1681531211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12110", "0.0", "3.504", "1681531211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12111", "0.0", "1.752", "1681534811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12111", "0.0", "3.504", "1681534811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12111", "0.0", "1.752", "1681534811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12111", "0.0", "3.504", "1681534811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12112", "0.0", "1.752", "1681538411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12112", "0.0", "3.504", "1681538411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12112", "0.0", "1.752", "1681538411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12112", "0.0", "3.504", "1681538411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12113", "0.0", "1.752", "1681542011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12113", "0.0", "3.504", "1681542011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12113", "0.0", "1.752", "1681542011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12113", "0.0", "3.504", "1681542011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12114", "0.0", "1.752", "1681545611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12114", "0.0", "3.504", "1681545611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12114", "0.0", "1.752", "1681545611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12114", "0.0", "3.504", "1681545611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12115", "0.0", "1.752", "1681549211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12115", "0.0", "3.504", "1681549211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12115", "0.0", "1.752", "1681549211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12115", "0.0", "3.504", "1681549211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12116", "0.0", "1.752", "1681552811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12116", "0.0", "3.504", "1681552811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12116", "0.0", "1.752", "1681552811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12116", "0.0", "3.504", "1681552811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12117", "0.0", "1.752", "1681556411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12117", "0.0", "3.504", "1681556411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12117", "0.0", "1.752", "1681556411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12117", "0.0", "3.504", "1681556411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12118", "0.0", "1.752", "1681560023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12118", "0.0", "3.504", "1681560023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12118", "0.0", "1.752", "1681560023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12118", "0.0", "3.504", "1681560023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12119", "0.0", "1.752", "1681563611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12119", "0.0", "3.504", "1681563611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12119", "0.0", "1.752", "1681563611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12119", "0.0", "3.504", "1681563611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12120", "0.0", "1.752", "1681567211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12120", "0.0", "3.504", "1681567211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12120", "0.0", "1.752", "1681567211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12120", "0.0", "3.504", "1681567211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12121", "0.0", "1.752", "1681570811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12121", "0.0", "3.504", "1681570811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12121", "0.0", "1.752", "1681570811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12121", "0.0", "3.504", "1681570811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12122", "0.0", "1.752", "1681574411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12122", "0.0", "3.504", "1681574411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12122", "0.0", "1.752", "1681574411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12122", "0.0", "3.504", "1681574411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12123", "0.0", "1.752", "1681578011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12123", "0.0", "3.504", "1681578011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12123", "0.0", "1.752", "1681578011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12123", "0.0", "3.504", "1681578011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12124", "0.0", "1.752", "1681581611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12124", "0.0", "3.504", "1681581611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12124", "0.0", "1.752", "1681581611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12124", "0.0", "3.504", "1681581611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12125", "0.0", "1.752", "1681585211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12125", "0.0", "3.504", "1681585211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12125", "0.0", "1.752", "1681585211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12125", "0.0", "3.504", "1681585211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12126", "0.0", "1.752", "1681588811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12126", "0.0", "3.504", "1681588811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12126", "0.0", "1.752", "1681588811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12126", "0.0", "3.504", "1681588811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12127", "0.0", "1.752", "1681592411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12127", "0.0", "3.504", "1681592411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12127", "0.0", "1.752", "1681592411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12127", "0.0", "3.504", "1681592411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12128", "0.0", "1.752", "1681596011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12128", "0.0", "3.504", "1681596011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12128", "0.0", "1.752", "1681596011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12128", "0.0", "3.504", "1681596011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12129", "0.0", "1.752", "1681599611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12129", "0.0", "3.504", "1681599611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12129", "0.0", "1.752", "1681599611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12129", "0.0", "3.504", "1681599611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12130", "0.0", "1.752", "1681603211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12130", "0.0", "3.504", "1681603211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12130", "0.0", "1.752", "1681603211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12130", "0.0", "3.504", "1681603211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12131", "0.0", "1.752", "1681606811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12131", "0.0", "3.504", "1681606811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12131", "0.0", "1.752", "1681606811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12131", "0.0", "3.504", "1681606811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12132", "0.0", "1.752", "1681610423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12132", "0.0", "3.504", "1681610423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12132", "0.0", "1.752", "1681610423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12132", "0.0", "3.504", "1681610423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12133", "0.0", "1.752", "1681614011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12133", "0.0", "3.504", "1681614011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12133", "0.0", "1.752", "1681614011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12133", "0.0", "3.504", "1681614011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12134", "0.0", "1.752", "1681617611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12134", "0.0", "3.504", "1681617611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12134", "0.0", "1.752", "1681617611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12134", "0.0", "3.504", "1681617611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12135", "0.0", "1.752", "1681621211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12135", "0.0", "3.504", "1681621211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12135", "0.0", "1.752", "1681621211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12135", "0.0", "3.504", "1681621211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12136", "0.0", "1.752", "1681624811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12136", "0.0", "3.504", "1681624811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12136", "0.0", "1.752", "1681624811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12136", "0.0", "3.504", "1681624811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12137", "0.0", "1.752", "1681628411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12137", "0.0", "3.504", "1681628411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12137", "0.0", "1.752", "1681628411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12137", "0.0", "3.504", "1681628411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12138", "0.0", "1.752", "1681632023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12138", "0.0", "3.504", "1681632023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12138", "0.0", "1.752", "1681632023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12138", "0.0", "3.504", "1681632023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12139", "0.0", "1.752", "1681635611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12139", "0.0", "3.504", "1681635611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12139", "0.0", "1.752", "1681635611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12139", "0.0", "3.504", "1681635611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12140", "0.0", "1.752", "1681639211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12140", "0.0", "3.504", "1681639211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12140", "0.0", "1.752", "1681639211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12140", "0.0", "3.504", "1681639211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12141", "0.0", "1.752", "1681642811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12141", "0.0", "3.504", "1681642811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12141", "0.0", "1.752", "1681642811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12141", "0.0", "3.504", "1681642811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12142", "0.0", "1.752", "1681646411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12142", "0.0", "3.504", "1681646411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12142", "0.0", "1.752", "1681646411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12142", "0.0", "3.504", "1681646411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12143", "0.0", "1.752", "1681650011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12143", "0.0", "3.504", "1681650011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12143", "0.0", "1.752", "1681650011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12143", "0.0", "3.504", "1681650011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12144", "0.0", "1.752", "1681653611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12144", "0.0", "3.504", "1681653611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12144", "0.0", "1.752", "1681653611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12144", "0.0", "3.504", "1681653611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12145", "0.0", "1.752", "1681657211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12145", "0.0", "3.504", "1681657211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12145", "0.0", "1.752", "1681657211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12145", "0.0", "3.504", "1681657211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12146", "0.0", "1.752", "1681660811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12146", "0.0", "3.504", "1681660811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12146", "0.0", "1.752", "1681660811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12146", "0.0", "3.504", "1681660811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12147", "0.0", "1.752", "1681664423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12147", "0.0", "3.504", "1681664423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12147", "0.0", "1.752", "1681664423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12147", "0.0", "3.504", "1681664423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12148", "0.0", "1.752", "1681668011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12148", "0.0", "3.504", "1681668011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12148", "0.0", "1.752", "1681668011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12148", "0.0", "3.504", "1681668011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12149", "0.0", "1.752", "1681671647"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12149", "0.0", "3.504", "1681671647"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12149", "0.0", "1.752", "1681671647"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12149", "0.0", "3.504", "1681671647"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12150", "0.0", "1.752", "1681675211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12150", "0.0", "3.504", "1681675211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12150", "0.0", "1.752", "1681675211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12150", "0.0", "3.504", "1681675211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12151", "0.0", "1.752", "1681678811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12151", "0.0", "3.504", "1681678811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12151", "0.0", "1.752", "1681678811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12151", "0.0", "3.504", "1681678811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12152", "0.0", "1.752", "1681682411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12152", "0.0", "3.504", "1681682411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12152", "0.0", "1.752", "1681682411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12152", "0.0", "3.504", "1681682411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12153", "0.0", "1.752", "1681686011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12153", "0.0", "3.504", "1681686011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12153", "0.0", "1.752", "1681686011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12153", "0.0", "3.504", "1681686011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12154", "0.0", "1.752", "1681689611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12154", "0.0", "3.504", "1681689611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12154", "0.0", "1.752", "1681689611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12154", "0.0", "3.504", "1681689611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12155", "0.0", "1.752", "1681693211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12155", "0.0", "3.504", "1681693211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12155", "0.0", "1.752", "1681693211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12155", "0.0", "3.504", "1681693211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12156", "0.0", "1.752", "1681696811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12156", "0.0", "3.504", "1681696811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12156", "0.0", "1.752", "1681696811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12156", "0.0", "3.504", "1681696811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12157", "0.0", "1.752", "1681700411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12157", "0.0", "3.504", "1681700411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12157", "0.0", "1.752", "1681700411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12157", "0.0", "3.504", "1681700411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12158", "0.0", "1.752", "1681704011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12158", "0.0", "3.504", "1681704011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12158", "0.0", "1.752", "1681704011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12158", "0.0", "3.504", "1681704011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12159", "0.0", "1.752", "1681707611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12159", "0.0", "3.504", "1681707611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12159", "0.0", "1.752", "1681707611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12159", "0.0", "3.504", "1681707611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12160", "0.0", "1.752", "1681711223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12160", "0.0", "3.504", "1681711223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12160", "0.0", "1.752", "1681711223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12160", "0.0", "3.504", "1681711223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12161", "0.0", "1.752", "1681714811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12161", "0.0", "3.504", "1681714811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12161", "0.0", "1.752", "1681714811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12161", "0.0", "3.504", "1681714811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12162", "0.0", "1.752", "1681718411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12162", "0.0", "3.504", "1681718411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12162", "0.0", "1.752", "1681718411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12162", "0.0", "3.504", "1681718411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12163", "0.0", "1.752", "1681722023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12163", "0.0", "3.504", "1681722023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12163", "0.0", "1.752", "1681722023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12163", "0.0", "3.504", "1681722023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12164", "0.0", "1.752", "1681725611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12164", "0.0", "3.504", "1681725611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12164", "0.0", "1.752", "1681725611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12164", "0.0", "3.504", "1681725611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12165", "0.0", "1.752", "1681729223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12165", "0.0", "3.504", "1681729223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12165", "0.0", "1.752", "1681729223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12165", "0.0", "3.504", "1681729223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12166", "0.0", "1.752", "1681732811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12166", "0.0", "3.504", "1681732811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12166", "0.0", "1.752", "1681732811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12166", "0.0", "3.504", "1681732811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12167", "0.0", "1.752", "1681736411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12167", "0.0", "3.504", "1681736411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12167", "0.0", "1.752", "1681736411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12167", "0.0", "3.504", "1681736411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12168", "0.0", "1.752", "1681740011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12168", "0.0", "3.504", "1681740011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12168", "0.0", "1.752", "1681740011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12168", "0.0", "3.504", "1681740011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12169", "0.0", "1.752", "1681743647"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12169", "0.0", "3.504", "1681743647"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12169", "0.0", "1.752", "1681743647"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12169", "0.0", "3.504", "1681743647"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12170", "0.0", "1.752", "1681747211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12170", "0.0", "3.504", "1681747211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12170", "0.0", "1.752", "1681747211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12170", "0.0", "3.504", "1681747211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12171", "0.0", "1.752", "1681750811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12171", "0.0", "3.504", "1681750811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12171", "0.0", "1.752", "1681750811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12171", "0.0", "3.504", "1681750811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12172", "0.0", "1.752", "1681754411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12172", "0.0", "3.504", "1681754411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12172", "0.0", "1.752", "1681754411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12172", "0.0", "3.504", "1681754411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12173", "0.0", "1.752", "1681758011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12173", "0.0", "3.504", "1681758011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12173", "0.0", "1.752", "1681758011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12173", "0.0", "3.504", "1681758011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12174", "0.0", "1.752", "1681761611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12174", "0.0", "3.504", "1681761611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12174", "0.0", "1.752", "1681761611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12174", "0.0", "3.504", "1681761611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12175", "0.0", "1.752", "1681765211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12175", "0.0", "3.504", "1681765211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12175", "0.0", "1.752", "1681765211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12175", "0.0", "3.504", "1681765211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12176", "0.0", "1.752", "1681768811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12176", "0.0", "3.504", "1681768811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12176", "0.0", "1.752", "1681768811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12176", "0.0", "3.504", "1681768811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12177", "0.0", "1.752", "1681772411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12177", "0.0", "3.504", "1681772411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12177", "0.0", "1.752", "1681772411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12177", "0.0", "3.504", "1681772411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12178", "0.0", "1.752", "1681776011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12178", "0.0", "3.504", "1681776011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12178", "0.0", "1.752", "1681776011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12178", "0.0", "3.504", "1681776011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12179", "0.0", "1.752", "1681779623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12179", "0.0", "3.504", "1681779623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12179", "0.0", "1.752", "1681779623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12179", "0.0", "3.504", "1681779623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12180", "0.0", "1.752", "1681783223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12180", "0.0", "3.504", "1681783223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12180", "0.0", "1.752", "1681783223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12180", "0.0", "3.504", "1681783223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12181", "0.0", "1.752", "1681786811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12181", "0.0", "3.504", "1681786811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12181", "0.0", "1.752", "1681786811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12181", "0.0", "3.504", "1681786811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12182", "0.0", "1.752", "1681790411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12182", "0.0", "3.504", "1681790411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12182", "0.0", "1.752", "1681790411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12182", "0.0", "3.504", "1681790411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12183", "0.0", "1.752", "1681794011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12183", "0.0", "3.504", "1681794011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12183", "0.0", "1.752", "1681794011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12183", "0.0", "3.504", "1681794011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12184", "0.0", "1.752", "1681797623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12184", "0.0", "3.504", "1681797623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12184", "0.0", "1.752", "1681797623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12184", "0.0", "3.504", "1681797623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12185", "0.0", "1.752", "1681801211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12185", "0.0", "3.504", "1681801211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12185", "0.0", "1.752", "1681801211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12185", "0.0", "3.504", "1681801211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12186", "0.0", "1.752", "1681804811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12186", "0.0", "3.504", "1681804811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12186", "0.0", "1.752", "1681804811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12186", "0.0", "3.504", "1681804811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12187", "0.0", "1.752", "1681808423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12187", "0.0", "3.504", "1681808423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12187", "0.0", "1.752", "1681808423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12187", "0.0", "3.504", "1681808423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12188", "0.0", "1.752", "1681812011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12188", "0.0", "3.504", "1681812011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12188", "0.0", "1.752", "1681812011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12188", "0.0", "3.504", "1681812011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12189", "0.0", "1.752", "1681815611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12189", "0.0", "3.504", "1681815611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12189", "0.0", "1.752", "1681815611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12189", "0.0", "3.504", "1681815611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12190", "0.0", "1.752", "1681819223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12190", "0.0", "3.504", "1681819223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12190", "0.0", "1.752", "1681819223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12190", "0.0", "3.504", "1681819223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12191", "0.0", "1.752", "1681822811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12191", "0.0", "3.504", "1681822811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12191", "0.0", "1.752", "1681822811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12191", "0.0", "3.504", "1681822811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12192", "0.0", "1.752", "1681826411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12192", "0.0", "3.504", "1681826411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12192", "0.0", "1.752", "1681826411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12192", "0.0", "3.504", "1681826411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12193", "0.0", "1.752", "1681830011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12193", "0.0", "3.504", "1681830011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12193", "0.0", "1.752", "1681830011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12193", "0.0", "3.504", "1681830011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12194", "0.0", "1.752", "1681833623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12194", "0.0", "3.504", "1681833623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12194", "0.0", "1.752", "1681833623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12194", "0.0", "3.504", "1681833623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12195", "0.0", "1.752", "1681837223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12195", "0.0", "3.504", "1681837223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12195", "0.0", "1.752", "1681837223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12195", "0.0", "3.504", "1681837223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12196", "0.0", "1.752", "1681840823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12196", "0.0", "3.504", "1681840823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12196", "0.0", "1.752", "1681840823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12196", "0.0", "3.504", "1681840823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12197", "0.0", "1.752", "1681844423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12197", "0.0", "3.504", "1681844423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12197", "0.0", "1.752", "1681844423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12197", "0.0", "3.504", "1681844423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12198", "0.0", "1.752", "1681848059"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12198", "0.0", "3.504", "1681848059"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12198", "0.0", "1.752", "1681848059"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12198", "0.0", "3.504", "1681848059"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12199", "0.0", "1.752", "1681851635"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12199", "0.0", "3.504", "1681851635"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12199", "0.0", "1.752", "1681851635"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12199", "0.0", "3.504", "1681851635"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12200", "0.0", "1.752", "1681855211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12200", "0.0", "3.504", "1681855211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12200", "0.0", "1.752", "1681855211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12200", "0.0", "3.504", "1681855211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12201", "0.0", "1.752", "1681858811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12201", "0.0", "3.504", "1681858811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12201", "0.0", "1.752", "1681858811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12201", "0.0", "3.504", "1681858811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12202", "0.0", "1.752", "1681862411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12202", "0.0", "3.504", "1681862411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12202", "0.0", "1.752", "1681862411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12202", "0.0", "3.504", "1681862411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12203", "0.0", "1.752", "1681866011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12203", "0.0", "3.504", "1681866011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12203", "0.0", "1.752", "1681866011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12203", "0.0", "3.504", "1681866011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12204", "0.0", "1.752", "1681869611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12204", "0.0", "3.504", "1681869611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12204", "0.0", "1.752", "1681869611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12204", "0.0", "3.504", "1681869611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12205", "0.0", "1.752", "1681873211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12205", "0.0", "3.504", "1681873211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12205", "0.0", "1.752", "1681873211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12205", "0.0", "3.504", "1681873211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12206", "0.0", "1.752", "1681876811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12206", "0.0", "3.504", "1681876811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12206", "0.0", "1.752", "1681876811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12206", "0.0", "3.504", "1681876811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12207", "0.0", "1.752", "1681880411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12207", "0.0", "3.504", "1681880411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12207", "0.0", "1.752", "1681880411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12207", "0.0", "3.504", "1681880411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12208", "0.0", "1.752", "1681884011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12208", "0.0", "3.504", "1681884011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12208", "0.0", "1.752", "1681884011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12208", "0.0", "3.504", "1681884011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12209", "0.0", "1.752", "1681887623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12209", "0.0", "3.504", "1681887623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12209", "0.0", "1.752", "1681887623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12209", "0.0", "3.504", "1681887623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12210", "0.0", "1.752", "1681891283"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12210", "0.0", "3.504", "1681891283"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12210", "0.0", "1.752", "1681891283"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12210", "0.0", "3.504", "1681891283"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12211", "0.0", "1.752", "1681894811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12211", "0.0", "3.504", "1681894811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12211", "0.0", "1.752", "1681894811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12211", "0.0", "3.504", "1681894811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12212", "0.0", "1.752", "1681898411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12212", "0.0", "3.504", "1681898411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12212", "0.0", "1.752", "1681898411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12212", "0.0", "3.504", "1681898411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12213", "0.0", "1.752", "1681902011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12213", "0.0", "3.504", "1681902011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12213", "0.0", "1.752", "1681902011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12213", "0.0", "3.504", "1681902011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12214", "0.0", "1.752", "1681905611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12214", "0.0", "3.504", "1681905611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12214", "0.0", "1.752", "1681905611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12214", "0.0", "3.504", "1681905611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12215", "0.0", "1.752", "1681909211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12215", "0.0", "3.504", "1681909211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12215", "0.0", "1.752", "1681909211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12215", "0.0", "3.504", "1681909211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12216", "0.0", "1.752", "1681912811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12216", "0.0", "3.504", "1681912811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12216", "0.0", "1.752", "1681912811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12216", "0.0", "3.504", "1681912811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12217", "0.0", "1.752", "1681916411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12217", "0.0", "3.504", "1681916411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12217", "0.0", "1.752", "1681916411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12217", "0.0", "3.504", "1681916411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12218", "0.0", "1.752", "1681920023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12218", "0.0", "3.504", "1681920023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12218", "0.0", "1.752", "1681920023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12218", "0.0", "3.504", "1681920023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12219", "0.0", "1.752", "1681923647"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12219", "0.0", "3.504", "1681923647"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12219", "0.0", "1.752", "1681923647"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12219", "0.0", "3.504", "1681923647"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12220", "0.0", "1.752", "1681927211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12220", "0.0", "3.504", "1681927211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12220", "0.0", "1.752", "1681927211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12220", "0.0", "3.504", "1681927211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12221", "0.0", "1.752", "1681930835"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12221", "0.0", "3.504", "1681930835"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12221", "0.0", "1.752", "1681930835"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12221", "0.0", "3.504", "1681930835"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12222", "0.0", "1.752", "1681934435"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12222", "0.0", "3.504", "1681934435"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12222", "0.0", "1.752", "1681934435"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12222", "0.0", "3.504", "1681934435"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12223", "0.0", "1.752", "1681938047"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12223", "0.0", "3.504", "1681938047"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12223", "0.0", "1.752", "1681938047"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12223", "0.0", "3.504", "1681938047"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12224", "0.0", "1.752", "1681941659"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12224", "0.0", "3.504", "1681941659"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12224", "0.0", "1.752", "1681941659"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12224", "0.0", "3.504", "1681941659"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12225", "0.0", "1.752", "1681945235"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12225", "0.0", "3.504", "1681945235"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12225", "0.0", "1.752", "1681945235"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12225", "0.0", "3.504", "1681945235"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12226", "0.0", "1.752", "1681948835"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12226", "0.0", "3.504", "1681948835"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12226", "0.0", "1.752", "1681948835"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12226", "0.0", "3.504", "1681948835"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12227", "0.0", "1.752", "1681952411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12227", "0.0", "3.504", "1681952411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12227", "0.0", "1.752", "1681952411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12227", "0.0", "3.504", "1681952411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12228", "0.0", "1.752", "1681956011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12228", "0.0", "3.504", "1681956011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12228", "0.0", "1.752", "1681956011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12228", "0.0", "3.504", "1681956011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12229", "0.0", "1.752", "1681959623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12229", "0.0", "3.504", "1681959623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12229", "0.0", "1.752", "1681959623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12229", "0.0", "3.504", "1681959623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12230", "0.0", "1.752", "1681963223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12230", "0.0", "3.504", "1681963223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12230", "0.0", "1.752", "1681963223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12230", "0.0", "3.504", "1681963223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12231", "0.0", "1.752", "1681966823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12231", "0.0", "3.504", "1681966823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12231", "0.0", "1.752", "1681966823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12231", "0.0", "3.504", "1681966823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12232", "0.0", "1.752", "1681970411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12232", "0.0", "3.504", "1681970411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12232", "0.0", "1.752", "1681970411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12232", "0.0", "3.504", "1681970411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12233", "0.0", "1.752", "1681974023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12233", "0.0", "3.504", "1681974023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12233", "0.0", "1.752", "1681974023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12233", "0.0", "3.504", "1681974023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12234", "0.0", "1.752", "1681977611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12234", "0.0", "3.504", "1681977611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12234", "0.0", "1.752", "1681977611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12234", "0.0", "3.504", "1681977611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12235", "0.0", "1.752", "1681981211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12235", "0.0", "3.504", "1681981211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12235", "0.0", "1.752", "1681981211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12235", "0.0", "3.504", "1681981211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12236", "0.0", "1.752", "1681984811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12236", "0.0", "3.504", "1681984811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12236", "0.0", "1.752", "1681984811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12236", "0.0", "3.504", "1681984811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12237", "0.0", "1.752", "1681988423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12237", "0.0", "3.504", "1681988423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12237", "0.0", "1.752", "1681988423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12237", "0.0", "3.504", "1681988423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12238", "0.0", "1.752", "1681992023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12238", "0.0", "3.504", "1681992023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12238", "0.0", "1.752", "1681992023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12238", "0.0", "3.504", "1681992023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12239", "0.0", "1.752", "1681995623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12239", "0.0", "3.504", "1681995623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12239", "0.0", "1.752", "1681995623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12239", "0.0", "3.504", "1681995623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12240", "0.0", "1.752", "1681999235"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12240", "0.0", "3.504", "1681999235"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12240", "0.0", "1.752", "1681999235"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12240", "0.0", "3.504", "1681999235"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12241", "0.0", "1.752", "1682002895"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12241", "0.0", "3.504", "1682002895"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12241", "0.0", "1.752", "1682002895"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12241", "0.0", "3.504", "1682002895"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12242", "0.0", "1.752", "1682006507"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12242", "0.0", "3.504", "1682006507"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12242", "0.0", "1.752", "1682006507"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12242", "0.0", "3.504", "1682006507"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12243", "0.0", "1.752", "1682010059"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12243", "0.0", "3.504", "1682010059"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12243", "0.0", "1.752", "1682010059"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12243", "0.0", "3.504", "1682010059"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12244", "0.0", "1.752", "1682013611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12244", "0.0", "3.504", "1682013611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12244", "0.0", "1.752", "1682013611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12244", "0.0", "3.504", "1682013611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12245", "0.0", "1.752", "1682017235"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12245", "0.0", "3.504", "1682017235"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12245", "0.0", "1.752", "1682017235"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12245", "0.0", "3.504", "1682017235"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12246", "0.0", "1.752", "1682020811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12246", "0.0", "3.504", "1682020811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12246", "0.0", "1.752", "1682020811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12246", "0.0", "3.504", "1682020811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12247", "0.0", "1.752", "1682024423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12247", "0.0", "3.504", "1682024423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12247", "0.0", "1.752", "1682024423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12247", "0.0", "3.504", "1682024423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12248", "0.0", "1.752", "1682028023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12248", "0.0", "3.504", "1682028023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12248", "0.0", "1.752", "1682028023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12248", "0.0", "3.504", "1682028023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12249", "0.0", "1.752", "1682031611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12249", "0.0", "3.504", "1682031611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12249", "0.0", "1.752", "1682031611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12249", "0.0", "3.504", "1682031611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12250", "0.0", "1.752", "1682035211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12250", "0.0", "3.504", "1682035211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12250", "0.0", "1.752", "1682035211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12250", "0.0", "3.504", "1682035211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12251", "0.0", "1.752", "1682038811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12251", "0.0", "3.504", "1682038811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12251", "0.0", "1.752", "1682038811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12251", "0.0", "3.504", "1682038811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12252", "0.0", "1.752", "1682042411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12252", "0.0", "3.504", "1682042411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12252", "0.0", "1.752", "1682042411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12252", "0.0", "3.504", "1682042411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12253", "0.0", "1.752", "1682046011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12253", "0.0", "3.504", "1682046011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12253", "0.0", "1.752", "1682046011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12253", "0.0", "3.504", "1682046011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12254", "0.0", "1.752", "1682049611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12254", "0.0", "3.504", "1682049611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12254", "0.0", "1.752", "1682049611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12254", "0.0", "3.504", "1682049611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12255", "0.0", "1.752", "1682053211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12255", "0.0", "3.504", "1682053211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12255", "0.0", "1.752", "1682053211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12255", "0.0", "3.504", "1682053211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12256", "0.0", "1.752", "1682056823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12256", "0.0", "3.504", "1682056823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12256", "0.0", "1.752", "1682056823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12256", "0.0", "3.504", "1682056823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12257", "0.0", "1.752", "1682060411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12257", "0.0", "3.504", "1682060411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12257", "0.0", "1.752", "1682060411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12257", "0.0", "3.504", "1682060411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12258", "0.0", "1.752", "1682064011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12258", "0.0", "3.504", "1682064011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12258", "0.0", "1.752", "1682064011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12258", "0.0", "3.504", "1682064011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12259", "0.0", "1.752", "1682067611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12259", "0.0", "3.504", "1682067611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12259", "0.0", "1.752", "1682067611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12259", "0.0", "3.504", "1682067611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12260", "0.0", "1.752", "1682071211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12260", "0.0", "3.504", "1682071211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12260", "0.0", "1.752", "1682071211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12260", "0.0", "3.504", "1682071211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12261", "0.0", "1.752", "1682074811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12261", "0.0", "3.504", "1682074811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12261", "0.0", "1.752", "1682074811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12261", "0.0", "3.504", "1682074811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12262", "0.0", "1.752", "1682078411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12262", "0.0", "3.504", "1682078411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12262", "0.0", "1.752", "1682078411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12262", "0.0", "3.504", "1682078411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12263", "0.0", "1.752", "1682082011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12263", "0.0", "3.504", "1682082011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12263", "0.0", "1.752", "1682082011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12263", "0.0", "3.504", "1682082011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12264", "0.0", "1.752", "1682085611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12264", "0.0", "3.504", "1682085611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12264", "0.0", "1.752", "1682085611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12264", "0.0", "3.504", "1682085611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12265", "0.0", "1.752", "1682089211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12265", "0.0", "3.504", "1682089211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12265", "0.0", "1.752", "1682089211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12265", "0.0", "3.504", "1682089211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12266", "0.0", "1.752", "1682092811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12266", "0.0", "3.504", "1682092811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12266", "0.0", "1.752", "1682092811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12266", "0.0", "3.504", "1682092811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12267", "0.0", "1.752", "1682096411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12267", "0.0", "3.504", "1682096411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12267", "0.0", "1.752", "1682096411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12267", "0.0", "3.504", "1682096411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12268", "0.0", "1.752", "1682100011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12268", "0.0", "3.504", "1682100011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12268", "0.0", "1.752", "1682100011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12268", "0.0", "3.504", "1682100011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12269", "0.0", "1.752", "1682103611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12269", "0.0", "3.504", "1682103611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12269", "0.0", "1.752", "1682103611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12269", "0.0", "3.504", "1682103611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12270", "0.0", "1.752", "1682107223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12270", "0.0", "3.504", "1682107223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12270", "0.0", "1.752", "1682107223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12270", "0.0", "3.504", "1682107223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12271", "0.0", "1.752", "1682110823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12271", "0.0", "3.504", "1682110823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12271", "0.0", "1.752", "1682110823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12271", "0.0", "3.504", "1682110823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12272", "0.0", "1.752", "1682114411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12272", "0.0", "3.504", "1682114411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12272", "0.0", "1.752", "1682114411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12272", "0.0", "3.504", "1682114411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12273", "0.0", "1.752", "1682118011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12273", "0.0", "3.504", "1682118011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12273", "0.0", "1.752", "1682118011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12273", "0.0", "3.504", "1682118011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12274", "0.0", "1.752", "1682121635"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12274", "0.0", "3.504", "1682121635"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12274", "0.0", "1.752", "1682121635"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12274", "0.0", "3.504", "1682121635"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12275", "0.0", "1.752", "1682125211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12275", "0.0", "3.504", "1682125211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12275", "0.0", "1.752", "1682125211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12275", "0.0", "3.504", "1682125211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12276", "0.0", "1.752", "1682128811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12276", "0.0", "3.504", "1682128811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12276", "0.0", "1.752", "1682128811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12276", "0.0", "3.504", "1682128811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12277", "0.0", "1.752", "1682132411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12277", "0.0", "3.504", "1682132411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12277", "0.0", "1.752", "1682132411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12277", "0.0", "3.504", "1682132411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12278", "0.0", "1.752", "1682136011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12278", "0.0", "3.504", "1682136011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12278", "0.0", "1.752", "1682136011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12278", "0.0", "3.504", "1682136011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12279", "0.0", "1.752", "1682139611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12279", "0.0", "3.504", "1682139611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12279", "0.0", "1.752", "1682139611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12279", "0.0", "3.504", "1682139611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12280", "0.0", "1.752", "1682143211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12280", "0.0", "3.504", "1682143211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12280", "0.0", "1.752", "1682143211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12280", "0.0", "3.504", "1682143211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12281", "0.0", "1.752", "1682146823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12281", "0.0", "3.504", "1682146823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12281", "0.0", "1.752", "1682146823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12281", "0.0", "3.504", "1682146823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12282", "0.0", "1.752", "1682150411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12282", "0.0", "3.504", "1682150411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12282", "0.0", "1.752", "1682150411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12282", "0.0", "3.504", "1682150411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12283", "0.0", "1.752", "1682154011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12283", "0.0", "3.504", "1682154011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12283", "0.0", "1.752", "1682154011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12283", "0.0", "3.504", "1682154011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12284", "0.0", "1.752", "1682157611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12284", "0.0", "3.504", "1682157611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12284", "0.0", "1.752", "1682157611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12284", "0.0", "3.504", "1682157611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12285", "0.0", "1.752", "1682161211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12285", "0.0", "3.504", "1682161211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12285", "0.0", "1.752", "1682161211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12285", "0.0", "3.504", "1682161211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12286", "0.0", "1.752", "1682164811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12286", "0.0", "3.504", "1682164811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12286", "0.0", "1.752", "1682164811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12286", "0.0", "3.504", "1682164811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12287", "0.0", "1.752", "1682168411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12287", "0.0", "3.504", "1682168411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12287", "0.0", "1.752", "1682168411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12287", "0.0", "3.504", "1682168411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12288", "0.0", "1.752", "1682172011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12288", "0.0", "3.504", "1682172011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12288", "0.0", "1.752", "1682172011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12288", "0.0", "3.504", "1682172011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12289", "0.0", "1.752", "1682175611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12289", "0.0", "3.504", "1682175611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12289", "0.0", "1.752", "1682175611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12289", "0.0", "3.504", "1682175611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12290", "0.0", "1.752", "1682179211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12290", "0.0", "3.504", "1682179211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12290", "0.0", "1.752", "1682179211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12290", "0.0", "3.504", "1682179211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12291", "0.0", "1.752", "1682182811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12291", "0.0", "3.504", "1682182811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12291", "0.0", "1.752", "1682182811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12291", "0.0", "3.504", "1682182811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12292", "0.0", "1.752", "1682186411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12292", "0.0", "3.504", "1682186411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12292", "0.0", "1.752", "1682186411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12292", "0.0", "3.504", "1682186411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12293", "0.0", "1.752", "1682190011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12293", "0.0", "3.504", "1682190011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12293", "0.0", "1.752", "1682190011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12293", "0.0", "3.504", "1682190011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12294", "0.0", "1.752", "1682193611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12294", "0.0", "3.504", "1682193611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12294", "0.0", "1.752", "1682193611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12294", "0.0", "3.504", "1682193611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12295", "0.0", "1.752", "1682197211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12295", "0.0", "3.504", "1682197211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12295", "0.0", "1.752", "1682197211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12295", "0.0", "3.504", "1682197211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12296", "0.0", "1.752", "1682200811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12296", "0.0", "3.504", "1682200811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12296", "0.0", "1.752", "1682200811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12296", "0.0", "3.504", "1682200811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12297", "0.0", "1.752", "1682204411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12297", "0.0", "3.504", "1682204411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12297", "0.0", "1.752", "1682204411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12297", "0.0", "3.504", "1682204411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12298", "0.0", "1.752", "1682208011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12298", "0.0", "3.504", "1682208011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12298", "0.0", "1.752", "1682208011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12298", "0.0", "3.504", "1682208011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12299", "0.0", "1.752", "1682211611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12299", "0.0", "3.504", "1682211611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12299", "0.0", "1.752", "1682211611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12299", "0.0", "3.504", "1682211611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12300", "0.0", "1.752", "1682215211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12300", "0.0", "3.504", "1682215211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12300", "0.0", "1.752", "1682215211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12300", "0.0", "3.504", "1682215211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12301", "0.0", "1.752", "1682218811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12301", "0.0", "3.504", "1682218811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12301", "0.0", "1.752", "1682218811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12301", "0.0", "3.504", "1682218811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12302", "0.0", "1.752", "1682222411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12302", "0.0", "3.504", "1682222411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12302", "0.0", "1.752", "1682222411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12302", "0.0", "3.504", "1682222411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12303", "0.0", "1.752", "1682226011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12303", "0.0", "3.504", "1682226011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12303", "0.0", "1.752", "1682226011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12303", "0.0", "3.504", "1682226011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12304", "0.0", "1.752", "1682229611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12304", "0.0", "3.504", "1682229611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12304", "0.0", "1.752", "1682229611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12304", "0.0", "3.504", "1682229611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12305", "0.0", "1.752", "1682233223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12305", "0.0", "3.504", "1682233223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12305", "0.0", "1.752", "1682233223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12305", "0.0", "3.504", "1682233223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12306", "0.0", "1.752", "1682236811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12306", "0.0", "3.504", "1682236811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12306", "0.0", "1.752", "1682236811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12306", "0.0", "3.504", "1682236811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12307", "0.0", "1.752", "1682240411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12307", "0.0", "3.504", "1682240411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12307", "0.0", "1.752", "1682240411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12307", "0.0", "3.504", "1682240411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12308", "0.0", "1.752", "1682244011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12308", "0.0", "3.504", "1682244011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12308", "0.0", "1.752", "1682244011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12308", "0.0", "3.504", "1682244011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12309", "0.0", "1.752", "1682247623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12309", "0.0", "3.504", "1682247623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12309", "0.0", "1.752", "1682247623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12309", "0.0", "3.504", "1682247623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12310", "0.0", "1.752", "1682251211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12310", "0.0", "3.504", "1682251211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12310", "0.0", "1.752", "1682251211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12310", "0.0", "3.504", "1682251211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12311", "0.0", "1.752", "1682254811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12311", "0.0", "3.504", "1682254811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12311", "0.0", "1.752", "1682254811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12311", "0.0", "3.504", "1682254811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12312", "0.0", "1.752", "1682258411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12312", "0.0", "3.504", "1682258411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12312", "0.0", "1.752", "1682258411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12312", "0.0", "3.504", "1682258411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12313", "0.0", "1.752", "1682262011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12313", "0.0", "3.504", "1682262011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12313", "0.0", "1.752", "1682262011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12313", "0.0", "3.504", "1682262011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12314", "0.0", "1.752", "1682265611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12314", "0.0", "3.504", "1682265611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12314", "0.0", "1.752", "1682265611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12314", "0.0", "3.504", "1682265611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12315", "0.0", "1.752", "1682269211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12315", "0.0", "3.504", "1682269211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12315", "0.0", "1.752", "1682269211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12315", "0.0", "3.504", "1682269211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12316", "0.0", "1.752", "1682272811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12316", "0.0", "3.504", "1682272811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12316", "0.0", "1.752", "1682272811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12316", "0.0", "3.504", "1682272811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12317", "0.0", "1.752", "1682276411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12317", "0.0", "3.504", "1682276411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12317", "0.0", "1.752", "1682276411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12317", "0.0", "3.504", "1682276411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12318", "0.0", "1.752", "1682280011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12318", "0.0", "3.504", "1682280011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12318", "0.0", "1.752", "1682280011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12318", "0.0", "3.504", "1682280011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12319", "0.0", "1.752", "1682283611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12319", "0.0", "3.504", "1682283611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12319", "0.0", "1.752", "1682283611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12319", "0.0", "3.504", "1682283611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12320", "0.0", "1.752", "1682287211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12320", "0.0", "3.504", "1682287211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12320", "0.0", "1.752", "1682287211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12320", "0.0", "3.504", "1682287211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12321", "0.0", "1.752", "1682290811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12321", "0.0", "3.504", "1682290811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12321", "0.0", "1.752", "1682290811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12321", "0.0", "3.504", "1682290811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12322", "0.0", "1.752", "1682294411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12322", "0.0", "3.504", "1682294411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12322", "0.0", "1.752", "1682294411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12322", "0.0", "3.504", "1682294411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12323", "0.0", "1.752", "1682298011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12323", "0.0", "3.504", "1682298011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12323", "0.0", "1.752", "1682298011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12323", "0.0", "3.504", "1682298011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12324", "0.0", "1.752", "1682301611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12324", "0.0", "3.504", "1682301611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12324", "0.0", "1.752", "1682301611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12324", "0.0", "3.504", "1682301611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12325", "0.0", "1.752", "1682305211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12325", "0.0", "3.504", "1682305211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12325", "0.0", "1.752", "1682305211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12325", "0.0", "3.504", "1682305211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12326", "0.0", "1.752", "1682308811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12326", "0.0", "3.504", "1682308811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12326", "0.0", "1.752", "1682308811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12326", "0.0", "3.504", "1682308811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12327", "0.0", "1.752", "1682312411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12327", "0.0", "3.504", "1682312411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12327", "0.0", "1.752", "1682312411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12327", "0.0", "3.504", "1682312411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12328", "0.0", "1.752", "1682316011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12328", "0.0", "3.504", "1682316011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12328", "0.0", "1.752", "1682316011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12328", "0.0", "3.504", "1682316011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12329", "0.0", "1.752", "1682319611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12329", "0.0", "3.504", "1682319611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12329", "0.0", "1.752", "1682319611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12329", "0.0", "3.504", "1682319611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12330", "0.0", "1.752", "1682323211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12330", "0.0", "3.504", "1682323211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12330", "0.0", "1.752", "1682323211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12330", "0.0", "3.504", "1682323211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12331", "0.0", "1.752", "1682326811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12331", "0.0", "3.504", "1682326811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12331", "0.0", "1.752", "1682326811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12331", "0.0", "3.504", "1682326811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12332", "0.0", "1.752", "1682330411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12332", "0.0", "3.504", "1682330411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12332", "0.0", "1.752", "1682330411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12332", "0.0", "3.504", "1682330411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12333", "0.0", "1.752", "1682334011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12333", "0.0", "3.504", "1682334011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12333", "0.0", "1.752", "1682334011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12333", "0.0", "3.504", "1682334011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12334", "0.0", "1.752", "1682337611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12334", "0.0", "3.504", "1682337611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12334", "0.0", "1.752", "1682337611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12334", "0.0", "3.504", "1682337611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12335", "0.0", "1.752", "1682341223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12335", "0.0", "3.504", "1682341223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12335", "0.0", "1.752", "1682341223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12335", "0.0", "3.504", "1682341223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12336", "0.0", "1.752", "1682344811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12336", "0.0", "3.504", "1682344811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12336", "0.0", "1.752", "1682344811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12336", "0.0", "3.504", "1682344811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12337", "0.0", "1.752", "1682348411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12337", "0.0", "3.504", "1682348411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12337", "0.0", "1.752", "1682348411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12337", "0.0", "3.504", "1682348411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12338", "0.0", "1.752", "1682352011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12338", "0.0", "3.504", "1682352011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12338", "0.0", "1.752", "1682352011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12338", "0.0", "3.504", "1682352011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12339", "0.0", "1.752", "1682355611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12339", "0.0", "3.504", "1682355611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12339", "0.0", "1.752", "1682355611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12339", "0.0", "3.504", "1682355611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12340", "0.0", "1.752", "1682359211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12340", "0.0", "3.504", "1682359211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12340", "0.0", "1.752", "1682359211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12340", "0.0", "3.504", "1682359211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12341", "0.0", "1.752", "1682362823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12341", "0.0", "3.504", "1682362823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12341", "0.0", "1.752", "1682362823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12341", "0.0", "3.504", "1682362823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12342", "0.0", "1.752", "1682366423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12342", "0.0", "3.504", "1682366423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12342", "0.0", "1.752", "1682366423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12342", "0.0", "3.504", "1682366423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12343", "0.0", "1.752", "1682370011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12343", "0.0", "3.504", "1682370011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12343", "0.0", "1.752", "1682370011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12343", "0.0", "3.504", "1682370011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12344", "0.0", "1.752", "1682373611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12344", "0.0", "3.504", "1682373611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12344", "0.0", "1.752", "1682373611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12344", "0.0", "3.504", "1682373611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12345", "0.0", "1.752", "1682377211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12345", "0.0", "3.504", "1682377211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12345", "0.0", "1.752", "1682377211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12345", "0.0", "3.504", "1682377211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12346", "0.0", "1.752", "1682380811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12346", "0.0", "3.504", "1682380811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12346", "0.0", "1.752", "1682380811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12346", "0.0", "3.504", "1682380811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12347", "0.0", "1.752", "1682384411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12347", "0.0", "3.504", "1682384411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12347", "0.0", "1.752", "1682384411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12347", "0.0", "3.504", "1682384411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12348", "0.0", "1.752", "1682388011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12348", "0.0", "3.504", "1682388011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12348", "0.0", "1.752", "1682388011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12348", "0.0", "3.504", "1682388011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12349", "0.0", "1.752", "1682391611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12349", "0.0", "3.504", "1682391611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12349", "0.0", "1.752", "1682391611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12349", "0.0", "3.504", "1682391611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12350", "0.0", "1.752", "1682395211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12350", "0.0", "3.504", "1682395211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12350", "0.0", "1.752", "1682395211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12350", "0.0", "3.504", "1682395211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12351", "0.0", "1.752", "1682398811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12351", "0.0", "3.504", "1682398811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12351", "0.0", "1.752", "1682398811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12351", "0.0", "3.504", "1682398811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12352", "0.0", "1.752", "1682402411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12352", "0.0", "3.504", "1682402411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12352", "0.0", "1.752", "1682402411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12352", "0.0", "3.504", "1682402411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12353", "0.0", "1.752", "1682406011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12353", "0.0", "3.504", "1682406011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12353", "0.0", "1.752", "1682406011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12353", "0.0", "3.504", "1682406011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12354", "0.0", "1.752", "1682409611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12354", "0.0", "3.504", "1682409611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12354", "0.0", "1.752", "1682409611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12354", "0.0", "3.504", "1682409611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12355", "0.0", "1.752", "1682413211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12355", "0.0", "3.504", "1682413211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12355", "0.0", "1.752", "1682413211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12355", "0.0", "3.504", "1682413211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12356", "0.0", "1.752", "1682416811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12356", "0.0", "3.504", "1682416811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12356", "0.0", "1.752", "1682416811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12356", "0.0", "3.504", "1682416811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12357", "0.0", "1.752", "1682420411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12357", "0.0", "3.504", "1682420411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12357", "0.0", "1.752", "1682420411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12357", "0.0", "3.504", "1682420411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12358", "0.0", "1.752", "1682424011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12358", "0.0", "3.504", "1682424011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12358", "0.0", "1.752", "1682424011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12358", "0.0", "3.504", "1682424011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12359", "0.0", "1.752", "1682427611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12359", "0.0", "3.504", "1682427611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12359", "0.0", "1.752", "1682427611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12359", "0.0", "3.504", "1682427611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12360", "0.0", "1.752", "1682431211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12360", "0.0", "3.504", "1682431211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12360", "0.0", "1.752", "1682431211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12360", "0.0", "3.504", "1682431211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12361", "0.0", "1.752", "1682434811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12361", "0.0", "3.504", "1682434811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12361", "0.0", "1.752", "1682434811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12361", "0.0", "3.504", "1682434811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12362", "0.0", "1.752", "1682438435"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12362", "0.0", "3.504", "1682438435"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12362", "0.0", "1.752", "1682438435"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12362", "0.0", "3.504", "1682438435"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12363", "0.0", "1.752", "1682442011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12363", "0.0", "3.504", "1682442011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12363", "0.0", "1.752", "1682442011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12363", "0.0", "3.504", "1682442011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12364", "0.0", "1.752", "1682445623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12364", "0.0", "3.504", "1682445623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12364", "0.0", "1.752", "1682445623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12364", "0.0", "3.504", "1682445623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12365", "0.0", "1.752", "1682449211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12365", "0.0", "3.504", "1682449211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12365", "0.0", "1.752", "1682449211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12365", "0.0", "3.504", "1682449211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12366", "0.0", "1.752", "1682452811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12366", "0.0", "3.504", "1682452811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12366", "0.0", "1.752", "1682452811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12366", "0.0", "3.504", "1682452811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12367", "0.0", "1.752", "1682456411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12367", "0.0", "3.504", "1682456411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12367", "0.0", "1.752", "1682456411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12367", "0.0", "3.504", "1682456411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12368", "0.0", "1.752", "1682460035"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12368", "0.0", "3.504", "1682460035"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12368", "0.0", "1.752", "1682460035"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12368", "0.0", "3.504", "1682460035"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12369", "0.0", "1.752", "1682463611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12369", "0.0", "3.504", "1682463611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12369", "0.0", "1.752", "1682463611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12369", "0.0", "3.504", "1682463611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12370", "0.0", "1.752", "1682467211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12370", "0.0", "3.504", "1682467211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12370", "0.0", "1.752", "1682467211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12370", "0.0", "3.504", "1682467211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12371", "0.0", "1.752", "1682470811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12371", "0.0", "3.504", "1682470811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12371", "0.0", "1.752", "1682470811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12371", "0.0", "3.504", "1682470811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12372", "0.0", "1.752", "1682474411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12372", "0.0", "3.504", "1682474411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12372", "0.0", "1.752", "1682474411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12372", "0.0", "3.504", "1682474411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12373", "0.0", "1.752", "1682478011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12373", "0.0", "3.504", "1682478011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12373", "0.0", "1.752", "1682478011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12373", "0.0", "3.504", "1682478011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12374", "0.0", "1.752", "1682481611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12374", "0.0", "3.504", "1682481611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12374", "0.0", "1.752", "1682481611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12374", "0.0", "3.504", "1682481611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12375", "0.0", "1.752", "1682485211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12375", "0.0", "3.504", "1682485211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12375", "0.0", "1.752", "1682485211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12375", "0.0", "3.504", "1682485211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12376", "0.0", "1.752", "1682488811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12376", "0.0", "3.504", "1682488811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12376", "0.0", "1.752", "1682488811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12376", "0.0", "3.504", "1682488811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12377", "0.0", "1.752", "1682492411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12377", "0.0", "3.504", "1682492411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12377", "0.0", "1.752", "1682492411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12377", "0.0", "3.504", "1682492411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12378", "0.0", "1.752", "1682496011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12378", "0.0", "3.504", "1682496011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12378", "0.0", "1.752", "1682496011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12378", "0.0", "3.504", "1682496011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12379", "0.0", "1.752", "1682499611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12379", "0.0", "3.504", "1682499611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12379", "0.0", "1.752", "1682499611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12379", "0.0", "3.504", "1682499611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12380", "0.0", "1.752", "1682503211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12380", "0.0", "3.504", "1682503211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12380", "0.0", "1.752", "1682503211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12380", "0.0", "3.504", "1682503211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12381", "0.0", "1.752", "1682506823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12381", "0.0", "3.504", "1682506823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12381", "0.0", "1.752", "1682506823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12381", "0.0", "3.504", "1682506823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12382", "0.0", "1.752", "1682510411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12382", "0.0", "3.504", "1682510411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12382", "0.0", "1.752", "1682510411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12382", "0.0", "3.504", "1682510411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12383", "0.0", "1.752", "1682514047"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12383", "0.0", "3.504", "1682514047"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12383", "0.0", "1.752", "1682514047"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12383", "0.0", "3.504", "1682514047"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12384", "0.0", "1.752", "1682517731"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12384", "0.0", "3.504", "1682517731"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12384", "0.0", "1.752", "1682517731"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12384", "0.0", "3.504", "1682517731"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12385", "0.0", "1.752", "1682521211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12385", "0.0", "3.504", "1682521211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12385", "0.0", "1.752", "1682521211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12385", "0.0", "3.504", "1682521211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12386", "0.0", "1.752", "1682524811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12386", "0.0", "3.504", "1682524811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12386", "0.0", "1.752", "1682524811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12386", "0.0", "3.504", "1682524811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12387", "0.0", "1.752", "1682528411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12387", "0.0", "3.504", "1682528411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12387", "0.0", "1.752", "1682528411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12387", "0.0", "3.504", "1682528411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12388", "0.0", "1.752", "1682532011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12388", "0.0", "3.504", "1682532011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12388", "0.0", "1.752", "1682532011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12388", "0.0", "3.504", "1682532011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12389", "0.0", "1.752", "1682535611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12389", "0.0", "3.504", "1682535611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12389", "0.0", "1.752", "1682535611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12389", "0.0", "3.504", "1682535611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12390", "0.0", "1.752", "1682539259"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12390", "0.0", "3.504", "1682539259"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12390", "0.0", "1.752", "1682539259"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12390", "0.0", "3.504", "1682539259"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12391", "0.0", "1.752", "1682542811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12391", "0.0", "3.504", "1682542811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12391", "0.0", "1.752", "1682542811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12391", "0.0", "3.504", "1682542811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12392", "0.0", "1.752", "1682546411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12392", "0.0", "3.504", "1682546411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12392", "0.0", "1.752", "1682546411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12392", "0.0", "3.504", "1682546411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12393", "0.0", "1.752", "1682550011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12393", "0.0", "3.504", "1682550011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12393", "0.0", "1.752", "1682550011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12393", "0.0", "3.504", "1682550011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12394", "0.0", "1.752", "1682553611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12394", "0.0", "3.504", "1682553611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12394", "0.0", "1.752", "1682553611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12394", "0.0", "3.504", "1682553611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12395", "0.0", "1.752", "1682557211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12395", "0.0", "3.504", "1682557211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12395", "0.0", "1.752", "1682557211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12395", "0.0", "3.504", "1682557211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12396", "0.0", "1.752", "1682560811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12396", "0.0", "3.504", "1682560811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12396", "0.0", "1.752", "1682560811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12396", "0.0", "3.504", "1682560811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12397", "0.0", "1.752", "1682564411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12397", "0.0", "3.504", "1682564411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12397", "0.0", "1.752", "1682564411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12397", "0.0", "3.504", "1682564411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12398", "0.0", "1.752", "1682568011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12398", "0.0", "3.504", "1682568011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12398", "0.0", "1.752", "1682568011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12398", "0.0", "3.504", "1682568011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12399", "0.0", "1.752", "1682571611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12399", "0.0", "3.504", "1682571611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12399", "0.0", "1.752", "1682571611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12399", "0.0", "3.504", "1682571611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12400", "0.0", "1.752", "1682575211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12400", "0.0", "3.504", "1682575211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12400", "0.0", "1.752", "1682575211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12400", "0.0", "3.504", "1682575211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12401", "0.0", "1.752", "1682578811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12401", "0.0", "3.504", "1682578811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12401", "0.0", "1.752", "1682578811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12401", "0.0", "3.504", "1682578811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12402", "0.0", "1.752", "1682582411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12402", "0.0", "3.504", "1682582411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12402", "0.0", "1.752", "1682582411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12402", "0.0", "3.504", "1682582411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12403", "0.0", "1.752", "1682586023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12403", "0.0", "3.504", "1682586023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12403", "0.0", "1.752", "1682586023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12403", "0.0", "3.504", "1682586023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12404", "0.0", "1.752", "1682589611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12404", "0.0", "3.504", "1682589611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12404", "0.0", "1.752", "1682589611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12404", "0.0", "3.504", "1682589611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12405", "0.0", "1.752", "1682593211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12405", "0.0", "3.504", "1682593211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12405", "0.0", "1.752", "1682593211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12405", "0.0", "3.504", "1682593211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12406", "0.0", "1.752", "1682596811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12406", "0.0", "3.504", "1682596811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12406", "0.0", "1.752", "1682596811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12406", "0.0", "3.504", "1682596811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12407", "0.0", "1.752", "1682600423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12407", "0.0", "3.504", "1682600423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12407", "0.0", "1.752", "1682600423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12407", "0.0", "3.504", "1682600423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12408", "0.0", "1.752", "1682604011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12408", "0.0", "3.504", "1682604011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12408", "0.0", "1.752", "1682604011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12408", "0.0", "3.504", "1682604011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12409", "0.0", "1.752", "1682607671"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12409", "0.0", "3.504", "1682607671"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12409", "0.0", "1.752", "1682607671"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12409", "0.0", "3.504", "1682607671"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12410", "0.0", "1.752", "1682611223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12410", "0.0", "3.504", "1682611223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12410", "0.0", "1.752", "1682611223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12410", "0.0", "3.504", "1682611223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12411", "0.0", "1.752", "1682614811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12411", "0.0", "3.504", "1682614811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12411", "0.0", "1.752", "1682614811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12411", "0.0", "3.504", "1682614811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12412", "0.0", "1.752", "1682618411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12412", "0.0", "3.504", "1682618411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12412", "0.0", "1.752", "1682618411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12412", "0.0", "3.504", "1682618411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12413", "0.0", "1.752", "1682622011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12413", "0.0", "3.504", "1682622011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12413", "0.0", "1.752", "1682622011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12413", "0.0", "3.504", "1682622011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12414", "0.0", "1.752", "1682625611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12414", "0.0", "3.504", "1682625611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12414", "0.0", "1.752", "1682625611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12414", "0.0", "3.504", "1682625611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12415", "0.0", "1.752", "1682629223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12415", "0.0", "3.504", "1682629223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12415", "0.0", "1.752", "1682629223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12415", "0.0", "3.504", "1682629223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12416", "0.0", "1.752", "1682632811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12416", "0.0", "3.504", "1682632811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12416", "0.0", "1.752", "1682632811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12416", "0.0", "3.504", "1682632811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12417", "0.0", "1.752", "1682636423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12417", "0.0", "3.504", "1682636423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12417", "0.0", "1.752", "1682636423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12417", "0.0", "3.504", "1682636423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12418", "0.0", "1.752", "1682640023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12418", "0.0", "3.504", "1682640023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12418", "0.0", "1.752", "1682640023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12418", "0.0", "3.504", "1682640023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12419", "0.0", "1.752", "1682643611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12419", "0.0", "3.504", "1682643611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12419", "0.0", "1.752", "1682643611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12419", "0.0", "3.504", "1682643611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12420", "0.0", "1.752", "1682647211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12420", "0.0", "3.504", "1682647211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12420", "0.0", "1.752", "1682647211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12420", "0.0", "3.504", "1682647211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12421", "0.0", "1.752", "1682650811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12421", "0.0", "3.504", "1682650811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12421", "0.0", "1.752", "1682650811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12421", "0.0", "3.504", "1682650811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12422", "0.0", "1.752", "1682654411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12422", "0.0", "3.504", "1682654411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12422", "0.0", "1.752", "1682654411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12422", "0.0", "3.504", "1682654411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12423", "0.0", "1.752", "1682658011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12423", "0.0", "3.504", "1682658011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12423", "0.0", "1.752", "1682658011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12423", "0.0", "3.504", "1682658011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12424", "0.0", "1.752", "1682661611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12424", "0.0", "3.504", "1682661611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12424", "0.0", "1.752", "1682661611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12424", "0.0", "3.504", "1682661611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12425", "0.0", "1.752", "1682665211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12425", "0.0", "3.504", "1682665211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12425", "0.0", "1.752", "1682665211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12425", "0.0", "3.504", "1682665211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12426", "0.0", "1.752", "1682668811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12426", "0.0", "3.504", "1682668811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12426", "0.0", "1.752", "1682668811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12426", "0.0", "3.504", "1682668811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12427", "0.0", "1.752", "1682672411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12427", "0.0", "3.504", "1682672411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12427", "0.0", "1.752", "1682672411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12427", "0.0", "3.504", "1682672411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12428", "0.0", "1.752", "1682676011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12428", "0.0", "3.504", "1682676011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12428", "0.0", "1.752", "1682676011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12428", "0.0", "3.504", "1682676011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12429", "0.0", "1.752", "1682679611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12429", "0.0", "3.504", "1682679611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12429", "0.0", "1.752", "1682679611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12429", "0.0", "3.504", "1682679611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12430", "0.0", "1.752", "1682683211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12430", "0.0", "3.504", "1682683211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12430", "0.0", "1.752", "1682683211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12430", "0.0", "3.504", "1682683211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12431", "0.0", "1.752", "1682686823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12431", "0.0", "3.504", "1682686823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12431", "0.0", "1.752", "1682686823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12431", "0.0", "3.504", "1682686823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12432", "0.0", "1.752", "1682690411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12432", "0.0", "3.504", "1682690411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12432", "0.0", "1.752", "1682690411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12432", "0.0", "3.504", "1682690411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12433", "0.0", "1.752", "1682694011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12433", "0.0", "3.504", "1682694011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12433", "0.0", "1.752", "1682694011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12433", "0.0", "3.504", "1682694011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12434", "0.0", "1.752", "1682697611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12434", "0.0", "3.504", "1682697611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12434", "0.0", "1.752", "1682697611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12434", "0.0", "3.504", "1682697611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12435", "0.0", "1.752", "1682701211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12435", "0.0", "3.504", "1682701211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12435", "0.0", "1.752", "1682701211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12435", "0.0", "3.504", "1682701211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12436", "0.0", "1.752", "1682704823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12436", "0.0", "3.504", "1682704823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12436", "0.0", "1.752", "1682704823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12436", "0.0", "3.504", "1682704823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12437", "0.0", "1.752", "1682708411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12437", "0.0", "3.504", "1682708411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12437", "0.0", "1.752", "1682708411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12437", "0.0", "3.504", "1682708411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12438", "0.0", "1.752", "1682712011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12438", "0.0", "3.504", "1682712011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12438", "0.0", "1.752", "1682712011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12438", "0.0", "3.504", "1682712011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12439", "0.0", "1.752", "1682715611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12439", "0.0", "3.504", "1682715611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12439", "0.0", "1.752", "1682715611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12439", "0.0", "3.504", "1682715611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12440", "0.0", "1.752", "1682719211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12440", "0.0", "3.504", "1682719211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12440", "0.0", "1.752", "1682719211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12440", "0.0", "3.504", "1682719211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12441", "0.0", "1.752", "1682722811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12441", "0.0", "3.504", "1682722811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12441", "0.0", "1.752", "1682722811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12441", "0.0", "3.504", "1682722811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12442", "0.0", "1.752", "1682726411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12442", "0.0", "3.504", "1682726411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12442", "0.0", "1.752", "1682726411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12442", "0.0", "3.504", "1682726411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12443", "0.0", "1.752", "1682730011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12443", "0.0", "3.504", "1682730011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12443", "0.0", "1.752", "1682730011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12443", "0.0", "3.504", "1682730011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12444", "0.0", "1.752", "1682733611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12444", "0.0", "3.504", "1682733611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12444", "0.0", "1.752", "1682733611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12444", "0.0", "3.504", "1682733611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12445", "0.0", "1.752", "1682737211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12445", "0.0", "3.504", "1682737211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12445", "0.0", "1.752", "1682737211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12445", "0.0", "3.504", "1682737211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12446", "0.0", "1.752", "1682740811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12446", "0.0", "3.504", "1682740811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12446", "0.0", "1.752", "1682740811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12446", "0.0", "3.504", "1682740811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12447", "0.0", "1.752", "1682744411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12447", "0.0", "3.504", "1682744411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12447", "0.0", "1.752", "1682744411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12447", "0.0", "3.504", "1682744411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12448", "0.0", "1.752", "1682748011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12448", "0.0", "3.504", "1682748011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12448", "0.0", "1.752", "1682748011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12448", "0.0", "3.504", "1682748011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12449", "0.0", "1.752", "1682751611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12449", "0.0", "3.504", "1682751611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12449", "0.0", "1.752", "1682751611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12449", "0.0", "3.504", "1682751611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12450", "0.0", "1.752", "1682755211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12450", "0.0", "3.504", "1682755211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12450", "0.0", "1.752", "1682755211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12450", "0.0", "3.504", "1682755211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12451", "0.0", "1.752", "1682758811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12451", "0.0", "3.504", "1682758811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12451", "0.0", "1.752", "1682758811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12451", "0.0", "3.504", "1682758811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12452", "0.0", "1.752", "1682762411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12452", "0.0", "3.504", "1682762411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12452", "0.0", "1.752", "1682762411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12452", "0.0", "3.504", "1682762411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12453", "0.0", "1.752", "1682766011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12453", "0.0", "3.504", "1682766011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12453", "0.0", "1.752", "1682766011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12453", "0.0", "3.504", "1682766011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12454", "0.0", "1.752", "1682769611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12454", "0.0", "3.504", "1682769611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12454", "0.0", "1.752", "1682769611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12454", "0.0", "3.504", "1682769611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12455", "0.0", "1.752", "1682773211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12455", "0.0", "3.504", "1682773211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12455", "0.0", "1.752", "1682773211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12455", "0.0", "3.504", "1682773211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12456", "0.0", "1.752", "1682776811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12456", "0.0", "3.504", "1682776811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12456", "0.0", "1.752", "1682776811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12456", "0.0", "3.504", "1682776811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12457", "0.0", "1.752", "1682780411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12457", "0.0", "3.504", "1682780411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12457", "0.0", "1.752", "1682780411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12457", "0.0", "3.504", "1682780411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12458", "0.0", "1.752", "1682784011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12458", "0.0", "3.504", "1682784011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12458", "0.0", "1.752", "1682784011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12458", "0.0", "3.504", "1682784011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12459", "0.0", "1.752", "1682787611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12459", "0.0", "3.504", "1682787611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12459", "0.0", "1.752", "1682787611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12459", "0.0", "3.504", "1682787611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12460", "0.0", "1.752", "1682791211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12460", "0.0", "3.504", "1682791211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12460", "0.0", "1.752", "1682791211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12460", "0.0", "3.504", "1682791211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12461", "0.0", "1.752", "1682794811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12461", "0.0", "3.504", "1682794811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12461", "0.0", "1.752", "1682794811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12461", "0.0", "3.504", "1682794811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12462", "0.0", "1.752", "1682798411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12462", "0.0", "3.504", "1682798411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12462", "0.0", "1.752", "1682798411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12462", "0.0", "3.504", "1682798411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12463", "0.0", "1.752", "1682802011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12463", "0.0", "3.504", "1682802011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12463", "0.0", "1.752", "1682802011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12463", "0.0", "3.504", "1682802011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12464", "0.0", "1.752", "1682805611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12464", "0.0", "3.504", "1682805611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12464", "0.0", "1.752", "1682805611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12464", "0.0", "3.504", "1682805611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12465", "0.0", "1.752", "1682809211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12465", "0.0", "3.504", "1682809211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12465", "0.0", "1.752", "1682809211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12465", "0.0", "3.504", "1682809211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12466", "0.0", "1.752", "1682812811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12466", "0.0", "3.504", "1682812811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12466", "0.0", "1.752", "1682812811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12466", "0.0", "3.504", "1682812811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12467", "0.0", "1.752", "1682816411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12467", "0.0", "3.504", "1682816411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12467", "0.0", "1.752", "1682816411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12467", "0.0", "3.504", "1682816411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12468", "0.0", "1.752", "1682820011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12468", "0.0", "3.504", "1682820011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12468", "0.0", "1.752", "1682820011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12468", "0.0", "3.504", "1682820011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12469", "0.0", "1.752", "1682823611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12469", "0.0", "3.504", "1682823611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12469", "0.0", "1.752", "1682823611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12469", "0.0", "3.504", "1682823611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12470", "0.0", "1.752", "1682827211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12470", "0.0", "3.504", "1682827211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12470", "0.0", "1.752", "1682827211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12470", "0.0", "3.504", "1682827211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12471", "0.0", "1.752", "1682830811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12471", "0.0", "3.504", "1682830811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12471", "0.0", "1.752", "1682830811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12471", "0.0", "3.504", "1682830811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12472", "0.0", "1.752", "1682834411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12472", "0.0", "3.504", "1682834411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12472", "0.0", "1.752", "1682834411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12472", "0.0", "3.504", "1682834411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12473", "0.0", "1.752", "1682838011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12473", "0.0", "3.504", "1682838011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12473", "0.0", "1.752", "1682838011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12473", "0.0", "3.504", "1682838011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12474", "0.0", "1.752", "1682841611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12474", "0.0", "3.504", "1682841611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12474", "0.0", "1.752", "1682841611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12474", "0.0", "3.504", "1682841611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12475", "0.0", "1.752", "1682845211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12475", "0.0", "3.504", "1682845211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12475", "0.0", "1.752", "1682845211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12475", "0.0", "3.504", "1682845211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12476", "0.0", "1.752", "1682848811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12476", "0.0", "3.504", "1682848811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12476", "0.0", "1.752", "1682848811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12476", "0.0", "3.504", "1682848811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12477", "0.0", "1.752", "1682852411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12477", "0.0", "3.504", "1682852411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12477", "0.0", "1.752", "1682852411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12477", "0.0", "3.504", "1682852411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12478", "0.0", "1.752", "1682856011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12478", "0.0", "3.504", "1682856011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12478", "0.0", "1.752", "1682856011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12478", "0.0", "3.504", "1682856011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12479", "0.0", "1.752", "1682859611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12479", "0.0", "3.504", "1682859611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12479", "0.0", "1.752", "1682859611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12479", "0.0", "3.504", "1682859611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12480", "0.0", "1.752", "1682863211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12480", "0.0", "3.504", "1682863211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12480", "0.0", "1.752", "1682863211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12480", "0.0", "3.504", "1682863211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12481", "0.0", "1.752", "1682866811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12481", "0.0", "3.504", "1682866811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12481", "0.0", "1.752", "1682866811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12481", "0.0", "3.504", "1682866811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12482", "0.0", "1.752", "1682870423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12482", "0.0", "3.504", "1682870423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12482", "0.0", "1.752", "1682870423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12482", "0.0", "3.504", "1682870423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12483", "0.0", "1.752", "1682874011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12483", "0.0", "3.504", "1682874011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12483", "0.0", "1.752", "1682874011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12483", "0.0", "3.504", "1682874011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12484", "0.0", "1.752", "1682877623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12484", "0.0", "3.504", "1682877623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12484", "0.0", "1.752", "1682877623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12484", "0.0", "3.504", "1682877623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12485", "0.0", "1.752", "1682881211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12485", "0.0", "3.504", "1682881211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12485", "0.0", "1.752", "1682881211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12485", "0.0", "3.504", "1682881211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12486", "0.0", "1.752", "1682884811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12486", "0.0", "3.504", "1682884811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12486", "0.0", "1.752", "1682884811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12486", "0.0", "3.504", "1682884811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12487", "0.0", "1.752", "1682888411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12487", "0.0", "3.504", "1682888411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12487", "0.0", "1.752", "1682888411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12487", "0.0", "3.504", "1682888411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12488", "0.0", "1.752", "1682892011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12488", "0.0", "3.504", "1682892011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12488", "0.0", "1.752", "1682892011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12488", "0.0", "3.504", "1682892011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12489", "0.0", "1.752", "1682895635"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12489", "0.0", "3.504", "1682895635"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12489", "0.0", "1.752", "1682895635"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12489", "0.0", "3.504", "1682895635"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12490", "0.0", "1.752", "1682899235"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12490", "0.0", "3.504", "1682899235"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12490", "0.0", "1.752", "1682899235"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12490", "0.0", "3.504", "1682899235"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12491", "0.0", "1.752", "1682902811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12491", "0.0", "3.504", "1682902811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12491", "0.0", "1.752", "1682902811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12491", "0.0", "3.504", "1682902811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12492", "0.0", "1.752", "1682906411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12492", "0.0", "3.504", "1682906411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12492", "0.0", "1.752", "1682906411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12492", "0.0", "3.504", "1682906411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12493", "0.0", "1.752", "1682910011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12493", "0.0", "3.504", "1682910011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12493", "0.0", "1.752", "1682910011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12493", "0.0", "3.504", "1682910011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12494", "0.0", "1.752", "1682913611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12494", "0.0", "3.504", "1682913611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12494", "0.0", "1.752", "1682913611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12494", "0.0", "3.504", "1682913611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12495", "0.0", "1.752", "1682917211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12495", "0.0", "3.504", "1682917211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12495", "0.0", "1.752", "1682917211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12495", "0.0", "3.504", "1682917211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12496", "0.0", "1.752", "1682920811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12496", "0.0", "3.504", "1682920811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12496", "0.0", "1.752", "1682920811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12496", "0.0", "3.504", "1682920811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12497", "0.0", "1.752", "1682924411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12497", "0.0", "3.504", "1682924411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12497", "0.0", "1.752", "1682924411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12497", "0.0", "3.504", "1682924411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12498", "0.0", "1.752", "1682928011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12498", "0.0", "3.504", "1682928011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12498", "0.0", "1.752", "1682928011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12498", "0.0", "3.504", "1682928011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12499", "0.0", "1.752", "1682931611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12499", "0.0", "3.504", "1682931611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12499", "0.0", "1.752", "1682931611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12499", "0.0", "3.504", "1682931611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12500", "0.0", "1.752", "1682935211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12500", "0.0", "3.504", "1682935211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12500", "0.0", "1.752", "1682935211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12500", "0.0", "3.504", "1682935211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12501", "0.0", "1.752", "1682938823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12501", "0.0", "3.504", "1682938823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12501", "0.0", "1.752", "1682938823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12501", "0.0", "3.504", "1682938823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12502", "0.0", "1.752", "1682942411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12502", "0.0", "3.504", "1682942411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12502", "0.0", "1.752", "1682942411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12502", "0.0", "3.504", "1682942411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12503", "0.0", "1.752", "1682946011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12503", "0.0", "3.504", "1682946011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12503", "0.0", "1.752", "1682946011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12503", "0.0", "3.504", "1682946011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12504", "0.0", "1.752", "1682949659"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12504", "0.0", "3.504", "1682949659"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12504", "0.0", "1.752", "1682949659"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12504", "0.0", "3.504", "1682949659"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12505", "0.0", "1.752", "1682953271"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12505", "0.0", "3.504", "1682953271"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12505", "0.0", "1.752", "1682953271"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12505", "0.0", "3.504", "1682953271"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12506", "0.0", "1.752", "1682956835"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12506", "0.0", "3.504", "1682956835"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12506", "0.0", "1.752", "1682956835"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12506", "0.0", "3.504", "1682956835"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12507", "0.0", "1.752", "1682960411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12507", "0.0", "3.504", "1682960411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12507", "0.0", "1.752", "1682960411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12507", "0.0", "3.504", "1682960411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12508", "0.0", "1.752", "1682964023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12508", "0.0", "3.504", "1682964023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12508", "0.0", "1.752", "1682964023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12508", "0.0", "3.504", "1682964023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12509", "0.0", "1.752", "1682967635"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12509", "0.0", "3.504", "1682967635"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12509", "0.0", "1.752", "1682967635"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12509", "0.0", "3.504", "1682967635"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12510", "0.0", "1.752", "1682971235"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12510", "0.0", "3.504", "1682971235"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12510", "0.0", "1.752", "1682971235"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12510", "0.0", "3.504", "1682971235"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12511", "0.0", "1.752", "1682974823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12511", "0.0", "3.504", "1682974823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12511", "0.0", "1.752", "1682974823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12511", "0.0", "3.504", "1682974823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12512", "0.0", "1.752", "1682978435"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12512", "0.0", "3.504", "1682978435"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12512", "0.0", "1.752", "1682978435"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12512", "0.0", "3.504", "1682978435"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12513", "0.0", "1.752", "1682982023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12513", "0.0", "3.504", "1682982023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12513", "0.0", "1.752", "1682982023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12513", "0.0", "3.504", "1682982023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12514", "0.0", "1.752", "1682985611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12514", "0.0", "3.504", "1682985611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12514", "0.0", "1.752", "1682985611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12514", "0.0", "3.504", "1682985611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12515", "0.0", "1.752", "1682989235"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12515", "0.0", "3.504", "1682989235"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12515", "0.0", "1.752", "1682989235"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12515", "0.0", "3.504", "1682989235"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12516", "0.0", "1.752", "1682992811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12516", "0.0", "3.504", "1682992811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12516", "0.0", "1.752", "1682992811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12516", "0.0", "3.504", "1682992811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12517", "0.0", "1.752", "1682996411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12517", "0.0", "3.504", "1682996411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12517", "0.0", "1.752", "1682996411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12517", "0.0", "3.504", "1682996411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12518", "0.0", "1.752", "1683000035"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12518", "0.0", "3.504", "1683000035"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12518", "0.0", "1.752", "1683000035"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12518", "0.0", "3.504", "1683000035"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12519", "0.0", "1.752", "1683003659"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12519", "0.0", "3.504", "1683003659"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12519", "0.0", "1.752", "1683003659"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12519", "0.0", "3.504", "1683003659"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12520", "0.0", "1.752", "1683007223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12520", "0.0", "3.504", "1683007223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12520", "0.0", "1.752", "1683007223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12520", "0.0", "3.504", "1683007223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12521", "0.0", "1.752", "1683010811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12521", "0.0", "3.504", "1683010811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12521", "0.0", "1.752", "1683010811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12521", "0.0", "3.504", "1683010811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12522", "0.0", "1.752", "1683014411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12522", "0.0", "3.504", "1683014411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12522", "0.0", "1.752", "1683014411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12522", "0.0", "3.504", "1683014411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12523", "0.0", "1.752", "1683018011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12523", "0.0", "3.504", "1683018011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12523", "0.0", "1.752", "1683018011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12523", "0.0", "3.504", "1683018011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12524", "0.0", "1.752", "1683021635"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12524", "0.0", "3.504", "1683021635"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12524", "0.0", "1.752", "1683021635"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12524", "0.0", "3.504", "1683021635"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12525", "0.0", "1.752", "1683025211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12525", "0.0", "3.504", "1683025211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12525", "0.0", "1.752", "1683025211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12525", "0.0", "3.504", "1683025211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12526", "0.0", "1.752", "1683028811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12526", "0.0", "3.504", "1683028811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12526", "0.0", "1.752", "1683028811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12526", "0.0", "3.504", "1683028811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12527", "0.0", "1.752", "1683032435"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12527", "0.0", "3.504", "1683032435"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12527", "0.0", "1.752", "1683032435"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12527", "0.0", "3.504", "1683032435"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12528", "0.0", "1.752", "1683036071"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12528", "0.0", "3.504", "1683036071"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12528", "0.0", "1.752", "1683036071"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12528", "0.0", "3.504", "1683036071"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12529", "0.0", "1.752", "1683039635"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12529", "0.0", "3.504", "1683039635"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12529", "0.0", "1.752", "1683039635"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12529", "0.0", "3.504", "1683039635"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12530", "0.0", "1.752", "1683043259"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12530", "0.0", "3.504", "1683043259"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12530", "0.0", "1.752", "1683043259"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12530", "0.0", "3.504", "1683043259"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12531", "0.0", "1.752", "1683046907"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12531", "0.0", "3.504", "1683046907"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12531", "0.0", "1.752", "1683046907"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12531", "0.0", "3.504", "1683046907"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12532", "0.0", "1.752", "1683050507"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12532", "0.0", "3.504", "1683050507"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12532", "0.0", "1.752", "1683050507"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12532", "0.0", "3.504", "1683050507"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12533", "0.0", "1.752", "1683054155"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12533", "0.0", "3.504", "1683054155"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12533", "0.0", "1.752", "1683054155"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12533", "0.0", "3.504", "1683054155"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12534", "0.0", "1.752", "1683057647"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12534", "0.0", "3.504", "1683057647"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12534", "0.0", "1.752", "1683057647"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12534", "0.0", "3.504", "1683057647"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12535", "0.0", "1.752", "1683061391"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12535", "0.0", "3.504", "1683061391"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12535", "0.0", "1.752", "1683061391"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12535", "0.0", "3.504", "1683061391"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12536", "0.0", "1.752", "1683064859"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12536", "0.0", "3.504", "1683064859"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12536", "0.0", "1.752", "1683064859"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12536", "0.0", "3.504", "1683064859"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12537", "0.0", "1.752", "1683068471"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12537", "0.0", "3.504", "1683068471"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12537", "0.0", "1.752", "1683068471"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12537", "0.0", "3.504", "1683068471"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12538", "0.0", "1.752", "1683072155"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12538", "0.0", "3.504", "1683072155"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12538", "0.0", "1.752", "1683072155"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12538", "0.0", "3.504", "1683072155"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12539", "0.0", "1.752", "1683075659"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12539", "0.0", "3.504", "1683075659"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12539", "0.0", "1.752", "1683075659"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12539", "0.0", "3.504", "1683075659"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12540", "0.0", "1.752", "1683079331"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12540", "0.0", "3.504", "1683079331"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12540", "0.0", "1.752", "1683079331"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12540", "0.0", "3.504", "1683079331"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12541", "0.0", "1.752", "1683082979"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12541", "0.0", "3.504", "1683082979"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12541", "0.0", "1.752", "1683082979"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12541", "0.0", "3.504", "1683082979"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12542", "0.0", "1.752", "1683086459"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12542", "0.0", "3.504", "1683086459"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12542", "0.0", "1.752", "1683086459"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12542", "0.0", "3.504", "1683086459"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12543", "0.0", "1.752", "1683090131"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12543", "0.0", "3.504", "1683090131"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12543", "0.0", "1.752", "1683090131"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12543", "0.0", "3.504", "1683090131"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12544", "0.0", "1.752", "1683093611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12544", "0.0", "3.504", "1683093611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12544", "0.0", "1.752", "1683093611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12544", "0.0", "3.504", "1683093611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12545", "0.0", "1.752", "1683097211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12545", "0.0", "3.504", "1683097211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12545", "0.0", "1.752", "1683097211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12545", "0.0", "3.504", "1683097211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12546", "0.0", "1.752", "1683100811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12546", "0.0", "3.504", "1683100811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12546", "0.0", "1.752", "1683100811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12546", "0.0", "3.504", "1683100811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12547", "0.0", "1.752", "1683104411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12547", "0.0", "3.504", "1683104411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12547", "0.0", "1.752", "1683104411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12547", "0.0", "3.504", "1683104411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12548", "0.0", "1.752", "1683108023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12548", "0.0", "3.504", "1683108023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12548", "0.0", "1.752", "1683108023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12548", "0.0", "3.504", "1683108023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12549", "0.0", "1.752", "1683111611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12549", "0.0", "3.504", "1683111611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12549", "0.0", "1.752", "1683111611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12549", "0.0", "3.504", "1683111611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12550", "0.0", "1.752", "1683115223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12550", "0.0", "3.504", "1683115223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12550", "0.0", "1.752", "1683115223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12550", "0.0", "3.504", "1683115223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12551", "0.0", "1.752", "1683119027"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12551", "0.0", "3.504", "1683119027"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12551", "0.0", "1.752", "1683119027"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12551", "0.0", "3.504", "1683119027"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12552", "0.0", "1.752", "1683122435"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12552", "0.0", "3.504", "1683122435"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12552", "0.0", "1.752", "1683122435"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12552", "0.0", "3.504", "1683122435"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12553", "0.0", "1.752", "1683126059"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12553", "0.0", "3.504", "1683126059"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12553", "0.0", "1.752", "1683126059"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12553", "0.0", "3.504", "1683126059"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12554", "0.0", "1.752", "1683129647"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12554", "0.0", "3.504", "1683129647"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12554", "0.0", "1.752", "1683129647"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12554", "0.0", "3.504", "1683129647"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12555", "0.0", "1.752", "1683133235"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12555", "0.0", "3.504", "1683133235"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12555", "0.0", "1.752", "1683133235"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12555", "0.0", "3.504", "1683133235"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12556", "0.0", "1.752", "1683136859"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12556", "0.0", "3.504", "1683136859"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12556", "0.0", "1.752", "1683136859"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12556", "0.0", "3.504", "1683136859"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12557", "0.0", "1.752", "1683140435"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12557", "0.0", "3.504", "1683140435"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12557", "0.0", "1.752", "1683140435"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12557", "0.0", "3.504", "1683140435"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12558", "0.0", "1.752", "1683144011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12558", "0.0", "3.504", "1683144011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12558", "0.0", "1.752", "1683144011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12558", "0.0", "3.504", "1683144011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12559", "0.0", "1.752", "1683147611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12559", "0.0", "3.504", "1683147611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12559", "0.0", "1.752", "1683147611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12559", "0.0", "3.504", "1683147611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12560", "0.0", "1.752", "1683151247"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12560", "0.0", "3.504", "1683151247"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12560", "0.0", "1.752", "1683151247"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12560", "0.0", "3.504", "1683151247"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12561", "0.0", "1.752", "1683154811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12561", "0.0", "3.504", "1683154811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12561", "0.0", "1.752", "1683154811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12561", "0.0", "3.504", "1683154811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12562", "0.0", "1.752", "1683158411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12562", "0.0", "3.504", "1683158411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12562", "0.0", "1.752", "1683158411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12562", "0.0", "3.504", "1683158411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12563", "0.0", "1.752", "1683162071"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12563", "0.0", "3.504", "1683162071"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12563", "0.0", "1.752", "1683162071"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12563", "0.0", "3.504", "1683162071"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12564", "0.0", "1.752", "1683165647"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12564", "0.0", "3.504", "1683165647"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12564", "0.0", "1.752", "1683165647"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12564", "0.0", "3.504", "1683165647"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12565", "0.0", "1.752", "1683169235"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12565", "0.0", "3.504", "1683169235"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12565", "0.0", "1.752", "1683169235"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12565", "0.0", "3.504", "1683169235"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12566", "0.0", "1.752", "1683172811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12566", "0.0", "3.504", "1683172811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12566", "0.0", "1.752", "1683172811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12566", "0.0", "3.504", "1683172811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12567", "0.0", "1.752", "1683176411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12567", "0.0", "3.504", "1683176411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12567", "0.0", "1.752", "1683176411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12567", "0.0", "3.504", "1683176411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12568", "0.0", "1.752", "1683180011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12568", "0.0", "3.504", "1683180011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12568", "0.0", "1.752", "1683180011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12568", "0.0", "3.504", "1683180011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12569", "0.0", "1.752", "1683183611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12569", "0.0", "3.504", "1683183611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12569", "0.0", "1.752", "1683183611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12569", "0.0", "3.504", "1683183611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12570", "0.0", "1.752", "1683187235"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12570", "0.0", "3.504", "1683187235"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12570", "0.0", "1.752", "1683187235"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12570", "0.0", "3.504", "1683187235"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12571", "0.0", "1.752", "1683190811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12571", "0.0", "3.504", "1683190811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12571", "0.0", "1.752", "1683190811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12571", "0.0", "3.504", "1683190811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12572", "0.0", "1.752", "1683194423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12572", "0.0", "3.504", "1683194423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12572", "0.0", "1.752", "1683194423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12572", "0.0", "3.504", "1683194423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12573", "0.0", "1.752", "1683198047"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12573", "0.0", "3.504", "1683198047"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12573", "0.0", "1.752", "1683198047"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12573", "0.0", "3.504", "1683198047"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12574", "0.0", "1.752", "1683201611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12574", "0.0", "3.504", "1683201611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12574", "0.0", "1.752", "1683201611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12574", "0.0", "3.504", "1683201611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12575", "0.0", "1.752", "1683205235"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12575", "0.0", "3.504", "1683205235"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12575", "0.0", "1.752", "1683205235"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12575", "0.0", "3.504", "1683205235"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12576", "0.0", "1.752", "1683208871"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12576", "0.0", "3.504", "1683208871"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12576", "0.0", "1.752", "1683208871"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12576", "0.0", "3.504", "1683208871"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12577", "0.0", "1.752", "1683212447"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12577", "0.0", "3.504", "1683212447"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12577", "0.0", "1.752", "1683212447"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12577", "0.0", "3.504", "1683212447"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12578", "0.0", "1.752", "1683216263"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12578", "0.0", "3.504", "1683216263"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12578", "0.0", "1.752", "1683216263"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12578", "0.0", "3.504", "1683216263"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12579", "0.0", "1.752", "1683219947"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12579", "0.0", "3.504", "1683219947"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12579", "0.0", "1.752", "1683219947"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12579", "0.0", "3.504", "1683219947"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12580", "0.0", "1.752", "1683223511"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12580", "0.0", "3.504", "1683223511"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12580", "0.0", "1.752", "1683223511"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12580", "0.0", "3.504", "1683223511"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12581", "0.0", "1.752", "1683226835"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12581", "0.0", "3.504", "1683226835"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12581", "0.0", "1.752", "1683226835"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12581", "0.0", "3.504", "1683226835"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12582", "0.0", "1.752", "1683230411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12582", "0.0", "3.504", "1683230411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12582", "0.0", "1.752", "1683230411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12582", "0.0", "3.504", "1683230411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12583", "0.0", "1.752", "1683234023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12583", "0.0", "3.504", "1683234023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12583", "0.0", "1.752", "1683234023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12583", "0.0", "3.504", "1683234023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12584", "0.0", "1.752", "1683237683"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12584", "0.0", "3.504", "1683237683"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12584", "0.0", "1.752", "1683237683"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12584", "0.0", "3.504", "1683237683"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12585", "0.0", "1.752", "1683241235"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12585", "0.0", "3.504", "1683241235"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12585", "0.0", "1.752", "1683241235"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12585", "0.0", "3.504", "1683241235"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12586", "0.0", "1.752", "1683244919"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12586", "0.0", "3.504", "1683244919"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12586", "0.0", "1.752", "1683244919"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12586", "0.0", "3.504", "1683244919"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12587", "0.0", "1.752", "1683248519"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12587", "0.0", "3.504", "1683248519"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12587", "0.0", "1.752", "1683248519"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12587", "0.0", "3.504", "1683248519"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12588", "0.0", "1.752", "1683252011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12588", "0.0", "3.504", "1683252011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12588", "0.0", "1.752", "1683252011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12588", "0.0", "3.504", "1683252011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12589", "0.0", "1.752", "1683255611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12589", "0.0", "3.504", "1683255611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12589", "0.0", "1.752", "1683255611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12589", "0.0", "3.504", "1683255611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12590", "0.0", "1.752", "1683259211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12590", "0.0", "3.504", "1683259211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12590", "0.0", "1.752", "1683259211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12590", "0.0", "3.504", "1683259211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12591", "0.0", "1.752", "1683262811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12591", "0.0", "3.504", "1683262811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12591", "0.0", "1.752", "1683262811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12591", "0.0", "3.504", "1683262811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12592", "0.0", "1.752", "1683266411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12592", "0.0", "3.504", "1683266411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12592", "0.0", "1.752", "1683266411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12592", "0.0", "3.504", "1683266411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12593", "0.0", "1.752", "1683270011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12593", "0.0", "3.504", "1683270011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12593", "0.0", "1.752", "1683270011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12593", "0.0", "3.504", "1683270011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12594", "0.0", "1.752", "1683273611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12594", "0.0", "3.504", "1683273611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12594", "0.0", "1.752", "1683273611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12594", "0.0", "3.504", "1683273611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12595", "0.0", "1.752", "1683277211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12595", "0.0", "3.504", "1683277211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12595", "0.0", "1.752", "1683277211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12595", "0.0", "3.504", "1683277211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12596", "0.0", "1.752", "1683280811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12596", "0.0", "3.504", "1683280811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12596", "0.0", "1.752", "1683280811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12596", "0.0", "3.504", "1683280811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12597", "0.0", "1.752", "1683284411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12597", "0.0", "3.504", "1683284411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12597", "0.0", "1.752", "1683284411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12597", "0.0", "3.504", "1683284411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12598", "0.0", "1.752", "1683288011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12598", "0.0", "3.504", "1683288011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12598", "0.0", "1.752", "1683288011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12598", "0.0", "3.504", "1683288011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12599", "0.0", "1.752", "1683291611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12599", "0.0", "3.504", "1683291611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12599", "0.0", "1.752", "1683291611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12599", "0.0", "3.504", "1683291611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12600", "0.0", "1.752", "1683295211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12600", "0.0", "3.504", "1683295211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12600", "0.0", "1.752", "1683295211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12600", "0.0", "3.504", "1683295211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12601", "0.0", "1.752", "1683298835"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12601", "0.0", "3.504", "1683298835"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12601", "0.0", "1.752", "1683298835"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12601", "0.0", "3.504", "1683298835"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12602", "0.0", "1.752", "1683302423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12602", "0.0", "3.504", "1683302423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12602", "0.0", "1.752", "1683302423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12602", "0.0", "3.504", "1683302423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12603", "0.0", "1.752", "1683306047"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12603", "0.0", "3.504", "1683306047"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12603", "0.0", "1.752", "1683306047"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12603", "0.0", "3.504", "1683306047"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12604", "0.0", "1.752", "1683309659"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12604", "0.0", "3.504", "1683309659"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12604", "0.0", "1.752", "1683309659"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12604", "0.0", "3.504", "1683309659"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12605", "0.0", "1.752", "1683313247"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12605", "0.0", "3.504", "1683313247"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12605", "0.0", "1.752", "1683313247"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12605", "0.0", "3.504", "1683313247"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12606", "0.0", "1.752", "1683316811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12606", "0.0", "3.504", "1683316811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12606", "0.0", "1.752", "1683316811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12606", "0.0", "3.504", "1683316811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12607", "0.0", "1.752", "1683320411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12607", "0.0", "3.504", "1683320411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12607", "0.0", "1.752", "1683320411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12607", "0.0", "3.504", "1683320411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12608", "0.0", "1.752", "1683324023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12608", "0.0", "3.504", "1683324023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12608", "0.0", "1.752", "1683324023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12608", "0.0", "3.504", "1683324023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12609", "0.0", "1.752", "1683327635"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12609", "0.0", "3.504", "1683327635"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12609", "0.0", "1.752", "1683327635"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12609", "0.0", "3.504", "1683327635"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12610", "0.0", "1.752", "1683331211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12610", "0.0", "3.504", "1683331211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12610", "0.0", "1.752", "1683331211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12610", "0.0", "3.504", "1683331211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12611", "0.0", "1.752", "1683334811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12611", "0.0", "3.504", "1683334811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12611", "0.0", "1.752", "1683334811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12611", "0.0", "3.504", "1683334811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12612", "0.0", "1.752", "1683338411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12612", "0.0", "3.504", "1683338411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12612", "0.0", "1.752", "1683338411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12612", "0.0", "3.504", "1683338411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12613", "0.0", "1.752", "1683342023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12613", "0.0", "3.504", "1683342023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12613", "0.0", "1.752", "1683342023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12613", "0.0", "3.504", "1683342023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12614", "0.0", "1.752", "1683345611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12614", "0.0", "3.504", "1683345611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12614", "0.0", "1.752", "1683345611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12614", "0.0", "3.504", "1683345611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12615", "0.0", "1.752", "1683349211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12615", "0.0", "3.504", "1683349211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12615", "0.0", "1.752", "1683349211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12615", "0.0", "3.504", "1683349211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12616", "0.0", "1.752", "1683352811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12616", "0.0", "3.504", "1683352811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12616", "0.0", "1.752", "1683352811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12616", "0.0", "3.504", "1683352811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12617", "0.0", "1.752", "1683356411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12617", "0.0", "3.504", "1683356411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12617", "0.0", "1.752", "1683356411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12617", "0.0", "3.504", "1683356411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12618", "0.0", "1.752", "1683360011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12618", "0.0", "3.504", "1683360011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12618", "0.0", "1.752", "1683360011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12618", "0.0", "3.504", "1683360011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12619", "0.0", "1.752", "1683363611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12619", "0.0", "3.504", "1683363611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12619", "0.0", "1.752", "1683363611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12619", "0.0", "3.504", "1683363611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12620", "0.0", "1.752", "1683367223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12620", "0.0", "3.504", "1683367223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12620", "0.0", "1.752", "1683367223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12620", "0.0", "3.504", "1683367223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12621", "0.0", "1.752", "1683370811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12621", "0.0", "3.504", "1683370811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12621", "0.0", "1.752", "1683370811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12621", "0.0", "3.504", "1683370811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12622", "0.0", "1.752", "1683374411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12622", "0.0", "3.504", "1683374411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12622", "0.0", "1.752", "1683374411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12622", "0.0", "3.504", "1683374411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12623", "0.0", "1.752", "1683378011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12623", "0.0", "3.504", "1683378011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12623", "0.0", "1.752", "1683378011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12623", "0.0", "3.504", "1683378011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12624", "0.0", "1.752", "1683381611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12624", "0.0", "3.504", "1683381611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12624", "0.0", "1.752", "1683381611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12624", "0.0", "3.504", "1683381611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12625", "0.0", "1.752", "1683385223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12625", "0.0", "3.504", "1683385223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12625", "0.0", "1.752", "1683385223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12625", "0.0", "3.504", "1683385223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12626", "0.0", "1.752", "1683388823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12626", "0.0", "3.504", "1683388823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12626", "0.0", "1.752", "1683388823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12626", "0.0", "3.504", "1683388823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12627", "0.0", "1.752", "1683392699"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12627", "0.0", "3.504", "1683392699"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12627", "0.0", "1.752", "1683392699"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12627", "0.0", "3.504", "1683392699"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12628", "0.0", "1.752", "1683396311"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12628", "0.0", "3.504", "1683396311"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12628", "0.0", "1.752", "1683396311"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12628", "0.0", "3.504", "1683396311"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12629", "0.0", "1.752", "1683399635"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12629", "0.0", "3.504", "1683399635"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12629", "0.0", "1.752", "1683399635"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12629", "0.0", "3.504", "1683399635"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12630", "0.0", "1.752", "1683403247"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12630", "0.0", "3.504", "1683403247"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12630", "0.0", "1.752", "1683403247"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12630", "0.0", "3.504", "1683403247"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12631", "0.0", "1.752", "1683406835"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12631", "0.0", "3.504", "1683406835"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12631", "0.0", "1.752", "1683406835"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12631", "0.0", "3.504", "1683406835"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12632", "0.0", "1.752", "1683410423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12632", "0.0", "3.504", "1683410423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12632", "0.0", "1.752", "1683410423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12632", "0.0", "3.504", "1683410423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12633", "0.0", "1.752", "1683414011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12633", "0.0", "3.504", "1683414011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12633", "0.0", "1.752", "1683414011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12633", "0.0", "3.504", "1683414011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12634", "0.0", "1.752", "1683417611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12634", "0.0", "3.504", "1683417611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12634", "0.0", "1.752", "1683417611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12634", "0.0", "3.504", "1683417611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12635", "0.0", "1.752", "1683421211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12635", "0.0", "3.504", "1683421211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12635", "0.0", "1.752", "1683421211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12635", "0.0", "3.504", "1683421211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12636", "0.0", "1.752", "1683424811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12636", "0.0", "3.504", "1683424811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12636", "0.0", "1.752", "1683424811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12636", "0.0", "3.504", "1683424811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12637", "0.0", "1.752", "1683428411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12637", "0.0", "3.504", "1683428411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12637", "0.0", "1.752", "1683428411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12637", "0.0", "3.504", "1683428411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12638", "0.0", "1.752", "1683432011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12638", "0.0", "3.504", "1683432011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12638", "0.0", "1.752", "1683432011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12638", "0.0", "3.504", "1683432011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12639", "0.0", "1.752", "1683435611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12639", "0.0", "3.504", "1683435611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12639", "0.0", "1.752", "1683435611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12639", "0.0", "3.504", "1683435611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12640", "0.0", "1.752", "1683439211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12640", "0.0", "3.504", "1683439211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12640", "0.0", "1.752", "1683439211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12640", "0.0", "3.504", "1683439211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12641", "0.0", "1.752", "1683442811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12641", "0.0", "3.504", "1683442811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12641", "0.0", "1.752", "1683442811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12641", "0.0", "3.504", "1683442811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12642", "0.0", "1.752", "1683446411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12642", "0.0", "3.504", "1683446411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12642", "0.0", "1.752", "1683446411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12642", "0.0", "3.504", "1683446411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12643", "0.0", "1.752", "1683450011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12643", "0.0", "3.504", "1683450011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12643", "0.0", "1.752", "1683450011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12643", "0.0", "3.504", "1683450011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12644", "0.0", "1.752", "1683453611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12644", "0.0", "3.504", "1683453611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12644", "0.0", "1.752", "1683453611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12644", "0.0", "3.504", "1683453611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12645", "0.0", "1.752", "1683457211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12645", "0.0", "3.504", "1683457211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12645", "0.0", "1.752", "1683457211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12645", "0.0", "3.504", "1683457211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12646", "0.0", "1.752", "1683460823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12646", "0.0", "3.504", "1683460823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12646", "0.0", "1.752", "1683460823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12646", "0.0", "3.504", "1683460823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12647", "0.0", "1.752", "1683464411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12647", "0.0", "3.504", "1683464411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12647", "0.0", "1.752", "1683464411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12647", "0.0", "3.504", "1683464411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12648", "0.0", "1.752", "1683468011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12648", "0.0", "3.504", "1683468011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12648", "0.0", "1.752", "1683468011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12648", "0.0", "3.504", "1683468011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12649", "0.0", "1.752", "1683471611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12649", "0.0", "3.504", "1683471611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12649", "0.0", "1.752", "1683471611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12649", "0.0", "3.504", "1683471611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12650", "0.0", "1.752", "1683475211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12650", "0.0", "3.504", "1683475211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12650", "0.0", "1.752", "1683475211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12650", "0.0", "3.504", "1683475211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12651", "0.0", "1.752", "1683478811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12651", "0.0", "3.504", "1683478811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12651", "0.0", "1.752", "1683478811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12651", "0.0", "3.504", "1683478811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12652", "0.0", "1.752", "1683482435"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12652", "0.0", "3.504", "1683482435"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12652", "0.0", "1.752", "1683482435"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12652", "0.0", "3.504", "1683482435"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12653", "0.0", "1.752", "1683486011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12653", "0.0", "3.504", "1683486011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12653", "0.0", "1.752", "1683486011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12653", "0.0", "3.504", "1683486011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12654", "0.0", "1.752", "1683489611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12654", "0.0", "3.504", "1683489611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12654", "0.0", "1.752", "1683489611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12654", "0.0", "3.504", "1683489611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12655", "0.0", "1.752", "1683493223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12655", "0.0", "3.504", "1683493223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12655", "0.0", "1.752", "1683493223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12655", "0.0", "3.504", "1683493223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12656", "0.0", "1.752", "1683496811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12656", "0.0", "3.504", "1683496811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12656", "0.0", "1.752", "1683496811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12656", "0.0", "3.504", "1683496811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12657", "0.0", "1.752", "1683500435"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12657", "0.0", "3.504", "1683500435"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12657", "0.0", "1.752", "1683500435"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12657", "0.0", "3.504", "1683500435"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12658", "0.0", "1.752", "1683504023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12658", "0.0", "3.504", "1683504023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12658", "0.0", "1.752", "1683504023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12658", "0.0", "3.504", "1683504023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12659", "0.0", "1.752", "1683507611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12659", "0.0", "3.504", "1683507611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12659", "0.0", "1.752", "1683507611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12659", "0.0", "3.504", "1683507611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12660", "0.0", "1.752", "1683511211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12660", "0.0", "3.504", "1683511211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12660", "0.0", "1.752", "1683511211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12660", "0.0", "3.504", "1683511211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12661", "0.0", "1.752", "1683514811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12661", "0.0", "3.504", "1683514811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12661", "0.0", "1.752", "1683514811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12661", "0.0", "3.504", "1683514811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12662", "0.0", "1.752", "1683518411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12662", "0.0", "3.504", "1683518411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12662", "0.0", "1.752", "1683518411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12662", "0.0", "3.504", "1683518411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12663", "0.0", "1.752", "1683522011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12663", "0.0", "3.504", "1683522011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12663", "0.0", "1.752", "1683522011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12663", "0.0", "3.504", "1683522011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12664", "0.0", "1.752", "1683525611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12664", "0.0", "3.504", "1683525611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12664", "0.0", "1.752", "1683525611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12664", "0.0", "3.504", "1683525611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12665", "0.0", "1.752", "1683529211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12665", "0.0", "3.504", "1683529211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12665", "0.0", "1.752", "1683529211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12665", "0.0", "3.504", "1683529211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12666", "0.0", "1.752", "1683532811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12666", "0.0", "3.504", "1683532811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12666", "0.0", "1.752", "1683532811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12666", "0.0", "3.504", "1683532811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12667", "0.0", "1.752", "1683536447"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12667", "0.0", "3.504", "1683536447"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12667", "0.0", "1.752", "1683536447"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12667", "0.0", "3.504", "1683536447"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12668", "0.0", "1.752", "1683540011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12668", "0.0", "3.504", "1683540011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12668", "0.0", "1.752", "1683540011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12668", "0.0", "3.504", "1683540011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12669", "0.0", "1.752", "1683543611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12669", "0.0", "3.504", "1683543611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12669", "0.0", "1.752", "1683543611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12669", "0.0", "3.504", "1683543611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12670", "0.0", "1.752", "1683547211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12670", "0.0", "3.504", "1683547211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12670", "0.0", "1.752", "1683547211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12670", "0.0", "3.504", "1683547211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12671", "0.0", "1.752", "1683550823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12671", "0.0", "3.504", "1683550823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12671", "0.0", "1.752", "1683550823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12671", "0.0", "3.504", "1683550823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12672", "0.0", "1.752", "1683554423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12672", "0.0", "3.504", "1683554423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12672", "0.0", "1.752", "1683554423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12672", "0.0", "3.504", "1683554423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12673", "0.0", "1.752", "1683558011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12673", "0.0", "3.504", "1683558011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12673", "0.0", "1.752", "1683558011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12673", "0.0", "3.504", "1683558011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12674", "0.0", "1.752", "1683561611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12674", "0.0", "3.504", "1683561611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12674", "0.0", "1.752", "1683561611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12674", "0.0", "3.504", "1683561611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12675", "0.0", "1.752", "1683565211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12675", "0.0", "3.504", "1683565211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12675", "0.0", "1.752", "1683565211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12675", "0.0", "3.504", "1683565211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12676", "0.0", "1.752", "1683568823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12676", "0.0", "3.504", "1683568823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12676", "0.0", "1.752", "1683568823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12676", "0.0", "3.504", "1683568823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12677", "0.0", "1.752", "1683572411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12677", "0.0", "3.504", "1683572411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12677", "0.0", "1.752", "1683572411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12677", "0.0", "3.504", "1683572411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12678", "0.0", "1.752", "1683576011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12678", "0.0", "3.504", "1683576011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12678", "0.0", "1.752", "1683576011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12678", "0.0", "3.504", "1683576011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12679", "0.0", "1.752", "1683579611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12679", "0.0", "3.504", "1683579611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12679", "0.0", "1.752", "1683579611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12679", "0.0", "3.504", "1683579611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12680", "0.0", "1.752", "1683583223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12680", "0.0", "3.504", "1683583223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12680", "0.0", "1.752", "1683583223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12680", "0.0", "3.504", "1683583223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12681", "0.0", "1.752", "1683586811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12681", "0.0", "3.504", "1683586811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12681", "0.0", "1.752", "1683586811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12681", "0.0", "3.504", "1683586811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12682", "0.0", "1.752", "1683590411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12682", "0.0", "3.504", "1683590411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12682", "0.0", "1.752", "1683590411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12682", "0.0", "3.504", "1683590411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12683", "0.0", "1.752", "1683594011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12683", "0.0", "3.504", "1683594011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12683", "0.0", "1.752", "1683594011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12683", "0.0", "3.504", "1683594011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12684", "0.0", "1.752", "1683597611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12684", "0.0", "3.504", "1683597611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12684", "0.0", "1.752", "1683597611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12684", "0.0", "3.504", "1683597611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12685", "0.0", "1.752", "1683601211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12685", "0.0", "3.504", "1683601211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12685", "0.0", "1.752", "1683601211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12685", "0.0", "3.504", "1683601211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12686", "0.0", "1.752", "1683604811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12686", "0.0", "3.504", "1683604811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12686", "0.0", "1.752", "1683604811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12686", "0.0", "3.504", "1683604811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12687", "0.0", "1.752", "1683608411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12687", "0.0", "3.504", "1683608411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12687", "0.0", "1.752", "1683608411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12687", "0.0", "3.504", "1683608411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12688", "0.0", "1.752", "1683612023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12688", "0.0", "3.504", "1683612023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12688", "0.0", "1.752", "1683612023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12688", "0.0", "3.504", "1683612023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12689", "0.0", "1.752", "1683615611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12689", "0.0", "3.504", "1683615611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12689", "0.0", "1.752", "1683615611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12689", "0.0", "3.504", "1683615611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12690", "0.0", "1.752", "1683619211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12690", "0.0", "3.504", "1683619211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12690", "0.0", "1.752", "1683619211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12690", "0.0", "3.504", "1683619211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12691", "0.0", "1.752", "1683622811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12691", "0.0", "3.504", "1683622811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12691", "0.0", "1.752", "1683622811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12691", "0.0", "3.504", "1683622811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12692", "0.0", "1.752", "1683626411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12692", "0.0", "3.504", "1683626411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12692", "0.0", "1.752", "1683626411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12692", "0.0", "3.504", "1683626411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12693", "0.0", "1.752", "1683630011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12693", "0.0", "3.504", "1683630011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12693", "0.0", "1.752", "1683630011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12693", "0.0", "3.504", "1683630011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12694", "0.0", "1.752", "1683633623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12694", "0.0", "3.504", "1683633623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12694", "0.0", "1.752", "1683633623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12694", "0.0", "3.504", "1683633623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12695", "0.0", "1.752", "1683637211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12695", "0.0", "3.504", "1683637211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12695", "0.0", "1.752", "1683637211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12695", "0.0", "3.504", "1683637211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12696", "0.0", "1.752", "1683640811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12696", "0.0", "3.504", "1683640811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12696", "0.0", "1.752", "1683640811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12696", "0.0", "3.504", "1683640811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12697", "0.0", "1.752", "1683644411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12697", "0.0", "3.504", "1683644411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12697", "0.0", "1.752", "1683644411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12697", "0.0", "3.504", "1683644411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12698", "0.0", "1.752", "1683648011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12698", "0.0", "3.504", "1683648011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12698", "0.0", "1.752", "1683648011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12698", "0.0", "3.504", "1683648011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12699", "0.0", "1.752", "1683651623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12699", "0.0", "3.504", "1683651623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12699", "0.0", "1.752", "1683651623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12699", "0.0", "3.504", "1683651623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12700", "0.0", "1.752", "1683655211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12700", "0.0", "3.504", "1683655211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12700", "0.0", "1.752", "1683655211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12700", "0.0", "3.504", "1683655211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12701", "0.0", "1.752", "1683658811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12701", "0.0", "3.504", "1683658811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12701", "0.0", "1.752", "1683658811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12701", "0.0", "3.504", "1683658811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12702", "0.0", "1.752", "1683662411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12702", "0.0", "3.504", "1683662411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12702", "0.0", "1.752", "1683662411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12702", "0.0", "3.504", "1683662411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12703", "0.0", "1.752", "1683666011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12703", "0.0", "3.504", "1683666011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12703", "0.0", "1.752", "1683666011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12703", "0.0", "3.504", "1683666011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12704", "0.0", "1.752", "1683669623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12704", "0.0", "3.504", "1683669623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12704", "0.0", "1.752", "1683669623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12704", "0.0", "3.504", "1683669623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12705", "0.0", "1.752", "1683673211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12705", "0.0", "3.504", "1683673211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12705", "0.0", "1.752", "1683673211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12705", "0.0", "3.504", "1683673211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12706", "0.0", "1.752", "1683676811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12706", "0.0", "3.504", "1683676811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12706", "0.0", "1.752", "1683676811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12706", "0.0", "3.504", "1683676811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12707", "0.0", "1.752", "1683680411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12707", "0.0", "3.504", "1683680411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12707", "0.0", "1.752", "1683680411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12707", "0.0", "3.504", "1683680411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12708", "0.0", "1.752", "1683684011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12708", "0.0", "3.504", "1683684011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12708", "0.0", "1.752", "1683684011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12708", "0.0", "3.504", "1683684011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12709", "0.0", "1.752", "1683687611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12709", "0.0", "3.504", "1683687611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12709", "0.0", "1.752", "1683687611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12709", "0.0", "3.504", "1683687611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12710", "0.0", "1.752", "1683691211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12710", "0.0", "3.504", "1683691211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12710", "0.0", "1.752", "1683691211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12710", "0.0", "3.504", "1683691211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12711", "0.0", "1.752", "1683694811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12711", "0.0", "3.504", "1683694811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12711", "0.0", "1.752", "1683694811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12711", "0.0", "3.504", "1683694811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12712", "0.0", "1.752", "1683698411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12712", "0.0", "3.504", "1683698411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12712", "0.0", "1.752", "1683698411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12712", "0.0", "3.504", "1683698411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12713", "0.0", "1.752", "1683702011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12713", "0.0", "3.504", "1683702011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12713", "0.0", "1.752", "1683702011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12713", "0.0", "3.504", "1683702011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12714", "0.0", "1.752", "1683705611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12714", "0.0", "3.504", "1683705611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12714", "0.0", "1.752", "1683705611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12714", "0.0", "3.504", "1683705611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12715", "0.0", "1.752", "1683709211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12715", "0.0", "3.504", "1683709211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12715", "0.0", "1.752", "1683709211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12715", "0.0", "3.504", "1683709211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12716", "0.0", "1.752", "1683712811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12716", "0.0", "3.504", "1683712811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12716", "0.0", "1.752", "1683712811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12716", "0.0", "3.504", "1683712811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12717", "0.0", "1.752", "1683716411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12717", "0.0", "3.504", "1683716411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12717", "0.0", "1.752", "1683716411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12717", "0.0", "3.504", "1683716411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12718", "0.0", "1.752", "1683720011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12718", "0.0", "3.504", "1683720011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12718", "0.0", "1.752", "1683720011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12718", "0.0", "3.504", "1683720011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12719", "0.0", "1.752", "1683723611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12719", "0.0", "3.504", "1683723611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12719", "0.0", "1.752", "1683723611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12719", "0.0", "3.504", "1683723611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12720", "0.0", "1.752", "1683727211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12720", "0.0", "3.504", "1683727211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12720", "0.0", "1.752", "1683727211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12720", "0.0", "3.504", "1683727211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12721", "0.0", "1.752", "1683730811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12721", "0.0", "3.504", "1683730811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12721", "0.0", "1.752", "1683730811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12721", "0.0", "3.504", "1683730811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12722", "0.0", "1.752", "1683734447"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12722", "0.0", "3.504", "1683734447"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12722", "0.0", "1.752", "1683734447"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12722", "0.0", "3.504", "1683734447"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12723", "0.0", "1.752", "1683738023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12723", "0.0", "3.504", "1683738023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12723", "0.0", "1.752", "1683738023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12723", "0.0", "3.504", "1683738023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12724", "0.0", "1.752", "1683741623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12724", "0.0", "3.504", "1683741623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12724", "0.0", "1.752", "1683741623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12724", "0.0", "3.504", "1683741623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12725", "0.0", "1.752", "1683745211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12725", "0.0", "3.504", "1683745211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12725", "0.0", "1.752", "1683745211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12725", "0.0", "3.504", "1683745211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12726", "0.0", "1.752", "1683748835"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12726", "0.0", "3.504", "1683748835"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12726", "0.0", "1.752", "1683748835"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12726", "0.0", "3.504", "1683748835"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12727", "0.0", "1.752", "1683752411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12727", "0.0", "3.504", "1683752411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12727", "0.0", "1.752", "1683752411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12727", "0.0", "3.504", "1683752411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12728", "0.0", "1.752", "1683756011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12728", "0.0", "3.504", "1683756011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12728", "0.0", "1.752", "1683756011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12728", "0.0", "3.504", "1683756011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12729", "0.0", "1.752", "1683759611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12729", "0.0", "3.504", "1683759611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12729", "0.0", "1.752", "1683759611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12729", "0.0", "3.504", "1683759611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12730", "0.0", "1.752", "1683763211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12730", "0.0", "3.504", "1683763211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12730", "0.0", "1.752", "1683763211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12730", "0.0", "3.504", "1683763211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12731", "0.0", "1.752", "1683766811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12731", "0.0", "3.504", "1683766811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12731", "0.0", "1.752", "1683766811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12731", "0.0", "3.504", "1683766811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12732", "0.0", "1.752", "1683770411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12732", "0.0", "3.504", "1683770411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12732", "0.0", "1.752", "1683770411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12732", "0.0", "3.504", "1683770411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12733", "0.0", "1.752", "1683774011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12733", "0.0", "3.504", "1683774011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12733", "0.0", "1.752", "1683774011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12733", "0.0", "3.504", "1683774011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12734", "0.0", "1.752", "1683777611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12734", "0.0", "3.504", "1683777611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12734", "0.0", "1.752", "1683777611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12734", "0.0", "3.504", "1683777611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12735", "0.0", "1.752", "1683781211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12735", "0.0", "3.504", "1683781211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12735", "0.0", "1.752", "1683781211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12735", "0.0", "3.504", "1683781211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12736", "0.0", "1.752", "1683784811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12736", "0.0", "3.504", "1683784811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12736", "0.0", "1.752", "1683784811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12736", "0.0", "3.504", "1683784811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12737", "0.0", "1.752", "1683788411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12737", "0.0", "3.504", "1683788411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12737", "0.0", "1.752", "1683788411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12737", "0.0", "3.504", "1683788411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12738", "0.0", "1.752", "1683792011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12738", "0.0", "3.504", "1683792011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12738", "0.0", "1.752", "1683792011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12738", "0.0", "3.504", "1683792011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12739", "0.0", "1.752", "1683795611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12739", "0.0", "3.504", "1683795611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12739", "0.0", "1.752", "1683795611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12739", "0.0", "3.504", "1683795611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12740", "0.0", "1.752", "1683799211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12740", "0.0", "3.504", "1683799211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12740", "0.0", "1.752", "1683799211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12740", "0.0", "3.504", "1683799211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12741", "0.0", "1.752", "1683802811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12741", "0.0", "3.504", "1683802811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12741", "0.0", "1.752", "1683802811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12741", "0.0", "3.504", "1683802811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12742", "0.0", "1.752", "1683806411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12742", "0.0", "3.504", "1683806411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12742", "0.0", "1.752", "1683806411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12742", "0.0", "3.504", "1683806411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12743", "0.0", "1.752", "1683810011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12743", "0.0", "3.504", "1683810011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12743", "0.0", "1.752", "1683810011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12743", "0.0", "3.504", "1683810011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12744", "0.0", "1.752", "1683813611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12744", "0.0", "3.504", "1683813611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12744", "0.0", "1.752", "1683813611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12744", "0.0", "3.504", "1683813611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12745", "0.0", "1.752", "1683817211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12745", "0.0", "3.504", "1683817211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12745", "0.0", "1.752", "1683817211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12745", "0.0", "3.504", "1683817211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12746", "0.0", "1.752", "1683820811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12746", "0.0", "3.504", "1683820811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12746", "0.0", "1.752", "1683820811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12746", "0.0", "3.504", "1683820811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12747", "0.0", "1.752", "1683824423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12747", "0.0", "3.504", "1683824423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12747", "0.0", "1.752", "1683824423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12747", "0.0", "3.504", "1683824423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12748", "0.0", "1.752", "1683828011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12748", "0.0", "3.504", "1683828011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12748", "0.0", "1.752", "1683828011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12748", "0.0", "3.504", "1683828011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12749", "0.0", "1.752", "1683831611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12749", "0.0", "3.504", "1683831611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12749", "0.0", "1.752", "1683831611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12749", "0.0", "3.504", "1683831611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12750", "0.0", "1.752", "1683835211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12750", "0.0", "3.504", "1683835211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12750", "0.0", "1.752", "1683835211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12750", "0.0", "3.504", "1683835211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12751", "0.0", "1.752", "1683838811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12751", "0.0", "3.504", "1683838811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12751", "0.0", "1.752", "1683838811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12751", "0.0", "3.504", "1683838811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12752", "0.0", "1.752", "1683842423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12752", "0.0", "3.504", "1683842423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12752", "0.0", "1.752", "1683842423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12752", "0.0", "3.504", "1683842423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12753", "0.0", "1.752", "1683846011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12753", "0.0", "3.504", "1683846011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12753", "0.0", "1.752", "1683846011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12753", "0.0", "3.504", "1683846011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12754", "0.0", "1.752", "1683849611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12754", "0.0", "3.504", "1683849611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12754", "0.0", "1.752", "1683849611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12754", "0.0", "3.504", "1683849611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12755", "0.0", "1.752", "1683853223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12755", "0.0", "3.504", "1683853223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12755", "0.0", "1.752", "1683853223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12755", "0.0", "3.504", "1683853223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12756", "0.0", "1.752", "1683856811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12756", "0.0", "3.504", "1683856811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12756", "0.0", "1.752", "1683856811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12756", "0.0", "3.504", "1683856811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12757", "0.0", "1.752", "1683860411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12757", "0.0", "3.504", "1683860411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12757", "0.0", "1.752", "1683860411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12757", "0.0", "3.504", "1683860411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12758", "0.0", "1.752", "1683864023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12758", "0.0", "3.504", "1683864023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12758", "0.0", "1.752", "1683864023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12758", "0.0", "3.504", "1683864023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12759", "0.0", "1.752", "1683867611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12759", "0.0", "3.504", "1683867611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12759", "0.0", "1.752", "1683867611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12759", "0.0", "3.504", "1683867611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12760", "0.0", "1.752", "1683871223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12760", "0.0", "3.504", "1683871223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12760", "0.0", "1.752", "1683871223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12760", "0.0", "3.504", "1683871223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12761", "0.0", "1.752", "1683874811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12761", "0.0", "3.504", "1683874811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12761", "0.0", "1.752", "1683874811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12761", "0.0", "3.504", "1683874811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12762", "0.0", "1.752", "1683878411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12762", "0.0", "3.504", "1683878411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12762", "0.0", "1.752", "1683878411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12762", "0.0", "3.504", "1683878411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12763", "0.0", "1.752", "1683882011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12763", "0.0", "3.504", "1683882011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12763", "0.0", "1.752", "1683882011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12763", "0.0", "3.504", "1683882011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12764", "0.0", "1.752", "1683885611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12764", "0.0", "3.504", "1683885611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12764", "0.0", "1.752", "1683885611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12764", "0.0", "3.504", "1683885611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12765", "0.0", "1.752", "1683889211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12765", "0.0", "3.504", "1683889211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12765", "0.0", "1.752", "1683889211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12765", "0.0", "3.504", "1683889211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12766", "0.0", "1.752", "1683892823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12766", "0.0", "3.504", "1683892823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12766", "0.0", "1.752", "1683892823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12766", "0.0", "3.504", "1683892823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12767", "0.0", "1.752", "1683896411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12767", "0.0", "3.504", "1683896411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12767", "0.0", "1.752", "1683896411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12767", "0.0", "3.504", "1683896411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12768", "0.0", "1.752", "1683900011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12768", "0.0", "3.504", "1683900011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12768", "0.0", "1.752", "1683900011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12768", "0.0", "3.504", "1683900011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12769", "0.0", "1.752", "1683903611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12769", "0.0", "3.504", "1683903611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12769", "0.0", "1.752", "1683903611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12769", "0.0", "3.504", "1683903611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12770", "0.0", "1.752", "1683907211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12770", "0.0", "3.504", "1683907211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12770", "0.0", "1.752", "1683907211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12770", "0.0", "3.504", "1683907211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12771", "0.0", "1.752", "1683910823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12771", "0.0", "3.504", "1683910823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12771", "0.0", "1.752", "1683910823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12771", "0.0", "3.504", "1683910823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12772", "0.0", "1.752", "1683914627"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12772", "0.0", "3.504", "1683914627"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12772", "0.0", "1.752", "1683914627"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12772", "0.0", "3.504", "1683914627"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12773", "0.0", "1.752", "1683918011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12773", "0.0", "3.504", "1683918011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12773", "0.0", "1.752", "1683918011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12773", "0.0", "3.504", "1683918011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12774", "0.0", "1.752", "1683921635"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12774", "0.0", "3.504", "1683921635"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12774", "0.0", "1.752", "1683921635"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12774", "0.0", "3.504", "1683921635"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12775", "0.0", "1.752", "1683925211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12775", "0.0", "3.504", "1683925211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12775", "0.0", "1.752", "1683925211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12775", "0.0", "3.504", "1683925211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12776", "0.0", "1.752", "1683928811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12776", "0.0", "3.504", "1683928811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12776", "0.0", "1.752", "1683928811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12776", "0.0", "3.504", "1683928811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12777", "0.0", "1.752", "1683932411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12777", "0.0", "3.504", "1683932411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12777", "0.0", "1.752", "1683932411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12777", "0.0", "3.504", "1683932411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12778", "0.0", "1.752", "1683936011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12778", "0.0", "3.504", "1683936011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12778", "0.0", "1.752", "1683936011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12778", "0.0", "3.504", "1683936011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12779", "0.0", "1.752", "1683939611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12779", "0.0", "3.504", "1683939611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12779", "0.0", "1.752", "1683939611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12779", "0.0", "3.504", "1683939611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12780", "0.0", "1.752", "1683943211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12780", "0.0", "3.504", "1683943211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12780", "0.0", "1.752", "1683943211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12780", "0.0", "3.504", "1683943211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12781", "0.0", "1.752", "1683946811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12781", "0.0", "3.504", "1683946811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12781", "0.0", "1.752", "1683946811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12781", "0.0", "3.504", "1683946811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12782", "0.0", "1.752", "1683950411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12782", "0.0", "3.504", "1683950411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12782", "0.0", "1.752", "1683950411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12782", "0.0", "3.504", "1683950411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12783", "0.0", "1.752", "1683954011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12783", "0.0", "3.504", "1683954011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12783", "0.0", "1.752", "1683954011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12783", "0.0", "3.504", "1683954011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12784", "0.0", "1.752", "1683957611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12784", "0.0", "3.504", "1683957611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12784", "0.0", "1.752", "1683957611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12784", "0.0", "3.504", "1683957611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12785", "0.0", "1.752", "1683961211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12785", "0.0", "3.504", "1683961211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12785", "0.0", "1.752", "1683961211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12785", "0.0", "3.504", "1683961211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12786", "0.0", "1.752", "1683964811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12786", "0.0", "3.504", "1683964811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12786", "0.0", "1.752", "1683964811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12786", "0.0", "3.504", "1683964811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12787", "0.0", "1.752", "1683968411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12787", "0.0", "3.504", "1683968411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12787", "0.0", "1.752", "1683968411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12787", "0.0", "3.504", "1683968411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12788", "0.0", "1.752", "1683972011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12788", "0.0", "3.504", "1683972011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12788", "0.0", "1.752", "1683972011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12788", "0.0", "3.504", "1683972011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12789", "0.0", "1.752", "1683975611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12789", "0.0", "3.504", "1683975611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12789", "0.0", "1.752", "1683975611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12789", "0.0", "3.504", "1683975611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12790", "0.0", "1.752", "1683979211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12790", "0.0", "3.504", "1683979211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12790", "0.0", "1.752", "1683979211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12790", "0.0", "3.504", "1683979211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12791", "0.0", "1.752", "1683982823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12791", "0.0", "3.504", "1683982823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12791", "0.0", "1.752", "1683982823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12791", "0.0", "3.504", "1683982823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12792", "0.0", "1.752", "1683986411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12792", "0.0", "3.504", "1683986411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12792", "0.0", "1.752", "1683986411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12792", "0.0", "3.504", "1683986411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12793", "0.0", "1.752", "1683990011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12793", "0.0", "3.504", "1683990011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12793", "0.0", "1.752", "1683990011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12793", "0.0", "3.504", "1683990011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12794", "0.0", "1.752", "1683993611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12794", "0.0", "3.504", "1683993611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12794", "0.0", "1.752", "1683993611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12794", "0.0", "3.504", "1683993611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12795", "0.0", "1.752", "1683997211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12795", "0.0", "3.504", "1683997211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12795", "0.0", "1.752", "1683997211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12795", "0.0", "3.504", "1683997211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12796", "0.0", "1.752", "1684000811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12796", "0.0", "3.504", "1684000811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12796", "0.0", "1.752", "1684000811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12796", "0.0", "3.504", "1684000811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12797", "0.0", "1.752", "1684004411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12797", "0.0", "3.504", "1684004411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12797", "0.0", "1.752", "1684004411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12797", "0.0", "3.504", "1684004411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12798", "0.0", "1.752", "1684008011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12798", "0.0", "3.504", "1684008011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12798", "0.0", "1.752", "1684008011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12798", "0.0", "3.504", "1684008011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12799", "0.0", "1.752", "1684011611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12799", "0.0", "3.504", "1684011611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12799", "0.0", "1.752", "1684011611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12799", "0.0", "3.504", "1684011611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12800", "0.0", "1.752", "1684015235"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12800", "0.0", "3.504", "1684015235"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12800", "0.0", "1.752", "1684015235"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12800", "0.0", "3.504", "1684015235"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12801", "0.0", "1.752", "1684018811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12801", "0.0", "3.504", "1684018811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12801", "0.0", "1.752", "1684018811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12801", "0.0", "3.504", "1684018811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12802", "0.0", "1.752", "1684022411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12802", "0.0", "3.504", "1684022411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12802", "0.0", "1.752", "1684022411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12802", "0.0", "3.504", "1684022411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12803", "0.0", "1.752", "1684026011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12803", "0.0", "3.504", "1684026011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12803", "0.0", "1.752", "1684026011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12803", "0.0", "3.504", "1684026011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12804", "0.0", "1.752", "1684029611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12804", "0.0", "3.504", "1684029611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12804", "0.0", "1.752", "1684029611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12804", "0.0", "3.504", "1684029611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12805", "0.0", "1.752", "1684033211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12805", "0.0", "3.504", "1684033211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12805", "0.0", "1.752", "1684033211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12805", "0.0", "3.504", "1684033211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12806", "0.0", "1.752", "1684036811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12806", "0.0", "3.504", "1684036811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12806", "0.0", "1.752", "1684036811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12806", "0.0", "3.504", "1684036811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12807", "0.0", "1.752", "1684040411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12807", "0.0", "3.504", "1684040411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12807", "0.0", "1.752", "1684040411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12807", "0.0", "3.504", "1684040411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12808", "0.0", "1.752", "1684044011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12808", "0.0", "3.504", "1684044011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12808", "0.0", "1.752", "1684044011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12808", "0.0", "3.504", "1684044011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12809", "0.0", "1.752", "1684047611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12809", "0.0", "3.504", "1684047611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12809", "0.0", "1.752", "1684047611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12809", "0.0", "3.504", "1684047611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12810", "0.0", "1.752", "1684051223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12810", "0.0", "3.504", "1684051223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12810", "0.0", "1.752", "1684051223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12810", "0.0", "3.504", "1684051223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12811", "0.0", "1.752", "1684054811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12811", "0.0", "3.504", "1684054811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12811", "0.0", "1.752", "1684054811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12811", "0.0", "3.504", "1684054811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12812", "0.0", "1.752", "1684058411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12812", "0.0", "3.504", "1684058411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12812", "0.0", "1.752", "1684058411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12812", "0.0", "3.504", "1684058411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12813", "0.0", "1.752", "1684062011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12813", "0.0", "3.504", "1684062011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12813", "0.0", "1.752", "1684062011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12813", "0.0", "3.504", "1684062011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12814", "0.0", "1.752", "1684065611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12814", "0.0", "3.504", "1684065611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12814", "0.0", "1.752", "1684065611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12814", "0.0", "3.504", "1684065611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12815", "0.0", "1.752", "1684069223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12815", "0.0", "3.504", "1684069223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12815", "0.0", "1.752", "1684069223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12815", "0.0", "3.504", "1684069223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12816", "0.0", "1.752", "1684072811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12816", "0.0", "3.504", "1684072811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12816", "0.0", "1.752", "1684072811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12816", "0.0", "3.504", "1684072811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12817", "0.0", "1.752", "1684076411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12817", "0.0", "3.504", "1684076411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12817", "0.0", "1.752", "1684076411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12817", "0.0", "3.504", "1684076411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12818", "0.0", "1.752", "1684080011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12818", "0.0", "3.504", "1684080011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12818", "0.0", "1.752", "1684080011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12818", "0.0", "3.504", "1684080011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12819", "0.0", "1.752", "1684083611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12819", "0.0", "3.504", "1684083611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12819", "0.0", "1.752", "1684083611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12819", "0.0", "3.504", "1684083611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12820", "0.0", "1.752", "1684087211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12820", "0.0", "3.504", "1684087211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12820", "0.0", "1.752", "1684087211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12820", "0.0", "3.504", "1684087211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12821", "0.0", "1.752", "1684090811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12821", "0.0", "3.504", "1684090811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12821", "0.0", "1.752", "1684090811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12821", "0.0", "3.504", "1684090811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12822", "0.0", "1.752", "1684094411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12822", "0.0", "3.504", "1684094411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12822", "0.0", "1.752", "1684094411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12822", "0.0", "3.504", "1684094411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12823", "0.0", "1.752", "1684098011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12823", "0.0", "3.504", "1684098011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12823", "0.0", "1.752", "1684098011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12823", "0.0", "3.504", "1684098011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12824", "0.0", "1.752", "1684101611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12824", "0.0", "3.504", "1684101611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12824", "0.0", "1.752", "1684101611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12824", "0.0", "3.504", "1684101611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12825", "0.0", "1.752", "1684105211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12825", "0.0", "3.504", "1684105211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12825", "0.0", "1.752", "1684105211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12825", "0.0", "3.504", "1684105211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12826", "0.0", "1.752", "1684108811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12826", "0.0", "3.504", "1684108811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12826", "0.0", "1.752", "1684108811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12826", "0.0", "3.504", "1684108811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12827", "0.0", "1.752", "1684112411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12827", "0.0", "3.504", "1684112411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12827", "0.0", "1.752", "1684112411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12827", "0.0", "3.504", "1684112411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12828", "0.0", "1.752", "1684116011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12828", "0.0", "3.504", "1684116011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12828", "0.0", "1.752", "1684116011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12828", "0.0", "3.504", "1684116011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12829", "0.0", "1.752", "1684119611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12829", "0.0", "3.504", "1684119611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12829", "0.0", "1.752", "1684119611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12829", "0.0", "3.504", "1684119611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12830", "0.0", "1.752", "1684123211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12830", "0.0", "3.504", "1684123211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12830", "0.0", "1.752", "1684123211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12830", "0.0", "3.504", "1684123211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12831", "0.0", "1.752", "1684126823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12831", "0.0", "3.504", "1684126823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12831", "0.0", "1.752", "1684126823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12831", "0.0", "3.504", "1684126823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12832", "0.0", "1.752", "1684130411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12832", "0.0", "3.504", "1684130411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12832", "0.0", "1.752", "1684130411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12832", "0.0", "3.504", "1684130411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12833", "0.0", "1.752", "1684134011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12833", "0.0", "3.504", "1684134011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12833", "0.0", "1.752", "1684134011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12833", "0.0", "3.504", "1684134011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12834", "0.0", "1.752", "1684137611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12834", "0.0", "3.504", "1684137611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12834", "0.0", "1.752", "1684137611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12834", "0.0", "3.504", "1684137611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12835", "0.0", "1.752", "1684141211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12835", "0.0", "3.504", "1684141211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12835", "0.0", "1.752", "1684141211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12835", "0.0", "3.504", "1684141211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12836", "0.0", "1.752", "1684144811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12836", "0.0", "3.504", "1684144811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12836", "0.0", "1.752", "1684144811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12836", "0.0", "3.504", "1684144811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12837", "0.0", "1.752", "1684148411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12837", "0.0", "3.504", "1684148411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12837", "0.0", "1.752", "1684148411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12837", "0.0", "3.504", "1684148411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12838", "0.0", "1.752", "1684152011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12838", "0.0", "3.504", "1684152011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12838", "0.0", "1.752", "1684152011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12838", "0.0", "3.504", "1684152011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12839", "0.0", "1.752", "1684155611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12839", "0.0", "3.504", "1684155611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12839", "0.0", "1.752", "1684155611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12839", "0.0", "3.504", "1684155611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12840", "0.0", "1.752", "1684159223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12840", "0.0", "3.504", "1684159223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12840", "0.0", "1.752", "1684159223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12840", "0.0", "3.504", "1684159223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12841", "0.0", "1.752", "1684162811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12841", "0.0", "3.504", "1684162811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12841", "0.0", "1.752", "1684162811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12841", "0.0", "3.504", "1684162811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12842", "0.0", "1.752", "1684166411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12842", "0.0", "3.504", "1684166411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12842", "0.0", "1.752", "1684166411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12842", "0.0", "3.504", "1684166411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12843", "0.0", "1.752", "1684170023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12843", "0.0", "3.504", "1684170023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12843", "0.0", "1.752", "1684170023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12843", "0.0", "3.504", "1684170023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12844", "0.0", "1.752", "1684173623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12844", "0.0", "3.504", "1684173623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12844", "0.0", "1.752", "1684173623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12844", "0.0", "3.504", "1684173623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12845", "0.0", "1.752", "1684177211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12845", "0.0", "3.504", "1684177211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12845", "0.0", "1.752", "1684177211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12845", "0.0", "3.504", "1684177211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12846", "0.0", "1.752", "1684180823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12846", "0.0", "3.504", "1684180823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12846", "0.0", "1.752", "1684180823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12846", "0.0", "3.504", "1684180823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12847", "0.0", "1.752", "1684184423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12847", "0.0", "3.504", "1684184423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12847", "0.0", "1.752", "1684184423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12847", "0.0", "3.504", "1684184423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12848", "0.0", "1.752", "1684188011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12848", "0.0", "3.504", "1684188011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12848", "0.0", "1.752", "1684188011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12848", "0.0", "3.504", "1684188011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12849", "0.0", "1.752", "1684191611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12849", "0.0", "3.504", "1684191611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12849", "0.0", "1.752", "1684191611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12849", "0.0", "3.504", "1684191611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12850", "0.0", "1.752", "1684195211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12850", "0.0", "3.504", "1684195211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12850", "0.0", "1.752", "1684195211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12850", "0.0", "3.504", "1684195211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12851", "0.0", "1.752", "1684198811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12851", "0.0", "3.504", "1684198811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12851", "0.0", "1.752", "1684198811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12851", "0.0", "3.504", "1684198811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12852", "0.0", "1.752", "1684202423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12852", "0.0", "3.504", "1684202423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12852", "0.0", "1.752", "1684202423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12852", "0.0", "3.504", "1684202423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12853", "0.0", "1.752", "1684206011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12853", "0.0", "3.504", "1684206011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12853", "0.0", "1.752", "1684206011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12853", "0.0", "3.504", "1684206011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12854", "0.0", "1.752", "1684209611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12854", "0.0", "3.504", "1684209611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12854", "0.0", "1.752", "1684209611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12854", "0.0", "3.504", "1684209611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12855", "0.0", "1.752", "1684213211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12855", "0.0", "3.504", "1684213211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12855", "0.0", "1.752", "1684213211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12855", "0.0", "3.504", "1684213211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12856", "0.0", "1.752", "1684216811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12856", "0.0", "3.504", "1684216811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12856", "0.0", "1.752", "1684216811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12856", "0.0", "3.504", "1684216811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12857", "0.0", "1.752", "1684220411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12857", "0.0", "3.504", "1684220411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12857", "0.0", "1.752", "1684220411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12857", "0.0", "3.504", "1684220411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12858", "0.0", "1.752", "1684224011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12858", "0.0", "3.504", "1684224011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12858", "0.0", "1.752", "1684224011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12858", "0.0", "3.504", "1684224011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12859", "0.0", "1.752", "1684227611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12859", "0.0", "3.504", "1684227611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12859", "0.0", "1.752", "1684227611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12859", "0.0", "3.504", "1684227611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12860", "0.0", "1.752", "1684231211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12860", "0.0", "3.504", "1684231211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12860", "0.0", "1.752", "1684231211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12860", "0.0", "3.504", "1684231211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12861", "0.0", "1.752", "1684234823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12861", "0.0", "3.504", "1684234823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12861", "0.0", "1.752", "1684234823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12861", "0.0", "3.504", "1684234823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12862", "0.0", "1.752", "1684238411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12862", "0.0", "3.504", "1684238411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12862", "0.0", "1.752", "1684238411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12862", "0.0", "3.504", "1684238411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12863", "0.0", "1.752", "1684242011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12863", "0.0", "3.504", "1684242011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12863", "0.0", "1.752", "1684242011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12863", "0.0", "3.504", "1684242011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12864", "0.0", "1.752", "1684245611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12864", "0.0", "3.504", "1684245611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12864", "0.0", "1.752", "1684245611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12864", "0.0", "3.504", "1684245611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12865", "0.0", "1.752", "1684249211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12865", "0.0", "3.504", "1684249211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12865", "0.0", "1.752", "1684249211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12865", "0.0", "3.504", "1684249211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12866", "0.0", "1.752", "1684252811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12866", "0.0", "3.504", "1684252811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12866", "0.0", "1.752", "1684252811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12866", "0.0", "3.504", "1684252811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12867", "0.0", "1.752", "1684256411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12867", "0.0", "3.504", "1684256411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12867", "0.0", "1.752", "1684256411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12867", "0.0", "3.504", "1684256411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12868", "0.0", "1.752", "1684260011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12868", "0.0", "3.504", "1684260011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12868", "0.0", "1.752", "1684260011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12868", "0.0", "3.504", "1684260011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12869", "0.0", "1.752", "1684263611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12869", "0.0", "3.504", "1684263611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12869", "0.0", "1.752", "1684263611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12869", "0.0", "3.504", "1684263611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12870", "0.0", "1.752", "1684267211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12870", "0.0", "3.504", "1684267211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12870", "0.0", "1.752", "1684267211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12870", "0.0", "3.504", "1684267211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12871", "0.0", "1.752", "1684270811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12871", "0.0", "3.504", "1684270811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12871", "0.0", "1.752", "1684270811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12871", "0.0", "3.504", "1684270811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12872", "0.0", "1.752", "1684274423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12872", "0.0", "3.504", "1684274423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12872", "0.0", "1.752", "1684274423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12872", "0.0", "3.504", "1684274423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12873", "0.0", "1.752", "1684278011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12873", "0.0", "3.504", "1684278011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12873", "0.0", "1.752", "1684278011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12873", "0.0", "3.504", "1684278011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12874", "0.0", "1.752", "1684281623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12874", "0.0", "3.504", "1684281623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12874", "0.0", "1.752", "1684281623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12874", "0.0", "3.504", "1684281623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12875", "0.0", "1.752", "1684285211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12875", "0.0", "3.504", "1684285211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12875", "0.0", "1.752", "1684285211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12875", "0.0", "3.504", "1684285211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12876", "0.0", "1.752", "1684288811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12876", "0.0", "3.504", "1684288811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12876", "0.0", "1.752", "1684288811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12876", "0.0", "3.504", "1684288811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12877", "0.0", "1.752", "1684292411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12877", "0.0", "3.504", "1684292411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12877", "0.0", "1.752", "1684292411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12877", "0.0", "3.504", "1684292411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12878", "0.0", "1.752", "1684296011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12878", "0.0", "3.504", "1684296011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12878", "0.0", "1.752", "1684296011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12878", "0.0", "3.504", "1684296011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12879", "0.0", "1.752", "1684299611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12879", "0.0", "3.504", "1684299611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12879", "0.0", "1.752", "1684299611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12879", "0.0", "3.504", "1684299611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12880", "0.0", "1.752", "1684303211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12880", "0.0", "3.504", "1684303211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12880", "0.0", "1.752", "1684303211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12880", "0.0", "3.504", "1684303211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12881", "0.0", "1.752", "1684306811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12881", "0.0", "3.504", "1684306811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12881", "0.0", "1.752", "1684306811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12881", "0.0", "3.504", "1684306811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12882", "0.0", "1.752", "1684310411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12882", "0.0", "3.504", "1684310411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12882", "0.0", "1.752", "1684310411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12882", "0.0", "3.504", "1684310411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12883", "0.0", "1.752", "1684314011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12883", "0.0", "3.504", "1684314011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12883", "0.0", "1.752", "1684314011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12883", "0.0", "3.504", "1684314011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12884", "0.0", "1.752", "1684317611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12884", "0.0", "3.504", "1684317611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12884", "0.0", "1.752", "1684317611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12884", "0.0", "3.504", "1684317611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12885", "0.0", "1.752", "1684321211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12885", "0.0", "3.504", "1684321211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12885", "0.0", "1.752", "1684321211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12885", "0.0", "3.504", "1684321211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12886", "0.0", "1.752", "1684324811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12886", "0.0", "3.504", "1684324811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12886", "0.0", "1.752", "1684324811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12886", "0.0", "3.504", "1684324811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12887", "0.0", "1.752", "1684328411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12887", "0.0", "3.504", "1684328411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12887", "0.0", "1.752", "1684328411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12887", "0.0", "3.504", "1684328411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12888", "0.0", "1.752", "1684332023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12888", "0.0", "3.504", "1684332023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12888", "0.0", "1.752", "1684332023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12888", "0.0", "3.504", "1684332023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12889", "0.0", "1.752", "1684335611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12889", "0.0", "3.504", "1684335611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12889", "0.0", "1.752", "1684335611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12889", "0.0", "3.504", "1684335611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12890", "0.0", "1.752", "1684339211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12890", "0.0", "3.504", "1684339211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12890", "0.0", "1.752", "1684339211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12890", "0.0", "3.504", "1684339211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12891", "0.0", "1.752", "1684342811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12891", "0.0", "3.504", "1684342811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12891", "0.0", "1.752", "1684342811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12891", "0.0", "3.504", "1684342811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12892", "0.0", "1.752", "1684346423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12892", "0.0", "3.504", "1684346423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12892", "0.0", "1.752", "1684346423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12892", "0.0", "3.504", "1684346423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12893", "0.0", "1.752", "1684350011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12893", "0.0", "3.504", "1684350011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12893", "0.0", "1.752", "1684350011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12893", "0.0", "3.504", "1684350011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12894", "0.0", "1.752", "1684353611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12894", "0.0", "3.504", "1684353611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12894", "0.0", "1.752", "1684353611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12894", "0.0", "3.504", "1684353611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12895", "0.0", "1.752", "1684357211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12895", "0.0", "3.504", "1684357211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12895", "0.0", "1.752", "1684357211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12895", "0.0", "3.504", "1684357211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12896", "0.0", "1.752", "1684360823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12896", "0.0", "3.504", "1684360823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12896", "0.0", "1.752", "1684360823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12896", "0.0", "3.504", "1684360823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12897", "0.0", "1.752", "1684364411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12897", "0.0", "3.504", "1684364411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12897", "0.0", "1.752", "1684364411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12897", "0.0", "3.504", "1684364411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12898", "0.0", "1.752", "1684368023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12898", "0.0", "3.504", "1684368023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12898", "0.0", "1.752", "1684368023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12898", "0.0", "3.504", "1684368023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12899", "0.0", "1.752", "1684371611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12899", "0.0", "3.504", "1684371611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12899", "0.0", "1.752", "1684371611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12899", "0.0", "3.504", "1684371611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12900", "0.0", "1.752", "1684375211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12900", "0.0", "3.504", "1684375211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12900", "0.0", "1.752", "1684375211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12900", "0.0", "3.504", "1684375211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12901", "0.0", "1.752", "1684378811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12901", "0.0", "3.504", "1684378811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12901", "0.0", "1.752", "1684378811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12901", "0.0", "3.504", "1684378811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12902", "0.0", "1.752", "1684382411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12902", "0.0", "3.504", "1684382411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12902", "0.0", "1.752", "1684382411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12902", "0.0", "3.504", "1684382411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12903", "0.0", "1.752", "1684386011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12903", "0.0", "3.504", "1684386011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12903", "0.0", "1.752", "1684386011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12903", "0.0", "3.504", "1684386011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12904", "0.0", "1.752", "1684389611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12904", "0.0", "3.504", "1684389611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12904", "0.0", "1.752", "1684389611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12904", "0.0", "3.504", "1684389611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12905", "0.0", "1.752", "1684393211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12905", "0.0", "3.504", "1684393211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12905", "0.0", "1.752", "1684393211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12905", "0.0", "3.504", "1684393211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12906", "0.0", "1.752", "1684396811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12906", "0.0", "3.504", "1684396811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12906", "0.0", "1.752", "1684396811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12906", "0.0", "3.504", "1684396811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12907", "0.0", "1.752", "1684400423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12907", "0.0", "3.504", "1684400423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12907", "0.0", "1.752", "1684400423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12907", "0.0", "3.504", "1684400423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12908", "0.0", "1.752", "1684404011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12908", "0.0", "3.504", "1684404011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12908", "0.0", "1.752", "1684404011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12908", "0.0", "3.504", "1684404011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12909", "0.0", "1.752", "1684407635"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12909", "0.0", "3.504", "1684407635"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12909", "0.0", "1.752", "1684407635"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12909", "0.0", "3.504", "1684407635"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12910", "0.0", "1.752", "1684411211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12910", "0.0", "3.504", "1684411211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12910", "0.0", "1.752", "1684411211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12910", "0.0", "3.504", "1684411211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12911", "0.0", "1.752", "1684414811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12911", "0.0", "3.504", "1684414811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12911", "0.0", "1.752", "1684414811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12911", "0.0", "3.504", "1684414811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12912", "0.0", "1.752", "1684418411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12912", "0.0", "3.504", "1684418411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12912", "0.0", "1.752", "1684418411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12912", "0.0", "3.504", "1684418411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12913", "0.0", "1.752", "1684422011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12913", "0.0", "3.504", "1684422011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12913", "0.0", "1.752", "1684422011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12913", "0.0", "3.504", "1684422011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12914", "0.0", "1.752", "1684425623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12914", "0.0", "3.504", "1684425623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12914", "0.0", "1.752", "1684425623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12914", "0.0", "3.504", "1684425623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12915", "0.0", "1.752", "1684429211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12915", "0.0", "3.504", "1684429211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12915", "0.0", "1.752", "1684429211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12915", "0.0", "3.504", "1684429211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12916", "0.0", "1.752", "1684432811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12916", "0.0", "3.504", "1684432811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12916", "0.0", "1.752", "1684432811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12916", "0.0", "3.504", "1684432811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12917", "0.0", "1.752", "1684436411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12917", "0.0", "3.504", "1684436411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12917", "0.0", "1.752", "1684436411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12917", "0.0", "3.504", "1684436411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12918", "0.0", "1.752", "1684440011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12918", "0.0", "3.504", "1684440011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12918", "0.0", "1.752", "1684440011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12918", "0.0", "3.504", "1684440011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12919", "0.0", "1.752", "1684443611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12919", "0.0", "3.504", "1684443611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12919", "0.0", "1.752", "1684443611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12919", "0.0", "3.504", "1684443611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12920", "0.0", "1.752", "1684447211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12920", "0.0", "3.504", "1684447211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12920", "0.0", "1.752", "1684447211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12920", "0.0", "3.504", "1684447211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12921", "0.0", "1.752", "1684450811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12921", "0.0", "3.504", "1684450811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12921", "0.0", "1.752", "1684450811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12921", "0.0", "3.504", "1684450811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12922", "0.0", "1.752", "1684454411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12922", "0.0", "3.504", "1684454411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12922", "0.0", "1.752", "1684454411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12922", "0.0", "3.504", "1684454411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12923", "0.0", "1.752", "1684458011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12923", "0.0", "3.504", "1684458011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12923", "0.0", "1.752", "1684458011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12923", "0.0", "3.504", "1684458011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12924", "0.0", "1.752", "1684461611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12924", "0.0", "3.504", "1684461611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12924", "0.0", "1.752", "1684461611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12924", "0.0", "3.504", "1684461611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12925", "0.0", "1.752", "1684465211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12925", "0.0", "3.504", "1684465211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12925", "0.0", "1.752", "1684465211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12925", "0.0", "3.504", "1684465211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12926", "0.0", "1.752", "1684468811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12926", "0.0", "3.504", "1684468811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12926", "0.0", "1.752", "1684468811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12926", "0.0", "3.504", "1684468811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12927", "0.0", "1.752", "1684472411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12927", "0.0", "3.504", "1684472411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12927", "0.0", "1.752", "1684472411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12927", "0.0", "3.504", "1684472411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12928", "0.0", "1.752", "1684476011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12928", "0.0", "3.504", "1684476011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12928", "0.0", "1.752", "1684476011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12928", "0.0", "3.504", "1684476011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12929", "0.0", "1.752", "1684479611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12929", "0.0", "3.504", "1684479611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12929", "0.0", "1.752", "1684479611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12929", "0.0", "3.504", "1684479611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12930", "0.0", "1.752", "1684483211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12930", "0.0", "3.504", "1684483211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12930", "0.0", "1.752", "1684483211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12930", "0.0", "3.504", "1684483211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12931", "0.0", "1.752", "1684486811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12931", "0.0", "3.504", "1684486811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12931", "0.0", "1.752", "1684486811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12931", "0.0", "3.504", "1684486811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12932", "0.0", "1.752", "1684490411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12932", "0.0", "3.504", "1684490411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12932", "0.0", "1.752", "1684490411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12932", "0.0", "3.504", "1684490411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12933", "0.0", "1.752", "1684494011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12933", "0.0", "3.504", "1684494011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12933", "0.0", "1.752", "1684494011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12933", "0.0", "3.504", "1684494011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12934", "0.0", "1.752", "1684497611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12934", "0.0", "3.504", "1684497611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12934", "0.0", "1.752", "1684497611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12934", "0.0", "3.504", "1684497611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12935", "0.0", "1.752", "1684501211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12935", "0.0", "3.504", "1684501211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12935", "0.0", "1.752", "1684501211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12935", "0.0", "3.504", "1684501211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12936", "0.0", "1.752", "1684504811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12936", "0.0", "3.504", "1684504811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12936", "0.0", "1.752", "1684504811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12936", "0.0", "3.504", "1684504811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12937", "0.0", "1.752", "1684508411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12937", "0.0", "3.504", "1684508411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12937", "0.0", "1.752", "1684508411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12937", "0.0", "3.504", "1684508411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12938", "0.0", "1.752", "1684512011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12938", "0.0", "3.504", "1684512011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12938", "0.0", "1.752", "1684512011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12938", "0.0", "3.504", "1684512011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12939", "0.0", "1.752", "1684515611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12939", "0.0", "3.504", "1684515611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12939", "0.0", "1.752", "1684515611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12939", "0.0", "3.504", "1684515611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12940", "0.0", "1.752", "1684519211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12940", "0.0", "3.504", "1684519211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12940", "0.0", "1.752", "1684519211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12940", "0.0", "3.504", "1684519211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12941", "0.0", "1.752", "1684522811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12941", "0.0", "3.504", "1684522811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12941", "0.0", "1.752", "1684522811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12941", "0.0", "3.504", "1684522811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12942", "0.0", "1.752", "1684526411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12942", "0.0", "3.504", "1684526411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12942", "0.0", "1.752", "1684526411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12942", "0.0", "3.504", "1684526411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12943", "0.0", "1.752", "1684530011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12943", "0.0", "3.504", "1684530011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12943", "0.0", "1.752", "1684530011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12943", "0.0", "3.504", "1684530011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12944", "0.0", "1.752", "1684533611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12944", "0.0", "3.504", "1684533611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12944", "0.0", "1.752", "1684533611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12944", "0.0", "3.504", "1684533611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12945", "0.0", "1.752", "1684537211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12945", "0.0", "3.504", "1684537211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12945", "0.0", "1.752", "1684537211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12945", "0.0", "3.504", "1684537211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12946", "0.0", "1.752", "1684540811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12946", "0.0", "3.504", "1684540811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12946", "0.0", "1.752", "1684540811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12946", "0.0", "3.504", "1684540811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12947", "0.0", "1.752", "1684544411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12947", "0.0", "3.504", "1684544411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12947", "0.0", "1.752", "1684544411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12947", "0.0", "3.504", "1684544411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12948", "0.0", "1.752", "1684548011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12948", "0.0", "3.504", "1684548011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12948", "0.0", "1.752", "1684548011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12948", "0.0", "3.504", "1684548011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12949", "0.0", "1.752", "1684551611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12949", "0.0", "3.504", "1684551611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12949", "0.0", "1.752", "1684551611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12949", "0.0", "3.504", "1684551611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12950", "0.0", "1.752", "1684555211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12950", "0.0", "3.504", "1684555211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12950", "0.0", "1.752", "1684555211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12950", "0.0", "3.504", "1684555211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12951", "0.0", "1.752", "1684558811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12951", "0.0", "3.504", "1684558811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12951", "0.0", "1.752", "1684558811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12951", "0.0", "3.504", "1684558811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12952", "0.0", "1.752", "1684562411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12952", "0.0", "3.504", "1684562411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12952", "0.0", "1.752", "1684562411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12952", "0.0", "3.504", "1684562411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12953", "0.0", "1.752", "1684566011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12953", "0.0", "3.504", "1684566011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12953", "0.0", "1.752", "1684566011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12953", "0.0", "3.504", "1684566011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12954", "0.0", "1.752", "1684569611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12954", "0.0", "3.504", "1684569611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12954", "0.0", "1.752", "1684569611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12954", "0.0", "3.504", "1684569611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12955", "0.0", "1.752", "1684573211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12955", "0.0", "3.504", "1684573211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12955", "0.0", "1.752", "1684573211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12955", "0.0", "3.504", "1684573211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12956", "0.0", "1.752", "1684576811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12956", "0.0", "3.504", "1684576811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12956", "0.0", "1.752", "1684576811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12956", "0.0", "3.504", "1684576811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12957", "0.0", "1.752", "1684580411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12957", "0.0", "3.504", "1684580411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12957", "0.0", "1.752", "1684580411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12957", "0.0", "3.504", "1684580411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12958", "0.0", "1.752", "1684584011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12958", "0.0", "3.504", "1684584011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12958", "0.0", "1.752", "1684584011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12958", "0.0", "3.504", "1684584011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12959", "0.0", "1.752", "1684587623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12959", "0.0", "3.504", "1684587623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12959", "0.0", "1.752", "1684587623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12959", "0.0", "3.504", "1684587623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12960", "0.0", "1.752", "1684591211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12960", "0.0", "3.504", "1684591211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12960", "0.0", "1.752", "1684591211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12960", "0.0", "3.504", "1684591211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12961", "0.0", "1.752", "1684594811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12961", "0.0", "3.504", "1684594811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12961", "0.0", "1.752", "1684594811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12961", "0.0", "3.504", "1684594811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12962", "0.0", "1.752", "1684598411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12962", "0.0", "3.504", "1684598411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12962", "0.0", "1.752", "1684598411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12962", "0.0", "3.504", "1684598411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12963", "0.0", "1.752", "1684602011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12963", "0.0", "3.504", "1684602011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12963", "0.0", "1.752", "1684602011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12963", "0.0", "3.504", "1684602011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12964", "0.0", "1.752", "1684605611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12964", "0.0", "3.504", "1684605611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12964", "0.0", "1.752", "1684605611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12964", "0.0", "3.504", "1684605611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12965", "0.0", "1.752", "1684609211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12965", "0.0", "3.504", "1684609211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12965", "0.0", "1.752", "1684609211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12965", "0.0", "3.504", "1684609211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12966", "0.0", "1.752", "1684612811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12966", "0.0", "3.504", "1684612811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12966", "0.0", "1.752", "1684612811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12966", "0.0", "3.504", "1684612811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12967", "0.0", "1.752", "1684616411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12967", "0.0", "3.504", "1684616411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12967", "0.0", "1.752", "1684616411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12967", "0.0", "3.504", "1684616411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12968", "0.0", "1.752", "1684620011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12968", "0.0", "3.504", "1684620011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12968", "0.0", "1.752", "1684620011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12968", "0.0", "3.504", "1684620011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12969", "0.0", "1.752", "1684623611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12969", "0.0", "3.504", "1684623611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12969", "0.0", "1.752", "1684623611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12969", "0.0", "3.504", "1684623611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12970", "0.0", "1.752", "1684627211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12970", "0.0", "3.504", "1684627211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12970", "0.0", "1.752", "1684627211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12970", "0.0", "3.504", "1684627211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12971", "0.0", "1.752", "1684630811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12971", "0.0", "3.504", "1684630811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12971", "0.0", "1.752", "1684630811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12971", "0.0", "3.504", "1684630811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12972", "0.0", "1.752", "1684634411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12972", "0.0", "3.504", "1684634411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12972", "0.0", "1.752", "1684634411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12972", "0.0", "3.504", "1684634411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12973", "0.0", "1.752", "1684638011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12973", "0.0", "3.504", "1684638011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12973", "0.0", "1.752", "1684638011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12973", "0.0", "3.504", "1684638011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12974", "0.0", "1.752", "1684641611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12974", "0.0", "3.504", "1684641611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12974", "0.0", "1.752", "1684641611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12974", "0.0", "3.504", "1684641611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12975", "0.0", "1.752", "1684645211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12975", "0.0", "3.504", "1684645211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12975", "0.0", "1.752", "1684645211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12975", "0.0", "3.504", "1684645211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12976", "0.0", "1.752", "1684648811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12976", "0.0", "3.504", "1684648811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12976", "0.0", "1.752", "1684648811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12976", "0.0", "3.504", "1684648811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12977", "0.0", "1.752", "1684652423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12977", "0.0", "3.504", "1684652423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12977", "0.0", "1.752", "1684652423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12977", "0.0", "3.504", "1684652423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12978", "0.0", "1.752", "1684656023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12978", "0.0", "3.504", "1684656023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12978", "0.0", "1.752", "1684656023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12978", "0.0", "3.504", "1684656023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12979", "0.0", "1.752", "1684659623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12979", "0.0", "3.504", "1684659623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12979", "0.0", "1.752", "1684659623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12979", "0.0", "3.504", "1684659623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12980", "0.0", "1.752", "1684663211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12980", "0.0", "3.504", "1684663211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12980", "0.0", "1.752", "1684663211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12980", "0.0", "3.504", "1684663211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12981", "0.0", "1.752", "1684666811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12981", "0.0", "3.504", "1684666811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12981", "0.0", "1.752", "1684666811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12981", "0.0", "3.504", "1684666811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12982", "0.0", "1.752", "1684670411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12982", "0.0", "3.504", "1684670411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12982", "0.0", "1.752", "1684670411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12982", "0.0", "3.504", "1684670411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12983", "0.0", "1.752", "1684674011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12983", "0.0", "3.504", "1684674011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12983", "0.0", "1.752", "1684674011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12983", "0.0", "3.504", "1684674011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12984", "0.0", "1.752", "1684677611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12984", "0.0", "3.504", "1684677611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12984", "0.0", "1.752", "1684677611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12984", "0.0", "3.504", "1684677611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12985", "0.0", "1.752", "1684681211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12985", "0.0", "3.504", "1684681211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12985", "0.0", "1.752", "1684681211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12985", "0.0", "3.504", "1684681211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12986", "0.0", "1.752", "1684684811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12986", "0.0", "3.504", "1684684811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12986", "0.0", "1.752", "1684684811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12986", "0.0", "3.504", "1684684811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12987", "0.0", "1.752", "1684688411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12987", "0.0", "3.504", "1684688411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12987", "0.0", "1.752", "1684688411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12987", "0.0", "3.504", "1684688411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12988", "0.0", "1.752", "1684692011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12988", "0.0", "3.504", "1684692011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12988", "0.0", "1.752", "1684692011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12988", "0.0", "3.504", "1684692011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12989", "0.0", "1.752", "1684695611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12989", "0.0", "3.504", "1684695611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12989", "0.0", "1.752", "1684695611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12989", "0.0", "3.504", "1684695611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12990", "0.0", "1.752", "1684699211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12990", "0.0", "3.504", "1684699211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12990", "0.0", "1.752", "1684699211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12990", "0.0", "3.504", "1684699211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12991", "0.0", "1.752", "1684702811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12991", "0.0", "3.504", "1684702811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12991", "0.0", "1.752", "1684702811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12991", "0.0", "3.504", "1684702811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12992", "0.0", "1.752", "1684706411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12992", "0.0", "3.504", "1684706411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12992", "0.0", "1.752", "1684706411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12992", "0.0", "3.504", "1684706411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12993", "0.0", "1.752", "1684710011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12993", "0.0", "3.504", "1684710011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12993", "0.0", "1.752", "1684710011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12993", "0.0", "3.504", "1684710011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12994", "0.0", "1.752", "1684713611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12994", "0.0", "3.504", "1684713611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12994", "0.0", "1.752", "1684713611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12994", "0.0", "3.504", "1684713611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12995", "0.0", "1.752", "1684717211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12995", "0.0", "3.504", "1684717211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12995", "0.0", "1.752", "1684717211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12995", "0.0", "3.504", "1684717211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12996", "0.0", "1.752", "1684720811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12996", "0.0", "3.504", "1684720811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12996", "0.0", "1.752", "1684720811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12996", "0.0", "3.504", "1684720811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12997", "0.0", "1.752", "1684724411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12997", "0.0", "3.504", "1684724411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12997", "0.0", "1.752", "1684724411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12997", "0.0", "3.504", "1684724411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12998", "0.0", "1.752", "1684728011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12998", "0.0", "3.504", "1684728011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12998", "0.0", "1.752", "1684728011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12998", "0.0", "3.504", "1684728011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "12999", "0.0", "1.752", "1684731611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "12999", "0.0", "3.504", "1684731611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "12999", "0.0", "1.752", "1684731611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "12999", "0.0", "3.504", "1684731611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13000", "0.0", "1.752", "1684735211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13000", "0.0", "3.504", "1684735211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13000", "0.0", "1.752", "1684735211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13000", "0.0", "3.504", "1684735211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13001", "0.0", "1.752", "1684738811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13001", "0.0", "3.504", "1684738811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13001", "0.0", "1.752", "1684738811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13001", "0.0", "3.504", "1684738811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13002", "0.0", "1.752", "1684742411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13002", "0.0", "3.504", "1684742411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13002", "0.0", "1.752", "1684742411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13002", "0.0", "3.504", "1684742411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13003", "0.0", "1.752", "1684746011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13003", "0.0", "3.504", "1684746011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13003", "0.0", "1.752", "1684746011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13003", "0.0", "3.504", "1684746011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13004", "0.0", "1.752", "1684749611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13004", "0.0", "3.504", "1684749611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13004", "0.0", "1.752", "1684749611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13004", "0.0", "3.504", "1684749611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13005", "0.0", "1.752", "1684753211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13005", "0.0", "3.504", "1684753211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13005", "0.0", "1.752", "1684753211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13005", "0.0", "3.504", "1684753211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13006", "0.0", "1.752", "1684756811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13006", "0.0", "3.504", "1684756811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13006", "0.0", "1.752", "1684756811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13006", "0.0", "3.504", "1684756811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13007", "0.0", "1.752", "1684760411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13007", "0.0", "3.504", "1684760411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13007", "0.0", "1.752", "1684760411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13007", "0.0", "3.504", "1684760411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13008", "0.0", "1.752", "1684764011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13008", "0.0", "3.504", "1684764011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13008", "0.0", "1.752", "1684764011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13008", "0.0", "3.504", "1684764011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13009", "0.0", "1.752", "1684767635"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13009", "0.0", "3.504", "1684767635"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13009", "0.0", "1.752", "1684767635"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13009", "0.0", "3.504", "1684767635"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13010", "0.0", "1.752", "1684771223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13010", "0.0", "3.504", "1684771223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13010", "0.0", "1.752", "1684771223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13010", "0.0", "3.504", "1684771223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13011", "0.0", "1.752", "1684774823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13011", "0.0", "3.504", "1684774823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13011", "0.0", "1.752", "1684774823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13011", "0.0", "3.504", "1684774823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13012", "0.0", "1.752", "1684778411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13012", "0.0", "3.504", "1684778411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13012", "0.0", "1.752", "1684778411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13012", "0.0", "3.504", "1684778411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13013", "0.0", "1.752", "1684782023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13013", "0.0", "3.504", "1684782023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13013", "0.0", "1.752", "1684782023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13013", "0.0", "3.504", "1684782023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13014", "0.0", "1.752", "1684785611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13014", "0.0", "3.504", "1684785611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13014", "0.0", "1.752", "1684785611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13014", "0.0", "3.504", "1684785611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13015", "0.0", "1.752", "1684789211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13015", "0.0", "3.504", "1684789211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13015", "0.0", "1.752", "1684789211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13015", "0.0", "3.504", "1684789211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13016", "0.0", "1.752", "1684792811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13016", "0.0", "3.504", "1684792811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13016", "0.0", "1.752", "1684792811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13016", "0.0", "3.504", "1684792811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13017", "0.0", "1.752", "1684796423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13017", "0.0", "3.504", "1684796423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13017", "0.0", "1.752", "1684796423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13017", "0.0", "3.504", "1684796423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13018", "0.0", "1.752", "1684800011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13018", "0.0", "3.504", "1684800011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13018", "0.0", "1.752", "1684800011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13018", "0.0", "3.504", "1684800011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13019", "0.0", "1.752", "1684803623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13019", "0.0", "3.504", "1684803623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13019", "0.0", "1.752", "1684803623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13019", "0.0", "3.504", "1684803623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13020", "0.0", "1.752", "1684807211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13020", "0.0", "3.504", "1684807211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13020", "0.0", "1.752", "1684807211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13020", "0.0", "3.504", "1684807211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13021", "0.0", "1.752", "1684810811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13021", "0.0", "3.504", "1684810811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13021", "0.0", "1.752", "1684810811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13021", "0.0", "3.504", "1684810811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13022", "0.0", "1.752", "1684814411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13022", "0.0", "3.504", "1684814411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13022", "0.0", "1.752", "1684814411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13022", "0.0", "3.504", "1684814411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13023", "0.0", "1.752", "1684818023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13023", "0.0", "3.504", "1684818023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13023", "0.0", "1.752", "1684818023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13023", "0.0", "3.504", "1684818023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13024", "0.0", "1.752", "1684821611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13024", "0.0", "3.504", "1684821611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13024", "0.0", "1.752", "1684821611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13024", "0.0", "3.504", "1684821611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13025", "0.0", "1.752", "1684825211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13025", "0.0", "3.504", "1684825211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13025", "0.0", "1.752", "1684825211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13025", "0.0", "3.504", "1684825211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13026", "0.0", "1.752", "1684828811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13026", "0.0", "3.504", "1684828811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13026", "0.0", "1.752", "1684828811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13026", "0.0", "3.504", "1684828811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13027", "0.0", "1.752", "1684832411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13027", "0.0", "3.504", "1684832411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13027", "0.0", "1.752", "1684832411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13027", "0.0", "3.504", "1684832411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13028", "0.0", "1.752", "1684836011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13028", "0.0", "3.504", "1684836011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13028", "0.0", "1.752", "1684836011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13028", "0.0", "3.504", "1684836011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13029", "0.0", "1.752", "1684839611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13029", "0.0", "3.504", "1684839611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13029", "0.0", "1.752", "1684839611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13029", "0.0", "3.504", "1684839611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13030", "0.0", "1.752", "1684843211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13030", "0.0", "3.504", "1684843211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13030", "0.0", "1.752", "1684843211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13030", "0.0", "3.504", "1684843211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13031", "0.0", "1.752", "1684846823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13031", "0.0", "3.504", "1684846823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13031", "0.0", "1.752", "1684846823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13031", "0.0", "3.504", "1684846823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13032", "0.0", "1.752", "1684850411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13032", "0.0", "3.504", "1684850411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13032", "0.0", "1.752", "1684850411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13032", "0.0", "3.504", "1684850411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13033", "0.0", "1.752", "1684854023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13033", "0.0", "3.504", "1684854023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13033", "0.0", "1.752", "1684854023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13033", "0.0", "3.504", "1684854023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13034", "0.0", "1.752", "1684857611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13034", "0.0", "3.504", "1684857611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13034", "0.0", "1.752", "1684857611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13034", "0.0", "3.504", "1684857611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13035", "0.0", "1.752", "1684861211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13035", "0.0", "3.504", "1684861211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13035", "0.0", "1.752", "1684861211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13035", "0.0", "3.504", "1684861211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13036", "0.0", "1.752", "1684864811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13036", "0.0", "3.504", "1684864811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13036", "0.0", "1.752", "1684864811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13036", "0.0", "3.504", "1684864811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13037", "0.0", "1.752", "1684868411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13037", "0.0", "3.504", "1684868411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13037", "0.0", "1.752", "1684868411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13037", "0.0", "3.504", "1684868411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13038", "0.0", "1.752", "1684872011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13038", "0.0", "3.504", "1684872011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13038", "0.0", "1.752", "1684872011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13038", "0.0", "3.504", "1684872011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13039", "0.0", "1.752", "1684875611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13039", "0.0", "3.504", "1684875611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13039", "0.0", "1.752", "1684875611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13039", "0.0", "3.504", "1684875611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13040", "0.0", "1.752", "1684879211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13040", "0.0", "3.504", "1684879211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13040", "0.0", "1.752", "1684879211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13040", "0.0", "3.504", "1684879211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13041", "0.0", "1.752", "1684882811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13041", "0.0", "3.504", "1684882811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13041", "0.0", "1.752", "1684882811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13041", "0.0", "3.504", "1684882811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13042", "0.0", "1.752", "1684886411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13042", "0.0", "3.504", "1684886411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13042", "0.0", "1.752", "1684886411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13042", "0.0", "3.504", "1684886411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13043", "0.0", "1.752", "1684890011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13043", "0.0", "3.504", "1684890011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13043", "0.0", "1.752", "1684890011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13043", "0.0", "3.504", "1684890011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13044", "0.0", "1.752", "1684893611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13044", "0.0", "3.504", "1684893611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13044", "0.0", "1.752", "1684893611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13044", "0.0", "3.504", "1684893611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13045", "0.0", "1.752", "1684897211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13045", "0.0", "3.504", "1684897211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13045", "0.0", "1.752", "1684897211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13045", "0.0", "3.504", "1684897211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13046", "0.0", "1.752", "1684900811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13046", "0.0", "3.504", "1684900811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13046", "0.0", "1.752", "1684900811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13046", "0.0", "3.504", "1684900811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13047", "0.0", "1.752", "1684904411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13047", "0.0", "3.504", "1684904411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13047", "0.0", "1.752", "1684904411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13047", "0.0", "3.504", "1684904411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13048", "0.0", "1.752", "1684908011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13048", "0.0", "3.504", "1684908011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13048", "0.0", "1.752", "1684908011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13048", "0.0", "3.504", "1684908011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13049", "0.0", "1.752", "1684911611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13049", "0.0", "3.504", "1684911611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13049", "0.0", "1.752", "1684911611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13049", "0.0", "3.504", "1684911611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13050", "0.0", "1.752", "1684915211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13050", "0.0", "3.504", "1684915211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13050", "0.0", "1.752", "1684915211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13050", "0.0", "3.504", "1684915211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13051", "0.0", "1.752", "1684918811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13051", "0.0", "3.504", "1684918811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13051", "0.0", "1.752", "1684918811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13051", "0.0", "3.504", "1684918811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13052", "0.0", "1.752", "1684922423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13052", "0.0", "3.504", "1684922423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13052", "0.0", "1.752", "1684922423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13052", "0.0", "3.504", "1684922423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13053", "0.0", "1.752", "1684926011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13053", "0.0", "3.504", "1684926011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13053", "0.0", "1.752", "1684926011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13053", "0.0", "3.504", "1684926011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13054", "0.0", "1.752", "1684929611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13054", "0.0", "3.504", "1684929611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13054", "0.0", "1.752", "1684929611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13054", "0.0", "3.504", "1684929611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13055", "0.0", "1.752", "1684933211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13055", "0.0", "3.504", "1684933211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13055", "0.0", "1.752", "1684933211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13055", "0.0", "3.504", "1684933211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13056", "0.0", "1.752", "1684936811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13056", "0.0", "3.504", "1684936811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13056", "0.0", "1.752", "1684936811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13056", "0.0", "3.504", "1684936811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13057", "0.0", "1.752", "1684940423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13057", "0.0", "3.504", "1684940423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13057", "0.0", "1.752", "1684940423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13057", "0.0", "3.504", "1684940423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13058", "0.0", "1.752", "1684944011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13058", "0.0", "3.504", "1684944011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13058", "0.0", "1.752", "1684944011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13058", "0.0", "3.504", "1684944011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13059", "0.0", "1.752", "1684947611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13059", "0.0", "3.504", "1684947611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13059", "0.0", "1.752", "1684947611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13059", "0.0", "3.504", "1684947611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13060", "0.0", "1.752", "1684951211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13060", "0.0", "3.504", "1684951211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13060", "0.0", "1.752", "1684951211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13060", "0.0", "3.504", "1684951211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13061", "0.0", "1.752", "1684954811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13061", "0.0", "3.504", "1684954811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13061", "0.0", "1.752", "1684954811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13061", "0.0", "3.504", "1684954811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13062", "0.0", "1.752", "1684958411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13062", "0.0", "3.504", "1684958411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13062", "0.0", "1.752", "1684958411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13062", "0.0", "3.504", "1684958411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13063", "0.0", "1.752", "1684962011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13063", "0.0", "3.504", "1684962011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13063", "0.0", "1.752", "1684962011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13063", "0.0", "3.504", "1684962011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13064", "0.0", "1.752", "1684965611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13064", "0.0", "3.504", "1684965611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13064", "0.0", "1.752", "1684965611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13064", "0.0", "3.504", "1684965611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13065", "0.0", "1.752", "1684969211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13065", "0.0", "3.504", "1684969211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13065", "0.0", "1.752", "1684969211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13065", "0.0", "3.504", "1684969211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13066", "0.0", "1.752", "1684972823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13066", "0.0", "3.504", "1684972823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13066", "0.0", "1.752", "1684972823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13066", "0.0", "3.504", "1684972823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13067", "0.0", "1.752", "1684976411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13067", "0.0", "3.504", "1684976411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13067", "0.0", "1.752", "1684976411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13067", "0.0", "3.504", "1684976411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13068", "0.0", "1.752", "1684980011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13068", "0.0", "3.504", "1684980011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13068", "0.0", "1.752", "1684980011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13068", "0.0", "3.504", "1684980011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13069", "0.0", "1.752", "1684983611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13069", "0.0", "3.504", "1684983611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13069", "0.0", "1.752", "1684983611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13069", "0.0", "3.504", "1684983611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13070", "0.0", "1.752", "1684987211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13070", "0.0", "3.504", "1684987211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13070", "0.0", "1.752", "1684987211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13070", "0.0", "3.504", "1684987211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13071", "0.0", "1.752", "1684990811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13071", "0.0", "3.504", "1684990811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13071", "0.0", "1.752", "1684990811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13071", "0.0", "3.504", "1684990811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13072", "0.0", "1.752", "1684994411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13072", "0.0", "3.504", "1684994411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13072", "0.0", "1.752", "1684994411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13072", "0.0", "3.504", "1684994411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13073", "0.0", "1.752", "1684998011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13073", "0.0", "3.504", "1684998011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13073", "0.0", "1.752", "1684998011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13073", "0.0", "3.504", "1684998011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13074", "0.0", "1.752", "1685001611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13074", "0.0", "3.504", "1685001611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13074", "0.0", "1.752", "1685001611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13074", "0.0", "3.504", "1685001611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13075", "0.0", "1.752", "1685005211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13075", "0.0", "3.504", "1685005211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13075", "0.0", "1.752", "1685005211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13075", "0.0", "3.504", "1685005211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13076", "0.0", "1.752", "1685008811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13076", "0.0", "3.504", "1685008811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13076", "0.0", "1.752", "1685008811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13076", "0.0", "3.504", "1685008811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13077", "0.0", "1.752", "1685012411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13077", "0.0", "3.504", "1685012411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13077", "0.0", "1.752", "1685012411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13077", "0.0", "3.504", "1685012411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13078", "0.0", "1.752", "1685016035"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13078", "0.0", "3.504", "1685016035"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13078", "0.0", "1.752", "1685016035"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13078", "0.0", "3.504", "1685016035"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13079", "0.0", "1.752", "1685019611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13079", "0.0", "3.504", "1685019611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13079", "0.0", "1.752", "1685019611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13079", "0.0", "3.504", "1685019611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13080", "0.0", "1.752", "1685023223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13080", "0.0", "3.504", "1685023223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13080", "0.0", "1.752", "1685023223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13080", "0.0", "3.504", "1685023223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13081", "0.0", "1.752", "1685026823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13081", "0.0", "3.504", "1685026823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13081", "0.0", "1.752", "1685026823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13081", "0.0", "3.504", "1685026823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13082", "0.0", "1.752", "1685030411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13082", "0.0", "3.504", "1685030411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13082", "0.0", "1.752", "1685030411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13082", "0.0", "3.504", "1685030411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13083", "0.0", "1.752", "1685034011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13083", "0.0", "3.504", "1685034011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13083", "0.0", "1.752", "1685034011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13083", "0.0", "3.504", "1685034011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13084", "0.0", "1.752", "1685037611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13084", "0.0", "3.504", "1685037611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13084", "0.0", "1.752", "1685037611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13084", "0.0", "3.504", "1685037611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13085", "0.0", "1.752", "1685041211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13085", "0.0", "3.504", "1685041211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13085", "0.0", "1.752", "1685041211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13085", "0.0", "3.504", "1685041211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13086", "0.0", "1.752", "1685044811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13086", "0.0", "3.504", "1685044811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13086", "0.0", "1.752", "1685044811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13086", "0.0", "3.504", "1685044811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13087", "0.0", "1.752", "1685048411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13087", "0.0", "3.504", "1685048411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13087", "0.0", "1.752", "1685048411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13087", "0.0", "3.504", "1685048411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13088", "0.0", "1.752", "1685052011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13088", "0.0", "3.504", "1685052011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13088", "0.0", "1.752", "1685052011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13088", "0.0", "3.504", "1685052011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13089", "0.0", "1.752", "1685055611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13089", "0.0", "3.504", "1685055611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13089", "0.0", "1.752", "1685055611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13089", "0.0", "3.504", "1685055611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13090", "0.0", "1.752", "1685059211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13090", "0.0", "3.504", "1685059211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13090", "0.0", "1.752", "1685059211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13090", "0.0", "3.504", "1685059211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13091", "0.0", "1.752", "1685062811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13091", "0.0", "3.504", "1685062811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13091", "0.0", "1.752", "1685062811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13091", "0.0", "3.504", "1685062811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13092", "0.0", "1.752", "1685066411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13092", "0.0", "3.504", "1685066411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13092", "0.0", "1.752", "1685066411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13092", "0.0", "3.504", "1685066411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13093", "0.0", "1.752", "1685070011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13093", "0.0", "3.504", "1685070011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13093", "0.0", "1.752", "1685070011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13093", "0.0", "3.504", "1685070011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13094", "0.0", "1.752", "1685073611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13094", "0.0", "3.504", "1685073611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13094", "0.0", "1.752", "1685073611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13094", "0.0", "3.504", "1685073611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13095", "0.0", "1.752", "1685077211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13095", "0.0", "3.504", "1685077211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13095", "0.0", "1.752", "1685077211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13095", "0.0", "3.504", "1685077211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13096", "0.0", "1.752", "1685080811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13096", "0.0", "3.504", "1685080811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13096", "0.0", "1.752", "1685080811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13096", "0.0", "3.504", "1685080811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13097", "0.0", "1.752", "1685084411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13097", "0.0", "3.504", "1685084411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13097", "0.0", "1.752", "1685084411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13097", "0.0", "3.504", "1685084411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13098", "0.0", "1.752", "1685088011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13098", "0.0", "3.504", "1685088011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13098", "0.0", "1.752", "1685088011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13098", "0.0", "3.504", "1685088011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13099", "0.0", "1.752", "1685091611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13099", "0.0", "3.504", "1685091611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13099", "0.0", "1.752", "1685091611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13099", "0.0", "3.504", "1685091611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13100", "0.0", "1.752", "1685095211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13100", "0.0", "3.504", "1685095211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13100", "0.0", "1.752", "1685095211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13100", "0.0", "3.504", "1685095211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13101", "0.0", "1.752", "1685098811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13101", "0.0", "3.504", "1685098811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13101", "0.0", "1.752", "1685098811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13101", "0.0", "3.504", "1685098811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13102", "0.0", "1.752", "1685102411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13102", "0.0", "3.504", "1685102411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13102", "0.0", "1.752", "1685102411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13102", "0.0", "3.504", "1685102411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13103", "0.0", "1.752", "1685106011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13103", "0.0", "3.504", "1685106011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13103", "0.0", "1.752", "1685106011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13103", "0.0", "3.504", "1685106011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13104", "0.0", "1.752", "1685109611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13104", "0.0", "3.504", "1685109611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13104", "0.0", "1.752", "1685109611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13104", "0.0", "3.504", "1685109611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13105", "0.0", "1.752", "1685113211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13105", "0.0", "3.504", "1685113211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13105", "0.0", "1.752", "1685113211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13105", "0.0", "3.504", "1685113211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13106", "0.0", "1.752", "1685116811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13106", "0.0", "3.504", "1685116811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13106", "0.0", "1.752", "1685116811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13106", "0.0", "3.504", "1685116811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13107", "0.0", "1.752", "1685120423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13107", "0.0", "3.504", "1685120423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13107", "0.0", "1.752", "1685120423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13107", "0.0", "3.504", "1685120423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13108", "0.0", "1.752", "1685124011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13108", "0.0", "3.504", "1685124011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13108", "0.0", "1.752", "1685124011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13108", "0.0", "3.504", "1685124011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13109", "0.0", "1.752", "1685127611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13109", "0.0", "3.504", "1685127611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13109", "0.0", "1.752", "1685127611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13109", "0.0", "3.504", "1685127611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13110", "0.0", "1.752", "1685131211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13110", "0.0", "3.504", "1685131211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13110", "0.0", "1.752", "1685131211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13110", "0.0", "3.504", "1685131211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13111", "0.0", "1.752", "1685134811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13111", "0.0", "3.504", "1685134811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13111", "0.0", "1.752", "1685134811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13111", "0.0", "3.504", "1685134811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13112", "0.0", "1.752", "1685138411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13112", "0.0", "3.504", "1685138411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13112", "0.0", "1.752", "1685138411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13112", "0.0", "3.504", "1685138411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13113", "0.0", "1.752", "1685142035"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13113", "0.0", "3.504", "1685142035"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13113", "0.0", "1.752", "1685142035"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13113", "0.0", "3.504", "1685142035"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13114", "0.0", "1.752", "1685145611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13114", "0.0", "3.504", "1685145611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13114", "0.0", "1.752", "1685145611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13114", "0.0", "3.504", "1685145611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13115", "0.0", "1.752", "1685149211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13115", "0.0", "3.504", "1685149211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13115", "0.0", "1.752", "1685149211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13115", "0.0", "3.504", "1685149211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13116", "0.0", "1.752", "1685152811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13116", "0.0", "3.504", "1685152811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13116", "0.0", "1.752", "1685152811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13116", "0.0", "3.504", "1685152811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13117", "0.0", "1.752", "1685156423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13117", "0.0", "3.504", "1685156423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13117", "0.0", "1.752", "1685156423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13117", "0.0", "3.504", "1685156423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13118", "0.0", "1.752", "1685160011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13118", "0.0", "3.504", "1685160011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13118", "0.0", "1.752", "1685160011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13118", "0.0", "3.504", "1685160011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13119", "0.0", "1.752", "1685163611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13119", "0.0", "3.504", "1685163611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13119", "0.0", "1.752", "1685163611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13119", "0.0", "3.504", "1685163611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13120", "0.0", "1.752", "1685167211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13120", "0.0", "3.504", "1685167211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13120", "0.0", "1.752", "1685167211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13120", "0.0", "3.504", "1685167211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13121", "0.0", "1.752", "1685170811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13121", "0.0", "3.504", "1685170811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13121", "0.0", "1.752", "1685170811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13121", "0.0", "3.504", "1685170811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13122", "0.0", "1.752", "1685174411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13122", "0.0", "3.504", "1685174411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13122", "0.0", "1.752", "1685174411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13122", "0.0", "3.504", "1685174411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13123", "0.0", "1.752", "1685178011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13123", "0.0", "3.504", "1685178011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13123", "0.0", "1.752", "1685178011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13123", "0.0", "3.504", "1685178011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13124", "0.0", "1.752", "1685181611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13124", "0.0", "3.504", "1685181611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13124", "0.0", "1.752", "1685181611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13124", "0.0", "3.504", "1685181611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13125", "0.0", "1.752", "1685185211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13125", "0.0", "3.504", "1685185211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13125", "0.0", "1.752", "1685185211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13125", "0.0", "3.504", "1685185211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13126", "0.0", "1.752", "1685188811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13126", "0.0", "3.504", "1685188811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13126", "0.0", "1.752", "1685188811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13126", "0.0", "3.504", "1685188811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13127", "0.0", "1.752", "1685192411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13127", "0.0", "3.504", "1685192411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13127", "0.0", "1.752", "1685192411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13127", "0.0", "3.504", "1685192411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13128", "0.0", "1.752", "1685196011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13128", "0.0", "3.504", "1685196011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13128", "0.0", "1.752", "1685196011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13128", "0.0", "3.504", "1685196011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13129", "0.0", "1.752", "1685199611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13129", "0.0", "3.504", "1685199611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13129", "0.0", "1.752", "1685199611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13129", "0.0", "3.504", "1685199611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13130", "0.0", "1.752", "1685203211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13130", "0.0", "3.504", "1685203211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13130", "0.0", "1.752", "1685203211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13130", "0.0", "3.504", "1685203211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13131", "0.0", "1.752", "1685206811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13131", "0.0", "3.504", "1685206811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13131", "0.0", "1.752", "1685206811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13131", "0.0", "3.504", "1685206811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13132", "0.0", "1.752", "1685210411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13132", "0.0", "3.504", "1685210411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13132", "0.0", "1.752", "1685210411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13132", "0.0", "3.504", "1685210411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13133", "0.0", "1.752", "1685214011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13133", "0.0", "3.504", "1685214011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13133", "0.0", "1.752", "1685214011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13133", "0.0", "3.504", "1685214011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13134", "0.0", "1.752", "1685217611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13134", "0.0", "3.504", "1685217611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13134", "0.0", "1.752", "1685217611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13134", "0.0", "3.504", "1685217611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13135", "0.0", "1.752", "1685221211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13135", "0.0", "3.504", "1685221211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13135", "0.0", "1.752", "1685221211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13135", "0.0", "3.504", "1685221211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13136", "0.0", "1.752", "1685224811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13136", "0.0", "3.504", "1685224811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13136", "0.0", "1.752", "1685224811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13136", "0.0", "3.504", "1685224811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13137", "0.0", "1.752", "1685228411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13137", "0.0", "3.504", "1685228411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13137", "0.0", "1.752", "1685228411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13137", "0.0", "3.504", "1685228411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13138", "0.0", "1.752", "1685232023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13138", "0.0", "3.504", "1685232023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13138", "0.0", "1.752", "1685232023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13138", "0.0", "3.504", "1685232023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13139", "0.0", "1.752", "1685235611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13139", "0.0", "3.504", "1685235611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13139", "0.0", "1.752", "1685235611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13139", "0.0", "3.504", "1685235611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13140", "0.0", "1.752", "1685239211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13140", "0.0", "3.504", "1685239211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13140", "0.0", "1.752", "1685239211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13140", "0.0", "3.504", "1685239211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13141", "0.0", "1.752", "1685242811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13141", "0.0", "3.504", "1685242811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13141", "0.0", "1.752", "1685242811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13141", "0.0", "3.504", "1685242811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13142", "0.0", "1.752", "1685246411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13142", "0.0", "3.504", "1685246411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13142", "0.0", "1.752", "1685246411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13142", "0.0", "3.504", "1685246411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13143", "0.0", "1.752", "1685250011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13143", "0.0", "3.504", "1685250011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13143", "0.0", "1.752", "1685250011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13143", "0.0", "3.504", "1685250011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13144", "0.0", "1.752", "1685253611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13144", "0.0", "3.504", "1685253611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13144", "0.0", "1.752", "1685253611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13144", "0.0", "3.504", "1685253611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13145", "0.0", "1.752", "1685257211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13145", "0.0", "3.504", "1685257211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13145", "0.0", "1.752", "1685257211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13145", "0.0", "3.504", "1685257211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13146", "0.0", "1.752", "1685260811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13146", "0.0", "3.504", "1685260811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13146", "0.0", "1.752", "1685260811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13146", "0.0", "3.504", "1685260811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13147", "0.0", "1.752", "1685264411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13147", "0.0", "3.504", "1685264411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13147", "0.0", "1.752", "1685264411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13147", "0.0", "3.504", "1685264411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13148", "0.0", "1.752", "1685268011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13148", "0.0", "3.504", "1685268011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13148", "0.0", "1.752", "1685268011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13148", "0.0", "3.504", "1685268011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13149", "0.0", "1.752", "1685271611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13149", "0.0", "3.504", "1685271611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13149", "0.0", "1.752", "1685271611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13149", "0.0", "3.504", "1685271611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13150", "0.0", "1.752", "1685275211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13150", "0.0", "3.504", "1685275211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13150", "0.0", "1.752", "1685275211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13150", "0.0", "3.504", "1685275211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13151", "0.0", "1.752", "1685278811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13151", "0.0", "3.504", "1685278811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13151", "0.0", "1.752", "1685278811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13151", "0.0", "3.504", "1685278811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13152", "0.0", "1.752", "1685282411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13152", "0.0", "3.504", "1685282411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13152", "0.0", "1.752", "1685282411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13152", "0.0", "3.504", "1685282411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13153", "0.0", "1.752", "1685286011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13153", "0.0", "3.504", "1685286011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13153", "0.0", "1.752", "1685286011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13153", "0.0", "3.504", "1685286011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13154", "0.0", "1.752", "1685289611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13154", "0.0", "3.504", "1685289611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13154", "0.0", "1.752", "1685289611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13154", "0.0", "3.504", "1685289611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13155", "0.0", "1.752", "1685293211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13155", "0.0", "3.504", "1685293211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13155", "0.0", "1.752", "1685293211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13155", "0.0", "3.504", "1685293211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13156", "0.0", "1.752", "1685296811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13156", "0.0", "3.504", "1685296811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13156", "0.0", "1.752", "1685296811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13156", "0.0", "3.504", "1685296811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13157", "0.0", "1.752", "1685300411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13157", "0.0", "3.504", "1685300411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13157", "0.0", "1.752", "1685300411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13157", "0.0", "3.504", "1685300411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13158", "0.0", "1.752", "1685304011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13158", "0.0", "3.504", "1685304011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13158", "0.0", "1.752", "1685304011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13158", "0.0", "3.504", "1685304011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13159", "0.0", "1.752", "1685307611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13159", "0.0", "3.504", "1685307611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13159", "0.0", "1.752", "1685307611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13159", "0.0", "3.504", "1685307611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13160", "0.0", "1.752", "1685311211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13160", "0.0", "3.504", "1685311211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13160", "0.0", "1.752", "1685311211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13160", "0.0", "3.504", "1685311211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13161", "0.0", "1.752", "1685314811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13161", "0.0", "3.504", "1685314811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13161", "0.0", "1.752", "1685314811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13161", "0.0", "3.504", "1685314811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13162", "0.0", "1.752", "1685318411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13162", "0.0", "3.504", "1685318411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13162", "0.0", "1.752", "1685318411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13162", "0.0", "3.504", "1685318411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13163", "0.0", "1.752", "1685322023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13163", "0.0", "3.504", "1685322023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13163", "0.0", "1.752", "1685322023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13163", "0.0", "3.504", "1685322023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13164", "0.0", "1.752", "1685325623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13164", "0.0", "3.504", "1685325623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13164", "0.0", "1.752", "1685325623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13164", "0.0", "3.504", "1685325623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13165", "0.0", "1.752", "1685329211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13165", "0.0", "3.504", "1685329211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13165", "0.0", "1.752", "1685329211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13165", "0.0", "3.504", "1685329211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13166", "0.0", "1.752", "1685332811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13166", "0.0", "3.504", "1685332811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13166", "0.0", "1.752", "1685332811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13166", "0.0", "3.504", "1685332811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13167", "0.0", "1.752", "1685336423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13167", "0.0", "3.504", "1685336423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13167", "0.0", "1.752", "1685336423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13167", "0.0", "3.504", "1685336423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13168", "0.0", "1.752", "1685340011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13168", "0.0", "3.504", "1685340011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13168", "0.0", "1.752", "1685340011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13168", "0.0", "3.504", "1685340011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13169", "0.0", "1.752", "1685343611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13169", "0.0", "3.504", "1685343611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13169", "0.0", "1.752", "1685343611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13169", "0.0", "3.504", "1685343611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13170", "0.0", "1.752", "1685347211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13170", "0.0", "3.504", "1685347211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13170", "0.0", "1.752", "1685347211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13170", "0.0", "3.504", "1685347211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13171", "0.0", "1.752", "1685350811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13171", "0.0", "3.504", "1685350811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13171", "0.0", "1.752", "1685350811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13171", "0.0", "3.504", "1685350811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13172", "0.0", "1.752", "1685354423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13172", "0.0", "3.504", "1685354423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13172", "0.0", "1.752", "1685354423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13172", "0.0", "3.504", "1685354423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13173", "0.0", "1.752", "1685358011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13173", "0.0", "3.504", "1685358011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13173", "0.0", "1.752", "1685358011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13173", "0.0", "3.504", "1685358011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13174", "0.0", "1.752", "1685361611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13174", "0.0", "3.504", "1685361611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13174", "0.0", "1.752", "1685361611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13174", "0.0", "3.504", "1685361611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13175", "0.0", "1.752", "1685365223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13175", "0.0", "3.504", "1685365223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13175", "0.0", "1.752", "1685365223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13175", "0.0", "3.504", "1685365223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13176", "0.0", "1.752", "1685368811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13176", "0.0", "3.504", "1685368811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13176", "0.0", "1.752", "1685368811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13176", "0.0", "3.504", "1685368811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13177", "0.0", "1.752", "1685372435"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13177", "0.0", "3.504", "1685372435"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13177", "0.0", "1.752", "1685372435"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13177", "0.0", "3.504", "1685372435"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13178", "0.0", "1.752", "1685376047"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13178", "0.0", "3.504", "1685376047"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13178", "0.0", "1.752", "1685376047"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13178", "0.0", "3.504", "1685376047"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13179", "0.0", "1.752", "1685379611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13179", "0.0", "3.504", "1685379611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13179", "0.0", "1.752", "1685379611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13179", "0.0", "3.504", "1685379611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13180", "0.0", "1.752", "1685383211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13180", "0.0", "3.504", "1685383211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13180", "0.0", "1.752", "1685383211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13180", "0.0", "3.504", "1685383211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13181", "0.0", "1.752", "1685386811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13181", "0.0", "3.504", "1685386811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13181", "0.0", "1.752", "1685386811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13181", "0.0", "3.504", "1685386811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13182", "0.0", "1.752", "1685390411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13182", "0.0", "3.504", "1685390411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13182", "0.0", "1.752", "1685390411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13182", "0.0", "3.504", "1685390411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13183", "0.0", "1.752", "1685394011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13183", "0.0", "3.504", "1685394011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13183", "0.0", "1.752", "1685394011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13183", "0.0", "3.504", "1685394011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13184", "0.0", "1.752", "1685397611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13184", "0.0", "3.504", "1685397611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13184", "0.0", "1.752", "1685397611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13184", "0.0", "3.504", "1685397611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13185", "0.0", "1.752", "1685401211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13185", "0.0", "3.504", "1685401211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13185", "0.0", "1.752", "1685401211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13185", "0.0", "3.504", "1685401211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13186", "0.0", "1.752", "1685404811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13186", "0.0", "3.504", "1685404811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13186", "0.0", "1.752", "1685404811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13186", "0.0", "3.504", "1685404811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13187", "0.0", "1.752", "1685408411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13187", "0.0", "3.504", "1685408411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13187", "0.0", "1.752", "1685408411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13187", "0.0", "3.504", "1685408411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13188", "0.0", "1.752", "1685412011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13188", "0.0", "3.504", "1685412011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13188", "0.0", "1.752", "1685412011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13188", "0.0", "3.504", "1685412011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13189", "0.0", "1.752", "1685415611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13189", "0.0", "3.504", "1685415611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13189", "0.0", "1.752", "1685415611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13189", "0.0", "3.504", "1685415611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13190", "0.0", "1.752", "1685419211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13190", "0.0", "3.504", "1685419211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13190", "0.0", "1.752", "1685419211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13190", "0.0", "3.504", "1685419211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13191", "0.0", "1.752", "1685422823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13191", "0.0", "3.504", "1685422823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13191", "0.0", "1.752", "1685422823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13191", "0.0", "3.504", "1685422823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13192", "0.0", "1.752", "1685426411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13192", "0.0", "3.504", "1685426411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13192", "0.0", "1.752", "1685426411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13192", "0.0", "3.504", "1685426411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13193", "0.0", "1.752", "1685430011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13193", "0.0", "3.504", "1685430011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13193", "0.0", "1.752", "1685430011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13193", "0.0", "3.504", "1685430011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13194", "0.0", "1.752", "1685433611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13194", "0.0", "3.504", "1685433611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13194", "0.0", "1.752", "1685433611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13194", "0.0", "3.504", "1685433611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13195", "0.0", "1.752", "1685437211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13195", "0.0", "3.504", "1685437211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13195", "0.0", "1.752", "1685437211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13195", "0.0", "3.504", "1685437211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13196", "0.0", "1.752", "1685440811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13196", "0.0", "3.504", "1685440811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13196", "0.0", "1.752", "1685440811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13196", "0.0", "3.504", "1685440811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13197", "0.0", "1.752", "1685444411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13197", "0.0", "3.504", "1685444411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13197", "0.0", "1.752", "1685444411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13197", "0.0", "3.504", "1685444411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13198", "0.0", "1.752", "1685448011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13198", "0.0", "3.504", "1685448011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13198", "0.0", "1.752", "1685448011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13198", "0.0", "3.504", "1685448011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13199", "0.0", "1.752", "1685451611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13199", "0.0", "3.504", "1685451611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13199", "0.0", "1.752", "1685451611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13199", "0.0", "3.504", "1685451611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13200", "0.0", "1.752", "1685455211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13200", "0.0", "3.504", "1685455211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13200", "0.0", "1.752", "1685455211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13200", "0.0", "3.504", "1685455211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13201", "0.0", "1.752", "1685458811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13201", "0.0", "3.504", "1685458811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13201", "0.0", "1.752", "1685458811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13201", "0.0", "3.504", "1685458811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13202", "0.0", "1.752", "1685462411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13202", "0.0", "3.504", "1685462411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13202", "0.0", "1.752", "1685462411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13202", "0.0", "3.504", "1685462411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13203", "0.0", "1.752", "1685466011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13203", "0.0", "3.504", "1685466011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13203", "0.0", "1.752", "1685466011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13203", "0.0", "3.504", "1685466011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13204", "0.0", "1.752", "1685469611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13204", "0.0", "3.504", "1685469611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13204", "0.0", "1.752", "1685469611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13204", "0.0", "3.504", "1685469611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13205", "0.0", "1.752", "1685473211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13205", "0.0", "3.504", "1685473211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13205", "0.0", "1.752", "1685473211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13205", "0.0", "3.504", "1685473211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13206", "0.0", "1.752", "1685476811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13206", "0.0", "3.504", "1685476811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13206", "0.0", "1.752", "1685476811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13206", "0.0", "3.504", "1685476811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13207", "0.0", "1.752", "1685480411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13207", "0.0", "3.504", "1685480411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13207", "0.0", "1.752", "1685480411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13207", "0.0", "3.504", "1685480411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13208", "0.0", "1.752", "1685484011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13208", "0.0", "3.504", "1685484011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13208", "0.0", "1.752", "1685484011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13208", "0.0", "3.504", "1685484011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13209", "0.0", "1.752", "1685487611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13209", "0.0", "3.504", "1685487611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13209", "0.0", "1.752", "1685487611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13209", "0.0", "3.504", "1685487611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13210", "0.0", "1.752", "1685491211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13210", "0.0", "3.504", "1685491211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13210", "0.0", "1.752", "1685491211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13210", "0.0", "3.504", "1685491211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13211", "0.0", "1.752", "1685494811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13211", "0.0", "3.504", "1685494811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13211", "0.0", "1.752", "1685494811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13211", "0.0", "3.504", "1685494811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13212", "0.0", "1.752", "1685498411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13212", "0.0", "3.504", "1685498411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13212", "0.0", "1.752", "1685498411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13212", "0.0", "3.504", "1685498411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13213", "0.0", "1.752", "1685502011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13213", "0.0", "3.504", "1685502011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13213", "0.0", "1.752", "1685502011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13213", "0.0", "3.504", "1685502011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13214", "0.0", "1.752", "1685505611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13214", "0.0", "3.504", "1685505611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13214", "0.0", "1.752", "1685505611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13214", "0.0", "3.504", "1685505611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13215", "0.0", "1.752", "1685509211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13215", "0.0", "3.504", "1685509211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13215", "0.0", "1.752", "1685509211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13215", "0.0", "3.504", "1685509211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13216", "0.0", "1.752", "1685512811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13216", "0.0", "3.504", "1685512811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13216", "0.0", "1.752", "1685512811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13216", "0.0", "3.504", "1685512811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13217", "0.0", "1.752", "1685516411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13217", "0.0", "3.504", "1685516411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13217", "0.0", "1.752", "1685516411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13217", "0.0", "3.504", "1685516411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13218", "0.0", "1.752", "1685520011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13218", "0.0", "3.504", "1685520011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13218", "0.0", "1.752", "1685520011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13218", "0.0", "3.504", "1685520011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13219", "0.0", "1.752", "1685523611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13219", "0.0", "3.504", "1685523611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13219", "0.0", "1.752", "1685523611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13219", "0.0", "3.504", "1685523611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13220", "0.0", "1.752", "1685527211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13220", "0.0", "3.504", "1685527211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13220", "0.0", "1.752", "1685527211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13220", "0.0", "3.504", "1685527211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13221", "0.0", "1.752", "1685530811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13221", "0.0", "3.504", "1685530811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13221", "0.0", "1.752", "1685530811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13221", "0.0", "3.504", "1685530811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13222", "0.0", "1.752", "1685534411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13222", "0.0", "3.504", "1685534411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13222", "0.0", "1.752", "1685534411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13222", "0.0", "3.504", "1685534411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13223", "0.0", "1.752", "1685538011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13223", "0.0", "3.504", "1685538011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13223", "0.0", "1.752", "1685538011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13223", "0.0", "3.504", "1685538011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13224", "0.0", "1.752", "1685541611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13224", "0.0", "3.504", "1685541611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13224", "0.0", "1.752", "1685541611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13224", "0.0", "3.504", "1685541611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13225", "0.0", "1.752", "1685545211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13225", "0.0", "3.504", "1685545211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13225", "0.0", "1.752", "1685545211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13225", "0.0", "3.504", "1685545211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13226", "0.0", "1.752", "1685548811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13226", "0.0", "3.504", "1685548811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13226", "0.0", "1.752", "1685548811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13226", "0.0", "3.504", "1685548811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13227", "0.0", "1.752", "1685552411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13227", "0.0", "3.504", "1685552411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13227", "0.0", "1.752", "1685552411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13227", "0.0", "3.504", "1685552411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13228", "0.0", "1.752", "1685556011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13228", "0.0", "3.504", "1685556011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13228", "0.0", "1.752", "1685556011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13228", "0.0", "3.504", "1685556011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13229", "0.0", "1.752", "1685559611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13229", "0.0", "3.504", "1685559611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13229", "0.0", "1.752", "1685559611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13229", "0.0", "3.504", "1685559611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13230", "0.0", "1.752", "1685563211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13230", "0.0", "3.504", "1685563211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13230", "0.0", "1.752", "1685563211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13230", "0.0", "3.504", "1685563211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13231", "0.0", "1.752", "1685566811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13231", "0.0", "3.504", "1685566811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13231", "0.0", "1.752", "1685566811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13231", "0.0", "3.504", "1685566811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13232", "0.0", "1.752", "1685570411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13232", "0.0", "3.504", "1685570411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13232", "0.0", "1.752", "1685570411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13232", "0.0", "3.504", "1685570411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13233", "0.0", "1.752", "1685574011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13233", "0.0", "3.504", "1685574011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13233", "0.0", "1.752", "1685574011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13233", "0.0", "3.504", "1685574011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13234", "0.0", "1.752", "1685577611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13234", "0.0", "3.504", "1685577611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13234", "0.0", "1.752", "1685577611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13234", "0.0", "3.504", "1685577611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13235", "0.0", "1.752", "1685581211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13235", "0.0", "3.504", "1685581211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13235", "0.0", "1.752", "1685581211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13235", "0.0", "3.504", "1685581211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13236", "0.0", "1.752", "1685584811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13236", "0.0", "3.504", "1685584811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13236", "0.0", "1.752", "1685584811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13236", "0.0", "3.504", "1685584811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13237", "0.0", "1.752", "1685588423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13237", "0.0", "3.504", "1685588423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13237", "0.0", "1.752", "1685588423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13237", "0.0", "3.504", "1685588423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13238", "0.0", "1.752", "1685592011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13238", "0.0", "3.504", "1685592011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13238", "0.0", "1.752", "1685592011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13238", "0.0", "3.504", "1685592011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13239", "0.0", "1.752", "1685595611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13239", "0.0", "3.504", "1685595611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13239", "0.0", "1.752", "1685595611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13239", "0.0", "3.504", "1685595611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13240", "0.0", "1.752", "1685599211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13240", "0.0", "3.504", "1685599211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13240", "0.0", "1.752", "1685599211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13240", "0.0", "3.504", "1685599211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13241", "0.0", "1.752", "1685602811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13241", "0.0", "3.504", "1685602811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13241", "0.0", "1.752", "1685602811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13241", "0.0", "3.504", "1685602811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13242", "0.0", "1.752", "1685606411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13242", "0.0", "3.504", "1685606411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13242", "0.0", "1.752", "1685606411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13242", "0.0", "3.504", "1685606411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13243", "0.0", "1.752", "1685610011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13243", "0.0", "3.504", "1685610011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13243", "0.0", "1.752", "1685610011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13243", "0.0", "3.504", "1685610011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13244", "0.0", "1.752", "1685613611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13244", "0.0", "3.504", "1685613611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13244", "0.0", "1.752", "1685613611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13244", "0.0", "3.504", "1685613611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13245", "0.0", "1.752", "1685617211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13245", "0.0", "3.504", "1685617211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13245", "0.0", "1.752", "1685617211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13245", "0.0", "3.504", "1685617211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13246", "0.0", "1.752", "1685620823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13246", "0.0", "3.504", "1685620823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13246", "0.0", "1.752", "1685620823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13246", "0.0", "3.504", "1685620823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13247", "0.0", "1.752", "1685624411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13247", "0.0", "3.504", "1685624411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13247", "0.0", "1.752", "1685624411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13247", "0.0", "3.504", "1685624411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13248", "0.0", "1.752", "1685628011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13248", "0.0", "3.504", "1685628011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13248", "0.0", "1.752", "1685628011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13248", "0.0", "3.504", "1685628011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13249", "0.0", "1.752", "1685631611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13249", "0.0", "3.504", "1685631611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13249", "0.0", "1.752", "1685631611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13249", "0.0", "3.504", "1685631611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13250", "0.0", "1.752", "1685635211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13250", "0.0", "3.504", "1685635211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13250", "0.0", "1.752", "1685635211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13250", "0.0", "3.504", "1685635211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13251", "0.0", "1.752", "1685638811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13251", "0.0", "3.504", "1685638811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13251", "0.0", "1.752", "1685638811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13251", "0.0", "3.504", "1685638811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13252", "0.0", "1.752", "1685642411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13252", "0.0", "3.504", "1685642411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13252", "0.0", "1.752", "1685642411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13252", "0.0", "3.504", "1685642411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13253", "0.0", "1.752", "1685646011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13253", "0.0", "3.504", "1685646011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13253", "0.0", "1.752", "1685646011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13253", "0.0", "3.504", "1685646011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13254", "0.0", "1.752", "1685649611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13254", "0.0", "3.504", "1685649611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13254", "0.0", "1.752", "1685649611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13254", "0.0", "3.504", "1685649611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13255", "0.0", "1.752", "1685653211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13255", "0.0", "3.504", "1685653211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13255", "0.0", "1.752", "1685653211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13255", "0.0", "3.504", "1685653211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13256", "0.0", "1.752", "1685656811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13256", "0.0", "3.504", "1685656811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13256", "0.0", "1.752", "1685656811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13256", "0.0", "3.504", "1685656811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13257", "0.0", "1.752", "1685660411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13257", "0.0", "3.504", "1685660411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13257", "0.0", "1.752", "1685660411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13257", "0.0", "3.504", "1685660411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13258", "0.0", "1.752", "1685664011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13258", "0.0", "3.504", "1685664011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13258", "0.0", "1.752", "1685664011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13258", "0.0", "3.504", "1685664011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13259", "0.0", "1.752", "1685667611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13259", "0.0", "3.504", "1685667611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13259", "0.0", "1.752", "1685667611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13259", "0.0", "3.504", "1685667611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13260", "0.0", "1.752", "1685671211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13260", "0.0", "3.504", "1685671211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13260", "0.0", "1.752", "1685671211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13260", "0.0", "3.504", "1685671211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13261", "0.0", "1.752", "1685674811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13261", "0.0", "3.504", "1685674811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13261", "0.0", "1.752", "1685674811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13261", "0.0", "3.504", "1685674811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13262", "0.0", "1.752", "1685678411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13262", "0.0", "3.504", "1685678411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13262", "0.0", "1.752", "1685678411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13262", "0.0", "3.504", "1685678411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13263", "0.0", "1.752", "1685682011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13263", "0.0", "3.504", "1685682011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13263", "0.0", "1.752", "1685682011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13263", "0.0", "3.504", "1685682011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13264", "0.0", "1.752", "1685685611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13264", "0.0", "3.504", "1685685611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13264", "0.0", "1.752", "1685685611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13264", "0.0", "3.504", "1685685611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13265", "0.0", "1.752", "1685689211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13265", "0.0", "3.504", "1685689211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13265", "0.0", "1.752", "1685689211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13265", "0.0", "3.504", "1685689211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13266", "0.0", "1.752", "1685692811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13266", "0.0", "3.504", "1685692811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13266", "0.0", "1.752", "1685692811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13266", "0.0", "3.504", "1685692811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13267", "0.0", "1.752", "1685696411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13267", "0.0", "3.504", "1685696411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13267", "0.0", "1.752", "1685696411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13267", "0.0", "3.504", "1685696411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13268", "0.0", "1.752", "1685700011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13268", "0.0", "3.504", "1685700011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13268", "0.0", "1.752", "1685700011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13268", "0.0", "3.504", "1685700011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13269", "0.0", "1.752", "1685703611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13269", "0.0", "3.504", "1685703611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13269", "0.0", "1.752", "1685703611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13269", "0.0", "3.504", "1685703611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13270", "0.0", "1.752", "1685707211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13270", "0.0", "3.504", "1685707211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13270", "0.0", "1.752", "1685707211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13270", "0.0", "3.504", "1685707211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13271", "0.0", "1.752", "1685710811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13271", "0.0", "3.504", "1685710811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13271", "0.0", "1.752", "1685710811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13271", "0.0", "3.504", "1685710811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13272", "0.0", "1.752", "1685714411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13272", "0.0", "3.504", "1685714411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13272", "0.0", "1.752", "1685714411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13272", "0.0", "3.504", "1685714411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13273", "0.0", "1.752", "1685718011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13273", "0.0", "3.504", "1685718011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13273", "0.0", "1.752", "1685718011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13273", "0.0", "3.504", "1685718011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13274", "0.0", "1.752", "1685721611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13274", "0.0", "3.504", "1685721611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13274", "0.0", "1.752", "1685721611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13274", "0.0", "3.504", "1685721611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13275", "0.0", "1.752", "1685725211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13275", "0.0", "3.504", "1685725211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13275", "0.0", "1.752", "1685725211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13275", "0.0", "3.504", "1685725211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13276", "0.0", "1.752", "1685728811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13276", "0.0", "3.504", "1685728811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13276", "0.0", "1.752", "1685728811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13276", "0.0", "3.504", "1685728811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13277", "0.0", "1.752", "1685732423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13277", "0.0", "3.504", "1685732423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13277", "0.0", "1.752", "1685732423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13277", "0.0", "3.504", "1685732423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13278", "0.0", "1.752", "1685736011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13278", "0.0", "3.504", "1685736011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13278", "0.0", "1.752", "1685736011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13278", "0.0", "3.504", "1685736011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13279", "0.0", "1.752", "1685739611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13279", "0.0", "3.504", "1685739611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13279", "0.0", "1.752", "1685739611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13279", "0.0", "3.504", "1685739611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13280", "0.0", "1.752", "1685743211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13280", "0.0", "3.504", "1685743211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13280", "0.0", "1.752", "1685743211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13280", "0.0", "3.504", "1685743211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13281", "0.0", "1.752", "1685746811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13281", "0.0", "3.504", "1685746811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13281", "0.0", "1.752", "1685746811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13281", "0.0", "3.504", "1685746811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13282", "0.0", "1.752", "1685750411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13282", "0.0", "3.504", "1685750411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13282", "0.0", "1.752", "1685750411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13282", "0.0", "3.504", "1685750411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13283", "0.0", "1.752", "1685754011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13283", "0.0", "3.504", "1685754011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13283", "0.0", "1.752", "1685754011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13283", "0.0", "3.504", "1685754011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13284", "0.0", "1.752", "1685757611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13284", "0.0", "3.504", "1685757611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13284", "0.0", "1.752", "1685757611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13284", "0.0", "3.504", "1685757611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13285", "0.0", "1.752", "1685761211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13285", "0.0", "3.504", "1685761211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13285", "0.0", "1.752", "1685761211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13285", "0.0", "3.504", "1685761211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13286", "0.0", "1.752", "1685764811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13286", "0.0", "3.504", "1685764811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13286", "0.0", "1.752", "1685764811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13286", "0.0", "3.504", "1685764811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13287", "0.0", "1.752", "1685768423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13287", "0.0", "3.504", "1685768423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13287", "0.0", "1.752", "1685768423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13287", "0.0", "3.504", "1685768423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13288", "0.0", "1.752", "1685772011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13288", "0.0", "3.504", "1685772011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13288", "0.0", "1.752", "1685772011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13288", "0.0", "3.504", "1685772011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13289", "0.0", "1.752", "1685775623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13289", "0.0", "3.504", "1685775623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13289", "0.0", "1.752", "1685775623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13289", "0.0", "3.504", "1685775623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13290", "0.0", "1.752", "1685779211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13290", "0.0", "3.504", "1685779211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13290", "0.0", "1.752", "1685779211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13290", "0.0", "3.504", "1685779211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13291", "0.0", "1.752", "1685782811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13291", "0.0", "3.504", "1685782811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13291", "0.0", "1.752", "1685782811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13291", "0.0", "3.504", "1685782811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13292", "0.0", "1.752", "1685786411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13292", "0.0", "3.504", "1685786411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13292", "0.0", "1.752", "1685786411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13292", "0.0", "3.504", "1685786411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13293", "0.0", "1.752", "1685790011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13293", "0.0", "3.504", "1685790011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13293", "0.0", "1.752", "1685790011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13293", "0.0", "3.504", "1685790011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13294", "0.0", "1.752", "1685793611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13294", "0.0", "3.504", "1685793611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13294", "0.0", "1.752", "1685793611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13294", "0.0", "3.504", "1685793611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13295", "0.0", "1.752", "1685797211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13295", "0.0", "3.504", "1685797211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13295", "0.0", "1.752", "1685797211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13295", "0.0", "3.504", "1685797211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13296", "0.0", "1.752", "1685800811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13296", "0.0", "3.504", "1685800811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13296", "0.0", "1.752", "1685800811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13296", "0.0", "3.504", "1685800811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13297", "0.0", "1.752", "1685804411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13297", "0.0", "3.504", "1685804411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13297", "0.0", "1.752", "1685804411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13297", "0.0", "3.504", "1685804411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13298", "0.0", "1.752", "1685808011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13298", "0.0", "3.504", "1685808011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13298", "0.0", "1.752", "1685808011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13298", "0.0", "3.504", "1685808011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13299", "0.0", "1.752", "1685811611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13299", "0.0", "3.504", "1685811611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13299", "0.0", "1.752", "1685811611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13299", "0.0", "3.504", "1685811611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13300", "0.0", "1.752", "1685815211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13300", "0.0", "3.504", "1685815211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13300", "0.0", "1.752", "1685815211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13300", "0.0", "3.504", "1685815211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13301", "0.0", "1.752", "1685818811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13301", "0.0", "3.504", "1685818811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13301", "0.0", "1.752", "1685818811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13301", "0.0", "3.504", "1685818811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13302", "0.0", "1.752", "1685822411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13302", "0.0", "3.504", "1685822411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13302", "0.0", "1.752", "1685822411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13302", "0.0", "3.504", "1685822411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13303", "0.0", "1.752", "1685826011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13303", "0.0", "3.504", "1685826011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13303", "0.0", "1.752", "1685826011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13303", "0.0", "3.504", "1685826011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13304", "0.0", "1.752", "1685829611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13304", "0.0", "3.504", "1685829611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13304", "0.0", "1.752", "1685829611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13304", "0.0", "3.504", "1685829611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13305", "0.0", "1.752", "1685833211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13305", "0.0", "3.504", "1685833211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13305", "0.0", "1.752", "1685833211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13305", "0.0", "3.504", "1685833211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13306", "0.0", "1.752", "1685836823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13306", "0.0", "3.504", "1685836823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13306", "0.0", "1.752", "1685836823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13306", "0.0", "3.504", "1685836823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13307", "0.0", "1.752", "1685840411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13307", "0.0", "3.504", "1685840411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13307", "0.0", "1.752", "1685840411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13307", "0.0", "3.504", "1685840411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13308", "0.0", "1.752", "1685844011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13308", "0.0", "3.504", "1685844011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13308", "0.0", "1.752", "1685844011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13308", "0.0", "3.504", "1685844011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13309", "0.0", "1.752", "1685847611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13309", "0.0", "3.504", "1685847611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13309", "0.0", "1.752", "1685847611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13309", "0.0", "3.504", "1685847611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13310", "0.0", "1.752", "1685851211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13310", "0.0", "3.504", "1685851211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13310", "0.0", "1.752", "1685851211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13310", "0.0", "3.504", "1685851211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13311", "0.0", "1.752", "1685854811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13311", "0.0", "3.504", "1685854811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13311", "0.0", "1.752", "1685854811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13311", "0.0", "3.504", "1685854811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13312", "0.0", "1.752", "1685858411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13312", "0.0", "3.504", "1685858411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13312", "0.0", "1.752", "1685858411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13312", "0.0", "3.504", "1685858411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13313", "0.0", "1.752", "1685862011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13313", "0.0", "3.504", "1685862011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13313", "0.0", "1.752", "1685862011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13313", "0.0", "3.504", "1685862011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13314", "0.0", "1.752", "1685865611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13314", "0.0", "3.504", "1685865611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13314", "0.0", "1.752", "1685865611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13314", "0.0", "3.504", "1685865611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13315", "0.0", "1.752", "1685869211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13315", "0.0", "3.504", "1685869211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13315", "0.0", "1.752", "1685869211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13315", "0.0", "3.504", "1685869211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13316", "0.0", "1.752", "1685872811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13316", "0.0", "3.504", "1685872811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13316", "0.0", "1.752", "1685872811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13316", "0.0", "3.504", "1685872811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13317", "0.0", "1.752", "1685876411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13317", "0.0", "3.504", "1685876411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13317", "0.0", "1.752", "1685876411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13317", "0.0", "3.504", "1685876411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13318", "0.0", "1.752", "1685880011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13318", "0.0", "3.504", "1685880011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13318", "0.0", "1.752", "1685880011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13318", "0.0", "3.504", "1685880011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13319", "0.0", "1.752", "1685883611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13319", "0.0", "3.504", "1685883611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13319", "0.0", "1.752", "1685883611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13319", "0.0", "3.504", "1685883611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13320", "0.0", "1.752", "1685887211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13320", "0.0", "3.504", "1685887211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13320", "0.0", "1.752", "1685887211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13320", "0.0", "3.504", "1685887211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13321", "0.0", "1.752", "1685890811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13321", "0.0", "3.504", "1685890811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13321", "0.0", "1.752", "1685890811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13321", "0.0", "3.504", "1685890811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13322", "0.0", "1.752", "1685894411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13322", "0.0", "3.504", "1685894411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13322", "0.0", "1.752", "1685894411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13322", "0.0", "3.504", "1685894411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13323", "0.0", "1.752", "1685898011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13323", "0.0", "3.504", "1685898011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13323", "0.0", "1.752", "1685898011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13323", "0.0", "3.504", "1685898011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13324", "0.0", "1.752", "1685901611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13324", "0.0", "3.504", "1685901611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13324", "0.0", "1.752", "1685901611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13324", "0.0", "3.504", "1685901611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13325", "0.0", "1.752", "1685905211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13325", "0.0", "3.504", "1685905211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13325", "0.0", "1.752", "1685905211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13325", "0.0", "3.504", "1685905211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13326", "0.0", "1.752", "1685908811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13326", "0.0", "3.504", "1685908811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13326", "0.0", "1.752", "1685908811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13326", "0.0", "3.504", "1685908811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13327", "0.0", "1.752", "1685912411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13327", "0.0", "3.504", "1685912411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13327", "0.0", "1.752", "1685912411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13327", "0.0", "3.504", "1685912411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13328", "0.0", "1.752", "1685916011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13328", "0.0", "3.504", "1685916011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13328", "0.0", "1.752", "1685916011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13328", "0.0", "3.504", "1685916011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13329", "0.0", "1.752", "1685919611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13329", "0.0", "3.504", "1685919611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13329", "0.0", "1.752", "1685919611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13329", "0.0", "3.504", "1685919611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13330", "0.0", "1.752", "1685923211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13330", "0.0", "3.504", "1685923211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13330", "0.0", "1.752", "1685923211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13330", "0.0", "3.504", "1685923211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13331", "0.0", "1.752", "1685926811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13331", "0.0", "3.504", "1685926811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13331", "0.0", "1.752", "1685926811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13331", "0.0", "3.504", "1685926811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13332", "0.0", "1.752", "1685930411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13332", "0.0", "3.504", "1685930411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13332", "0.0", "1.752", "1685930411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13332", "0.0", "3.504", "1685930411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13333", "0.0", "1.752", "1685934011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13333", "0.0", "3.504", "1685934011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13333", "0.0", "1.752", "1685934011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13333", "0.0", "3.504", "1685934011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13334", "0.0", "1.752", "1685937611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13334", "0.0", "3.504", "1685937611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13334", "0.0", "1.752", "1685937611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13334", "0.0", "3.504", "1685937611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13335", "0.0", "1.752", "1685941211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13335", "0.0", "3.504", "1685941211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13335", "0.0", "1.752", "1685941211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13335", "0.0", "3.504", "1685941211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13336", "0.0", "1.752", "1685944811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13336", "0.0", "3.504", "1685944811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13336", "0.0", "1.752", "1685944811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13336", "0.0", "3.504", "1685944811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13337", "0.0", "1.752", "1685948411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13337", "0.0", "3.504", "1685948411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13337", "0.0", "1.752", "1685948411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13337", "0.0", "3.504", "1685948411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13338", "0.0", "1.752", "1685952011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13338", "0.0", "3.504", "1685952011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13338", "0.0", "1.752", "1685952011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13338", "0.0", "3.504", "1685952011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13339", "0.0", "1.752", "1685955611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13339", "0.0", "3.504", "1685955611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13339", "0.0", "1.752", "1685955611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13339", "0.0", "3.504", "1685955611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13340", "0.0", "1.752", "1685959223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13340", "0.0", "3.504", "1685959223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13340", "0.0", "1.752", "1685959223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13340", "0.0", "3.504", "1685959223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13341", "0.0", "1.752", "1685962811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13341", "0.0", "3.504", "1685962811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13341", "0.0", "1.752", "1685962811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13341", "0.0", "3.504", "1685962811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13342", "0.0", "1.752", "1685966411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13342", "0.0", "3.504", "1685966411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13342", "0.0", "1.752", "1685966411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13342", "0.0", "3.504", "1685966411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13343", "0.0", "1.752", "1685970011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13343", "0.0", "3.504", "1685970011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13343", "0.0", "1.752", "1685970011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13343", "0.0", "3.504", "1685970011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13344", "0.0", "1.752", "1685973611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13344", "0.0", "3.504", "1685973611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13344", "0.0", "1.752", "1685973611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13344", "0.0", "3.504", "1685973611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13345", "0.0", "1.752", "1685977211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13345", "0.0", "3.504", "1685977211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13345", "0.0", "1.752", "1685977211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13345", "0.0", "3.504", "1685977211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13346", "0.0", "1.752", "1685980811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13346", "0.0", "3.504", "1685980811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13346", "0.0", "1.752", "1685980811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13346", "0.0", "3.504", "1685980811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13347", "0.0", "1.752", "1685984411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13347", "0.0", "3.504", "1685984411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13347", "0.0", "1.752", "1685984411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13347", "0.0", "3.504", "1685984411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13348", "0.0", "1.752", "1685988011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13348", "0.0", "3.504", "1685988011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13348", "0.0", "1.752", "1685988011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13348", "0.0", "3.504", "1685988011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13349", "0.0", "1.752", "1685991611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13349", "0.0", "3.504", "1685991611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13349", "0.0", "1.752", "1685991611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13349", "0.0", "3.504", "1685991611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13350", "0.0", "1.752", "1685995211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13350", "0.0", "3.504", "1685995211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13350", "0.0", "1.752", "1685995211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13350", "0.0", "3.504", "1685995211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13351", "0.0", "1.752", "1685998811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13351", "0.0", "3.504", "1685998811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13351", "0.0", "1.752", "1685998811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13351", "0.0", "3.504", "1685998811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13352", "0.0", "1.752", "1686002423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13352", "0.0", "3.504", "1686002423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13352", "0.0", "1.752", "1686002423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13352", "0.0", "3.504", "1686002423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13353", "0.0", "1.752", "1686006011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13353", "0.0", "3.504", "1686006011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13353", "0.0", "1.752", "1686006011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13353", "0.0", "3.504", "1686006011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13354", "0.0", "1.752", "1686009611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13354", "0.0", "3.504", "1686009611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13354", "0.0", "1.752", "1686009611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13354", "0.0", "3.504", "1686009611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13355", "0.0", "1.752", "1686013211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13355", "0.0", "3.504", "1686013211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13355", "0.0", "1.752", "1686013211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13355", "0.0", "3.504", "1686013211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13356", "0.0", "1.752", "1686016811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13356", "0.0", "3.504", "1686016811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13356", "0.0", "1.752", "1686016811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13356", "0.0", "3.504", "1686016811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13357", "0.0", "1.752", "1686020423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13357", "0.0", "3.504", "1686020423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13357", "0.0", "1.752", "1686020423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13357", "0.0", "3.504", "1686020423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13358", "0.0", "1.752", "1686024011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13358", "0.0", "3.504", "1686024011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13358", "0.0", "1.752", "1686024011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13358", "0.0", "3.504", "1686024011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13359", "0.0", "1.752", "1686027611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13359", "0.0", "3.504", "1686027611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13359", "0.0", "1.752", "1686027611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13359", "0.0", "3.504", "1686027611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13360", "0.0", "1.752", "1686031211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13360", "0.0", "3.504", "1686031211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13360", "0.0", "1.752", "1686031211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13360", "0.0", "3.504", "1686031211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13361", "0.0", "1.752", "1686034811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13361", "0.0", "3.504", "1686034811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13361", "0.0", "1.752", "1686034811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13361", "0.0", "3.504", "1686034811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13362", "0.0", "1.752", "1686038411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13362", "0.0", "3.504", "1686038411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13362", "0.0", "1.752", "1686038411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13362", "0.0", "3.504", "1686038411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13363", "0.0", "1.752", "1686042011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13363", "0.0", "3.504", "1686042011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13363", "0.0", "1.752", "1686042011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13363", "0.0", "3.504", "1686042011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13364", "0.0", "1.752", "1686045611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13364", "0.0", "3.504", "1686045611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13364", "0.0", "1.752", "1686045611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13364", "0.0", "3.504", "1686045611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13365", "0.0", "1.752", "1686049211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13365", "0.0", "3.504", "1686049211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13365", "0.0", "1.752", "1686049211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13365", "0.0", "3.504", "1686049211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13366", "0.0", "1.752", "1686052811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13366", "0.0", "3.504", "1686052811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13366", "0.0", "1.752", "1686052811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13366", "0.0", "3.504", "1686052811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13367", "0.0", "1.752", "1686056411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13367", "0.0", "3.504", "1686056411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13367", "0.0", "1.752", "1686056411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13367", "0.0", "3.504", "1686056411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13368", "0.0", "1.752", "1686060011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13368", "0.0", "3.504", "1686060011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13368", "0.0", "1.752", "1686060011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13368", "0.0", "3.504", "1686060011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13369", "0.0", "1.752", "1686063611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13369", "0.0", "3.504", "1686063611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13369", "0.0", "1.752", "1686063611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13369", "0.0", "3.504", "1686063611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13370", "0.0", "1.752", "1686067211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13370", "0.0", "3.504", "1686067211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13370", "0.0", "1.752", "1686067211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13370", "0.0", "3.504", "1686067211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13371", "0.0", "1.752", "1686070811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13371", "0.0", "3.504", "1686070811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13371", "0.0", "1.752", "1686070811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13371", "0.0", "3.504", "1686070811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13372", "0.0", "1.752", "1686074411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13372", "0.0", "3.504", "1686074411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13372", "0.0", "1.752", "1686074411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13372", "0.0", "3.504", "1686074411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13373", "0.0", "1.752", "1686078011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13373", "0.0", "3.504", "1686078011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13373", "0.0", "1.752", "1686078011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13373", "0.0", "3.504", "1686078011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13374", "0.0", "1.752", "1686081623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13374", "0.0", "3.504", "1686081623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13374", "0.0", "1.752", "1686081623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13374", "0.0", "3.504", "1686081623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13375", "0.0", "1.752", "1686085211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13375", "0.0", "3.504", "1686085211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13375", "0.0", "1.752", "1686085211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13375", "0.0", "3.504", "1686085211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13376", "0.0", "1.752", "1686088811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13376", "0.0", "3.504", "1686088811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13376", "0.0", "1.752", "1686088811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13376", "0.0", "3.504", "1686088811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13377", "0.0", "1.752", "1686092411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13377", "0.0", "3.504", "1686092411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13377", "0.0", "1.752", "1686092411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13377", "0.0", "3.504", "1686092411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13378", "0.0", "1.752", "1686096023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13378", "0.0", "3.504", "1686096023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13378", "0.0", "1.752", "1686096023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13378", "0.0", "3.504", "1686096023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13379", "0.0", "1.752", "1686099611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13379", "0.0", "3.504", "1686099611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13379", "0.0", "1.752", "1686099611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13379", "0.0", "3.504", "1686099611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13380", "0.0", "1.752", "1686103211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13380", "0.0", "3.504", "1686103211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13380", "0.0", "1.752", "1686103211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13380", "0.0", "3.504", "1686103211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13381", "0.0", "1.752", "1686106811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13381", "0.0", "3.504", "1686106811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13381", "0.0", "1.752", "1686106811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13381", "0.0", "3.504", "1686106811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13382", "0.0", "1.752", "1686110411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13382", "0.0", "3.504", "1686110411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13382", "0.0", "1.752", "1686110411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13382", "0.0", "3.504", "1686110411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13383", "0.0", "1.752", "1686114011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13383", "0.0", "3.504", "1686114011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13383", "0.0", "1.752", "1686114011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13383", "0.0", "3.504", "1686114011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13384", "0.0", "1.752", "1686117611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13384", "0.0", "3.504", "1686117611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13384", "0.0", "1.752", "1686117611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13384", "0.0", "3.504", "1686117611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13385", "0.0", "1.752", "1686121211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13385", "0.0", "3.504", "1686121211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13385", "0.0", "1.752", "1686121211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13385", "0.0", "3.504", "1686121211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13386", "0.0", "1.752", "1686124811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13386", "0.0", "3.504", "1686124811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13386", "0.0", "1.752", "1686124811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13386", "0.0", "3.504", "1686124811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13387", "0.0", "1.752", "1686128411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13387", "0.0", "3.504", "1686128411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13387", "0.0", "1.752", "1686128411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13387", "0.0", "3.504", "1686128411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13388", "0.0", "1.752", "1686132011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13388", "0.0", "3.504", "1686132011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13388", "0.0", "1.752", "1686132011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13388", "0.0", "3.504", "1686132011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13389", "0.0", "1.752", "1686135623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13389", "0.0", "3.504", "1686135623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13389", "0.0", "1.752", "1686135623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13389", "0.0", "3.504", "1686135623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13390", "0.0", "1.752", "1686139211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13390", "0.0", "3.504", "1686139211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13390", "0.0", "1.752", "1686139211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13390", "0.0", "3.504", "1686139211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13391", "0.0", "1.752", "1686142811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13391", "0.0", "3.504", "1686142811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13391", "0.0", "1.752", "1686142811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13391", "0.0", "3.504", "1686142811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13392", "0.0", "1.752", "1686146411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13392", "0.0", "3.504", "1686146411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13392", "0.0", "1.752", "1686146411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13392", "0.0", "3.504", "1686146411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13393", "0.0", "1.752", "1686150011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13393", "0.0", "3.504", "1686150011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13393", "0.0", "1.752", "1686150011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13393", "0.0", "3.504", "1686150011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13394", "0.0", "1.752", "1686153611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13394", "0.0", "3.504", "1686153611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13394", "0.0", "1.752", "1686153611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13394", "0.0", "3.504", "1686153611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13395", "0.0", "1.752", "1686157211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13395", "0.0", "3.504", "1686157211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13395", "0.0", "1.752", "1686157211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13395", "0.0", "3.504", "1686157211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13396", "0.0", "1.752", "1686160823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13396", "0.0", "3.504", "1686160823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13396", "0.0", "1.752", "1686160823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13396", "0.0", "3.504", "1686160823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13397", "0.0", "1.752", "1686164411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13397", "0.0", "3.504", "1686164411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13397", "0.0", "1.752", "1686164411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13397", "0.0", "3.504", "1686164411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13398", "0.0", "1.752", "1686168011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13398", "0.0", "3.504", "1686168011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13398", "0.0", "1.752", "1686168011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13398", "0.0", "3.504", "1686168011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13399", "0.0", "1.752", "1686171611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13399", "0.0", "3.504", "1686171611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13399", "0.0", "1.752", "1686171611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13399", "0.0", "3.504", "1686171611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13400", "0.0", "1.752", "1686175211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13400", "0.0", "3.504", "1686175211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13400", "0.0", "1.752", "1686175211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13400", "0.0", "3.504", "1686175211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13401", "0.0", "1.752", "1686178811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13401", "0.0", "3.504", "1686178811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13401", "0.0", "1.752", "1686178811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13401", "0.0", "3.504", "1686178811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13402", "0.0", "1.752", "1686182411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13402", "0.0", "3.504", "1686182411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13402", "0.0", "1.752", "1686182411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13402", "0.0", "3.504", "1686182411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13403", "0.0", "1.752", "1686186011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13403", "0.0", "3.504", "1686186011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13403", "0.0", "1.752", "1686186011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13403", "0.0", "3.504", "1686186011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13404", "0.0", "1.752", "1686189611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13404", "0.0", "3.504", "1686189611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13404", "0.0", "1.752", "1686189611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13404", "0.0", "3.504", "1686189611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13405", "0.0", "1.752", "1686193223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13405", "0.0", "3.504", "1686193223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13405", "0.0", "1.752", "1686193223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13405", "0.0", "3.504", "1686193223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13406", "0.0", "1.752", "1686196811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13406", "0.0", "3.504", "1686196811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13406", "0.0", "1.752", "1686196811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13406", "0.0", "3.504", "1686196811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13407", "0.0", "1.752", "1686200411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13407", "0.0", "3.504", "1686200411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13407", "0.0", "1.752", "1686200411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13407", "0.0", "3.504", "1686200411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13408", "0.0", "1.752", "1686204011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13408", "0.0", "3.504", "1686204011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13408", "0.0", "1.752", "1686204011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13408", "0.0", "3.504", "1686204011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13409", "0.0", "1.752", "1686207611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13409", "0.0", "3.504", "1686207611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13409", "0.0", "1.752", "1686207611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13409", "0.0", "3.504", "1686207611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13410", "0.0", "1.752", "1686211211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13410", "0.0", "3.504", "1686211211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13410", "0.0", "1.752", "1686211211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13410", "0.0", "3.504", "1686211211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13411", "0.0", "1.752", "1686214811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13411", "0.0", "3.504", "1686214811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13411", "0.0", "1.752", "1686214811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13411", "0.0", "3.504", "1686214811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13412", "0.0", "1.752", "1686218411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13412", "0.0", "3.504", "1686218411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13412", "0.0", "1.752", "1686218411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13412", "0.0", "3.504", "1686218411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13413", "0.0", "1.752", "1686222011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13413", "0.0", "3.504", "1686222011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13413", "0.0", "1.752", "1686222011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13413", "0.0", "3.504", "1686222011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13414", "0.0", "1.752", "1686225611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13414", "0.0", "3.504", "1686225611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13414", "0.0", "1.752", "1686225611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13414", "0.0", "3.504", "1686225611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13415", "0.0", "1.752", "1686229211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13415", "0.0", "3.504", "1686229211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13415", "0.0", "1.752", "1686229211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13415", "0.0", "3.504", "1686229211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13416", "0.0", "1.752", "1686232811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13416", "0.0", "3.504", "1686232811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13416", "0.0", "1.752", "1686232811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13416", "0.0", "3.504", "1686232811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13417", "0.0", "1.752", "1686236411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13417", "0.0", "3.504", "1686236411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13417", "0.0", "1.752", "1686236411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13417", "0.0", "3.504", "1686236411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13418", "0.0", "1.752", "1686240011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13418", "0.0", "3.504", "1686240011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13418", "0.0", "1.752", "1686240011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13418", "0.0", "3.504", "1686240011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13419", "0.0", "1.752", "1686243611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13419", "0.0", "3.504", "1686243611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13419", "0.0", "1.752", "1686243611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13419", "0.0", "3.504", "1686243611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13420", "0.0", "1.752", "1686247211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13420", "0.0", "3.504", "1686247211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13420", "0.0", "1.752", "1686247211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13420", "0.0", "3.504", "1686247211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13421", "0.0", "1.752", "1686250811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13421", "0.0", "3.504", "1686250811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13421", "0.0", "1.752", "1686250811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13421", "0.0", "3.504", "1686250811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13422", "0.0", "1.752", "1686254411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13422", "0.0", "3.504", "1686254411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13422", "0.0", "1.752", "1686254411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13422", "0.0", "3.504", "1686254411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13423", "0.0", "1.752", "1686258011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13423", "0.0", "3.504", "1686258011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13423", "0.0", "1.752", "1686258011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13423", "0.0", "3.504", "1686258011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13424", "0.0", "1.752", "1686261611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13424", "0.0", "3.504", "1686261611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13424", "0.0", "1.752", "1686261611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13424", "0.0", "3.504", "1686261611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13425", "0.0", "1.752", "1686265211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13425", "0.0", "3.504", "1686265211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13425", "0.0", "1.752", "1686265211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13425", "0.0", "3.504", "1686265211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13426", "0.0", "1.752", "1686268811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13426", "0.0", "3.504", "1686268811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13426", "0.0", "1.752", "1686268811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13426", "0.0", "3.504", "1686268811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13427", "0.0", "1.752", "1686272411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13427", "0.0", "3.504", "1686272411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13427", "0.0", "1.752", "1686272411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13427", "0.0", "3.504", "1686272411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13428", "0.0", "1.752", "1686276011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13428", "0.0", "3.504", "1686276011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13428", "0.0", "1.752", "1686276011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13428", "0.0", "3.504", "1686276011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13429", "0.0", "1.752", "1686279611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13429", "0.0", "3.504", "1686279611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13429", "0.0", "1.752", "1686279611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13429", "0.0", "3.504", "1686279611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13430", "0.0", "1.752", "1686283211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13430", "0.0", "3.504", "1686283211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13430", "0.0", "1.752", "1686283211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13430", "0.0", "3.504", "1686283211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13431", "0.0", "1.752", "1686286811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13431", "0.0", "3.504", "1686286811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13431", "0.0", "1.752", "1686286811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13431", "0.0", "3.504", "1686286811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13432", "0.0", "1.752", "1686290411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13432", "0.0", "3.504", "1686290411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13432", "0.0", "1.752", "1686290411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13432", "0.0", "3.504", "1686290411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13433", "0.0", "1.752", "1686294011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13433", "0.0", "3.504", "1686294011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13433", "0.0", "1.752", "1686294011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13433", "0.0", "3.504", "1686294011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13434", "0.0", "1.752", "1686297611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13434", "0.0", "3.504", "1686297611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13434", "0.0", "1.752", "1686297611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13434", "0.0", "3.504", "1686297611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13435", "0.0", "1.752", "1686301211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13435", "0.0", "3.504", "1686301211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13435", "0.0", "1.752", "1686301211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13435", "0.0", "3.504", "1686301211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13436", "0.0", "1.752", "1686304811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13436", "0.0", "3.504", "1686304811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13436", "0.0", "1.752", "1686304811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13436", "0.0", "3.504", "1686304811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13437", "0.0", "1.752", "1686308411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13437", "0.0", "3.504", "1686308411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13437", "0.0", "1.752", "1686308411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13437", "0.0", "3.504", "1686308411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13438", "0.0", "1.752", "1686312011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13438", "0.0", "3.504", "1686312011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13438", "0.0", "1.752", "1686312011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13438", "0.0", "3.504", "1686312011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13439", "0.0", "1.752", "1686315611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13439", "0.0", "3.504", "1686315611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13439", "0.0", "1.752", "1686315611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13439", "0.0", "3.504", "1686315611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13440", "0.0", "1.752", "1686319223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13440", "0.0", "3.504", "1686319223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13440", "0.0", "1.752", "1686319223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13440", "0.0", "3.504", "1686319223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13441", "0.0", "1.752", "1686322835"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13441", "0.0", "3.504", "1686322835"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13441", "0.0", "1.752", "1686322835"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13441", "0.0", "3.504", "1686322835"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13442", "0.0", "1.752", "1686326411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13442", "0.0", "3.504", "1686326411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13442", "0.0", "1.752", "1686326411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13442", "0.0", "3.504", "1686326411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13443", "0.0", "1.752", "1686330011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13443", "0.0", "3.504", "1686330011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13443", "0.0", "1.752", "1686330011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13443", "0.0", "3.504", "1686330011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13444", "0.0", "1.752", "1686333611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13444", "0.0", "3.504", "1686333611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13444", "0.0", "1.752", "1686333611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13444", "0.0", "3.504", "1686333611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13445", "0.0", "1.752", "1686337211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13445", "0.0", "3.504", "1686337211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13445", "0.0", "1.752", "1686337211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13445", "0.0", "3.504", "1686337211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13446", "0.0", "1.752", "1686340811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13446", "0.0", "3.504", "1686340811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13446", "0.0", "1.752", "1686340811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13446", "0.0", "3.504", "1686340811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13447", "0.0", "1.752", "1686344411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13447", "0.0", "3.504", "1686344411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13447", "0.0", "1.752", "1686344411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13447", "0.0", "3.504", "1686344411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13448", "0.0", "1.752", "1686348011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13448", "0.0", "3.504", "1686348011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13448", "0.0", "1.752", "1686348011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13448", "0.0", "3.504", "1686348011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13449", "0.0", "1.752", "1686351611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13449", "0.0", "3.504", "1686351611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13449", "0.0", "1.752", "1686351611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13449", "0.0", "3.504", "1686351611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13450", "0.0", "1.752", "1686355211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13450", "0.0", "3.504", "1686355211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13450", "0.0", "1.752", "1686355211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13450", "0.0", "3.504", "1686355211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13451", "0.0", "1.752", "1686358823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13451", "0.0", "3.504", "1686358823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13451", "0.0", "1.752", "1686358823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13451", "0.0", "3.504", "1686358823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13452", "0.0", "1.752", "1686362411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13452", "0.0", "3.504", "1686362411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13452", "0.0", "1.752", "1686362411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13452", "0.0", "3.504", "1686362411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13453", "0.0", "1.752", "1686366011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13453", "0.0", "3.504", "1686366011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13453", "0.0", "1.752", "1686366011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13453", "0.0", "3.504", "1686366011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13454", "0.0", "1.752", "1686369611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13454", "0.0", "3.504", "1686369611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13454", "0.0", "1.752", "1686369611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13454", "0.0", "3.504", "1686369611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13455", "0.0", "1.752", "1686373211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13455", "0.0", "3.504", "1686373211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13455", "0.0", "1.752", "1686373211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13455", "0.0", "3.504", "1686373211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13456", "0.0", "1.752", "1686376811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13456", "0.0", "3.504", "1686376811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13456", "0.0", "1.752", "1686376811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13456", "0.0", "3.504", "1686376811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13457", "0.0", "1.752", "1686380411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13457", "0.0", "3.504", "1686380411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13457", "0.0", "1.752", "1686380411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13457", "0.0", "3.504", "1686380411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13458", "0.0", "1.752", "1686384011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13458", "0.0", "3.504", "1686384011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13458", "0.0", "1.752", "1686384011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13458", "0.0", "3.504", "1686384011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13459", "0.0", "1.752", "1686387611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13459", "0.0", "3.504", "1686387611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13459", "0.0", "1.752", "1686387611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13459", "0.0", "3.504", "1686387611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13460", "0.0", "1.752", "1686391211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13460", "0.0", "3.504", "1686391211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13460", "0.0", "1.752", "1686391211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13460", "0.0", "3.504", "1686391211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13461", "0.0", "1.752", "1686394811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13461", "0.0", "3.504", "1686394811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13461", "0.0", "1.752", "1686394811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13461", "0.0", "3.504", "1686394811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13462", "0.0", "1.752", "1686398411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13462", "0.0", "3.504", "1686398411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13462", "0.0", "1.752", "1686398411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13462", "0.0", "3.504", "1686398411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13463", "0.0", "1.752", "1686402011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13463", "0.0", "3.504", "1686402011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13463", "0.0", "1.752", "1686402011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13463", "0.0", "3.504", "1686402011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13464", "0.0", "1.752", "1686405611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13464", "0.0", "3.504", "1686405611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13464", "0.0", "1.752", "1686405611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13464", "0.0", "3.504", "1686405611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13465", "0.0", "1.752", "1686409211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13465", "0.0", "3.504", "1686409211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13465", "0.0", "1.752", "1686409211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13465", "0.0", "3.504", "1686409211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13466", "0.0", "1.752", "1686412811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13466", "0.0", "3.504", "1686412811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13466", "0.0", "1.752", "1686412811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13466", "0.0", "3.504", "1686412811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13467", "0.0", "1.752", "1686416411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13467", "0.0", "3.504", "1686416411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13467", "0.0", "1.752", "1686416411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13467", "0.0", "3.504", "1686416411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13468", "0.0", "1.752", "1686420011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13468", "0.0", "3.504", "1686420011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13468", "0.0", "1.752", "1686420011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13468", "0.0", "3.504", "1686420011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13469", "0.0", "1.752", "1686423611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13469", "0.0", "3.504", "1686423611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13469", "0.0", "1.752", "1686423611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13469", "0.0", "3.504", "1686423611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13470", "0.0", "1.752", "1686427211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13470", "0.0", "3.504", "1686427211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13470", "0.0", "1.752", "1686427211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13470", "0.0", "3.504", "1686427211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13471", "0.0", "1.752", "1686430811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13471", "0.0", "3.504", "1686430811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13471", "0.0", "1.752", "1686430811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13471", "0.0", "3.504", "1686430811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13472", "0.0", "1.752", "1686434411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13472", "0.0", "3.504", "1686434411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13472", "0.0", "1.752", "1686434411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13472", "0.0", "3.504", "1686434411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13473", "0.0", "1.752", "1686438011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13473", "0.0", "3.504", "1686438011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13473", "0.0", "1.752", "1686438011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13473", "0.0", "3.504", "1686438011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13474", "0.0", "1.752", "1686441611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13474", "0.0", "3.504", "1686441611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13474", "0.0", "1.752", "1686441611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13474", "0.0", "3.504", "1686441611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13475", "0.0", "1.752", "1686445211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13475", "0.0", "3.504", "1686445211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13475", "0.0", "1.752", "1686445211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13475", "0.0", "3.504", "1686445211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13476", "0.0", "1.752", "1686448811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13476", "0.0", "3.504", "1686448811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13476", "0.0", "1.752", "1686448811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13476", "0.0", "3.504", "1686448811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13477", "0.0", "1.752", "1686452411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13477", "0.0", "3.504", "1686452411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13477", "0.0", "1.752", "1686452411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13477", "0.0", "3.504", "1686452411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13478", "0.0", "1.752", "1686456011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13478", "0.0", "3.504", "1686456011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13478", "0.0", "1.752", "1686456011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13478", "0.0", "3.504", "1686456011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13479", "0.0", "1.752", "1686459623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13479", "0.0", "3.504", "1686459623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13479", "0.0", "1.752", "1686459623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13479", "0.0", "3.504", "1686459623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13480", "0.0", "1.752", "1686463211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13480", "0.0", "3.504", "1686463211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13480", "0.0", "1.752", "1686463211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13480", "0.0", "3.504", "1686463211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13481", "0.0", "1.752", "1686466811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13481", "0.0", "3.504", "1686466811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13481", "0.0", "1.752", "1686466811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13481", "0.0", "3.504", "1686466811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13482", "0.0", "1.752", "1686470411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13482", "0.0", "3.504", "1686470411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13482", "0.0", "1.752", "1686470411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13482", "0.0", "3.504", "1686470411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13483", "0.0", "1.752", "1686474011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13483", "0.0", "3.504", "1686474011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13483", "0.0", "1.752", "1686474011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13483", "0.0", "3.504", "1686474011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13484", "0.0", "1.752", "1686477611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13484", "0.0", "3.504", "1686477611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13484", "0.0", "1.752", "1686477611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13484", "0.0", "3.504", "1686477611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13485", "0.0", "1.752", "1686481211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13485", "0.0", "3.504", "1686481211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13485", "0.0", "1.752", "1686481211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13485", "0.0", "3.504", "1686481211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13486", "0.0", "1.752", "1686484811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13486", "0.0", "3.504", "1686484811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13486", "0.0", "1.752", "1686484811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13486", "0.0", "3.504", "1686484811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13487", "0.0", "1.752", "1686488423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13487", "0.0", "3.504", "1686488423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13487", "0.0", "1.752", "1686488423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13487", "0.0", "3.504", "1686488423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13488", "0.0", "1.752", "1686492011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13488", "0.0", "3.504", "1686492011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13488", "0.0", "1.752", "1686492011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13488", "0.0", "3.504", "1686492011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13489", "0.0", "1.752", "1686495611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13489", "0.0", "3.504", "1686495611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13489", "0.0", "1.752", "1686495611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13489", "0.0", "3.504", "1686495611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13490", "0.0", "1.752", "1686499211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13490", "0.0", "3.504", "1686499211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13490", "0.0", "1.752", "1686499211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13490", "0.0", "3.504", "1686499211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13491", "0.0", "1.752", "1686502811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13491", "0.0", "3.504", "1686502811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13491", "0.0", "1.752", "1686502811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13491", "0.0", "3.504", "1686502811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13492", "0.0", "1.752", "1686506411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13492", "0.0", "3.504", "1686506411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13492", "0.0", "1.752", "1686506411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13492", "0.0", "3.504", "1686506411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13493", "0.0", "1.752", "1686510011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13493", "0.0", "3.504", "1686510011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13493", "0.0", "1.752", "1686510011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13493", "0.0", "3.504", "1686510011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13494", "0.0", "1.752", "1686513611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13494", "0.0", "3.504", "1686513611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13494", "0.0", "1.752", "1686513611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13494", "0.0", "3.504", "1686513611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13495", "0.0", "1.752", "1686517211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13495", "0.0", "3.504", "1686517211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13495", "0.0", "1.752", "1686517211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13495", "0.0", "3.504", "1686517211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13496", "0.0", "1.752", "1686520811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13496", "0.0", "3.504", "1686520811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13496", "0.0", "1.752", "1686520811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13496", "0.0", "3.504", "1686520811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13497", "0.0", "1.752", "1686524411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13497", "0.0", "3.504", "1686524411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13497", "0.0", "1.752", "1686524411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13497", "0.0", "3.504", "1686524411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13498", "0.0", "1.752", "1686528011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13498", "0.0", "3.504", "1686528011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13498", "0.0", "1.752", "1686528011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13498", "0.0", "3.504", "1686528011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13499", "0.0", "1.752", "1686531611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13499", "0.0", "3.504", "1686531611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13499", "0.0", "1.752", "1686531611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13499", "0.0", "3.504", "1686531611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13500", "0.0", "1.752", "1686535211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13500", "0.0", "3.504", "1686535211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13500", "0.0", "1.752", "1686535211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13500", "0.0", "3.504", "1686535211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13501", "0.0", "1.752", "1686538811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13501", "0.0", "3.504", "1686538811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13501", "0.0", "1.752", "1686538811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13501", "0.0", "3.504", "1686538811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13502", "0.0", "1.752", "1686542411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13502", "0.0", "3.504", "1686542411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13502", "0.0", "1.752", "1686542411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13502", "0.0", "3.504", "1686542411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13503", "0.0", "1.752", "1686546011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13503", "0.0", "3.504", "1686546011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13503", "0.0", "1.752", "1686546011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13503", "0.0", "3.504", "1686546011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13504", "0.0", "1.752", "1686549611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13504", "0.0", "3.504", "1686549611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13504", "0.0", "1.752", "1686549611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13504", "0.0", "3.504", "1686549611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13505", "0.0", "1.752", "1686553211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13505", "0.0", "3.504", "1686553211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13505", "0.0", "1.752", "1686553211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13505", "0.0", "3.504", "1686553211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13506", "0.0", "1.752", "1686556823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13506", "0.0", "3.504", "1686556823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13506", "0.0", "1.752", "1686556823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13506", "0.0", "3.504", "1686556823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13507", "0.0", "1.752", "1686560411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13507", "0.0", "3.504", "1686560411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13507", "0.0", "1.752", "1686560411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13507", "0.0", "3.504", "1686560411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13508", "0.0", "1.752", "1686564035"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13508", "0.0", "3.504", "1686564035"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13508", "0.0", "1.752", "1686564035"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13508", "0.0", "3.504", "1686564035"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13509", "0.0", "1.752", "1686567611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13509", "0.0", "3.504", "1686567611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13509", "0.0", "1.752", "1686567611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13509", "0.0", "3.504", "1686567611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13510", "0.0", "1.752", "1686571211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13510", "0.0", "3.504", "1686571211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13510", "0.0", "1.752", "1686571211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13510", "0.0", "3.504", "1686571211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13511", "0.0", "1.752", "1686574811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13511", "0.0", "3.504", "1686574811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13511", "0.0", "1.752", "1686574811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13511", "0.0", "3.504", "1686574811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13512", "0.0", "1.752", "1686578411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13512", "0.0", "3.504", "1686578411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13512", "0.0", "1.752", "1686578411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13512", "0.0", "3.504", "1686578411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13513", "0.0", "1.752", "1686582011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13513", "0.0", "3.504", "1686582011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13513", "0.0", "1.752", "1686582011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13513", "0.0", "3.504", "1686582011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13514", "0.0", "1.752", "1686585611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13514", "0.0", "3.504", "1686585611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13514", "0.0", "1.752", "1686585611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13514", "0.0", "3.504", "1686585611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13515", "0.0", "1.752", "1686589211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13515", "0.0", "3.504", "1686589211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13515", "0.0", "1.752", "1686589211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13515", "0.0", "3.504", "1686589211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13516", "0.0", "1.752", "1686592811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13516", "0.0", "3.504", "1686592811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13516", "0.0", "1.752", "1686592811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13516", "0.0", "3.504", "1686592811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13517", "0.0", "1.752", "1686596411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13517", "0.0", "3.504", "1686596411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13517", "0.0", "1.752", "1686596411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13517", "0.0", "3.504", "1686596411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13518", "0.0", "1.752", "1686600011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13518", "0.0", "3.504", "1686600011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13518", "0.0", "1.752", "1686600011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13518", "0.0", "3.504", "1686600011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13519", "0.0", "1.752", "1686603611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13519", "0.0", "3.504", "1686603611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13519", "0.0", "1.752", "1686603611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13519", "0.0", "3.504", "1686603611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13520", "0.0", "1.752", "1686607211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13520", "0.0", "3.504", "1686607211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13520", "0.0", "1.752", "1686607211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13520", "0.0", "3.504", "1686607211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13521", "0.0", "1.752", "1686610811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13521", "0.0", "3.504", "1686610811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13521", "0.0", "1.752", "1686610811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13521", "0.0", "3.504", "1686610811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13522", "0.0", "1.752", "1686614411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13522", "0.0", "3.504", "1686614411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13522", "0.0", "1.752", "1686614411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13522", "0.0", "3.504", "1686614411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13523", "0.0", "1.752", "1686618011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13523", "0.0", "3.504", "1686618011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13523", "0.0", "1.752", "1686618011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13523", "0.0", "3.504", "1686618011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13524", "0.0", "1.752", "1686621611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13524", "0.0", "3.504", "1686621611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13524", "0.0", "1.752", "1686621611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13524", "0.0", "3.504", "1686621611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13525", "0.0", "1.752", "1686625211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13525", "0.0", "3.504", "1686625211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13525", "0.0", "1.752", "1686625211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13525", "0.0", "3.504", "1686625211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13526", "0.0", "1.752", "1686628811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13526", "0.0", "3.504", "1686628811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13526", "0.0", "1.752", "1686628811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13526", "0.0", "3.504", "1686628811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13527", "0.0", "1.752", "1686632411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13527", "0.0", "3.504", "1686632411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13527", "0.0", "1.752", "1686632411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13527", "0.0", "3.504", "1686632411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13528", "0.0", "1.752", "1686636011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13528", "0.0", "3.504", "1686636011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13528", "0.0", "1.752", "1686636011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13528", "0.0", "3.504", "1686636011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13529", "0.0", "1.752", "1686639611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13529", "0.0", "3.504", "1686639611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13529", "0.0", "1.752", "1686639611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13529", "0.0", "3.504", "1686639611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13530", "0.0", "1.752", "1686643211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13530", "0.0", "3.504", "1686643211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13530", "0.0", "1.752", "1686643211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13530", "0.0", "3.504", "1686643211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13531", "0.0", "1.752", "1686646811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13531", "0.0", "3.504", "1686646811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13531", "0.0", "1.752", "1686646811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13531", "0.0", "3.504", "1686646811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13532", "0.0", "1.752", "1686650411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13532", "0.0", "3.504", "1686650411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13532", "0.0", "1.752", "1686650411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13532", "0.0", "3.504", "1686650411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13533", "0.0", "1.752", "1686654011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13533", "0.0", "3.504", "1686654011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13533", "0.0", "1.752", "1686654011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13533", "0.0", "3.504", "1686654011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13534", "0.0", "1.752", "1686657611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13534", "0.0", "3.504", "1686657611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13534", "0.0", "1.752", "1686657611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13534", "0.0", "3.504", "1686657611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13535", "0.0", "1.752", "1686661211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13535", "0.0", "3.504", "1686661211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13535", "0.0", "1.752", "1686661211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13535", "0.0", "3.504", "1686661211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13536", "0.0", "1.752", "1686664811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13536", "0.0", "3.504", "1686664811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13536", "0.0", "1.752", "1686664811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13536", "0.0", "3.504", "1686664811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13537", "0.0", "1.752", "1686668411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13537", "0.0", "3.504", "1686668411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13537", "0.0", "1.752", "1686668411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13537", "0.0", "3.504", "1686668411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13538", "0.0", "1.752", "1686672011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13538", "0.0", "3.504", "1686672011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13538", "0.0", "1.752", "1686672011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13538", "0.0", "3.504", "1686672011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13539", "0.0", "1.752", "1686675611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13539", "0.0", "3.504", "1686675611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13539", "0.0", "1.752", "1686675611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13539", "0.0", "3.504", "1686675611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13540", "0.0", "1.752", "1686679211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13540", "0.0", "3.504", "1686679211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13540", "0.0", "1.752", "1686679211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13540", "0.0", "3.504", "1686679211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13541", "0.0", "1.752", "1686682811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13541", "0.0", "3.504", "1686682811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13541", "0.0", "1.752", "1686682811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13541", "0.0", "3.504", "1686682811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13542", "0.0", "1.752", "1686686411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13542", "0.0", "3.504", "1686686411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13542", "0.0", "1.752", "1686686411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13542", "0.0", "3.504", "1686686411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13543", "0.0", "1.752", "1686690011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13543", "0.0", "3.504", "1686690011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13543", "0.0", "1.752", "1686690011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13543", "0.0", "3.504", "1686690011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13544", "0.0", "1.752", "1686693611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13544", "0.0", "3.504", "1686693611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13544", "0.0", "1.752", "1686693611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13544", "0.0", "3.504", "1686693611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13545", "0.0", "1.752", "1686697211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13545", "0.0", "3.504", "1686697211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13545", "0.0", "1.752", "1686697211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13545", "0.0", "3.504", "1686697211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13546", "0.0", "1.752", "1686700811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13546", "0.0", "3.504", "1686700811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13546", "0.0", "1.752", "1686700811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13546", "0.0", "3.504", "1686700811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13547", "0.0", "1.752", "1686704411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13547", "0.0", "3.504", "1686704411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13547", "0.0", "1.752", "1686704411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13547", "0.0", "3.504", "1686704411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13548", "0.0", "1.752", "1686708011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13548", "0.0", "3.504", "1686708011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13548", "0.0", "1.752", "1686708011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13548", "0.0", "3.504", "1686708011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13549", "0.0", "1.752", "1686711611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13549", "0.0", "3.504", "1686711611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13549", "0.0", "1.752", "1686711611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13549", "0.0", "3.504", "1686711611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13550", "0.0", "1.752", "1686715211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13550", "0.0", "3.504", "1686715211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13550", "0.0", "1.752", "1686715211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13550", "0.0", "3.504", "1686715211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13551", "0.0", "1.752", "1686718811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13551", "0.0", "3.504", "1686718811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13551", "0.0", "1.752", "1686718811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13551", "0.0", "3.504", "1686718811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13552", "0.0", "1.752", "1686722411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13552", "0.0", "3.504", "1686722411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13552", "0.0", "1.752", "1686722411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13552", "0.0", "3.504", "1686722411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13553", "0.0", "1.752", "1686726011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13553", "0.0", "3.504", "1686726011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13553", "0.0", "1.752", "1686726011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13553", "0.0", "3.504", "1686726011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13554", "0.0", "1.752", "1686729611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13554", "0.0", "3.504", "1686729611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13554", "0.0", "1.752", "1686729611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13554", "0.0", "3.504", "1686729611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13555", "0.0", "1.752", "1686733211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13555", "0.0", "3.504", "1686733211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13555", "0.0", "1.752", "1686733211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13555", "0.0", "3.504", "1686733211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13556", "0.0", "1.752", "1686736811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13556", "0.0", "3.504", "1686736811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13556", "0.0", "1.752", "1686736811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13556", "0.0", "3.504", "1686736811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13557", "0.0", "1.752", "1686740411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13557", "0.0", "3.504", "1686740411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13557", "0.0", "1.752", "1686740411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13557", "0.0", "3.504", "1686740411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13558", "0.0", "1.752", "1686744011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13558", "0.0", "3.504", "1686744011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13558", "0.0", "1.752", "1686744011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13558", "0.0", "3.504", "1686744011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13559", "0.0", "1.752", "1686747611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13559", "0.0", "3.504", "1686747611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13559", "0.0", "1.752", "1686747611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13559", "0.0", "3.504", "1686747611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13560", "0.0", "1.752", "1686751211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13560", "0.0", "3.504", "1686751211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13560", "0.0", "1.752", "1686751211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13560", "0.0", "3.504", "1686751211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13561", "0.0", "1.752", "1686754811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13561", "0.0", "3.504", "1686754811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13561", "0.0", "1.752", "1686754811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13561", "0.0", "3.504", "1686754811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13562", "0.0", "1.752", "1686758411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13562", "0.0", "3.504", "1686758411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13562", "0.0", "1.752", "1686758411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13562", "0.0", "3.504", "1686758411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13563", "0.0", "1.752", "1686762011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13563", "0.0", "3.504", "1686762011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13563", "0.0", "1.752", "1686762011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13563", "0.0", "3.504", "1686762011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13564", "0.0", "1.752", "1686765611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13564", "0.0", "3.504", "1686765611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13564", "0.0", "1.752", "1686765611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13564", "0.0", "3.504", "1686765611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13565", "0.0", "1.752", "1686769211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13565", "0.0", "3.504", "1686769211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13565", "0.0", "1.752", "1686769211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13565", "0.0", "3.504", "1686769211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13566", "0.0", "1.752", "1686772811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13566", "0.0", "3.504", "1686772811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13566", "0.0", "1.752", "1686772811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13566", "0.0", "3.504", "1686772811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13567", "0.0", "1.752", "1686776411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13567", "0.0", "3.504", "1686776411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13567", "0.0", "1.752", "1686776411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13567", "0.0", "3.504", "1686776411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13568", "0.0", "1.752", "1686780011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13568", "0.0", "3.504", "1686780011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13568", "0.0", "1.752", "1686780011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13568", "0.0", "3.504", "1686780011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13569", "0.0", "1.752", "1686783611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13569", "0.0", "3.504", "1686783611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13569", "0.0", "1.752", "1686783611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13569", "0.0", "3.504", "1686783611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13570", "0.0", "1.752", "1686787211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13570", "0.0", "3.504", "1686787211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13570", "0.0", "1.752", "1686787211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13570", "0.0", "3.504", "1686787211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13571", "0.0", "1.752", "1686790811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13571", "0.0", "3.504", "1686790811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13571", "0.0", "1.752", "1686790811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13571", "0.0", "3.504", "1686790811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13572", "0.0", "1.752", "1686794411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13572", "0.0", "3.504", "1686794411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13572", "0.0", "1.752", "1686794411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13572", "0.0", "3.504", "1686794411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13573", "0.0", "1.752", "1686798011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13573", "0.0", "3.504", "1686798011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13573", "0.0", "1.752", "1686798011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13573", "0.0", "3.504", "1686798011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13574", "0.0", "1.752", "1686801611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13574", "0.0", "3.504", "1686801611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13574", "0.0", "1.752", "1686801611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13574", "0.0", "3.504", "1686801611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13575", "0.0", "1.752", "1686805211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13575", "0.0", "3.504", "1686805211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13575", "0.0", "1.752", "1686805211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13575", "0.0", "3.504", "1686805211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13576", "0.0", "1.752", "1686808811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13576", "0.0", "3.504", "1686808811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13576", "0.0", "1.752", "1686808811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13576", "0.0", "3.504", "1686808811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13577", "0.0", "1.752", "1686812411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13577", "0.0", "3.504", "1686812411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13577", "0.0", "1.752", "1686812411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13577", "0.0", "3.504", "1686812411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13578", "0.0", "1.752", "1686816035"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13578", "0.0", "3.504", "1686816035"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13578", "0.0", "1.752", "1686816035"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13578", "0.0", "3.504", "1686816035"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13579", "0.0", "1.752", "1686819611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13579", "0.0", "3.504", "1686819611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13579", "0.0", "1.752", "1686819611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13579", "0.0", "3.504", "1686819611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13580", "0.0", "1.752", "1686823211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13580", "0.0", "3.504", "1686823211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13580", "0.0", "1.752", "1686823211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13580", "0.0", "3.504", "1686823211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13581", "0.0", "1.752", "1686826835"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13581", "0.0", "3.504", "1686826835"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13581", "0.0", "1.752", "1686826835"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13581", "0.0", "3.504", "1686826835"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13582", "0.0", "1.752", "1686830411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13582", "0.0", "3.504", "1686830411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13582", "0.0", "1.752", "1686830411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13582", "0.0", "3.504", "1686830411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13583", "0.0", "1.752", "1686834023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13583", "0.0", "3.504", "1686834023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13583", "0.0", "1.752", "1686834023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13583", "0.0", "3.504", "1686834023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13584", "0.0", "1.752", "1686837611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13584", "0.0", "3.504", "1686837611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13584", "0.0", "1.752", "1686837611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13584", "0.0", "3.504", "1686837611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13585", "0.0", "1.752", "1686841211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13585", "0.0", "3.504", "1686841211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13585", "0.0", "1.752", "1686841211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13585", "0.0", "3.504", "1686841211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13586", "0.0", "1.752", "1686844811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13586", "0.0", "3.504", "1686844811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13586", "0.0", "1.752", "1686844811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13586", "0.0", "3.504", "1686844811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13587", "0.0", "1.752", "1686848411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13587", "0.0", "3.504", "1686848411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13587", "0.0", "1.752", "1686848411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13587", "0.0", "3.504", "1686848411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13588", "0.0", "1.752", "1686852011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13588", "0.0", "3.504", "1686852011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13588", "0.0", "1.752", "1686852011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13588", "0.0", "3.504", "1686852011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13589", "0.0", "1.752", "1686855611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13589", "0.0", "3.504", "1686855611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13589", "0.0", "1.752", "1686855611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13589", "0.0", "3.504", "1686855611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13590", "0.0", "1.752", "1686859211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13590", "0.0", "3.504", "1686859211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13590", "0.0", "1.752", "1686859211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13590", "0.0", "3.504", "1686859211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13591", "0.0", "1.752", "1686862811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13591", "0.0", "3.504", "1686862811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13591", "0.0", "1.752", "1686862811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13591", "0.0", "3.504", "1686862811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13592", "0.0", "1.752", "1686866411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13592", "0.0", "3.504", "1686866411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13592", "0.0", "1.752", "1686866411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13592", "0.0", "3.504", "1686866411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13593", "0.0", "1.752", "1686870011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13593", "0.0", "3.504", "1686870011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13593", "0.0", "1.752", "1686870011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13593", "0.0", "3.504", "1686870011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13594", "0.0", "1.752", "1686873611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13594", "0.0", "3.504", "1686873611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13594", "0.0", "1.752", "1686873611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13594", "0.0", "3.504", "1686873611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13595", "0.0", "1.752", "1686877211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13595", "0.0", "3.504", "1686877211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13595", "0.0", "1.752", "1686877211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13595", "0.0", "3.504", "1686877211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13596", "0.0", "1.752", "1686880811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13596", "0.0", "3.504", "1686880811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13596", "0.0", "1.752", "1686880811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13596", "0.0", "3.504", "1686880811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13597", "0.0", "1.752", "1686884411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13597", "0.0", "3.504", "1686884411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13597", "0.0", "1.752", "1686884411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13597", "0.0", "3.504", "1686884411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13598", "0.0", "1.752", "1686888011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13598", "0.0", "3.504", "1686888011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13598", "0.0", "1.752", "1686888011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13598", "0.0", "3.504", "1686888011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13599", "0.0", "1.752", "1686891611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13599", "0.0", "3.504", "1686891611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13599", "0.0", "1.752", "1686891611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13599", "0.0", "3.504", "1686891611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13600", "0.0", "1.752", "1686895211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13600", "0.0", "3.504", "1686895211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13600", "0.0", "1.752", "1686895211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13600", "0.0", "3.504", "1686895211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13601", "0.0", "1.752", "1686898811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13601", "0.0", "3.504", "1686898811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13601", "0.0", "1.752", "1686898811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13601", "0.0", "3.504", "1686898811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13602", "0.0", "1.752", "1686902411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13602", "0.0", "3.504", "1686902411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13602", "0.0", "1.752", "1686902411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13602", "0.0", "3.504", "1686902411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13603", "0.0", "1.752", "1686906011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13603", "0.0", "3.504", "1686906011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13603", "0.0", "1.752", "1686906011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13603", "0.0", "3.504", "1686906011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13604", "0.0", "1.752", "1686909611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13604", "0.0", "3.504", "1686909611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13604", "0.0", "1.752", "1686909611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13604", "0.0", "3.504", "1686909611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13605", "0.0", "1.752", "1686913223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13605", "0.0", "3.504", "1686913223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13605", "0.0", "1.752", "1686913223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13605", "0.0", "3.504", "1686913223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13606", "0.0", "1.752", "1686916811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13606", "0.0", "3.504", "1686916811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13606", "0.0", "1.752", "1686916811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13606", "0.0", "3.504", "1686916811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13607", "0.0", "1.752", "1686920411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13607", "0.0", "3.504", "1686920411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13607", "0.0", "1.752", "1686920411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13607", "0.0", "3.504", "1686920411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13608", "0.0", "1.752", "1686924011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13608", "0.0", "3.504", "1686924011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13608", "0.0", "1.752", "1686924011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13608", "0.0", "3.504", "1686924011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13609", "0.0", "1.752", "1686927611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13609", "0.0", "3.504", "1686927611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13609", "0.0", "1.752", "1686927611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13609", "0.0", "3.504", "1686927611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13610", "0.0", "1.752", "1686931211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13610", "0.0", "3.504", "1686931211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13610", "0.0", "1.752", "1686931211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13610", "0.0", "3.504", "1686931211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13611", "0.0", "1.752", "1686934811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13611", "0.0", "3.504", "1686934811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13611", "0.0", "1.752", "1686934811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13611", "0.0", "3.504", "1686934811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13612", "0.0", "1.752", "1686938411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13612", "0.0", "3.504", "1686938411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13612", "0.0", "1.752", "1686938411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13612", "0.0", "3.504", "1686938411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13613", "0.0", "1.752", "1686942023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13613", "0.0", "3.504", "1686942023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13613", "0.0", "1.752", "1686942023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13613", "0.0", "3.504", "1686942023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13614", "0.0", "1.752", "1686945623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13614", "0.0", "3.504", "1686945623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13614", "0.0", "1.752", "1686945623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13614", "0.0", "3.504", "1686945623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13615", "0.0", "1.752", "1686949211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13615", "0.0", "3.504", "1686949211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13615", "0.0", "1.752", "1686949211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13615", "0.0", "3.504", "1686949211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13616", "0.0", "1.752", "1686952811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13616", "0.0", "3.504", "1686952811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13616", "0.0", "1.752", "1686952811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13616", "0.0", "3.504", "1686952811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13617", "0.0", "1.752", "1686956411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13617", "0.0", "3.504", "1686956411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13617", "0.0", "1.752", "1686956411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13617", "0.0", "3.504", "1686956411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13618", "0.0", "1.752", "1686960011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13618", "0.0", "3.504", "1686960011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13618", "0.0", "1.752", "1686960011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13618", "0.0", "3.504", "1686960011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13619", "0.0", "1.752", "1686963611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13619", "0.0", "3.504", "1686963611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13619", "0.0", "1.752", "1686963611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13619", "0.0", "3.504", "1686963611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13620", "0.0", "1.752", "1686967211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13620", "0.0", "3.504", "1686967211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13620", "0.0", "1.752", "1686967211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13620", "0.0", "3.504", "1686967211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13621", "0.0", "1.752", "1686970811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13621", "0.0", "3.504", "1686970811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13621", "0.0", "1.752", "1686970811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13621", "0.0", "3.504", "1686970811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13622", "0.0", "1.752", "1686974411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13622", "0.0", "3.504", "1686974411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13622", "0.0", "1.752", "1686974411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13622", "0.0", "3.504", "1686974411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13623", "0.0", "1.752", "1686978011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13623", "0.0", "3.504", "1686978011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13623", "0.0", "1.752", "1686978011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13623", "0.0", "3.504", "1686978011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13624", "0.0", "1.752", "1686981623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13624", "0.0", "3.504", "1686981623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13624", "0.0", "1.752", "1686981623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13624", "0.0", "3.504", "1686981623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13625", "0.0", "1.752", "1686985211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13625", "0.0", "3.504", "1686985211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13625", "0.0", "1.752", "1686985211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13625", "0.0", "3.504", "1686985211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13626", "0.0", "1.752", "1686988811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13626", "0.0", "3.504", "1686988811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13626", "0.0", "1.752", "1686988811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13626", "0.0", "3.504", "1686988811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13627", "0.0", "1.752", "1686992411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13627", "0.0", "3.504", "1686992411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13627", "0.0", "1.752", "1686992411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13627", "0.0", "3.504", "1686992411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13628", "0.0", "1.752", "1686996011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13628", "0.0", "3.504", "1686996011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13628", "0.0", "1.752", "1686996011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13628", "0.0", "3.504", "1686996011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13629", "0.0", "1.752", "1686999611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13629", "0.0", "3.504", "1686999611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13629", "0.0", "1.752", "1686999611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13629", "0.0", "3.504", "1686999611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13630", "0.0", "1.752", "1687003211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13630", "0.0", "3.504", "1687003211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13630", "0.0", "1.752", "1687003211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13630", "0.0", "3.504", "1687003211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13631", "0.0", "1.752", "1687006811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13631", "0.0", "3.504", "1687006811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13631", "0.0", "1.752", "1687006811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13631", "0.0", "3.504", "1687006811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13632", "0.0", "1.752", "1687010411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13632", "0.0", "3.504", "1687010411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13632", "0.0", "1.752", "1687010411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13632", "0.0", "3.504", "1687010411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13633", "0.0", "1.752", "1687014011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13633", "0.0", "3.504", "1687014011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13633", "0.0", "1.752", "1687014011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13633", "0.0", "3.504", "1687014011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13634", "0.0", "1.752", "1687017611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13634", "0.0", "3.504", "1687017611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13634", "0.0", "1.752", "1687017611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13634", "0.0", "3.504", "1687017611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13635", "0.0", "1.752", "1687021211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13635", "0.0", "3.504", "1687021211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13635", "0.0", "1.752", "1687021211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13635", "0.0", "3.504", "1687021211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13636", "0.0", "1.752", "1687024811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13636", "0.0", "3.504", "1687024811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13636", "0.0", "1.752", "1687024811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13636", "0.0", "3.504", "1687024811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13637", "0.0", "1.752", "1687028411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13637", "0.0", "3.504", "1687028411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13637", "0.0", "1.752", "1687028411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13637", "0.0", "3.504", "1687028411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13638", "0.0", "1.752", "1687032011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13638", "0.0", "3.504", "1687032011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13638", "0.0", "1.752", "1687032011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13638", "0.0", "3.504", "1687032011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13639", "0.0", "1.752", "1687035611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13639", "0.0", "3.504", "1687035611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13639", "0.0", "1.752", "1687035611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13639", "0.0", "3.504", "1687035611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13640", "0.0", "1.752", "1687039211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13640", "0.0", "3.504", "1687039211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13640", "0.0", "1.752", "1687039211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13640", "0.0", "3.504", "1687039211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13641", "0.0", "1.752", "1687042811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13641", "0.0", "3.504", "1687042811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13641", "0.0", "1.752", "1687042811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13641", "0.0", "3.504", "1687042811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13642", "0.0", "1.752", "1687046411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13642", "0.0", "3.504", "1687046411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13642", "0.0", "1.752", "1687046411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13642", "0.0", "3.504", "1687046411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13643", "0.0", "1.752", "1687050011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13643", "0.0", "3.504", "1687050011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13643", "0.0", "1.752", "1687050011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13643", "0.0", "3.504", "1687050011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13644", "0.0", "1.752", "1687053611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13644", "0.0", "3.504", "1687053611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13644", "0.0", "1.752", "1687053611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13644", "0.0", "3.504", "1687053611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13645", "0.0", "1.752", "1687057211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13645", "0.0", "3.504", "1687057211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13645", "0.0", "1.752", "1687057211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13645", "0.0", "3.504", "1687057211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13646", "0.0", "1.752", "1687060811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13646", "0.0", "3.504", "1687060811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13646", "0.0", "1.752", "1687060811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13646", "0.0", "3.504", "1687060811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13647", "0.0", "1.752", "1687064423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13647", "0.0", "3.504", "1687064423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13647", "0.0", "1.752", "1687064423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13647", "0.0", "3.504", "1687064423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13648", "0.0", "1.752", "1687068011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13648", "0.0", "3.504", "1687068011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13648", "0.0", "1.752", "1687068011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13648", "0.0", "3.504", "1687068011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13649", "0.0", "1.752", "1687071611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13649", "0.0", "3.504", "1687071611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13649", "0.0", "1.752", "1687071611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13649", "0.0", "3.504", "1687071611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13650", "0.0", "1.752", "1687075211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13650", "0.0", "3.504", "1687075211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13650", "0.0", "1.752", "1687075211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13650", "0.0", "3.504", "1687075211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13651", "0.0", "1.752", "1687078811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13651", "0.0", "3.504", "1687078811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13651", "0.0", "1.752", "1687078811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13651", "0.0", "3.504", "1687078811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13652", "0.0", "1.752", "1687082411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13652", "0.0", "3.504", "1687082411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13652", "0.0", "1.752", "1687082411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13652", "0.0", "3.504", "1687082411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13653", "0.0", "1.752", "1687086011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13653", "0.0", "3.504", "1687086011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13653", "0.0", "1.752", "1687086011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13653", "0.0", "3.504", "1687086011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13654", "0.0", "1.752", "1687089611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13654", "0.0", "3.504", "1687089611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13654", "0.0", "1.752", "1687089611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13654", "0.0", "3.504", "1687089611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13655", "0.0", "1.752", "1687093211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13655", "0.0", "3.504", "1687093211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13655", "0.0", "1.752", "1687093211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13655", "0.0", "3.504", "1687093211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13656", "0.0", "1.752", "1687096811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13656", "0.0", "3.504", "1687096811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13656", "0.0", "1.752", "1687096811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13656", "0.0", "3.504", "1687096811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13657", "0.0", "1.752", "1687100423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13657", "0.0", "3.504", "1687100423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13657", "0.0", "1.752", "1687100423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13657", "0.0", "3.504", "1687100423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13658", "0.0", "1.752", "1687104011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13658", "0.0", "3.504", "1687104011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13658", "0.0", "1.752", "1687104011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13658", "0.0", "3.504", "1687104011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13659", "0.0", "1.752", "1687107611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13659", "0.0", "3.504", "1687107611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13659", "0.0", "1.752", "1687107611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13659", "0.0", "3.504", "1687107611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13660", "0.0", "1.752", "1687111223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13660", "0.0", "3.504", "1687111223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13660", "0.0", "1.752", "1687111223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13660", "0.0", "3.504", "1687111223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13661", "0.0", "1.752", "1687114811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13661", "0.0", "3.504", "1687114811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13661", "0.0", "1.752", "1687114811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13661", "0.0", "3.504", "1687114811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13662", "0.0", "1.752", "1687118411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13662", "0.0", "3.504", "1687118411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13662", "0.0", "1.752", "1687118411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13662", "0.0", "3.504", "1687118411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13663", "0.0", "1.752", "1687122011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13663", "0.0", "3.504", "1687122011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13663", "0.0", "1.752", "1687122011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13663", "0.0", "3.504", "1687122011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13664", "0.0", "1.752", "1687125611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13664", "0.0", "3.504", "1687125611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13664", "0.0", "1.752", "1687125611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13664", "0.0", "3.504", "1687125611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13665", "0.0", "1.752", "1687129211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13665", "0.0", "3.504", "1687129211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13665", "0.0", "1.752", "1687129211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13665", "0.0", "3.504", "1687129211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13666", "0.0", "1.752", "1687132811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13666", "0.0", "3.504", "1687132811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13666", "0.0", "1.752", "1687132811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13666", "0.0", "3.504", "1687132811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13667", "0.0", "1.752", "1687136411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13667", "0.0", "3.504", "1687136411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13667", "0.0", "1.752", "1687136411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13667", "0.0", "3.504", "1687136411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13668", "0.0", "1.752", "1687140011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13668", "0.0", "3.504", "1687140011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13668", "0.0", "1.752", "1687140011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13668", "0.0", "3.504", "1687140011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13669", "0.0", "1.752", "1687143611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13669", "0.0", "3.504", "1687143611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13669", "0.0", "1.752", "1687143611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13669", "0.0", "3.504", "1687143611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13670", "0.0", "1.752", "1687147211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13670", "0.0", "3.504", "1687147211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13670", "0.0", "1.752", "1687147211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13670", "0.0", "3.504", "1687147211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13671", "0.0", "1.752", "1687150811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13671", "0.0", "3.504", "1687150811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13671", "0.0", "1.752", "1687150811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13671", "0.0", "3.504", "1687150811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13672", "0.0", "1.752", "1687154411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13672", "0.0", "3.504", "1687154411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13672", "0.0", "1.752", "1687154411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13672", "0.0", "3.504", "1687154411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13673", "0.0", "1.752", "1687158011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13673", "0.0", "3.504", "1687158011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13673", "0.0", "1.752", "1687158011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13673", "0.0", "3.504", "1687158011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13674", "0.0", "1.752", "1687161611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13674", "0.0", "3.504", "1687161611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13674", "0.0", "1.752", "1687161611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13674", "0.0", "3.504", "1687161611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13675", "0.0", "1.752", "1687165211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13675", "0.0", "3.504", "1687165211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13675", "0.0", "1.752", "1687165211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13675", "0.0", "3.504", "1687165211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13676", "0.0", "1.752", "1687168811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13676", "0.0", "3.504", "1687168811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13676", "0.0", "1.752", "1687168811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13676", "0.0", "3.504", "1687168811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13677", "0.0", "1.752", "1687172411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13677", "0.0", "3.504", "1687172411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13677", "0.0", "1.752", "1687172411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13677", "0.0", "3.504", "1687172411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13678", "0.0", "1.752", "1687176011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13678", "0.0", "3.504", "1687176011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13678", "0.0", "1.752", "1687176011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13678", "0.0", "3.504", "1687176011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13679", "0.0", "1.752", "1687179611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13679", "0.0", "3.504", "1687179611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13679", "0.0", "1.752", "1687179611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13679", "0.0", "3.504", "1687179611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13680", "0.0", "1.752", "1687183211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13680", "0.0", "3.504", "1687183211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13680", "0.0", "1.752", "1687183211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13680", "0.0", "3.504", "1687183211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13681", "0.0", "1.752", "1687186811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13681", "0.0", "3.504", "1687186811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13681", "0.0", "1.752", "1687186811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13681", "0.0", "3.504", "1687186811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13682", "0.0", "1.752", "1687190411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13682", "0.0", "3.504", "1687190411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13682", "0.0", "1.752", "1687190411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13682", "0.0", "3.504", "1687190411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13683", "0.0", "1.752", "1687194011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13683", "0.0", "3.504", "1687194011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13683", "0.0", "1.752", "1687194011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13683", "0.0", "3.504", "1687194011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13684", "0.0", "1.752", "1687197611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13684", "0.0", "3.504", "1687197611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13684", "0.0", "1.752", "1687197611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13684", "0.0", "3.504", "1687197611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13685", "0.0", "1.752", "1687201211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13685", "0.0", "3.504", "1687201211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13685", "0.0", "1.752", "1687201211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13685", "0.0", "3.504", "1687201211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13686", "0.0", "1.752", "1687204811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13686", "0.0", "3.504", "1687204811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13686", "0.0", "1.752", "1687204811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13686", "0.0", "3.504", "1687204811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13687", "0.0", "1.752", "1687208411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13687", "0.0", "3.504", "1687208411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13687", "0.0", "1.752", "1687208411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13687", "0.0", "3.504", "1687208411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13688", "0.0", "1.752", "1687212011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13688", "0.0", "3.504", "1687212011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13688", "0.0", "1.752", "1687212011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13688", "0.0", "3.504", "1687212011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13689", "0.0", "1.752", "1687215611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13689", "0.0", "3.504", "1687215611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13689", "0.0", "1.752", "1687215611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13689", "0.0", "3.504", "1687215611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13690", "0.0", "1.752", "1687219211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13690", "0.0", "3.504", "1687219211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13690", "0.0", "1.752", "1687219211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13690", "0.0", "3.504", "1687219211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13691", "0.0", "1.752", "1687222811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13691", "0.0", "3.504", "1687222811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13691", "0.0", "1.752", "1687222811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13691", "0.0", "3.504", "1687222811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13692", "0.0", "1.752", "1687226411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13692", "0.0", "3.504", "1687226411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13692", "0.0", "1.752", "1687226411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13692", "0.0", "3.504", "1687226411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13693", "0.0", "1.752", "1687230011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13693", "0.0", "3.504", "1687230011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13693", "0.0", "1.752", "1687230011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13693", "0.0", "3.504", "1687230011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13694", "0.0", "1.752", "1687233611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13694", "0.0", "3.504", "1687233611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13694", "0.0", "1.752", "1687233611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13694", "0.0", "3.504", "1687233611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13695", "0.0", "1.752", "1687237211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13695", "0.0", "3.504", "1687237211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13695", "0.0", "1.752", "1687237211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13695", "0.0", "3.504", "1687237211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13696", "0.0", "1.752", "1687240811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13696", "0.0", "3.504", "1687240811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13696", "0.0", "1.752", "1687240811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13696", "0.0", "3.504", "1687240811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13697", "0.0", "1.752", "1687244411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13697", "0.0", "3.504", "1687244411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13697", "0.0", "1.752", "1687244411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13697", "0.0", "3.504", "1687244411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13698", "0.0", "1.752", "1687248011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13698", "0.0", "3.504", "1687248011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13698", "0.0", "1.752", "1687248011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13698", "0.0", "3.504", "1687248011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13699", "0.0", "1.752", "1687251611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13699", "0.0", "3.504", "1687251611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13699", "0.0", "1.752", "1687251611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13699", "0.0", "3.504", "1687251611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13700", "0.0", "1.752", "1687255211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13700", "0.0", "3.504", "1687255211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13700", "0.0", "1.752", "1687255211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13700", "0.0", "3.504", "1687255211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13701", "0.0", "1.752", "1687258811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13701", "0.0", "3.504", "1687258811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13701", "0.0", "1.752", "1687258811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13701", "0.0", "3.504", "1687258811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13702", "0.0", "1.752", "1687262411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13702", "0.0", "3.504", "1687262411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13702", "0.0", "1.752", "1687262411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13702", "0.0", "3.504", "1687262411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13703", "0.0", "1.752", "1687266011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13703", "0.0", "3.504", "1687266011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13703", "0.0", "1.752", "1687266011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13703", "0.0", "3.504", "1687266011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13704", "0.0", "1.752", "1687269611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13704", "0.0", "3.504", "1687269611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13704", "0.0", "1.752", "1687269611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13704", "0.0", "3.504", "1687269611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13705", "0.0", "1.752", "1687273223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13705", "0.0", "3.504", "1687273223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13705", "0.0", "1.752", "1687273223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13705", "0.0", "3.504", "1687273223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13706", "0.0", "1.752", "1687276811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13706", "0.0", "3.504", "1687276811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13706", "0.0", "1.752", "1687276811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13706", "0.0", "3.504", "1687276811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13707", "0.0", "1.752", "1687280411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13707", "0.0", "3.504", "1687280411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13707", "0.0", "1.752", "1687280411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13707", "0.0", "3.504", "1687280411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13708", "0.0", "1.752", "1687284011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13708", "0.0", "3.504", "1687284011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13708", "0.0", "1.752", "1687284011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13708", "0.0", "3.504", "1687284011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13709", "0.0", "1.752", "1687287623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13709", "0.0", "3.504", "1687287623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13709", "0.0", "1.752", "1687287623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13709", "0.0", "3.504", "1687287623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13710", "0.0", "1.752", "1687291211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13710", "0.0", "3.504", "1687291211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13710", "0.0", "1.752", "1687291211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13710", "0.0", "3.504", "1687291211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13711", "0.0", "1.752", "1687294811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13711", "0.0", "3.504", "1687294811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13711", "0.0", "1.752", "1687294811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13711", "0.0", "3.504", "1687294811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13712", "0.0", "1.752", "1687298411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13712", "0.0", "3.504", "1687298411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13712", "0.0", "1.752", "1687298411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13712", "0.0", "3.504", "1687298411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13713", "0.0", "1.752", "1687302011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13713", "0.0", "3.504", "1687302011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13713", "0.0", "1.752", "1687302011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13713", "0.0", "3.504", "1687302011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13714", "0.0", "1.752", "1687305611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13714", "0.0", "3.504", "1687305611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13714", "0.0", "1.752", "1687305611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13714", "0.0", "3.504", "1687305611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13715", "0.0", "1.752", "1687309211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13715", "0.0", "3.504", "1687309211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13715", "0.0", "1.752", "1687309211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13715", "0.0", "3.504", "1687309211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13716", "0.0", "1.752", "1687312811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13716", "0.0", "3.504", "1687312811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13716", "0.0", "1.752", "1687312811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13716", "0.0", "3.504", "1687312811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13717", "0.0", "1.752", "1687316411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13717", "0.0", "3.504", "1687316411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13717", "0.0", "1.752", "1687316411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13717", "0.0", "3.504", "1687316411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13718", "0.0", "1.752", "1687320011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13718", "0.0", "3.504", "1687320011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13718", "0.0", "1.752", "1687320011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13718", "0.0", "3.504", "1687320011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13719", "0.0", "1.752", "1687323611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13719", "0.0", "3.504", "1687323611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13719", "0.0", "1.752", "1687323611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13719", "0.0", "3.504", "1687323611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13720", "0.0", "1.752", "1687327211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13720", "0.0", "3.504", "1687327211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13720", "0.0", "1.752", "1687327211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13720", "0.0", "3.504", "1687327211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13721", "0.0", "1.752", "1687330811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13721", "0.0", "3.504", "1687330811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13721", "0.0", "1.752", "1687330811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13721", "0.0", "3.504", "1687330811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13722", "0.0", "1.752", "1687334411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13722", "0.0", "3.504", "1687334411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13722", "0.0", "1.752", "1687334411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13722", "0.0", "3.504", "1687334411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13723", "0.0", "1.752", "1687338011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13723", "0.0", "3.504", "1687338011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13723", "0.0", "1.752", "1687338011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13723", "0.0", "3.504", "1687338011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13724", "0.0", "1.752", "1687341611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13724", "0.0", "3.504", "1687341611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13724", "0.0", "1.752", "1687341611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13724", "0.0", "3.504", "1687341611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13725", "0.0", "1.752", "1687345211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13725", "0.0", "3.504", "1687345211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13725", "0.0", "1.752", "1687345211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13725", "0.0", "3.504", "1687345211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13726", "0.0", "1.752", "1687348823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13726", "0.0", "3.504", "1687348823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13726", "0.0", "1.752", "1687348823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13726", "0.0", "3.504", "1687348823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13727", "0.0", "1.752", "1687352411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13727", "0.0", "3.504", "1687352411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13727", "0.0", "1.752", "1687352411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13727", "0.0", "3.504", "1687352411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13728", "0.0", "1.752", "1687356011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13728", "0.0", "3.504", "1687356011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13728", "0.0", "1.752", "1687356011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13728", "0.0", "3.504", "1687356011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13729", "0.0", "1.752", "1687359611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13729", "0.0", "3.504", "1687359611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13729", "0.0", "1.752", "1687359611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13729", "0.0", "3.504", "1687359611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13730", "0.0", "1.752", "1687363211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13730", "0.0", "3.504", "1687363211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13730", "0.0", "1.752", "1687363211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13730", "0.0", "3.504", "1687363211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13731", "0.0", "1.752", "1687366811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13731", "0.0", "3.504", "1687366811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13731", "0.0", "1.752", "1687366811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13731", "0.0", "3.504", "1687366811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13732", "0.0", "1.752", "1687370411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13732", "0.0", "3.504", "1687370411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13732", "0.0", "1.752", "1687370411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13732", "0.0", "3.504", "1687370411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13733", "0.0", "1.752", "1687374011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13733", "0.0", "3.504", "1687374011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13733", "0.0", "1.752", "1687374011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13733", "0.0", "3.504", "1687374011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13734", "0.0", "1.752", "1687377623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13734", "0.0", "3.504", "1687377623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13734", "0.0", "1.752", "1687377623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13734", "0.0", "3.504", "1687377623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13735", "0.0", "1.752", "1687381211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13735", "0.0", "3.504", "1687381211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13735", "0.0", "1.752", "1687381211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13735", "0.0", "3.504", "1687381211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13736", "0.0", "1.752", "1687384811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13736", "0.0", "3.504", "1687384811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13736", "0.0", "1.752", "1687384811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13736", "0.0", "3.504", "1687384811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13737", "0.0", "1.752", "1687388411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13737", "0.0", "3.504", "1687388411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13737", "0.0", "1.752", "1687388411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13737", "0.0", "3.504", "1687388411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13738", "0.0", "1.752", "1687392011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13738", "0.0", "3.504", "1687392011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13738", "0.0", "1.752", "1687392011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13738", "0.0", "3.504", "1687392011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13739", "0.0", "1.752", "1687395611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13739", "0.0", "3.504", "1687395611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13739", "0.0", "1.752", "1687395611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13739", "0.0", "3.504", "1687395611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13740", "0.0", "1.752", "1687399223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13740", "0.0", "3.504", "1687399223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13740", "0.0", "1.752", "1687399223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13740", "0.0", "3.504", "1687399223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13741", "0.0", "1.752", "1687402811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13741", "0.0", "3.504", "1687402811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13741", "0.0", "1.752", "1687402811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13741", "0.0", "3.504", "1687402811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13742", "0.0", "1.752", "1687406411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13742", "0.0", "3.504", "1687406411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13742", "0.0", "1.752", "1687406411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13742", "0.0", "3.504", "1687406411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13743", "0.0", "1.752", "1687410011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13743", "0.0", "3.504", "1687410011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13743", "0.0", "1.752", "1687410011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13743", "0.0", "3.504", "1687410011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13744", "0.0", "1.752", "1687413611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13744", "0.0", "3.504", "1687413611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13744", "0.0", "1.752", "1687413611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13744", "0.0", "3.504", "1687413611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13745", "0.0", "1.752", "1687417211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13745", "0.0", "3.504", "1687417211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13745", "0.0", "1.752", "1687417211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13745", "0.0", "3.504", "1687417211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13746", "0.0", "1.752", "1687420811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13746", "0.0", "3.504", "1687420811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13746", "0.0", "1.752", "1687420811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13746", "0.0", "3.504", "1687420811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13747", "0.0", "1.752", "1687424411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13747", "0.0", "3.504", "1687424411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13747", "0.0", "1.752", "1687424411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13747", "0.0", "3.504", "1687424411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13748", "0.0", "1.752", "1687428011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13748", "0.0", "3.504", "1687428011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13748", "0.0", "1.752", "1687428011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13748", "0.0", "3.504", "1687428011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13749", "0.0", "1.752", "1687431611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13749", "0.0", "3.504", "1687431611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13749", "0.0", "1.752", "1687431611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13749", "0.0", "3.504", "1687431611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13750", "0.0", "1.752", "1687435211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13750", "0.0", "3.504", "1687435211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13750", "0.0", "1.752", "1687435211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13750", "0.0", "3.504", "1687435211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13751", "0.0", "1.752", "1687438811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13751", "0.0", "3.504", "1687438811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13751", "0.0", "1.752", "1687438811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13751", "0.0", "3.504", "1687438811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13752", "0.0", "1.752", "1687442411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13752", "0.0", "3.504", "1687442411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13752", "0.0", "1.752", "1687442411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13752", "0.0", "3.504", "1687442411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13753", "0.0", "1.752", "1687446011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13753", "0.0", "3.504", "1687446011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13753", "0.0", "1.752", "1687446011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13753", "0.0", "3.504", "1687446011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13754", "0.0", "1.752", "1687449611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13754", "0.0", "3.504", "1687449611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13754", "0.0", "1.752", "1687449611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13754", "0.0", "3.504", "1687449611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13755", "0.0", "1.752", "1687453211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13755", "0.0", "3.504", "1687453211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13755", "0.0", "1.752", "1687453211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13755", "0.0", "3.504", "1687453211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13756", "0.0", "1.752", "1687456811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13756", "0.0", "3.504", "1687456811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13756", "0.0", "1.752", "1687456811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13756", "0.0", "3.504", "1687456811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13757", "0.0", "1.752", "1687460411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13757", "0.0", "3.504", "1687460411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13757", "0.0", "1.752", "1687460411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13757", "0.0", "3.504", "1687460411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13758", "0.0", "1.752", "1687464011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13758", "0.0", "3.504", "1687464011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13758", "0.0", "1.752", "1687464011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13758", "0.0", "3.504", "1687464011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13759", "0.0", "1.752", "1687467611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13759", "0.0", "3.504", "1687467611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13759", "0.0", "1.752", "1687467611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13759", "0.0", "3.504", "1687467611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13760", "0.0", "1.752", "1687471211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13760", "0.0", "3.504", "1687471211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13760", "0.0", "1.752", "1687471211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13760", "0.0", "3.504", "1687471211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13761", "0.0", "1.752", "1687474811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13761", "0.0", "3.504", "1687474811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13761", "0.0", "1.752", "1687474811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13761", "0.0", "3.504", "1687474811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13762", "0.0", "1.752", "1687478411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13762", "0.0", "3.504", "1687478411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13762", "0.0", "1.752", "1687478411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13762", "0.0", "3.504", "1687478411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13763", "0.0", "1.752", "1687482011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13763", "0.0", "3.504", "1687482011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13763", "0.0", "1.752", "1687482011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13763", "0.0", "3.504", "1687482011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13764", "0.0", "1.752", "1687485611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13764", "0.0", "3.504", "1687485611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13764", "0.0", "1.752", "1687485611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13764", "0.0", "3.504", "1687485611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13765", "0.0", "1.752", "1687489211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13765", "0.0", "3.504", "1687489211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13765", "0.0", "1.752", "1687489211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13765", "0.0", "3.504", "1687489211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13766", "0.0", "1.752", "1687492811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13766", "0.0", "3.504", "1687492811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13766", "0.0", "1.752", "1687492811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13766", "0.0", "3.504", "1687492811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13767", "0.0", "1.752", "1687496411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13767", "0.0", "3.504", "1687496411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13767", "0.0", "1.752", "1687496411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13767", "0.0", "3.504", "1687496411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13768", "0.0", "1.752", "1687500011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13768", "0.0", "3.504", "1687500011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13768", "0.0", "1.752", "1687500011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13768", "0.0", "3.504", "1687500011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13769", "0.0", "1.752", "1687503611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13769", "0.0", "3.504", "1687503611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13769", "0.0", "1.752", "1687503611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13769", "0.0", "3.504", "1687503611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13770", "0.0", "1.752", "1687507211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13770", "0.0", "3.504", "1687507211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13770", "0.0", "1.752", "1687507211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13770", "0.0", "3.504", "1687507211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13771", "0.0", "1.752", "1687510811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13771", "0.0", "3.504", "1687510811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13771", "0.0", "1.752", "1687510811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13771", "0.0", "3.504", "1687510811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13772", "0.0", "1.752", "1687514411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13772", "0.0", "3.504", "1687514411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13772", "0.0", "1.752", "1687514411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13772", "0.0", "3.504", "1687514411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13773", "0.0", "1.752", "1687518011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13773", "0.0", "3.504", "1687518011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13773", "0.0", "1.752", "1687518011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13773", "0.0", "3.504", "1687518011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13774", "0.0", "1.752", "1687521611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13774", "0.0", "3.504", "1687521611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13774", "0.0", "1.752", "1687521611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13774", "0.0", "3.504", "1687521611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13775", "0.0", "1.752", "1687525211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13775", "0.0", "3.504", "1687525211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13775", "0.0", "1.752", "1687525211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13775", "0.0", "3.504", "1687525211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13776", "0.0", "1.752", "1687528811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13776", "0.0", "3.504", "1687528811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13776", "0.0", "1.752", "1687528811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13776", "0.0", "3.504", "1687528811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13777", "0.0", "1.752", "1687532435"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13777", "0.0", "3.504", "1687532435"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13777", "0.0", "1.752", "1687532435"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13777", "0.0", "3.504", "1687532435"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13778", "0.0", "1.752", "1687536011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13778", "0.0", "3.504", "1687536011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13778", "0.0", "1.752", "1687536011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13778", "0.0", "3.504", "1687536011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13779", "0.0", "1.752", "1687539611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13779", "0.0", "3.504", "1687539611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13779", "0.0", "1.752", "1687539611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13779", "0.0", "3.504", "1687539611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13780", "0.0", "1.752", "1687543211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13780", "0.0", "3.504", "1687543211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13780", "0.0", "1.752", "1687543211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13780", "0.0", "3.504", "1687543211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13781", "0.0", "1.752", "1687546811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13781", "0.0", "3.504", "1687546811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13781", "0.0", "1.752", "1687546811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13781", "0.0", "3.504", "1687546811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13782", "0.0", "1.752", "1687550411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13782", "0.0", "3.504", "1687550411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13782", "0.0", "1.752", "1687550411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13782", "0.0", "3.504", "1687550411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13783", "0.0", "1.752", "1687554011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13783", "0.0", "3.504", "1687554011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13783", "0.0", "1.752", "1687554011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13783", "0.0", "3.504", "1687554011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13784", "0.0", "1.752", "1687557611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13784", "0.0", "3.504", "1687557611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13784", "0.0", "1.752", "1687557611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13784", "0.0", "3.504", "1687557611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13785", "0.0", "1.752", "1687561211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13785", "0.0", "3.504", "1687561211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13785", "0.0", "1.752", "1687561211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13785", "0.0", "3.504", "1687561211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13786", "0.0", "1.752", "1687564823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13786", "0.0", "3.504", "1687564823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13786", "0.0", "1.752", "1687564823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13786", "0.0", "3.504", "1687564823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13787", "0.0", "1.752", "1687568411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13787", "0.0", "3.504", "1687568411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13787", "0.0", "1.752", "1687568411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13787", "0.0", "3.504", "1687568411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13788", "0.0", "1.752", "1687572011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13788", "0.0", "3.504", "1687572011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13788", "0.0", "1.752", "1687572011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13788", "0.0", "3.504", "1687572011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13789", "0.0", "1.752", "1687575611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13789", "0.0", "3.504", "1687575611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13789", "0.0", "1.752", "1687575611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13789", "0.0", "3.504", "1687575611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13790", "0.0", "1.752", "1687579211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13790", "0.0", "3.504", "1687579211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13790", "0.0", "1.752", "1687579211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13790", "0.0", "3.504", "1687579211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13791", "0.0", "1.752", "1687582811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13791", "0.0", "3.504", "1687582811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13791", "0.0", "1.752", "1687582811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13791", "0.0", "3.504", "1687582811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13792", "0.0", "1.752", "1687586411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13792", "0.0", "3.504", "1687586411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13792", "0.0", "1.752", "1687586411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13792", "0.0", "3.504", "1687586411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13793", "0.0", "1.752", "1687590023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13793", "0.0", "3.504", "1687590023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13793", "0.0", "1.752", "1687590023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13793", "0.0", "3.504", "1687590023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13794", "0.0", "1.752", "1687593611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13794", "0.0", "3.504", "1687593611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13794", "0.0", "1.752", "1687593611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13794", "0.0", "3.504", "1687593611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13795", "0.0", "1.752", "1687597211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13795", "0.0", "3.504", "1687597211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13795", "0.0", "1.752", "1687597211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13795", "0.0", "3.504", "1687597211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13796", "0.0", "1.752", "1687600811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13796", "0.0", "3.504", "1687600811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13796", "0.0", "1.752", "1687600811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13796", "0.0", "3.504", "1687600811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13797", "0.0", "1.752", "1687604411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13797", "0.0", "3.504", "1687604411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13797", "0.0", "1.752", "1687604411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13797", "0.0", "3.504", "1687604411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13798", "0.0", "1.752", "1687608011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13798", "0.0", "3.504", "1687608011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13798", "0.0", "1.752", "1687608011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13798", "0.0", "3.504", "1687608011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13799", "0.0", "1.752", "1687611611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13799", "0.0", "3.504", "1687611611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13799", "0.0", "1.752", "1687611611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13799", "0.0", "3.504", "1687611611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13800", "0.0", "1.752", "1687615211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13800", "0.0", "3.504", "1687615211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13800", "0.0", "1.752", "1687615211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13800", "0.0", "3.504", "1687615211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13801", "0.0", "1.752", "1687618811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13801", "0.0", "3.504", "1687618811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13801", "0.0", "1.752", "1687618811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13801", "0.0", "3.504", "1687618811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13802", "0.0", "1.752", "1687622411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13802", "0.0", "3.504", "1687622411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13802", "0.0", "1.752", "1687622411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13802", "0.0", "3.504", "1687622411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13803", "0.0", "1.752", "1687626011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13803", "0.0", "3.504", "1687626011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13803", "0.0", "1.752", "1687626011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13803", "0.0", "3.504", "1687626011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13804", "0.0", "1.752", "1687629611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13804", "0.0", "3.504", "1687629611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13804", "0.0", "1.752", "1687629611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13804", "0.0", "3.504", "1687629611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13805", "0.0", "1.752", "1687633211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13805", "0.0", "3.504", "1687633211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13805", "0.0", "1.752", "1687633211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13805", "0.0", "3.504", "1687633211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13806", "0.0", "1.752", "1687636811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13806", "0.0", "3.504", "1687636811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13806", "0.0", "1.752", "1687636811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13806", "0.0", "3.504", "1687636811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13807", "0.0", "1.752", "1687640411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13807", "0.0", "3.504", "1687640411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13807", "0.0", "1.752", "1687640411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13807", "0.0", "3.504", "1687640411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13808", "0.0", "1.752", "1687644011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13808", "0.0", "3.504", "1687644011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13808", "0.0", "1.752", "1687644011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13808", "0.0", "3.504", "1687644011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13809", "0.0", "1.752", "1687647635"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13809", "0.0", "3.504", "1687647635"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13809", "0.0", "1.752", "1687647635"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13809", "0.0", "3.504", "1687647635"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13810", "0.0", "1.752", "1687651211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13810", "0.0", "3.504", "1687651211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13810", "0.0", "1.752", "1687651211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13810", "0.0", "3.504", "1687651211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13811", "0.0", "1.752", "1687654811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13811", "0.0", "3.504", "1687654811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13811", "0.0", "1.752", "1687654811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13811", "0.0", "3.504", "1687654811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13812", "0.0", "1.752", "1687658411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13812", "0.0", "3.504", "1687658411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13812", "0.0", "1.752", "1687658411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13812", "0.0", "3.504", "1687658411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13813", "0.0", "1.752", "1687662011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13813", "0.0", "3.504", "1687662011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13813", "0.0", "1.752", "1687662011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13813", "0.0", "3.504", "1687662011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13814", "0.0", "1.752", "1687665611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13814", "0.0", "3.504", "1687665611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13814", "0.0", "1.752", "1687665611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13814", "0.0", "3.504", "1687665611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13815", "0.0", "1.752", "1687669211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13815", "0.0", "3.504", "1687669211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13815", "0.0", "1.752", "1687669211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13815", "0.0", "3.504", "1687669211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13816", "0.0", "1.752", "1687672811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13816", "0.0", "3.504", "1687672811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13816", "0.0", "1.752", "1687672811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13816", "0.0", "3.504", "1687672811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13817", "0.0", "1.752", "1687676411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13817", "0.0", "3.504", "1687676411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13817", "0.0", "1.752", "1687676411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13817", "0.0", "3.504", "1687676411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13818", "0.0", "1.752", "1687680011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13818", "0.0", "3.504", "1687680011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13818", "0.0", "1.752", "1687680011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13818", "0.0", "3.504", "1687680011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13819", "0.0", "1.752", "1687683611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13819", "0.0", "3.504", "1687683611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13819", "0.0", "1.752", "1687683611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13819", "0.0", "3.504", "1687683611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13820", "0.0", "1.752", "1687687211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13820", "0.0", "3.504", "1687687211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13820", "0.0", "1.752", "1687687211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13820", "0.0", "3.504", "1687687211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13821", "0.0", "1.752", "1687690811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13821", "0.0", "3.504", "1687690811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13821", "0.0", "1.752", "1687690811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13821", "0.0", "3.504", "1687690811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13822", "0.0", "1.752", "1687694411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13822", "0.0", "3.504", "1687694411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13822", "0.0", "1.752", "1687694411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13822", "0.0", "3.504", "1687694411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13823", "0.0", "1.752", "1687698011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13823", "0.0", "3.504", "1687698011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13823", "0.0", "1.752", "1687698011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13823", "0.0", "3.504", "1687698011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13824", "0.0", "1.752", "1687701623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13824", "0.0", "3.504", "1687701623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13824", "0.0", "1.752", "1687701623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13824", "0.0", "3.504", "1687701623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13825", "0.0", "1.752", "1687705211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13825", "0.0", "3.504", "1687705211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13825", "0.0", "1.752", "1687705211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13825", "0.0", "3.504", "1687705211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13826", "0.0", "1.752", "1687708811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13826", "0.0", "3.504", "1687708811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13826", "0.0", "1.752", "1687708811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13826", "0.0", "3.504", "1687708811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13827", "0.0", "1.752", "1687712411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13827", "0.0", "3.504", "1687712411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13827", "0.0", "1.752", "1687712411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13827", "0.0", "3.504", "1687712411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13828", "0.0", "1.752", "1687716011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13828", "0.0", "3.504", "1687716011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13828", "0.0", "1.752", "1687716011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13828", "0.0", "3.504", "1687716011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13829", "0.0", "1.752", "1687719611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13829", "0.0", "3.504", "1687719611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13829", "0.0", "1.752", "1687719611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13829", "0.0", "3.504", "1687719611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13830", "0.0", "1.752", "1687723211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13830", "0.0", "3.504", "1687723211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13830", "0.0", "1.752", "1687723211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13830", "0.0", "3.504", "1687723211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13831", "0.0", "1.752", "1687726811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13831", "0.0", "3.504", "1687726811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13831", "0.0", "1.752", "1687726811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13831", "0.0", "3.504", "1687726811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13832", "0.0", "1.752", "1687730411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13832", "0.0", "3.504", "1687730411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13832", "0.0", "1.752", "1687730411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13832", "0.0", "3.504", "1687730411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13833", "0.0", "1.752", "1687734011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13833", "0.0", "3.504", "1687734011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13833", "0.0", "1.752", "1687734011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13833", "0.0", "3.504", "1687734011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13834", "0.0", "1.752", "1687737611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13834", "0.0", "3.504", "1687737611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13834", "0.0", "1.752", "1687737611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13834", "0.0", "3.504", "1687737611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13835", "0.0", "1.752", "1687741211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13835", "0.0", "3.504", "1687741211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13835", "0.0", "1.752", "1687741211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13835", "0.0", "3.504", "1687741211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13836", "0.0", "1.752", "1687744811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13836", "0.0", "3.504", "1687744811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13836", "0.0", "1.752", "1687744811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13836", "0.0", "3.504", "1687744811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13837", "0.0", "1.752", "1687748411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13837", "0.0", "3.504", "1687748411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13837", "0.0", "1.752", "1687748411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13837", "0.0", "3.504", "1687748411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13838", "0.0", "1.752", "1687752011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13838", "0.0", "3.504", "1687752011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13838", "0.0", "1.752", "1687752011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13838", "0.0", "3.504", "1687752011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13839", "0.0", "1.752", "1687755611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13839", "0.0", "3.504", "1687755611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13839", "0.0", "1.752", "1687755611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13839", "0.0", "3.504", "1687755611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13840", "0.0", "1.752", "1687759211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13840", "0.0", "3.504", "1687759211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13840", "0.0", "1.752", "1687759211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13840", "0.0", "3.504", "1687759211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13841", "0.0", "1.752", "1687762835"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13841", "0.0", "3.504", "1687762835"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13841", "0.0", "1.752", "1687762835"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13841", "0.0", "3.504", "1687762835"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13842", "0.0", "1.752", "1687766411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13842", "0.0", "3.504", "1687766411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13842", "0.0", "1.752", "1687766411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13842", "0.0", "3.504", "1687766411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13843", "0.0", "1.752", "1687770011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13843", "0.0", "3.504", "1687770011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13843", "0.0", "1.752", "1687770011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13843", "0.0", "3.504", "1687770011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13844", "0.0", "1.752", "1687773611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13844", "0.0", "3.504", "1687773611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13844", "0.0", "1.752", "1687773611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13844", "0.0", "3.504", "1687773611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13845", "0.0", "1.752", "1687777211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13845", "0.0", "3.504", "1687777211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13845", "0.0", "1.752", "1687777211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13845", "0.0", "3.504", "1687777211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13846", "0.0", "1.752", "1687780811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13846", "0.0", "3.504", "1687780811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13846", "0.0", "1.752", "1687780811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13846", "0.0", "3.504", "1687780811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13847", "0.0", "1.752", "1687784411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13847", "0.0", "3.504", "1687784411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13847", "0.0", "1.752", "1687784411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13847", "0.0", "3.504", "1687784411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13848", "0.0", "1.752", "1687788023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13848", "0.0", "3.504", "1687788023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13848", "0.0", "1.752", "1687788023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13848", "0.0", "3.504", "1687788023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13849", "0.0", "1.752", "1687791611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13849", "0.0", "3.504", "1687791611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13849", "0.0", "1.752", "1687791611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13849", "0.0", "3.504", "1687791611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13850", "0.0", "1.752", "1687795211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13850", "0.0", "3.504", "1687795211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13850", "0.0", "1.752", "1687795211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13850", "0.0", "3.504", "1687795211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13851", "0.0", "1.752", "1687798823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13851", "0.0", "3.504", "1687798823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13851", "0.0", "1.752", "1687798823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13851", "0.0", "3.504", "1687798823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13852", "0.0", "1.752", "1687802411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13852", "0.0", "3.504", "1687802411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13852", "0.0", "1.752", "1687802411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13852", "0.0", "3.504", "1687802411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13853", "0.0", "1.752", "1687806011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13853", "0.0", "3.504", "1687806011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13853", "0.0", "1.752", "1687806011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13853", "0.0", "3.504", "1687806011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13854", "0.0", "1.752", "1687809611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13854", "0.0", "3.504", "1687809611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13854", "0.0", "1.752", "1687809611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13854", "0.0", "3.504", "1687809611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13855", "0.0", "1.752", "1687813211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13855", "0.0", "3.504", "1687813211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13855", "0.0", "1.752", "1687813211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13855", "0.0", "3.504", "1687813211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13856", "0.0", "1.752", "1687816811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13856", "0.0", "3.504", "1687816811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13856", "0.0", "1.752", "1687816811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13856", "0.0", "3.504", "1687816811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13857", "0.0", "1.752", "1687820411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13857", "0.0", "3.504", "1687820411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13857", "0.0", "1.752", "1687820411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13857", "0.0", "3.504", "1687820411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13858", "0.0", "1.752", "1687824011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13858", "0.0", "3.504", "1687824011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13858", "0.0", "1.752", "1687824011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13858", "0.0", "3.504", "1687824011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13859", "0.0", "1.752", "1687827611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13859", "0.0", "3.504", "1687827611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13859", "0.0", "1.752", "1687827611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13859", "0.0", "3.504", "1687827611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13860", "0.0", "1.752", "1687831211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13860", "0.0", "3.504", "1687831211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13860", "0.0", "1.752", "1687831211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13860", "0.0", "3.504", "1687831211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13861", "0.0", "1.752", "1687834811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13861", "0.0", "3.504", "1687834811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13861", "0.0", "1.752", "1687834811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13861", "0.0", "3.504", "1687834811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13862", "0.0", "1.752", "1687838411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13862", "0.0", "3.504", "1687838411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13862", "0.0", "1.752", "1687838411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13862", "0.0", "3.504", "1687838411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13863", "0.0", "1.752", "1687842023"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13863", "0.0", "3.504", "1687842023"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13863", "0.0", "1.752", "1687842023"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13863", "0.0", "3.504", "1687842023"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13864", "0.0", "1.752", "1687845611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13864", "0.0", "3.504", "1687845611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13864", "0.0", "1.752", "1687845611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13864", "0.0", "3.504", "1687845611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13865", "0.0", "1.752", "1687849211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13865", "0.0", "3.504", "1687849211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13865", "0.0", "1.752", "1687849211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13865", "0.0", "3.504", "1687849211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13866", "0.0", "1.752", "1687852811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13866", "0.0", "3.504", "1687852811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13866", "0.0", "1.752", "1687852811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13866", "0.0", "3.504", "1687852811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13867", "0.0", "1.752", "1687856411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13867", "0.0", "3.504", "1687856411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13867", "0.0", "1.752", "1687856411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13867", "0.0", "3.504", "1687856411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13868", "0.0", "1.752", "1687860011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13868", "0.0", "3.504", "1687860011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13868", "0.0", "1.752", "1687860011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13868", "0.0", "3.504", "1687860011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13869", "0.0", "1.752", "1687863611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13869", "0.0", "3.504", "1687863611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13869", "0.0", "1.752", "1687863611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13869", "0.0", "3.504", "1687863611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13870", "0.0", "1.752", "1687867211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13870", "0.0", "3.504", "1687867211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13870", "0.0", "1.752", "1687867211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13870", "0.0", "3.504", "1687867211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13871", "0.0", "1.752", "1687870811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13871", "0.0", "3.504", "1687870811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13871", "0.0", "1.752", "1687870811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13871", "0.0", "3.504", "1687870811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13872", "0.0", "1.752", "1687874411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13872", "0.0", "3.504", "1687874411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13872", "0.0", "1.752", "1687874411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13872", "0.0", "3.504", "1687874411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13873", "0.0", "1.752", "1687878011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13873", "0.0", "3.504", "1687878011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13873", "0.0", "1.752", "1687878011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13873", "0.0", "3.504", "1687878011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13874", "0.0", "1.752", "1687881611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13874", "0.0", "3.504", "1687881611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13874", "0.0", "1.752", "1687881611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13874", "0.0", "3.504", "1687881611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13875", "0.0", "1.752", "1687885211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13875", "0.0", "3.504", "1687885211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13875", "0.0", "1.752", "1687885211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13875", "0.0", "3.504", "1687885211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13876", "0.0", "1.752", "1687888811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13876", "0.0", "3.504", "1687888811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13876", "0.0", "1.752", "1687888811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13876", "0.0", "3.504", "1687888811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13877", "0.0", "1.752", "1687892411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13877", "0.0", "3.504", "1687892411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13877", "0.0", "1.752", "1687892411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13877", "0.0", "3.504", "1687892411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13878", "0.0", "1.752", "1687896011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13878", "0.0", "3.504", "1687896011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13878", "0.0", "1.752", "1687896011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13878", "0.0", "3.504", "1687896011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13879", "0.0", "1.752", "1687899611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13879", "0.0", "3.504", "1687899611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13879", "0.0", "1.752", "1687899611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13879", "0.0", "3.504", "1687899611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13880", "0.0", "1.752", "1687903211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13880", "0.0", "3.504", "1687903211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13880", "0.0", "1.752", "1687903211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13880", "0.0", "3.504", "1687903211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13881", "0.0", "1.752", "1687906811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13881", "0.0", "3.504", "1687906811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13881", "0.0", "1.752", "1687906811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13881", "0.0", "3.504", "1687906811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13882", "0.0", "1.752", "1687910411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13882", "0.0", "3.504", "1687910411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13882", "0.0", "1.752", "1687910411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13882", "0.0", "3.504", "1687910411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13883", "0.0", "1.752", "1687914035"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13883", "0.0", "3.504", "1687914035"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13883", "0.0", "1.752", "1687914035"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13883", "0.0", "3.504", "1687914035"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13884", "0.0", "1.752", "1687917611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13884", "0.0", "3.504", "1687917611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13884", "0.0", "1.752", "1687917611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13884", "0.0", "3.504", "1687917611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13885", "0.0", "1.752", "1687921223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13885", "0.0", "3.504", "1687921223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13885", "0.0", "1.752", "1687921223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13885", "0.0", "3.504", "1687921223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13886", "0.0", "1.752", "1687924811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13886", "0.0", "3.504", "1687924811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13886", "0.0", "1.752", "1687924811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13886", "0.0", "3.504", "1687924811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13887", "0.0", "1.752", "1687928411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13887", "0.0", "3.504", "1687928411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13887", "0.0", "1.752", "1687928411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13887", "0.0", "3.504", "1687928411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13888", "0.0", "1.752", "1687932011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13888", "0.0", "3.504", "1687932011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13888", "0.0", "1.752", "1687932011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13888", "0.0", "3.504", "1687932011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13889", "0.0", "1.752", "1687935611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13889", "0.0", "3.504", "1687935611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13889", "0.0", "1.752", "1687935611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13889", "0.0", "3.504", "1687935611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13890", "0.0", "1.752", "1687939211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13890", "0.0", "3.504", "1687939211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13890", "0.0", "1.752", "1687939211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13890", "0.0", "3.504", "1687939211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13891", "0.0", "1.752", "1687942811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13891", "0.0", "3.504", "1687942811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13891", "0.0", "1.752", "1687942811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13891", "0.0", "3.504", "1687942811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13892", "0.0", "1.752", "1687946411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13892", "0.0", "3.504", "1687946411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13892", "0.0", "1.752", "1687946411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13892", "0.0", "3.504", "1687946411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13893", "0.0", "1.752", "1687950011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13893", "0.0", "3.504", "1687950011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13893", "0.0", "1.752", "1687950011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13893", "0.0", "3.504", "1687950011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13894", "0.0", "1.752", "1687953611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13894", "0.0", "3.504", "1687953611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13894", "0.0", "1.752", "1687953611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13894", "0.0", "3.504", "1687953611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13895", "0.0", "1.752", "1687957223"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13895", "0.0", "3.504", "1687957223"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13895", "0.0", "1.752", "1687957223"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13895", "0.0", "3.504", "1687957223"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13896", "0.0", "1.752", "1687960811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13896", "0.0", "3.504", "1687960811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13896", "0.0", "1.752", "1687960811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13896", "0.0", "3.504", "1687960811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13897", "0.0", "1.752", "1687964423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13897", "0.0", "3.504", "1687964423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13897", "0.0", "1.752", "1687964423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13897", "0.0", "3.504", "1687964423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13898", "0.0", "1.752", "1687968011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13898", "0.0", "3.504", "1687968011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13898", "0.0", "1.752", "1687968011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13898", "0.0", "3.504", "1687968011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13899", "0.0", "1.752", "1687971611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13899", "0.0", "3.504", "1687971611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13899", "0.0", "1.752", "1687971611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13899", "0.0", "3.504", "1687971611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13900", "0.0", "1.752", "1687975211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13900", "0.0", "3.504", "1687975211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13900", "0.0", "1.752", "1687975211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13900", "0.0", "3.504", "1687975211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13901", "0.0", "1.752", "1687978811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13901", "0.0", "3.504", "1687978811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13901", "0.0", "1.752", "1687978811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13901", "0.0", "3.504", "1687978811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13902", "0.0", "1.752", "1687982411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13902", "0.0", "3.504", "1687982411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13902", "0.0", "1.752", "1687982411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13902", "0.0", "3.504", "1687982411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13903", "0.0", "1.752", "1687986011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13903", "0.0", "3.504", "1687986011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13903", "0.0", "1.752", "1687986011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13903", "0.0", "3.504", "1687986011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13904", "0.0", "1.752", "1687989611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13904", "0.0", "3.504", "1687989611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13904", "0.0", "1.752", "1687989611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13904", "0.0", "3.504", "1687989611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13905", "0.0", "1.752", "1687993211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13905", "0.0", "3.504", "1687993211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13905", "0.0", "1.752", "1687993211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13905", "0.0", "3.504", "1687993211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13906", "0.0", "1.752", "1687996811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13906", "0.0", "3.504", "1687996811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13906", "0.0", "1.752", "1687996811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13906", "0.0", "3.504", "1687996811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13907", "0.0", "1.752", "1688000411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13907", "0.0", "3.504", "1688000411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13907", "0.0", "1.752", "1688000411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13907", "0.0", "3.504", "1688000411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13908", "0.0", "1.752", "1688004011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13908", "0.0", "3.504", "1688004011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13908", "0.0", "1.752", "1688004011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13908", "0.0", "3.504", "1688004011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13909", "0.0", "1.752", "1688007611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13909", "0.0", "3.504", "1688007611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13909", "0.0", "1.752", "1688007611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13909", "0.0", "3.504", "1688007611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13910", "0.0", "1.752", "1688011211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13910", "0.0", "3.504", "1688011211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13910", "0.0", "1.752", "1688011211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13910", "0.0", "3.504", "1688011211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13911", "0.0", "1.752", "1688014811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13911", "0.0", "3.504", "1688014811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13911", "0.0", "1.752", "1688014811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13911", "0.0", "3.504", "1688014811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13912", "0.0", "1.752", "1688018411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13912", "0.0", "3.504", "1688018411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13912", "0.0", "1.752", "1688018411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13912", "0.0", "3.504", "1688018411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13913", "0.0", "1.752", "1688022011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13913", "0.0", "3.504", "1688022011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13913", "0.0", "1.752", "1688022011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13913", "0.0", "3.504", "1688022011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13914", "0.0", "1.752", "1688025611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13914", "0.0", "3.504", "1688025611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13914", "0.0", "1.752", "1688025611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13914", "0.0", "3.504", "1688025611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13915", "0.0", "1.752", "1688029211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13915", "0.0", "3.504", "1688029211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13915", "0.0", "1.752", "1688029211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13915", "0.0", "3.504", "1688029211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13916", "0.0", "1.752", "1688032811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13916", "0.0", "3.504", "1688032811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13916", "0.0", "1.752", "1688032811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13916", "0.0", "3.504", "1688032811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13917", "0.0", "1.752", "1688036411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13917", "0.0", "3.504", "1688036411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13917", "0.0", "1.752", "1688036411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13917", "0.0", "3.504", "1688036411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13918", "0.0", "1.752", "1688040011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13918", "0.0", "3.504", "1688040011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13918", "0.0", "1.752", "1688040011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13918", "0.0", "3.504", "1688040011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13919", "0.0", "1.752", "1688043611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13919", "0.0", "3.504", "1688043611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13919", "0.0", "1.752", "1688043611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13919", "0.0", "3.504", "1688043611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13920", "0.0", "1.752", "1688047211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13920", "0.0", "3.504", "1688047211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13920", "0.0", "1.752", "1688047211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13920", "0.0", "3.504", "1688047211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13921", "0.0", "1.752", "1688050811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13921", "0.0", "3.504", "1688050811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13921", "0.0", "1.752", "1688050811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13921", "0.0", "3.504", "1688050811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13922", "0.0", "1.752", "1688054411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13922", "0.0", "3.504", "1688054411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13922", "0.0", "1.752", "1688054411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13922", "0.0", "3.504", "1688054411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13923", "0.0", "1.752", "1688058011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13923", "0.0", "3.504", "1688058011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13923", "0.0", "1.752", "1688058011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13923", "0.0", "3.504", "1688058011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13924", "0.0", "1.752", "1688061623"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13924", "0.0", "3.504", "1688061623"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13924", "0.0", "1.752", "1688061623"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13924", "0.0", "3.504", "1688061623"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13925", "0.0", "1.752", "1688065211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13925", "0.0", "3.504", "1688065211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13925", "0.0", "1.752", "1688065211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13925", "0.0", "3.504", "1688065211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13926", "0.0", "1.752", "1688068811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13926", "0.0", "3.504", "1688068811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13926", "0.0", "1.752", "1688068811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13926", "0.0", "3.504", "1688068811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13927", "0.0", "1.752", "1688072411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13927", "0.0", "3.504", "1688072411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13927", "0.0", "1.752", "1688072411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13927", "0.0", "3.504", "1688072411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13928", "0.0", "1.752", "1688076011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13928", "0.0", "3.504", "1688076011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13928", "0.0", "1.752", "1688076011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13928", "0.0", "3.504", "1688076011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13929", "0.0", "1.752", "1688079611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13929", "0.0", "3.504", "1688079611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13929", "0.0", "1.752", "1688079611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13929", "0.0", "3.504", "1688079611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13930", "0.0", "1.752", "1688083211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13930", "0.0", "3.504", "1688083211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13930", "0.0", "1.752", "1688083211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13930", "0.0", "3.504", "1688083211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13931", "0.0", "1.752", "1688086811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13931", "0.0", "3.504", "1688086811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13931", "0.0", "1.752", "1688086811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13931", "0.0", "3.504", "1688086811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13932", "0.0", "1.752", "1688090411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13932", "0.0", "3.504", "1688090411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13932", "0.0", "1.752", "1688090411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13932", "0.0", "3.504", "1688090411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13933", "0.0", "1.752", "1688094011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13933", "0.0", "3.504", "1688094011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13933", "0.0", "1.752", "1688094011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13933", "0.0", "3.504", "1688094011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13934", "0.0", "1.752", "1688097611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13934", "0.0", "3.504", "1688097611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13934", "0.0", "1.752", "1688097611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13934", "0.0", "3.504", "1688097611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13935", "0.0", "1.752", "1688101211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13935", "0.0", "3.504", "1688101211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13935", "0.0", "1.752", "1688101211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13935", "0.0", "3.504", "1688101211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13936", "0.0", "1.752", "1688104811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13936", "0.0", "3.504", "1688104811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13936", "0.0", "1.752", "1688104811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13936", "0.0", "3.504", "1688104811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13937", "0.0", "1.752", "1688108411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13937", "0.0", "3.504", "1688108411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13937", "0.0", "1.752", "1688108411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13937", "0.0", "3.504", "1688108411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13938", "0.0", "1.752", "1688112011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13938", "0.0", "3.504", "1688112011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13938", "0.0", "1.752", "1688112011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13938", "0.0", "3.504", "1688112011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13939", "0.0", "1.752", "1688115611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13939", "0.0", "3.504", "1688115611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13939", "0.0", "1.752", "1688115611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13939", "0.0", "3.504", "1688115611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13940", "0.0", "1.752", "1688119211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13940", "0.0", "3.504", "1688119211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13940", "0.0", "1.752", "1688119211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13940", "0.0", "3.504", "1688119211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13941", "0.0", "1.752", "1688122811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13941", "0.0", "3.504", "1688122811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13941", "0.0", "1.752", "1688122811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13941", "0.0", "3.504", "1688122811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13942", "0.0", "1.752", "1688126411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13942", "0.0", "3.504", "1688126411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13942", "0.0", "1.752", "1688126411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13942", "0.0", "3.504", "1688126411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13943", "0.0", "1.752", "1688130011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13943", "0.0", "3.504", "1688130011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13943", "0.0", "1.752", "1688130011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13943", "0.0", "3.504", "1688130011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13944", "0.0", "1.752", "1688133611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13944", "0.0", "3.504", "1688133611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13944", "0.0", "1.752", "1688133611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13944", "0.0", "3.504", "1688133611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13945", "0.0", "1.752", "1688137211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13945", "0.0", "3.504", "1688137211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13945", "0.0", "1.752", "1688137211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13945", "0.0", "3.504", "1688137211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13946", "0.0", "1.752", "1688140811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13946", "0.0", "3.504", "1688140811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13946", "0.0", "1.752", "1688140811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13946", "0.0", "3.504", "1688140811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13947", "0.0", "1.752", "1688144411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13947", "0.0", "3.504", "1688144411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13947", "0.0", "1.752", "1688144411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13947", "0.0", "3.504", "1688144411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13948", "0.0", "1.752", "1688148011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13948", "0.0", "3.504", "1688148011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13948", "0.0", "1.752", "1688148011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13948", "0.0", "3.504", "1688148011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13949", "0.0", "1.752", "1688151611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13949", "0.0", "3.504", "1688151611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13949", "0.0", "1.752", "1688151611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13949", "0.0", "3.504", "1688151611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13950", "0.0", "1.752", "1688155211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13950", "0.0", "3.504", "1688155211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13950", "0.0", "1.752", "1688155211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13950", "0.0", "3.504", "1688155211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13951", "0.0", "1.752", "1688158811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13951", "0.0", "3.504", "1688158811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13951", "0.0", "1.752", "1688158811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13951", "0.0", "3.504", "1688158811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13952", "0.0", "1.752", "1688162411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13952", "0.0", "3.504", "1688162411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13952", "0.0", "1.752", "1688162411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13952", "0.0", "3.504", "1688162411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13953", "0.0", "1.752", "1688166011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13953", "0.0", "3.504", "1688166011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13953", "0.0", "1.752", "1688166011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13953", "0.0", "3.504", "1688166011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13954", "0.0", "1.752", "1688169611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13954", "0.0", "3.504", "1688169611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13954", "0.0", "1.752", "1688169611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13954", "0.0", "3.504", "1688169611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13955", "0.0", "1.752", "1688173211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13955", "0.0", "3.504", "1688173211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13955", "0.0", "1.752", "1688173211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13955", "0.0", "3.504", "1688173211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13956", "0.0", "1.752", "1688176811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13956", "0.0", "3.504", "1688176811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13956", "0.0", "1.752", "1688176811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13956", "0.0", "3.504", "1688176811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13957", "0.0", "1.752", "1688180411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13957", "0.0", "3.504", "1688180411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13957", "0.0", "1.752", "1688180411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13957", "0.0", "3.504", "1688180411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13958", "0.0", "1.752", "1688184011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13958", "0.0", "3.504", "1688184011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13958", "0.0", "1.752", "1688184011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13958", "0.0", "3.504", "1688184011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13959", "0.0", "1.752", "1688187611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13959", "0.0", "3.504", "1688187611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13959", "0.0", "1.752", "1688187611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13959", "0.0", "3.504", "1688187611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13960", "0.0", "1.752", "1688191211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13960", "0.0", "3.504", "1688191211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13960", "0.0", "1.752", "1688191211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13960", "0.0", "3.504", "1688191211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13961", "0.0", "1.752", "1688194811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13961", "0.0", "3.504", "1688194811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13961", "0.0", "1.752", "1688194811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13961", "0.0", "3.504", "1688194811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13962", "0.0", "1.752", "1688198411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13962", "0.0", "3.504", "1688198411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13962", "0.0", "1.752", "1688198411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13962", "0.0", "3.504", "1688198411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13963", "0.0", "1.752", "1688202011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13963", "0.0", "3.504", "1688202011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13963", "0.0", "1.752", "1688202011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13963", "0.0", "3.504", "1688202011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13964", "0.0", "1.752", "1688205611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13964", "0.0", "3.504", "1688205611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13964", "0.0", "1.752", "1688205611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13964", "0.0", "3.504", "1688205611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13965", "0.0", "1.752", "1688209211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13965", "0.0", "3.504", "1688209211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13965", "0.0", "1.752", "1688209211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13965", "0.0", "3.504", "1688209211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13966", "0.0", "1.752", "1688212811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13966", "0.0", "3.504", "1688212811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13966", "0.0", "1.752", "1688212811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13966", "0.0", "3.504", "1688212811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13967", "0.0", "1.752", "1688216411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13967", "0.0", "3.504", "1688216411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13967", "0.0", "1.752", "1688216411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13967", "0.0", "3.504", "1688216411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13968", "0.0", "1.752", "1688220011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13968", "0.0", "3.504", "1688220011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13968", "0.0", "1.752", "1688220011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13968", "0.0", "3.504", "1688220011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13969", "0.0", "1.752", "1688223611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13969", "0.0", "3.504", "1688223611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13969", "0.0", "1.752", "1688223611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13969", "0.0", "3.504", "1688223611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13970", "0.0", "1.752", "1688227211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13970", "0.0", "3.504", "1688227211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13970", "0.0", "1.752", "1688227211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13970", "0.0", "3.504", "1688227211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13971", "0.0", "1.752", "1688230811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13971", "0.0", "3.504", "1688230811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13971", "0.0", "1.752", "1688230811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13971", "0.0", "3.504", "1688230811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13972", "0.0", "1.752", "1688234411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13972", "0.0", "3.504", "1688234411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13972", "0.0", "1.752", "1688234411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13972", "0.0", "3.504", "1688234411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13973", "0.0", "1.752", "1688238011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13973", "0.0", "3.504", "1688238011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13973", "0.0", "1.752", "1688238011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13973", "0.0", "3.504", "1688238011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13974", "0.0", "1.752", "1688241611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13974", "0.0", "3.504", "1688241611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13974", "0.0", "1.752", "1688241611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13974", "0.0", "3.504", "1688241611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13975", "0.0", "1.752", "1688245211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13975", "0.0", "3.504", "1688245211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13975", "0.0", "1.752", "1688245211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13975", "0.0", "3.504", "1688245211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13976", "0.0", "1.752", "1688248811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13976", "0.0", "3.504", "1688248811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13976", "0.0", "1.752", "1688248811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13976", "0.0", "3.504", "1688248811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13977", "0.0", "1.752", "1688252411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13977", "0.0", "3.504", "1688252411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13977", "0.0", "1.752", "1688252411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13977", "0.0", "3.504", "1688252411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13978", "0.0", "1.752", "1688256011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13978", "0.0", "3.504", "1688256011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13978", "0.0", "1.752", "1688256011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13978", "0.0", "3.504", "1688256011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13979", "0.0", "1.752", "1688259611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13979", "0.0", "3.504", "1688259611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13979", "0.0", "1.752", "1688259611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13979", "0.0", "3.504", "1688259611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13980", "0.0", "1.752", "1688263211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13980", "0.0", "3.504", "1688263211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13980", "0.0", "1.752", "1688263211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13980", "0.0", "3.504", "1688263211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13981", "0.0", "1.752", "1688266811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13981", "0.0", "3.504", "1688266811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13981", "0.0", "1.752", "1688266811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13981", "0.0", "3.504", "1688266811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13982", "0.0", "1.752", "1688270411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13982", "0.0", "3.504", "1688270411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13982", "0.0", "1.752", "1688270411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13982", "0.0", "3.504", "1688270411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13983", "0.0", "1.752", "1688274011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13983", "0.0", "3.504", "1688274011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13983", "0.0", "1.752", "1688274011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13983", "0.0", "3.504", "1688274011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13984", "0.0", "1.752", "1688277611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13984", "0.0", "3.504", "1688277611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13984", "0.0", "1.752", "1688277611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13984", "0.0", "3.504", "1688277611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13985", "0.0", "1.752", "1688281211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13985", "0.0", "3.504", "1688281211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13985", "0.0", "1.752", "1688281211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13985", "0.0", "3.504", "1688281211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13986", "0.0", "1.752", "1688284811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13986", "0.0", "3.504", "1688284811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13986", "0.0", "1.752", "1688284811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13986", "0.0", "3.504", "1688284811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13987", "0.0", "1.752", "1688288411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13987", "0.0", "3.504", "1688288411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13987", "0.0", "1.752", "1688288411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13987", "0.0", "3.504", "1688288411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13988", "0.0", "1.752", "1688292011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13988", "0.0", "3.504", "1688292011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13988", "0.0", "1.752", "1688292011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13988", "0.0", "3.504", "1688292011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13989", "0.0", "1.752", "1688295611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13989", "0.0", "3.504", "1688295611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13989", "0.0", "1.752", "1688295611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13989", "0.0", "3.504", "1688295611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13990", "0.0", "1.752", "1688299211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13990", "0.0", "3.504", "1688299211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13990", "0.0", "1.752", "1688299211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13990", "0.0", "3.504", "1688299211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13991", "0.0", "1.752", "1688302823"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13991", "0.0", "3.504", "1688302823"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13991", "0.0", "1.752", "1688302823"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13991", "0.0", "3.504", "1688302823"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13992", "0.0", "1.752", "1688306411"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13992", "0.0", "3.504", "1688306411"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13992", "0.0", "1.752", "1688306411"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13992", "0.0", "3.504", "1688306411"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13993", "0.0", "1.752", "1688310011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13993", "0.0", "3.504", "1688310011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13993", "0.0", "1.752", "1688310011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13993", "0.0", "3.504", "1688310011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13994", "0.0", "1.752", "1688313611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13994", "0.0", "3.504", "1688313611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13994", "0.0", "1.752", "1688313611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13994", "0.0", "3.504", "1688313611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13995", "0.0", "1.752", "1688317211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13995", "0.0", "3.504", "1688317211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13995", "0.0", "1.752", "1688317211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13995", "0.0", "3.504", "1688317211"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13996", "0.0", "1.752", "1688320811"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13996", "0.0", "3.504", "1688320811"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13996", "0.0", "1.752", "1688320811"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13996", "0.0", "3.504", "1688320811"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13997", "0.0", "1.752", "1688324423"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13997", "0.0", "3.504", "1688324423"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13997", "0.0", "1.752", "1688324423"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13997", "0.0", "3.504", "1688324423"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13998", "0.0", "1.752", "1688328011"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13998", "0.0", "3.504", "1688328011"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13998", "0.0", "1.752", "1688328011"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13998", "0.0", "3.504", "1688328011"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "13999", "0.0", "1.752", "1688331611"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "13999", "0.0", "3.504", "1688331611"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "13999", "0.0", "1.752", "1688331611"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "13999", "0.0", "3.504", "1688331611"], + ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "14000", "0.0", "1.752", "1688335211"], + ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "14000", "0.0", "3.504", "1688335211"], + ["0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", "14000", "0.0", "1.752", "1688335211"], + ["0xc9c32cd16bf7efb85ff14e0c8603cc90f6f2ee49", "14000", "0.0", "3.504", "1688335211"] +]; + +export const SILO_YIELD_14_000 = [ + ["6075", "1.0", "1", "0.0", "1659805214"], + ["6076", "0.6666666666666666", "2", "1523.8754066666668", "1659808931"], + ["6077", "0.5", "3", "2858.1279875", "1659812464"], + ["6078", "0.4", "4", "4207.05192544", "1659816002"], + ["6079", "0.3333333333333333", "5", "5568.231761469136", "1659819600"], + ["6080", "0.2857142857142857", "6", "7395.2779246813825", "1659823204"], + ["6081", "0.25", "7", "9307.030962270019", "1659826833"], + ["6082", "0.2222222222222222", "8", "11190.48552303033", "1659830403"], + ["6083", "0.2", "9", "13017.096415130343", "1659834008"], + ["6084", "0.18181818181818182", "10", "14868.565160047368", "1659837606"], + ["6085", "0.16666666666666666", "11", "16605.7194203448", "1659841200"], + ["6086", "0.15384615384615385", "12", "18298.89247684357", "1659844806"], + ["6087", "0.14285714285714285", "13", "20073.987391366052", "1659848402"], + ["6088", "0.13333333333333333", "14", "21944.58219663631", "1659852006"], + ["6089", "0.125", "15", "23793.411933689084", "1659855633"], + ["6090", "0.11764705882352941", "16", "25193.76044445125", "1659859220"], + ["6091", "0.1111111111111111", "17", "26545.330262858053", "1659862810"], + ["6092", "0.10526315789473684", "18", "27714.065545086152", "1659866402"], + ["6093", "0.1", "19", "35285.142536382555", "1659870001"], + ["6094", "0.09523809523809523", "20", "44930.56823938526", "1659873611"], + ["6095", "0.09090909090909091", "21", "54327.87037073315", "1659877212"], + ["6096", "0.08695652173913043", "22", "62832.65855397024", "1659880812"], + ["6097", "0.08333333333333333", "23", "68468.02123933256", "1659884415"], + ["6098", "0.08", "24", "70297.03825077652", "1659888008"], + ["6099", "0.07692307692307693", "25", "72315.74818702205", "1659891619"], + ["6100", "0.07407407407407407", "26", "74328.35400711643", "1659895235"], + ["6101", "0.07142857142857142", "27", "75355.22441463814", "1659898860"], + ["6102", "0.06896551724137931", "28", "74438.64394363906", "1659902401"], + ["6103", "0.06666666666666667", "29", "72934.96743431779", "1659906025"], + ["6104", "0.06451612903225806", "30", "71068.9209834615", "1659909604"], + ["6105", "0.0625", "31", "69033.89083342448", "1659913232"], + ["6106", "0.06060606060606061", "32", "66740.0933914386", "1659916800"], + ["6107", "0.058823529411764705", "33", "63173.833304042346", "1659920405"], + ["6108", "0.05714285714285714", "34", "59363.45450892827", "1659924000"], + ["6109", "0.05555555555555555", "35", "55443.85080819397", "1659927627"], + ["6110", "0.05405405405405406", "36", "51944.55460976833", "1659931211"], + ["6111", "0.05263157894736842", "37", "48817.3135376353", "1659934839"], + ["6112", "0.05128205128205128", "38", "45987.11698438238", "1659938419"], + ["6113", "0.05", "39", "43426.145880533295", "1659942010"], + ["6114", "0.04878048780487805", "40", "41101.294321248", "1659945605"], + ["6115", "0.047619047619047616", "41", "38983.57514122364", "1659949200"], + ["6116", "0.046511627906976744", "42", "37048.347786874896", "1659952822"], + ["6117", "0.045454545454545456", "43", "35274.55882058329", "1659956411"], + ["6118", "0.044444444444444446", "44", "33644.13252166227", "1659960010"], + ["6119", "0.043478260869565216", "45", "32141.478720173604", "1659963602"], + ["6120", "0.0425531914893617", "46", "30771.089137049486", "1659967203"], + ["6121", "0.041666666666666664", "47", "29501.27222801306", "1659970819"], + ["6122", "0.04081632653061224", "48", "28319.456967841572", "1659974408"], + ["6123", "0.04", "49", "27206.463210418453", "1659978038"], + ["6124", "0.0392156862745098", "50", "26178.654901434118", "1659981609"], + ["6125", "0.038461538461538464", "51", "25292.139403285495", "1659985202"], + ["6126", "0.03773584905660377", "52", "24419.008263958247", "1659988808"], + ["6127", "0.037037037037037035", "53", "23579.797975266418", "1659992408"], + ["6128", "0.03636363636363636", "54", "22775.212851850276", "1659996039"], + ["6129", "0.03571428571428571", "55", "22018.846305411458", "1659999611"], + ["6130", "0.03508771929824561", "56", "21306.724020294525", "1660003208"], + ["6131", "0.034482758620689655", "57", "20635.280786379444", "1660006818"], + ["6132", "0.03389830508474576", "58", "20001.310577531927", "1660010408"], + ["6133", "0.03333333333333333", "59", "19478.63496011662", "1660014002"], + ["6134", "0.03278688524590164", "60", "18907.48922537397", "1660017609"], + ["6135", "0.03225806451612903", "61", "18366.22888998266", "1660021205"], + ["6136", "0.031746031746031744", "62", "17852.683509687577", "1660024832"], + ["6137", "0.03125", "63", "17364.88076334833", "1660028400"], + ["6138", "0.03076923076923077", "64", "16901.024907274226", "1660032019"], + ["6139", "0.030303030303030304", "65", "16459.477928527987", "1660035604"], + ["6140", "0.029850746268656716", "66", "16038.743016677741", "1660039200"], + ["6141", "0.029411764705882353", "67", "15637.450032842227", "1660042815"], + ["6142", "0.028985507246376812", "68", "15254.342704122926", "1660046440"], + ["6143", "0.02857142857142857", "69", "14888.517744941493", "1660050021"], + ["6144", "0.028169014084507043", "70", "14538.402631746354", "1660053621"], + ["6145", "0.027777777777777776", "71", "14203.281430556965", "1660057206"], + ["6146", "0.0273972602739726", "72", "13882.252328440132", "1660060821"], + ["6147", "0.02702702702702703", "73", "13574.482243478387", "1660064425"], + ["6148", "0.02666666666666667", "74", "13279.200545040116", "1660068021"], + ["6149", "0.02631578947368421", "75", "12995.69343835136", "1660071600"], + ["6150", "0.025974025974025976", "76", "12723.298933930302", "1660075226"], + ["6151", "0.02564102564102564", "77", "12461.40233299797", "1660078805"], + ["6152", "0.02531645569620253", "78", "12209.432168994561", "1660082409"], + ["6153", "0.025", "79", "11966.856553052956", "1660086000"], + ["6154", "0.024691358024691357", "80", "11733.17987791069", "1660089624"], + ["6155", "0.024390243902439025", "81", "11507.93984044671", "1660093205"], + ["6156", "0.024096385542168676", "82", "11290.704747949601", "1660096811"], + ["6157", "0.023809523809523808", "83", "11105.270958667354", "1660100417"], + ["6158", "0.023529411764705882", "84", "10928.499791708435", "1660104003"], + ["6159", "0.023255813953488372", "85", "10752.438618018667", "1660107627"], + ["6160", "0.022988505747126436", "86", "10579.147372982095", "1660111213"], + ["6161", "0.022727272727272728", "87", "10423.357686253421", "1660114807"], + ["6162", "0.02247191011235955", "88", "10286.485703217393", "1660118402"], + ["6163", "0.022222222222222223", "89", "10159.293512527225", "1660122000"], + ["6164", "0.02197802197802198", "90", "10040.548465136182", "1660125611"], + ["6165", "0.021739130434782608", "91", "9895.392821741449", "1660129213"], + ["6166", "0.021505376344086023", "92", "9789.456816851936", "1660132828"], + ["6167", "0.02127659574468085", "93", "9671.802556891898", "1660136422"], + ["6168", "0.021052631578947368", "94", "9552.96908531726", "1660140015"], + ["6169", "0.020833333333333332", "95", "9434.780470651405", "1660143603"], + ["6170", "0.020618556701030927", "96", "9318.881490663303", "1660147207"], + ["6171", "0.02040816326530612", "97", "9229.16161802007", "1660150815"], + ["6172", "0.020202020202020204", "98", "9145.648810180937", "1660154422"], + ["6173", "0.02", "99", "9062.797742087789", "1660158007"], + ["6174", "0.019801980198019802", "100", "8956.579996432238", "1660161627"], + ["6175", "0.0196078431372549", "101", "8821.009156915054", "1660165217"], + ["6176", "0.019417475728155338", "102", "8689.35489985289", "1660168808"], + ["6177", "0.019230769230769232", "103", "8561.45304934245", "1660172422"], + ["6178", "0.01904761904761905", "104", "8437.148372790161", "1660176014"], + ["6179", "0.018867924528301886", "105", "8316.68060754114", "1660179605"], + ["6180", "0.018691588785046728", "106", "8199.517887168111", "1660183201"], + ["6181", "0.018518518518518517", "107", "8085.342093480866", "1660186805"], + ["6182", "0.01834862385321101", "108", "7974.006803625129", "1660190400"], + ["6183", "0.01818181818181818", "109", "7868.985438898051", "1660194027"], + ["6184", "0.018018018018018018", "110", "7763.320641766706", "1660197606"], + ["6185", "0.017857142857142856", "111", "7660.392388501487", "1660201210"], + ["6186", "0.017699115044247787", "112", "7564.721849592891", "1660204829"], + ["6187", "0.017543859649122806", "113", "7475.1059178306405", "1660208417"], + ["6188", "0.017391304347826087", "114", "7387.476810706644", "1660212003"], + ["6189", "0.017241379310344827", "115", "7300.983107741027", "1660215609"], + ["6190", "0.017094017094017096", "116", "7209.523675002202", "1660219218"], + ["6191", "0.01694915254237288", "117", "7120.269268403314", "1660222802"], + ["6192", "0.01680672268907563", "118", "7033.142354368073", "1660226438"], + ["6193", "0.016666666666666666", "119", "6971.996450756657", "1660230002"], + ["6194", "0.01652892561983471", "120", "6900.617790823998", "1660233610"], + ["6195", "0.01639344262295082", "121", "6818.5831547865355", "1660237271"], + ["6196", "0.016260162601626018", "122", "6738.42299077475", "1660240803"], + ["6197", "0.016129032258064516", "123", "6660.10091021236", "1660244412"], + ["6198", "0.016", "124", "6583.866056629313", "1660248005"], + ["6199", "0.015873015873015872", "125", "6509.417754388722", "1660251606"], + ["6200", "0.015748031496062992", "126", "6436.168109680284", "1660255203"], + ["6201", "0.015625", "127", "6364.513626931512", "1660258851"], + ["6202", "0.015503875968992248", "128", "6294.402024549989", "1660262417"], + ["6203", "0.015384615384615385", "129", "6225.785382612022", "1660266019"], + ["6204", "0.015267175572519083", "130", "6158.617033916419", "1660269621"], + ["6205", "0.015151515151515152", "131", "6092.852216855088", "1660273209"], + ["6206", "0.015037593984962405", "132", "6028.447979678799", "1660276800"], + ["6207", "0.014925373134328358", "133", "5965.541969425303", "1660280405"], + ["6208", "0.014814814814814815", "134", "5903.830808492676", "1660284025"], + ["6209", "0.014705882352941176", "135", "5851.615752791071", "1660287610"], + ["6210", "0.014598540145985401", "136", "5815.5713228472805", "1660291207"], + ["6211", "0.014492753623188406", "137", "5778.275721039376", "1660294818"], + ["6212", "0.014388489208633094", "138", "5738.4113234398765", "1660298406"], + ["6213", "0.014285714285714285", "139", "5697.23687669685", "1660302012"], + ["6214", "0.014184397163120567", "140", "5658.073958416725", "1660305602"], + ["6215", "0.014084507042253521", "141", "5618.781697515881", "1660309213"], + ["6216", "0.013986013986013986", "142", "5579.729444695608", "1660312818"], + ["6217", "0.013888888888888888", "143", "5534.908550788875", "1660316407"], + ["6218", "0.013793103448275862", "144", "5481.286600839448", "1660320010"], + ["6219", "0.0136986301369863", "145", "5428.682807221655", "1660323608"], + ["6220", "0.013605442176870748", "146", "5377.068575914062", "1660327205"], + ["6221", "0.013513513513513514", "147", "5326.416372298579", "1660330819"], + ["6222", "0.013422818791946308", "148", "5276.699672534013", "1660334415"], + ["6223", "0.013333333333333334", "149", "5227.892917585632", "1660338058"], + ["6224", "0.013245033112582781", "150", "5179.97146974288", "1660341628"], + ["6225", "0.013157894736842105", "151", "5132.911571469462", "1660345202"], + ["6226", "0.013071895424836602", "152", "5086.690306441024", "1660348803"], + ["6227", "0.012987012987012988", "153", "5041.285562635862", "1660352411"], + ["6228", "0.012903225806451613", "154", "5008.810569495392", "1660356018"], + ["6229", "0.01282051282051282", "155", "4983.9322590260435", "1660359623"], + ["6230", "0.012738853503184714", "156", "4946.065342060302", "1660363226"], + ["6231", "0.012658227848101266", "157", "4906.938470786161", "1660366807"], + ["6232", "0.012578616352201259", "158", "4873.545299204275", "1660370435"], + ["6233", "0.0125", "159", "4851.547420141344", "1660374013"], + ["6234", "0.012422360248447204", "160", "4833.191189702954", "1660377611"], + ["6235", "0.012345679012345678", "161", "4814.967618944872", "1660381206"], + ["6236", "0.012269938650306749", "162", "4796.880760183573", "1660384802"], + ["6237", "0.012195121951219513", "163", "4778.180402172935", "1660388408"], + ["6238", "0.012121212121212121", "164", "4759.312204220917", "1660392021"], + ["6239", "0.012048192771084338", "165", "4748.042602745093", "1660395638"], + ["6240", "0.011976047904191617", "166", "4722.991119165525", "1660399230"], + ["6241", "0.011904761904761904", "167", "4683.491064782172", "1660402814"], + ["6242", "0.011834319526627219", "168", "4652.496223551238", "1660406403"], + ["6243", "0.011764705882352941", "169", "4637.287011131766", "1660410005"], + ["6244", "0.011695906432748537", "170", "4608.743218641381", "1660413616"], + ["6245", "0.011627906976744186", "171", "4573.333802832818", "1660417208"], + ["6246", "0.011560693641618497", "172", "4538.243432158861", "1660420805"], + ["6247", "0.011494252873563218", "173", "4501.713074381629", "1660424401"], + ["6248", "0.011428571428571429", "174", "4465.769730809335", "1660428014"], + ["6249", "0.011363636363636364", "175", "4430.399257991389", "1660431600"], + ["6250", "0.011299435028248588", "176", "4396.563838016992", "1660435204"], + ["6251", "0.011235955056179775", "177", "4363.1194864600475", "1660438819"], + ["6252", "0.0111731843575419", "178", "4329.362805743163", "1660442401"], + ["6253", "0.011111111111111112", "179", "4296.131213651287", "1660446004"], + ["6254", "0.011049723756906077", "180", "4263.399536903056", "1660449601"], + ["6255", "0.01098901098901099", "181", "4231.165519900284", "1660453204"], + ["6256", "0.01092896174863388", "182", "4199.417819289961", "1660456811"], + ["6257", "0.010869565217391304", "183", "4168.145436094308", "1660460425"], + ["6258", "0.010810810810810811", "184", "4137.337702677422", "1660464010"], + ["6259", "0.010752688172043012", "185", "4106.984270300987", "1660467601"], + ["6260", "0.0106951871657754", "186", "4077.0750972382266", "1660471206"], + ["6261", "0.010638297872340425", "187", "4048.163851831956", "1660474811"], + ["6262", "0.010582010582010581", "188", "4019.706486989661", "1660478403"], + ["6263", "0.010526315789473684", "189", "3991.6156617280744", "1660482040"], + ["6264", "0.010471204188481676", "190", "3963.3623679804873", "1660485612"], + ["6265", "0.010416666666666666", "191", "3935.5079884937195", "1660489213"], + ["6266", "0.010362694300518135", "192", "3908.044081663207", "1660492803"], + ["6267", "0.010309278350515464", "193", "3880.962443863077", "1660496414"], + ["6268", "0.010256410256410256", "194", "3854.2605834767933", "1660500090"], + ["6269", "0.01020408163265306", "195", "3827.9196996508513", "1660503609"], + ["6270", "0.01015228426395939", "196", "3801.9378218691973", "1660507206"], + ["6271", "0.010101010101010102", "197", "3776.3076181006736", "1660510855"], + ["6272", "0.010050251256281407", "198", "3751.0219558004237", "1660514414"], + ["6273", "0.01", "199", "3726.0738951375147", "1660518005"], + ["6274", "0.009950248756218905", "200", "3701.4566824975586", "1660521645"], + ["6275", "0.009900990099009901", "201", "3677.171336950353", "1660525257"], + ["6276", "0.009852216748768473", "202", "3653.1961616135018", "1660528801"], + ["6277", "0.00980392156862745", "203", "3629.5326321849157", "1660532400"], + ["6278", "0.00975609756097561", "204", "3606.1746799275315", "1660536002"], + ["6279", "0.009708737864077669", "205", "3583.118989220794", "1660539602"], + ["6280", "0.00966183574879227", "206", "3560.354572209024", "1660543287"], + ["6281", "0.009615384615384616", "207", "3537.878451367643", "1660546804"], + ["6282", "0.009569377990430622", "208", "3517.232277576031", "1660550406"], + ["6283", "0.009523809523809525", "209", "3496.636072771131", "1660554008"], + ["6284", "0.009478672985781991", "210", "3476.1808362957186", "1660557645"], + ["6285", "0.009433962264150943", "211", "3460.6936435937537", "1660561219"], + ["6286", "0.009389671361502348", "212", "3445.8697153558796", "1660564800"], + ["6287", "0.009345794392523364", "213", "3431.1884258929495", "1660568409"], + ["6288", "0.009302325581395349", "214", "3410.2744334800223", "1660572004"], + ["6289", "0.009259259259259259", "215", "3390.614062188639", "1660575616"], + ["6290", "0.009216589861751152", "216", "3371.3408387297764", "1660579201"], + ["6291", "0.009174311926605505", "217", "3352.6135838438245", "1660582805"], + ["6292", "0.0091324200913242", "218", "3334.073816600014", "1660586402"], + ["6293", "0.00909090909090909", "219", "3315.8045817009565", "1660590029"], + ["6294", "0.00904977375565611", "220", "3297.743254722313", "1660593603"], + ["6295", "0.009009009009009009", "221", "3279.8543515209763", "1660597211"], + ["6296", "0.008968609865470852", "222", "3262.167221634532", "1660600804"], + ["6297", "0.008928571428571428", "223", "3244.6651774224283", "1660604400"], + ["6298", "0.008888888888888889", "224", "3227.251936919211", "1660608007"], + ["6299", "0.008849557522123894", "225", "3209.818894578582", "1660611601"], + ["6300", "0.00881057268722467", "226", "3192.44864097186", "1660615253"], + ["6301", "0.008771929824561403", "227", "3175.326090185633", "1660618819"], + ["6302", "0.008733624454148471", "228", "3158.643752925141", "1660622404"], + ["6303", "0.008695652173913044", "229", "3142.2210802419186", "1660626003"], + ["6304", "0.008658008658008658", "230", "3126.1806340870844", "1660629641"], + ["6305", "0.008620689655172414", "231", "3110.102933772622", "1660633205"], + ["6306", "0.008583690987124463", "232", "3093.3723380545566", "1660636814"], + ["6307", "0.008547008547008548", "233", "3076.866637452491", "1660640425"], + ["6308", "0.00851063829787234", "234", "3062.719282858788", "1660644003"], + ["6309", "0.00847457627118644", "235", "3048.129414901746", "1660647612"], + ["6310", "0.008438818565400843", "236", "3033.6900552793145", "1660651209"], + ["6311", "0.008403361344537815", "237", "3017.732397084349", "1660654820"], + ["6312", "0.008368200836820083", "238", "3001.948290894755", "1660658412"], + ["6313", "0.008333333333333333", "239", "2985.9196631264576", "1660662007"], + ["6314", "0.008298755186721992", "240", "2975.1101043858766", "1660665600"], + ["6315", "0.008264462809917356", "241", "2969.794538553791", "1660669206"], + ["6316", "0.00823045267489712", "242", "2955.1742360003523", "1660672817"], + ["6317", "0.00819672131147541", "243", "2940.342442990208", "1660676403"], + ["6318", "0.00816326530612245", "244", "2925.6896068481497", "1660680000"], + ["6319", "0.008130081300813009", "245", "2910.736328753702", "1660683608"], + ["6320", "0.008097165991902834", "246", "2900.016343901837", "1660687208"], + ["6321", "0.008064516129032258", "247", "2890.91409558755", "1660690820"], + ["6322", "0.008032128514056224", "248", "2879.1409156927552", "1660694410"], + ["6323", "0.008", "249", "2867.341574431425", "1660698000"], + ["6324", "0.00796812749003984", "250", "2853.0660818044657", "1660701618"], + ["6325", "0.007936507936507936", "251", "2841.281090231562", "1660705211"], + ["6326", "0.007905138339920948", "252", "2827.8748544372147", "1660708811"], + ["6327", "0.007874015748031496", "253", "2813.9941546537793", "1660712419"], + ["6328", "0.00784313725490196", "254", "2800.311328066097", "1660716005"], + ["6329", "0.0078125", "255", "2786.765249956481", "1660719607"], + ["6330", "0.007782101167315175", "256", "2773.346767730744", "1660723206"], + ["6331", "0.007751937984496124", "257", "2759.823993366582", "1660726805"], + ["6332", "0.007722007722007722", "258", "2746.791116903643", "1660730405"], + ["6333", "0.007692307692307693", "259", "2733.9574125821887", "1660734027"], + ["6334", "0.007662835249042145", "260", "2721.1338381299197", "1660737604"], + ["6335", "0.007633587786259542", "261", "2708.435185039086", "1660741208"], + ["6336", "0.0076045627376425855", "262", "2695.8607454662742", "1660744805"], + ["6337", "0.007575757575757576", "263", "2683.147079775453", "1660748404"], + ["6338", "0.007547169811320755", "264", "2670.604126519309", "1660752007"], + ["6339", "0.007518796992481203", "265", "2658.0116232558416", "1660755605"], + ["6340", "0.00749063670411985", "266", "2646.0919520009784", "1660759214"], + ["6341", "0.007462686567164179", "267", "2634.386407381963", "1660762840"], + ["6342", "0.007434944237918215", "268", "2623.064757860207", "1660766408"], + ["6343", "0.007407407407407408", "269", "2611.3749460399968", "1660770014"], + ["6344", "0.007380073800738007", "270", "2599.7307837491226", "1660773608"], + ["6345", "0.007352941176470588", "271", "2588.342882802355", "1660777215"], + ["6346", "0.007326007326007326", "272", "2577.06526893205", "1660780818"], + ["6347", "0.0072992700729927005", "273", "2565.8909178125523", "1660784408"], + ["6348", "0.007272727272727273", "274", "2554.8175259408767", "1660788002"], + ["6349", "0.007246376811594203", "275", "2543.588172553552", "1660791620"], + ["6350", "0.007220216606498195", "276", "2532.3393621791056", "1660795237"], + ["6351", "0.007194244604316547", "277", "2521.1926052790004", "1660798806"], + ["6352", "0.007168458781362007", "278", "2509.9869550649055", "1660802404"], + ["6353", "0.007142857142857143", "279", "2498.978259979568", "1660806028"], + ["6354", "0.0071174377224199285", "280", "2488.4544917961102", "1660809618"], + ["6355", "0.0070921985815602835", "281", "2477.572328604045", "1660813203"], + ["6356", "0.007067137809187279", "282", "2466.6211092987137", "1660816811"], + ["6357", "0.007042253521126761", "283", "2457.0109695695587", "1660820450"], + ["6358", "0.007017543859649123", "284", "2446.646805177162", "1660824008"], + ["6359", "0.006993006993006993", "285", "2436.60051262172", "1660827606"], + ["6360", "0.006968641114982578", "286", "2426.6405437624294", "1660831202"], + ["6361", "0.006944444444444444", "287", "2416.764952490071", "1660834814"], + ["6362", "0.006920415224913495", "288", "2406.956637228729", "1660838400"], + ["6363", "0.006896551724137931", "289", "2396.6768865592067", "1660842026"], + ["6364", "0.006872852233676976", "290", "2386.5009324120815", "1660845618"], + ["6365", "0.00684931506849315", "291", "2376.4227765376904", "1660849217"], + ["6366", "0.006825938566552901", "292", "2366.6433529359656", "1660852809"], + ["6367", "0.006802721088435374", "293", "2356.8708453510376", "1660856412"], + ["6368", "0.006779661016949152", "294", "2347.3348676200835", "1660860004"], + ["6369", "0.006756756756756757", "295", "2338.119733381483", "1660863638"], + ["6370", "0.006734006734006734", "296", "2328.9800627169293", "1660867217"], + ["6371", "0.006711409395973154", "297", "2319.7592109990146", "1660870811"], + ["6372", "0.006688963210702341", "298", "2310.1972803856925", "1660874436"], + ["6373", "0.006666666666666667", "299", "2301.2817209118166", "1660878002"], + ["6374", "0.006644518272425249", "300", "2292.3482176807765", "1660881607"], + ["6375", "0.006622516556291391", "301", "2283.575812996094", "1660885211"], + ["6376", "0.006600660066006601", "302", "2274.872836881583", "1660888821"], + ["6377", "0.006578947368421052", "303", "2265.838568598145", "1660892420"], + ["6378", "0.006557377049180328", "304", "2257.2636602820953", "1660896002"], + ["6379", "0.006535947712418301", "305", "2248.774462491388", "1660899615"], + ["6380", "0.006514657980456026", "306", "2240.2424515827424", "1660903216"], + ["6381", "0.006493506493506494", "307", "2231.7554107351593", "1660906822"], + ["6382", "0.006472491909385114", "308", "2223.414675643708", "1660910409"], + ["6383", "0.0064516129032258064", "309", "2215.18912829854", "1660914003"], + ["6384", "0.006430868167202572", "310", "2206.803496689097", "1660917617"], + ["6385", "0.00641025641025641", "311", "2198.699657144106", "1660921220"], + ["6386", "0.006389776357827476", "312", "2190.7701407500617", "1660924810"], + ["6387", "0.006369426751592357", "313", "2182.6866785614047", "1660928416"], + ["6388", "0.006349206349206349", "314", "2174.7974195036636", "1660932010"], + ["6389", "0.006329113924050633", "315", "2167.035002234415", "1660935643"], + ["6390", "0.006309148264984227", "316", "2159.186068615966", "1660939208"], + ["6391", "0.006289308176100629", "317", "2150.8800698951254", "1660942805"], + ["6392", "0.006269592476489028", "318", "2143.165537191948", "1660946403"], + ["6393", "0.00625", "319", "2135.5418260336887", "1660950006"], + ["6394", "0.006230529595015576", "320", "2127.6622633133393", "1660953636"], + ["6395", "0.006211180124223602", "321", "2119.8099740982143", "1660957205"], + ["6396", "0.006191950464396285", "322", "2113.974103046226", "1660960804"], + ["6397", "0.006172839506172839", "323", "2109.0810240537394", "1660964411"], + ["6398", "0.006153846153846154", "324", "2102.5060702321985", "1660968009"], + ["6399", "0.006134969325153374", "325", "2094.9529321395016", "1660971642"], + ["6400", "0.0061162079510703364", "326", "2087.4498655742836", "1660975206"], + ["6401", "0.006097560975609756", "327", "2079.667026582093", "1660978826"], + ["6402", "0.0060790273556231", "328", "2072.497308145423", "1660982414"], + ["6403", "0.006060606060606061", "329", "2065.381773077662", "1660986001"], + ["6404", "0.006042296072507553", "330", "2058.3190147554974", "1660989603"], + ["6405", "0.006024096385542169", "331", "2051.3069784526983", "1660993215"], + ["6406", "0.006006006006006006", "332", "2043.8227113868315", "1660996827"], + ["6407", "0.005988023952095809", "333", "2037.005584516094", "1661000408"], + ["6408", "0.005970149253731343", "334", "2030.2181769343001", "1661004021"], + ["6409", "0.005952380952380952", "335", "2022.8561069179361", "1661007609"], + ["6410", "0.005934718100890208", "336", "2016.0910739981098", "1661011210"], + ["6411", "0.005917159763313609", "337", "2009.374379207836", "1661014829"], + ["6412", "0.0058997050147492625", "338", "2002.7046082103107", "1661018480"], + ["6413", "0.0058823529411764705", "339", "1996.0810425149962", "1661022012"], + ["6414", "0.005865102639296188", "340", "1989.2820733515925", "1661025630"], + ["6415", "0.005847953216374269", "341", "1982.764663219866", "1661029206"], + ["6416", "0.0058309037900874635", "342", "1975.7424402157542", "1661032820"], + ["6417", "0.005813953488372093", "343", "1969.046408252739", "1661036438"], + ["6418", "0.005797101449275362", "344", "1963.0426257373995", "1661040001"], + ["6419", "0.005780346820809248", "345", "1957.3719545976576", "1661043615"], + ["6420", "0.005763688760806916", "346", "1951.7307931378464", "1661047201"], + ["6421", "0.005747126436781609", "347", "1945.4656488407102", "1661050814"], + ["6422", "0.0057306590257879654", "348", "1938.9489531150518", "1661054413"], + ["6423", "0.005714285714285714", "349", "1932.6725671681202", "1661058028"], + ["6424", "0.005698005698005698", "350", "1926.3008110717997", "1661061608"], + ["6425", "0.005681818181818182", "351", "1919.9938552803358", "1661065218"], + ["6426", "0.0056657223796034", "352", "1913.5942714193402", "1661068808"], + ["6427", "0.005649717514124294", "353", "1907.3489507649952", "1661072430"], + ["6428", "0.005633802816901409", "354", "1901.1171044188923", "1661076019"], + ["6429", "0.0056179775280898875", "355", "1894.9083664910245", "1661079603"], + ["6430", "0.0056022408963585435", "356", "1888.71652140351", "1661083211"], + ["6431", "0.00558659217877095", "357", "1883.5464679250565", "1661086802"], + ["6432", "0.005571030640668524", "358", "1878.2869087242623", "1661090414"], + ["6433", "0.005555555555555556", "359", "1872.4328592798518", "1661094018"], + ["6434", "0.00554016620498615", "360", "1866.440328754354", "1661097621"], + ["6435", "0.0055248618784530384", "361", "1860.2144574191689", "1661101209"], + ["6436", "0.005509641873278237", "362", "1856.6871807691573", "1661104801"], + ["6437", "0.005494505494505495", "363", "1852.1597080787642", "1661108449"], + ["6438", "0.005479452054794521", "364", "1846.4251715756923", "1661112018"], + ["6439", "0.00546448087431694", "365", "1840.7423985298199", "1661115614"], + ["6440", "0.005449591280653951", "366", "1835.716598395452", "1661119203"], + ["6441", "0.005434782608695652", "367", "1829.811621030944", "1661122814"], + ["6442", "0.005420054200542005", "368", "1823.8229239065647", "1661126448"], + ["6443", "0.005405405405405406", "369", "1817.8785769198114", "1661130006"], + ["6444", "0.005390835579514825", "370", "1812.6145591535949", "1661133612"], + ["6445", "0.005376344086021506", "371", "1808.133766853296", "1661137216"], + ["6446", "0.005361930294906166", "372", "1802.2851387188896", "1661140804"], + ["6447", "0.0053475935828877", "373", "1796.4753784538068", "1661144409"], + ["6448", "0.005333333333333333", "374", "1790.7195494391704", "1661148018"], + ["6449", "0.005319148936170213", "375", "1785.552465252503", "1661151605"], + ["6450", "0.005305039787798408", "376", "1780.7704867046612", "1661155219"], + ["6451", "0.005291005291005291", "377", "1776.0189870474999", "1661158838"], + ["6452", "0.005277044854881266", "378", "1771.3004698607594", "1661162405"], + ["6453", "0.005263157894736842", "379", "1766.6028366877624", "1661166006"], + ["6454", "0.005249343832020997", "380", "1761.1440400618183", "1661169603"], + ["6455", "0.005235602094240838", "381", "1755.5942441971652", "1661173208"], + ["6456", "0.005221932114882507", "382", "1750.7502351553517", "1661176810"], + ["6457", "0.005208333333333333", "383", "1746.2174080521004", "1661180400"], + ["6458", "0.005194805194805195", "384", "1741.197709294921", "1661184008"], + ["6459", "0.0051813471502590676", "385", "1736.217070726057", "1661187614"], + ["6460", "0.00516795865633075", "386", "1731.2201590135105", "1661191208"], + ["6461", "0.005154639175257732", "387", "1726.2345961026692", "1661194832"], + ["6462", "0.005141388174807198", "388", "1721.282144487161", "1661198411"], + ["6463", "0.005128205128205128", "389", "1716.3596610302043", "1661202006"], + ["6464", "0.005115089514066497", "390", "1711.466890022868", "1661205604"], + ["6465", "0.00510204081632653", "391", "1706.5628599987554", "1661209222"], + ["6466", "0.005089058524173028", "392", "1701.445146284624", "1661212803"], + ["6467", "0.005076142131979695", "393", "1696.2663513738116", "1661216421"], + ["6468", "0.005063291139240506", "394", "1691.3073796420526", "1661220001"], + ["6469", "0.005050505050505051", "395", "1687.5689192201812", "1661223622"], + ["6470", "0.005037783375314861", "396", "1682.5402660742404", "1661227202"], + ["6471", "0.005025125628140704", "397", "1677.550181179238", "1661230802"], + ["6472", "0.005012531328320802", "398", "1672.7237868480095", "1661234404"], + ["6473", "0.005", "399", "1667.9267106789448", "1661238002"], + ["6474", "0.004987531172069825", "400", "1663.1260868744707", "1661241600"], + ["6475", "0.004975124378109453", "401", "1658.3731808927978", "1661245221"], + ["6476", "0.004962779156327543", "402", "1653.6282909073357", "1661248814"], + ["6477", "0.0049504950495049506", "403", "1648.927434332546", "1661252448"], + ["6478", "0.0049382716049382715", "404", "1644.2551376474933", "1661256016"], + ["6479", "0.0049261083743842365", "405", "1639.6110947321204", "1661259605"], + ["6480", "0.004914004914004914", "406", "1634.9968208037928", "1661263203"], + ["6481", "0.004901960784313725", "407", "1630.5909688327858", "1661266801"], + ["6482", "0.004889975550122249", "408", "1625.835020184362", "1661270428"], + ["6483", "0.004878048780487805", "409", "1621.1176837043276", "1661274000"], + ["6484", "0.004866180048661801", "410", "1616.4742174029363", "1661277604"], + ["6485", "0.0048543689320388345", "411", "1611.85860846247", "1661281203"], + ["6486", "0.004842615012106538", "412", "1607.4091369228745", "1661284813"], + ["6487", "0.004830917874396135", "413", "1604.6392423653438", "1661288401"], + ["6488", "0.004819277108433735", "414", "1600.8932416631314", "1661292028"], + ["6489", "0.004807692307692308", "415", "1596.724500877132", "1661295672"], + ["6490", "0.004796163069544364", "416", "1592.864696483126", "1661299213"], + ["6491", "0.004784688995215311", "417", "1589.1374437254822", "1661302812"], + ["6492", "0.00477326968973747", "418", "1585.316850625239", "1661306400"], + ["6493", "0.004761904761904762", "419", "1581.008434803929", "1661310006"], + ["6494", "0.004750593824228029", "420", "1576.9204076827764", "1661313603"], + ["6495", "0.004739336492890996", "421", "1572.9727870081401", "1661317210"], + ["6496", "0.004728132387706856", "422", "1569.0460669250288", "1661320809"], + ["6497", "0.0047169811320754715", "423", "1565.1404824948852", "1661324400"], + ["6498", "0.004705882352941176", "424", "1561.0213565947276", "1661328037"], + ["6499", "0.004694835680751174", "425", "1557.4713878018658", "1661331615"], + ["6500", "0.00468384074941452", "426", "1553.944509722904", "1661335220"], + ["6501", "0.004672897196261682", "427", "1550.442191606221", "1661338801"], + ["6502", "0.004662004662004662", "428", "1546.8892166048713", "1661342408"], + ["6503", "0.004651162790697674", "429", "1542.9267209581676", "1661346013"], + ["6504", "0.004640371229698376", "430", "1538.9859671054069", "1661349612"], + ["6505", "0.004629629629629629", "431", "1535.2331274980188", "1661353246"], + ["6506", "0.004618937644341801", "432", "1531.8098981704436", "1661356831"], + ["6507", "0.004608294930875576", "433", "1528.4107242106982", "1661360412"], + ["6508", "0.004597701149425287", "434", "1525.029330950746", "1661364025"], + ["6509", "0.0045871559633027525", "435", "1521.3882360960265", "1661367611"], + ["6510", "0.004576659038901602", "436", "1518.017261159827", "1661371211"], + ["6511", "0.0045662100456621", "437", "1514.6650598153662", "1661374802"], + ["6512", "0.004555808656036446", "438", "1511.2574207532211", "1661378426"], + ["6513", "0.004545454545454545", "439", "1507.8888783146729", "1661382002"], + ["6514", "0.0045351473922902496", "440", "1504.5384917379379", "1661385610"], + ["6515", "0.004524886877828055", "441", "1500.9656657383669", "1661389205"], + ["6516", "0.004514672686230248", "442", "1497.0252715432262", "1661392814"], + ["6517", "0.0045045045045045045", "443", "1493.0129469743476", "1661396406"], + ["6518", "0.0044943820224719105", "444", "1489.7963807322985", "1661400049"], + ["6519", "0.004484304932735426", "445", "1486.5925621482781", "1661403606"], + ["6520", "0.0044742729306487695", "446", "1483.4020542751505", "1661407215"], + ["6521", "0.004464285714285714", "447", "1479.8495836143504", "1661410815"], + ["6522", "0.004454342984409799", "448", "1476.6233538783883", "1661414410"], + ["6523", "0.0044444444444444444", "449", "1473.4724568957952", "1661418017"], + ["6524", "0.004434589800443459", "450", "1470.0528931068625", "1661421617"], + ["6525", "0.004424778761061947", "451", "1466.9619601128397", "1661425205"], + ["6526", "0.004415011037527594", "452", "1464.6752089344693", "1661428805"], + ["6527", "0.004405286343612335", "453", "1461.9121012193684", "1661432407"], + ["6528", "0.004395604395604396", "454", "1458.838578376522", "1661436019"], + ["6529", "0.0043859649122807015", "455", "1455.779681672914", "1661439623"], + ["6530", "0.00437636761487965", "456", "1452.7348320109024", "1661443205"], + ["6531", "0.004366812227074236", "457", "1449.641152885911", "1661446803"], + ["6532", "0.004357298474945534", "458", "1446.4179483482437", "1661450407"], + ["6533", "0.004347826086956522", "459", "1442.658501663919", "1661454009"], + ["6534", "0.004338394793926247", "460", "1439.7601410476755", "1661457648"], + ["6535", "0.004329004329004329", "461", "1436.2419998941666", "1661461208"], + ["6536", "0.004319654427645789", "462", "1432.5609954891424", "1661464807"], + ["6537", "0.004310344827586207", "463", "1428.9345491430383", "1661468443"], + ["6538", "0.004301075268817204", "464", "1425.8202728497163", "1661472005"], + ["6539", "0.004291845493562232", "465", "1422.7236474630563", "1661475601"], + ["6540", "0.004282655246252677", "466", "1419.3917416087797", "1661479205"], + ["6541", "0.004273504273504274", "467", "1416.0182154720392", "1661482810"], + ["6542", "0.0042643923240938165", "468", "1412.584618355862", "1661486405"], + ["6543", "0.00425531914893617", "469", "1409.133617279106", "1661490012"], + ["6544", "0.004246284501061571", "470", "1406.3171537399821", "1661493648"], + ["6545", "0.00423728813559322", "471", "1403.504663662598", "1661497210"], + ["6546", "0.004228329809725159", "472", "1400.8133986095447", "1661500808"], + ["6547", "0.004219409282700422", "473", "1398.1633271786004", "1661504402"], + ["6548", "0.004210526315789474", "474", "1395.525632521106", "1661508000"], + ["6549", "0.004201680672268907", "475", "1392.8998428073683", "1661511609"], + ["6550", "0.0041928721174004195", "476", "1390.2873423066335", "1661515220"], + ["6551", "0.0041841004184100415", "477", "1387.1416056200426", "1661518811"], + ["6552", "0.0041753653444676405", "478", "1384.1361728035272", "1661522401"], + ["6553", "0.004166666666666667", "479", "1381.1459678085898", "1661526015"], + ["6554", "0.004158004158004158", "480", "1378.1766009034861", "1661529616"], + ["6555", "0.004149377593360996", "481", "1375.224767176637", "1661533211"], + ["6556", "0.004140786749482402", "482", "1372.251253434761", "1661536803"], + ["6557", "0.004132231404958678", "483", "1369.2927893544029", "1661540412"], + ["6558", "0.004123711340206186", "484", "1366.3598767955345", "1661544003"], + ["6559", "0.00411522633744856", "485", "1363.3828925493297", "1661547626"], + ["6560", "0.004106776180698152", "486", "1360.136301529946", "1661551256"], + ["6561", "0.004098360655737705", "487", "1357.1742720322025", "1661554818"], + ["6562", "0.00408997955010225", "488", "1354.3061031813527", "1661558406"], + ["6563", "0.004081632653061225", "489", "1351.454286270292", "1661562003"], + ["6564", "0.004073319755600814", "490", "1348.6083239120405", "1661565625"], + ["6565", "0.0040650406504065045", "491", "1345.7663239287565", "1661569203"], + ["6566", "0.004056795131845842", "492", "1342.937321590593", "1661572805"], + ["6567", "0.004048582995951417", "493", "1340.1303204910446", "1661576424"], + ["6568", "0.00404040404040404", "494", "1337.0919489339103", "1661580001"], + ["6569", "0.004032258064516129", "495", "1333.889413441896", "1661583600"], + ["6570", "0.004024144869215292", "496", "1331.1213544229709", "1661587211"], + ["6571", "0.004016064257028112", "497", "1328.3687765080954", "1661590811"], + ["6572", "0.004008016032064128", "498", "1325.4749363957767", "1661594414"], + ["6573", "0.004", "499", "1322.5204905875978", "1661598010"], + ["6574", "0.003992015968063872", "500", "1319.572485845912", "1661601603"], + ["6575", "0.00398406374501992", "501", "1316.699773752786", "1661605231"], + ["6576", "0.003976143141153081", "502", "1313.9037896832058", "1661608802"], + ["6577", "0.003968253968253968", "503", "1311.1206010606807", "1661612410"], + ["6578", "0.0039603960396039604", "504", "1308.3511906960669", "1661616066"], + ["6579", "0.003952569169960474", "505", "1305.510601568913", "1661619603"], + ["6580", "0.0039447731755424065", "506", "1302.6650695903825", "1661623201"], + ["6581", "0.003937007874015748", "507", "1299.8331354850761", "1661626824"], + ["6582", "0.003929273084479371", "508", "1296.8973690723715", "1661630400"], + ["6583", "0.00392156862745098", "509", "1293.9583489661093", "1661634003"], + ["6584", "0.003913894324853229", "510", "1291.3689889765424", "1661637616"], + ["6585", "0.00390625", "511", "1288.7910011845634", "1661641224"], + ["6586", "0.003898635477582846", "512", "1286.1745921604936", "1661644811"], + ["6587", "0.0038910505836575876", "513", "1283.6985522676764", "1661648405"], + ["6588", "0.003883495145631068", "514", "1281.0075685510558", "1661652011"], + ["6589", "0.003875968992248062", "515", "1278.4048404937948", "1661655630"], + ["6590", "0.0038684719535783366", "516", "1275.4672788082673", "1661659216"], + ["6591", "0.003861003861003861", "517", "1272.5438168663532", "1661662801"], + ["6592", "0.0038535645472061657", "518", "1269.9854657651954", "1661666420"], + ["6593", "0.0038461538461538464", "519", "1267.3668097708191", "1661670023"], + ["6594", "0.003838771593090211", "520", "1264.481985238158", "1661673609"], + ["6595", "0.0038314176245210726", "521", "1261.6117072573793", "1661677205"], + ["6596", "0.0038240917782026767", "522", "1258.7705745517046", "1661680800"], + ["6597", "0.003816793893129771", "523", "1256.077435322723", "1661684406"], + ["6598", "0.0038095238095238095", "524", "1253.5415780319418", "1661688005"], + ["6599", "0.0038022813688212928", "525", "1251.0179484414552", "1661691604"], + ["6600", "0.003795066413662239", "526", "1248.5370233253927", "1661695210"], + ["6601", "0.003787878787878788", "527", "1245.7369663587172", "1661698818"], + ["6602", "0.003780718336483932", "528", "1242.9498167430886", "1661702410"], + ["6603", "0.0037735849056603774", "529", "1240.2577007988316", "1661706012"], + ["6604", "0.003766478342749529", "530", "1237.5031023193042", "1661709625"], + ["6605", "0.0037593984962406013", "531", "1234.7546504621073", "1661713200"], + ["6606", "0.00375234521575985", "532", "1232.0188255847281", "1661716815"], + ["6607", "0.003745318352059925", "533", "1229.2991475570109", "1661720401"], + ["6608", "0.003738317757009346", "534", "1226.5919503615885", "1661724022"], + ["6609", "0.0037313432835820895", "535", "1224.2360551983782", "1661727605"], + ["6610", "0.0037243947858473", "536", "1221.705184007929", "1661731240"], + ["6611", "0.0037174721189591076", "537", "1219.0460348740894", "1661734845"], + ["6612", "0.0037105751391465678", "538", "1216.3865848517516", "1661738401"], + ["6613", "0.003703703703703704", "539", "1213.7387279125426", "1661742001"], + ["6614", "0.0036968576709796672", "540", "1211.1030401329824", "1661745614"], + ["6615", "0.0036900369003690036", "541", "1208.4796512702192", "1661749216"], + ["6616", "0.003683241252302026", "542", "1205.8674366208427", "1661752807"], + ["6617", "0.003676470588235294", "543", "1203.259904182093", "1661756404"], + ["6618", "0.003669724770642202", "544", "1200.7961894040222", "1661760015"], + ["6619", "0.003663003663003663", "545", "1198.604325999819", "1661763603"], + ["6620", "0.003656307129798903", "546", "1196.196015468139", "1661767209"], + ["6621", "0.0036496350364963502", "547", "1193.7843922791153", "1661770802"], + ["6622", "0.0036429872495446266", "548", "1191.3692052897848", "1661774401"], + ["6623", "0.0036363636363636364", "549", "1189.155236056368", "1661778003"], + ["6624", "0.003629764065335753", "550", "1186.951120634242", "1661781605"], + ["6625", "0.0036231884057971015", "551", "1184.6931030654255", "1661785201"], + ["6626", "0.003616636528028933", "552", "1182.3208443556885", "1661788810"], + ["6627", "0.0036101083032490976", "553", "1179.9393937076793", "1661792401"], + ["6628", "0.0036036036036036037", "554", "1177.4484587256047", "1661796008"], + ["6629", "0.0035971223021582736", "555", "1174.9726874008184", "1661799614"], + ["6630", "0.003590664272890485", "556", "1172.5147540955331", "1661803206"], + ["6631", "0.0035842293906810036", "557", "1170.0696005739342", "1661806809"], + ["6632", "0.0035778175313059034", "558", "1167.636985022456", "1661810400"], + ["6633", "0.0035714285714285713", "559", "1165.2170904188072", "1661814040"], + ["6634", "0.0035650623885918", "560", "1162.7879211658217", "1661817620"], + ["6635", "0.0035587188612099642", "561", "1160.4453348925508", "1661821207"], + ["6636", "0.003552397868561279", "562", "1158.113413568604", "1661824814"], + ["6637", "0.0035460992907801418", "563", "1155.7928750317997", "1661828402"], + ["6638", "0.0035398230088495575", "564", "1153.4002996147685", "1661832013"], + ["6639", "0.0035335689045936395", "565", "1151.3985442373553", "1661835601"], + ["6640", "0.003527336860670194", "566", "1149.4046777482438", "1661839213"], + ["6641", "0.0035211267605633804", "567", "1147.4182643653605", "1661842806"], + ["6642", "0.0035149384885764497", "568", "1145.4405412043407", "1661846405"], + ["6643", "0.0035087719298245615", "569", "1143.5767425677896", "1661850005"], + ["6644", "0.0035026269702276708", "570", "1141.7279091800413", "1661853604"], + ["6645", "0.0034965034965034965", "571", "1139.8876840425419", "1661857201"], + ["6646", "0.0034904013961605585", "572", "1137.7299964135989", "1661860808"], + ["6647", "0.003484320557491289", "573", "1135.7762755903593", "1661864454"], + ["6648", "0.0034782608695652175", "574", "1133.838938967926", "1661868008"], + ["6649", "0.003472222222222222", "575", "1131.910291890656", "1661871622"], + ["6650", "0.0034662045060658577", "576", "1129.6137433021695", "1661875200"], + ["6651", "0.0034602076124567475", "577", "1127.332200320459", "1661878814"], + ["6652", "0.0034542314335060447", "578", "1125.062600047646", "1661882401"], + ["6653", "0.0034482758620689655", "579", "1122.803533090297", "1661886027"], + ["6654", "0.0034423407917383822", "580", "1120.5447680430298", "1661889601"], + ["6655", "0.003436426116838488", "581", "1118.2953275079963", "1661893200"], + ["6656", "0.003430531732418525", "582", "1116.0562538577133", "1661896803"], + ["6657", "0.003424657534246575", "583", "1113.8282225426456", "1661900414"], + ["6658", "0.003418803418803419", "584", "1111.6106093171318", "1661904038"], + ["6659", "0.0034129692832764505", "585", "1109.4035408163718", "1661907605"], + ["6660", "0.0034071550255536627", "586", "1107.1997718761188", "1661911200"], + ["6661", "0.003401360544217687", "587", "1105.008093023049", "1661914800"], + ["6662", "0.003395585738539898", "588", "1102.8222051041105", "1661918419"], + ["6663", "0.003389830508474576", "589", "1100.6518591182466", "1661922000"], + ["6664", "0.00338409475465313", "590", "1098.4836110226515", "1661925612"], + ["6665", "0.0033783783783783786", "591", "1096.519685401754", "1661929245"], + ["6666", "0.003372681281618887", "592", "1094.5227503986666", "1661932804"], + ["6667", "0.003367003367003367", "593", "1092.5338250698253", "1661936408"], + ["6668", "0.0033613445378151263", "594", "1090.5125615726308", "1661940040"], + ["6669", "0.003355704697986577", "595", "1088.6179355302377", "1661943650"], + ["6670", "0.0033500837520938024", "596", "1086.587470585015", "1661947215"], + ["6671", "0.0033444816053511705", "597", "1084.5649234116843", "1661950804"], + ["6672", "0.00333889816360601", "598", "1082.6448584533996", "1661954438"], + ["6673", "0.0033333333333333335", "599", "1080.8404326572527", "1661958031"], + ["6674", "0.0033277870216306157", "600", "1079.1075477389174", "1661961619"], + ["6675", "0.0033222591362126247", "601", "1077.2333401501708", "1661965201"], + ["6676", "0.003316749585406302", "602", "1075.2855597537152", "1661968816"], + ["6677", "0.0033112582781456954", "603", "1073.3995255396537", "1661972405"], + ["6678", "0.003305785123966942", "604", "1071.5206466685509", "1661976002"], + ["6679", "0.0033003300330033004", "605", "1069.5617590837037", "1661979614"], + ["6680", "0.0032948929159802307", "606", "1067.8575273362173", "1661983211"], + ["6681", "0.003289473684210526", "607", "1066.1692327534433", "1661986802"], + ["6682", "0.003284072249589491", "608", "1064.1429985419325", "1661990403"], + ["6683", "0.003278688524590164", "609", "1062.235542969087", "1661994022"], + ["6684", "0.0032733224222585926", "610", "1060.4583067200429", "1661997653"], + ["6685", "0.0032679738562091504", "611", "1058.6657129935622", "1662001221"], + ["6686", "0.0032626427406199023", "612", "1056.929054133827", "1662004819"], + ["6687", "0.003257328990228013", "613", "1055.2785094667988", "1662008442"], + ["6688", "0.0032520325203252032", "614", "1053.4627522431995", "1662012034"], + ["6689", "0.003246753246753247", "615", "1051.4763460964634", "1662015604"], + ["6690", "0.0032414910858995136", "616", "1049.7595878766929", "1662019210"], + ["6691", "0.003236245954692557", "617", "1047.9207262774378", "1662022816"], + ["6692", "0.0032310177705977385", "618", "1045.95532842714", "1662026430"], + ["6693", "0.0032258064516129032", "619", "1044.2468825565963", "1662030011"], + ["6694", "0.00322061191626409", "620", "1042.3531072141125", "1662033630"], + ["6695", "0.003215434083601286", "621", "1040.522093816878", "1662037219"], + ["6696", "0.0032102728731942215", "622", "1038.9230848142838", "1662040869"], + ["6697", "0.003205128205128205", "623", "1036.9914354116104", "1662044417"], + ["6698", "0.0032", "624", "1035.779608399085", "1662048017"], + ["6699", "0.003194888178913738", "625", "1034.2038848771463", "1662051605"], + ["6700", "0.003189792663476874", "626", "1032.6337453248998", "1662055202"], + ["6701", "0.0031847133757961785", "627", "1031.0688348975866", "1662058814"], + ["6702", "0.003179650238473768", "628", "1029.5091131096367", "1662062404"], + ["6703", "0.0031746031746031746", "629", "1027.9550926725517", "1662066004"], + ["6704", "0.003169572107765452", "630", "1026.4017989937158", "1662069615"], + ["6705", "0.0031645569620253164", "631", "1024.7017893692232", "1662073203"], + ["6706", "0.00315955766192733", "632", "1023.0208332264932", "1662076800"], + ["6707", "0.0031545741324921135", "633", "1021.1466586223648", "1662080407"], + ["6708", "0.0031496062992125984", "634", "1019.4041768713896", "1662084034"], + ["6709", "0.0031446540880503146", "635", "1018.0903675493338", "1662087601"], + ["6710", "0.0031397174254317113", "636", "1016.419844453283", "1662091222"], + ["6711", "0.003134796238244514", "637", "1014.9049337242789", "1662094811"], + ["6712", "0.003129890453834116", "638", "1013.557136639293", "1662098411"], + ["6713", "0.003125", "639", "1012.2700922913048", "1662102007"], + ["6714", "0.0031201248049922", "640", "1010.8620596741057", "1662105614"], + ["6715", "0.003115264797507788", "641", "1009.0306859519859", "1662109202"], + ["6716", "0.003110419906687403", "642", "1007.2061383153407", "1662112823"], + ["6717", "0.003105590062111801", "643", "1005.3883774196202", "1662116415"], + ["6718", "0.0031007751937984496", "644", "1003.5773642316591", "1662120011"], + ["6719", "0.0030959752321981426", "645", "1002.3825423980348", "1662123609"], + ["6720", "0.0030911901081916537", "646", "1000.6796705439947", "1662127206"], + ["6721", "0.0030864197530864196", "647", "998.8854152012213", "1662130848"], + ["6722", "0.0030816640986132513", "648", "997.4316905093154", "1662134413"], + ["6723", "0.003076923076923077", "649", "995.9885172361757", "1662138006"], + ["6724", "0.0030721966205837174", "650", "994.3412592711665", "1662141623"], + ["6725", "0.003067484662576687", "651", "992.8905615790853", "1662145203"], + ["6726", "0.0030627871362940277", "652", "991.1239064679124", "1662148801"], + ["6727", "0.0030581039755351682", "653", "989.6910422299843", "1662152408"], + ["6728", "0.0030534351145038168", "654", "988.2629134151995", "1662156016"], + ["6729", "0.003048780487804878", "655", "986.844052673339", "1662159612"], + ["6730", "0.0030441400304414", "656", "985.4744861870923", "1662163230"], + ["6731", "0.00303951367781155", "657", "984.3430096404135", "1662166800"], + ["6732", "0.0030349013657056147", "658", "982.6232812161267", "1662170409"], + ["6733", "0.0030303030303030303", "659", "981.1712526888643", "1662174001"], + ["6734", "0.0030257186081694403", "660", "979.7694205933152", "1662177601"], + ["6735", "0.0030211480362537764", "661", "978.371959120663", "1662181211"], + ["6736", "0.0030165912518853697", "662", "976.6554951488675", "1662184808"], + ["6737", "0.0030120481927710845", "663", "974.9452360100734", "1662188406"], + ["6738", "0.0030075187969924814", "664", "973.2603628011483", "1662192001"], + ["6739", "0.003003003003003003", "665", "971.5623229114054", "1662195601"], + ["6740", "0.0029985007496251873", "666", "969.8703850450333", "1662199210"], + ["6741", "0.0029940119760479044", "667", "968.1845152529997", "1662202801"], + ["6742", "0.0029895366218236174", "668", "966.5046798458811", "1662206435"], + ["6743", "0.0029850746268656717", "669", "964.8308453913156", "1662210001"], + ["6744", "0.0029806259314456036", "670", "963.1629787114864", "1662213620"], + ["6745", "0.002976190476190476", "671", "961.5010468806354", "1662217211"], + ["6746", "0.0029717682020802376", "672", "960.1628670888769", "1662220835"], + ["6747", "0.002967359050445104", "673", "958.8351680316262", "1662224408"], + ["6748", "0.002962962962962963", "674", "957.188004051357", "1662228004"], + ["6749", "0.0029585798816568047", "675", "955.8200492655008", "1662231626"], + ["6750", "0.0029542097488921715", "676", "954.4584138211404", "1662235213"], + ["6751", "0.0029498525073746312", "677", "953.142149671822", "1662238836"], + ["6752", "0.0029455081001472753", "678", "951.7371853148861", "1662242437"], + ["6753", "0.0029411764705882353", "679", "950.1163761222699", "1662246007"], + ["6754", "0.002936857562408223", "680", "948.8226147158581", "1662249603"], + ["6755", "0.002932551319648094", "681", "947.2187020411537", "1662253214"], + ["6756", "0.0029282576866764276", "682", "945.6118805303754", "1662256801"], + ["6757", "0.0029239766081871343", "683", "944.0224827482232", "1662260404"], + ["6758", "0.00291970802919708", "684", "942.536161974194", "1662264016"], + ["6759", "0.0029154518950437317", "685", "940.9453385940573", "1662267602"], + ["6760", "0.002911208151382824", "686", "939.6289214757602", "1662271205"], + ["6761", "0.0029069767441860465", "687", "938.3912875356782", "1662274815"], + ["6762", "0.002902757619738752", "688", "936.92150907398", "1662278402"], + ["6763", "0.002898550724637681", "689", "935.6589980922785", "1662282008"], + ["6764", "0.002894356005788712", "690", "934.4003643068809", "1662285626"], + ["6765", "0.002890173410404624", "691", "933.149463652361", "1662289201"], + ["6766", "0.002886002886002886", "692", "931.9058845556025", "1662292847"], + ["6767", "0.002881844380403458", "693", "930.4056686815684", "1662296405"], + ["6768", "0.0028776978417266188", "694", "928.8546550828654", "1662300011"], + ["6769", "0.0028735632183908046", "695", "927.309182667584", "1662303601"], + ["6770", "0.0028694404591104736", "696", "925.7691643147623", "1662307201"], + ["6771", "0.0028653295128939827", "697", "924.2344902642429", "1662310840"], + ["6772", "0.002861230329041488", "698", "922.7053305549081", "1662314416"], + ["6773", "0.002857142857142857", "699", "921.1805043361948", "1662318006"], + ["6774", "0.0028530670470756064", "700", "919.7704469365963", "1662321609"], + ["6775", "0.002849002849002849", "701", "918.5611475952447", "1662325223"], + ["6776", "0.002844950213371266", "702", "917.3554781423143", "1662328803"], + ["6777", "0.002840909090909091", "703", "915.8602927298551", "1662332404"], + ["6778", "0.0028368794326241137", "704", "914.6070709330947", "1662336002"], + ["6779", "0.0028328611898017", "705", "913.4127452011044", "1662339606"], + ["6780", "0.002828854314002829", "706", "911.9465381602503", "1662343200"], + ["6781", "0.002824858757062147", "707", "910.4574442004675", "1662346817"], + ["6782", "0.0028208744710860366", "708", "908.985204338439", "1662350400"], + ["6783", "0.0028169014084507044", "709", "907.808030280273", "1662354017"], + ["6784", "0.0028129395218002813", "710", "906.6342285559573", "1662357603"], + ["6785", "0.0028089887640449437", "711", "905.1781775348284", "1662361214"], + ["6786", "0.002805049088359046", "712", "903.9563506180243", "1662364809"], + ["6787", "0.0028011204481792717", "713", "902.8312743219659", "1662368402"], + ["6788", "0.002797202797202797", "714", "901.5739146105597", "1662372013"], + ["6789", "0.002793296089385475", "715", "900.5184529899086", "1662375611"], + ["6790", "0.002789400278940028", "716", "899.0655919160442", "1662379239"], + ["6791", "0.002785515320334262", "717", "897.6574125899732", "1662382811"], + ["6792", "0.0027816411682892906", "718", "896.2542321950125", "1662386435"], + ["6793", "0.002777777777777778", "719", "894.879224903682", "1662390004"], + ["6794", "0.0027739251040221915", "720", "893.5040877078144", "1662393606"], + ["6795", "0.0027739251040221915", "720", "891.0872560082088", "1662397203"], + ["6796", "0.0027739251040221915", "720", "887.7573308408089", "1662400802"], + ["6797", "0.0027739251040221915", "720", "883.9317565717939", "1662404401"], + ["6798", "0.0027739251040221915", "720", "879.2255009576074", "1662408005"], + ["6799", "0.0027739251040221915", "720", "873.4650856153006", "1662411610"], + ["6800", "0.0027739251040221915", "720", "866.0205578320772", "1662415209"], + ["6801", "0.0027739251040221915", "720", "857.2930947963077", "1662418801"], + ["6802", "0.0027739251040221915", "720", "847.3160060962756", "1662422470"], + ["6803", "0.0027739251040221915", "720", "836.2048842415782", "1662426006"], + ["6804", "0.0027739251040221915", "720", "823.913841950505", "1662429602"], + ["6805", "0.0027739251040221915", "720", "810.8456788096211", "1662433200"], + ["6806", "0.0027739251040221915", "720", "796.565752961042", "1662436808"], + ["6807", "0.0027739251040221915", "720", "780.9959469621011", "1662440421"], + ["6808", "0.0027739251040221915", "720", "764.0966840593973", "1662444003"], + ["6809", "0.0027739251040221915", "720", "746.0418039885102", "1662447606"], + ["6810", "0.0027739251040221915", "720", "728.2253620209441", "1662451203"], + ["6811", "0.0027739251040221915", "720", "709.7373753679593", "1662454833"], + ["6812", "0.0027739251040221915", "720", "691.0844782664307", "1662458401"], + ["6813", "0.0027739251040221915", "720", "647.713167517266", "1662462008"], + ["6814", "0.0027739251040221915", "720", "590.8513308451749", "1662465606"], + ["6815", "0.0027739251040221915", "720", "528.3881007255466", "1662469204"], + ["6816", "0.0027739251040221915", "720", "463.3485333704975", "1662472812"], + ["6817", "0.0027739251040221915", "720", "405.46136668533444", "1662476407"], + ["6818", "0.0027739251040221915", "720", "361.8540280645052", "1662480015"], + ["6819", "0.0027739251040221915", "720", "316.50449996249097", "1662483621"], + ["6820", "0.0027739251040221915", "720", "270.17396699170877", "1662487218"], + ["6821", "0.0027739251040221915", "720", "227.99366958677965", "1662490801"], + ["6822", "0.0027739251040221915", "720", "196.05778731261339", "1662494400"], + ["6823", "0.0027739251040221915", "720", "168.47953468192418", "1662498019"], + ["6824", "0.0027739251040221915", "720", "144.39689923018526", "1662501600"], + ["6825", "0.0027739251040221915", "720", "122.90243808312009", "1662505227"], + ["6826", "0.0027739251040221915", "720", "104.76933772355181", "1662508802"], + ["6827", "0.0027739251040221915", "720", "96.61663429216516", "1662512408"], + ["6828", "0.0027739251040221915", "720", "92.77490909852871", "1662516001"], + ["6829", "0.0027739251040221915", "720", "92.56732341448286", "1662519613"], + ["6830", "0.0027739251040221915", "720", "92.29892841832206", "1662523211"], + ["6831", "0.0027739251040221915", "720", "91.94283323555487", "1662526828"], + ["6832", "0.0027739251040221915", "720", "91.67981024957578", "1662530405"], + ["6833", "0.0027739251040221915", "720", "91.49671059562411", "1662534013"], + ["6834", "0.0027739251040221915", "720", "91.24290557316745", "1662537625"], + ["6835", "0.0027739251040221915", "720", "91.05576280874813", "1662541232"], + ["6836", "0.0027739251040221915", "720", "90.87421375241318", "1662544838"], + ["6837", "0.0027739251040221915", "720", "90.65201471565197", "1662548402"], + ["6838", "0.0027739251040221915", "720", "90.44935606179442", "1662552002"], + ["6839", "0.0027739251040221915", "720", "90.2474420838144", "1662555609"], + ["6840", "0.0027739251040221915", "720", "89.85670722725791", "1662559208"], + ["6841", "0.0027739251040221915", "720", "89.52036158272824", "1662562811"], + ["6842", "0.0027739251040221915", "720", "89.21384068760034", "1662566401"], + ["6843", "0.0027739251040221915", "720", "89.02216069956262", "1662570000"], + ["6844", "0.0027739251040221915", "720", "88.68356928103424", "1662573607"], + ["6845", "0.0027739251040221915", "720", "87.62936744970962", "1662577213"], + ["6846", "0.0027739251040221915", "720", "87.00473215459532", "1662580808"], + ["6847", "0.0027739251040221915", "720", "87.02983884066165", "1662584403"], + ["6848", "0.0027739251040221915", "720", "86.87212975649892", "1662588002"], + ["6849", "0.0027739251040221915", "720", "86.6311529749275", "1662591610"], + ["6850", "0.0027739251040221915", "720", "86.39084464489996", "1662595200"], + ["6851", "0.0027739251040221915", "720", "86.23718524227888", "1662598802"], + ["6852", "0.0027739251040221915", "720", "86.13572440665536", "1662602405"], + ["6853", "0.0027739251040221915", "720", "85.1712339610201", "1662606004"], + ["6854", "0.0027739251040221915", "720", "84.93497533699508", "1662609624"], + ["6855", "0.0027739251040221915", "720", "84.76044114188552", "1662613212"], + ["6856", "0.0027739251040221915", "720", "84.58791713871803", "1662616825"], + ["6857", "0.0027739251040221915", "720", "84.41616516329856", "1662620407"], + ["6858", "0.0027739251040221915", "720", "84.24560770376097", "1662624004"], + ["6859", "0.0027739251040221915", "720", "84.0781345644995", "1662627613"], + ["6860", "0.0027739251040221915", "720", "83.91635086529146", "1662631213"], + ["6861", "0.0027739251040221915", "720", "83.75506708757914", "1662634819"], + ["6862", "0.0027739251040221915", "720", "83.56702106237087", "1662638409"], + ["6863", "0.0027739251040221915", "720", "83.38610147966713", "1662642006"], + ["6864", "0.0027739251040221915", "720", "83.20914755323255", "1662645613"], + ["6865", "0.0027739251040221915", "720", "83.04368190676034", "1662649207"], + ["6866", "0.0027739251040221915", "720", "82.81332495278875", "1662652802"], + ["6867", "0.0027739251040221915", "720", "83.05569628717768", "1662656413"], + ["6868", "0.0027739251040221915", "720", "83.30035511578467", "1662660011"], + ["6869", "0.0027739251040221915", "720", "83.54499554542188", "1662663625"], + ["6870", "0.0027739251040221915", "720", "83.36382978524041", "1662667205"], + ["6871", "0.0027739251040221915", "720", "83.43686046267386", "1662670807"], + ["6872", "0.0027739251040221915", "720", "83.50987867220876", "1662674403"], + ["6873", "0.0027739251040221915", "720", "83.56784690890166", "1662678004"], + ["6874", "0.0027739251040221915", "720", "83.36076597711552", "1662681625"], + ["6875", "0.0027739251040221915", "720", "83.50246031005001", "1662685210"], + ["6876", "0.0027739251040221915", "720", "83.55381250613864", "1662688824"], + ["6877", "0.0027739251040221915", "720", "82.9809460923551", "1662692420"], + ["6878", "0.0027739251040221915", "720", "82.37007144385431", "1662696002"], + ["6879", "0.0027739251040221915", "720", "81.84332967710614", "1662699600"], + ["6880", "0.0027739251040221915", "720", "81.36737260534477", "1662703201"], + ["6881", "0.0027739251040221915", "720", "80.64901147128103", "1662706801"], + ["6882", "0.0027739251040221915", "720", "79.73651232787385", "1662710402"], + ["6883", "0.0027739251040221915", "720", "78.73445010344678", "1662714023"], + ["6884", "0.0027739251040221915", "720", "77.65095043621523", "1662717618"], + ["6885", "0.0027739251040221915", "720", "77.08212415583174", "1662721227"], + ["6886", "0.0027739251040221915", "720", "75.86557518569545", "1662724800"], + ["6887", "0.0027739251040221915", "720", "74.94543686000196", "1662728420"], + ["6888", "0.0027739251040221915", "720", "74.11151692710298", "1662732002"], + ["6889", "0.0027739251040221915", "720", "73.32661137218416", "1662735600"], + ["6890", "0.0027739251040221915", "720", "72.56129323775882", "1662739221"], + ["6891", "0.0027739251040221915", "720", "71.37147104975514", "1662742802"], + ["6892", "0.0027739251040221915", "720", "70.12483848330251", "1662746437"], + ["6893", "0.0027739251040221915", "720", "68.90454550944445", "1662750018"], + ["6894", "0.0027739251040221915", "720", "68.09821520442819", "1662753603"], + ["6895", "0.0027739251040221915", "720", "68.0219740637779", "1662757207"], + ["6896", "0.0027739251040221915", "720", "67.87808392767866", "1662760804"], + ["6897", "0.0027739251040221915", "720", "67.72463066851728", "1662764400"], + ["6898", "0.0027739251040221915", "720", "67.55350552103178", "1662768018"], + ["6899", "0.0027739251040221915", "720", "67.37557577053097", "1662771611"], + ["6900", "0.0027739251040221915", "720", "67.18082316679474", "1662775212"], + ["6901", "0.0027739251040221915", "720", "67.03805267828203", "1662778810"], + ["6902", "0.0027739251040221915", "720", "67.01487981925767", "1662782427"], + ["6903", "0.0027739251040221915", "720", "66.81220429713466", "1662786004"], + ["6904", "0.0027739251040221915", "720", "66.6801943046322", "1662789615"], + ["6905", "0.0027739251040221915", "720", "66.54836332435688", "1662793208"], + ["6906", "0.0027739251040221915", "720", "66.30967752494209", "1662796851"], + ["6907", "0.0027739251040221915", "720", "66.008015567773", "1662800421"], + ["6908", "0.0027739251040221915", "720", "65.69242402552739", "1662804002"], + ["6909", "0.0027739251040221915", "720", "65.38239504947953", "1662807648"], + ["6910", "0.0027739251040221915", "720", "65.27258351813562", "1662811201"], + ["6911", "0.0027739251040221915", "720", "65.14042964984675", "1662814827"], + ["6912", "0.0027739251040221915", "720", "65.00882138729517", "1662818448"], + ["6913", "0.0027739251040221915", "720", "64.34026241212315", "1662822000"], + ["6914", "0.0027739251040221915", "720", "63.934608870262835", "1662825614"], + ["6915", "0.0027739251040221915", "720", "63.80929921058927", "1662829227"], + ["6916", "0.0027739251040221915", "720", "63.689849534554355", "1662832801"], + ["6917", "0.0027739251040221915", "720", "63.62255770532897", "1662836403"], + ["6918", "0.0027739251040221915", "720", "63.437967708019315", "1662840048"], + ["6919", "0.0027739251040221915", "720", "63.30091622804132", "1662843601"], + ["6920", "0.0027739251040221915", "720", "63.175171841833155", "1662847204"], + ["6921", "0.0027739251040221915", "720", "63.050267637675226", "1662850834"], + ["6922", "0.0027739251040221915", "720", "62.87537091745976", "1662854409"], + ["6923", "0.0027739251040221915", "720", "62.7585063296166", "1662858003"], + ["6924", "0.0027739251040221915", "720", "62.5894191275927", "1662861612"], + ["6925", "0.0027739251040221915", "720", "62.47851590116387", "1662865224"], + ["6926", "0.0027739251040221915", "720", "62.368104248178675", "1662868806"], + ["6927", "0.0027739251040221915", "720", "62.250900761964125", "1662872405"], + ["6928", "0.0027739251040221915", "720", "62.130314198092066", "1662876006"], + ["6929", "0.0027739251040221915", "720", "61.75080824445061", "1662879638"], + ["6930", "0.0027739251040221915", "720", "60.975527597821355", "1662883209"], + ["6931", "0.0027739251040221915", "720", "60.24773101392042", "1662886812"], + ["6932", "0.0027739251040221915", "720", "59.60496446814708", "1662890407"], + ["6933", "0.0027739251040221915", "720", "59.10439201291474", "1662894003"], + ["6934", "0.0027739251040221915", "720", "58.477889684203134", "1662897621"], + ["6935", "0.0027739251040221915", "720", "57.87296192087381", "1662901209"], + ["6936", "0.0027739251040221915", "720", "57.281017135470215", "1662904815"], + ["6937", "0.0027739251040221915", "720", "56.86338845085777", "1662908403"], + ["6938", "0.0027739251040221915", "720", "56.70565367013417", "1662912089"], + ["6939", "0.0027739251040221915", "720", "56.60637123554295", "1662915607"], + ["6940", "0.0027739251040221915", "720", "56.5079145857911", "1662919212"], + ["6941", "0.0027739251040221915", "720", "56.39716143853509", "1662922805"], + ["6942", "0.0027739251040221915", "720", "56.272034552436516", "1662926403"], + ["6943", "0.0027739251040221915", "720", "56.16001895867109", "1662930004"], + ["6944", "0.0027739251040221915", "720", "56.078498373487534", "1662933602"], + ["6945", "0.0027739251040221915", "720", "56.17336096329756", "1662937203"], + ["6946", "0.0027739251040221915", "720", "56.02789596478633", "1662940826"], + ["6947", "0.0027739251040221915", "720", "55.927847498864594", "1662944408"], + ["6948", "0.0027739251040221915", "720", "55.451563246291606", "1662948003"], + ["6949", "0.0027739251040221915", "720", "54.79019738926208", "1662951613"], + ["6950", "0.0027739251040221915", "720", "54.52181298627676", "1662955211"], + ["6951", "0.0027739251040221915", "720", "54.315387343477916", "1662958812"], + ["6952", "0.0027739251040221915", "720", "53.96352657855885", "1662962422"], + ["6953", "0.0027739251040221915", "720", "53.26595802362435", "1662966007"], + ["6954", "0.0027739251040221915", "720", "52.41960873896317", "1662969619"], + ["6955", "0.0027739251040221915", "720", "51.629647956377916", "1662973215"], + ["6956", "0.0027739251040221915", "720", "50.84193005554543", "1662976810"], + ["6957", "0.0027739251040221915", "720", "50.08576544503928", "1662980404"], + ["6958", "0.0027739251040221915", "720", "49.342002665533045", "1662984022"], + ["6959", "0.0027739251040221915", "720", "48.30929790753898", "1662987605"], + ["6960", "0.0027739251040221915", "720", "47.7664515357389", "1662991216"], + ["6961", "0.0027739251040221915", "720", "47.63334135115393", "1662994806"], + ["6962", "0.0027739251040221915", "720", "47.25168052082337", "1662998406"], + ["6963", "0.0027739251040221915", "720", "46.432251333285805", "1663002021"], + ["6964", "0.0027739251040221915", "720", "46.04759940000156", "1663005649"], + ["6965", "0.0027739251040221915", "720", "45.899854115038515", "1663009229"], + ["6966", "0.0027739251040221915", "720", "45.77847910306952", "1663012810"], + ["6967", "0.0027739251040221915", "720", "45.72384223177113", "1663016403"], + ["6968", "0.0027739251040221915", "720", "45.600408073014485", "1663020001"], + ["6969", "0.0027739251040221915", "720", "45.473915956307096", "1663023606"], + ["6970", "0.0027739251040221915", "720", "45.35984402963511", "1663027201"], + ["6971", "0.0027739251040221915", "720", "45.2770774680691", "1663030831"], + ["6972", "0.0027739251040221915", "720", "45.23030324440392", "1663034443"], + ["6973", "0.0027739251040221915", "720", "45.165380728732345", "1663038006"], + ["6974", "0.0027739251040221915", "720", "45.05217540632254", "1663041614"], + ["6975", "0.0027739251040221915", "720", "44.97826693085424", "1663045222"], + ["6976", "0.0027739251040221915", "720", "44.90461419040805", "1663048806"], + ["6977", "0.0027739251040221915", "720", "44.780052153818836", "1663052406"], + ["6978", "0.0027739251040221915", "720", "44.717485163100896", "1663056061"], + ["6979", "0.0027739251040221915", "720", "44.65537841368869", "1663059632"], + ["6980", "0.0027739251040221915", "720", "44.594202684385806", "1663063205"], + ["6981", "0.0027739251040221915", "720", "44.48111236174408", "1663066854"], + ["6982", "0.0027739251040221915", "720", "44.33840238174368", "1663070404"], + ["6983", "0.0027739251040221915", "720", "44.19968474144395", "1663074034"], + ["6984", "0.0027739251040221915", "720", "44.0770781263498", "1663077637"], + ["6985", "0.0027739251040221915", "720", "44.005021884667826", "1663081208"], + ["6986", "0.0027739251040221915", "720", "43.906229607595236", "1663084820"], + ["6987", "0.0027739251040221915", "720", "43.84843630216501", "1663088434"], + ["6988", "0.0027739251040221915", "720", "43.728019163414885", "1663092016"], + ["6989", "0.0027739251040221915", "720", "43.65648133217101", "1663095626"], + ["6990", "0.0027739251040221915", "720", "43.58699759477248", "1663099201"], + ["6991", "0.0027739251040221915", "720", "43.521564425300156", "1663102803"], + ["6992", "0.0027739251040221915", "720", "43.456370485146756", "1663106411"], + ["6993", "0.0027739251040221915", "720", "43.34257589295495", "1663110003"], + ["6994", "0.0027739251040221915", "720", "43.40760636481915", "1663113622"], + ["6995", "0.0027739251040221915", "720", "43.29098887563008", "1663117202"], + ["6996", "0.0027739251040221915", "720", "43.22785728374206", "1663120808"], + ["6997", "0.0027739251040221915", "720", "43.17776278642239", "1663124411"], + ["6998", "0.0027739251040221915", "720", "43.14128978285395", "1663128005"], + ["6999", "0.0027739251040221915", "720", "43.292597373876674", "1663131609"], + ["7000", "0.0027739251040221915", "720", "43.59344865716689", "1663135232"], + ["7001", "0.0027739251040221915", "720", "43.472523695565876", "1663138825"], + ["7002", "0.0027739251040221915", "720", "43.33288061993909", "1663142407"], + ["7003", "0.0027739251040221915", "720", "43.20215765939083", "1663146004"], + ["7004", "0.0027739251040221915", "720", "43.0770030164801", "1663149627"], + ["7005", "0.0027739251040221915", "720", "42.76371827104294", "1663153213"], + ["7006", "0.0027739251040221915", "720", "42.42373200590236", "1663156812"], + ["7007", "0.0027739251040221915", "720", "42.085011768072015", "1663160432"], + ["7008", "0.0027739251040221915", "720", "41.999009546801354", "1663164009"], + ["7009", "0.0027739251040221915", "720", "41.89398012637638", "1663167611"], + ["7010", "0.0027739251040221915", "720", "41.79273742656241", "1663171211"], + ["7011", "0.0027739251040221915", "720", "41.685649341512864", "1663174807"], + ["7012", "0.0027739251040221915", "720", "41.562722868530365", "1663178402"], + ["7013", "0.0027739251040221915", "720", "41.4382781226338", "1663182004"], + ["7014", "0.0027739251040221915", "720", "41.27010479512927", "1663185610"], + ["7015", "0.0027739251040221915", "720", "41.103984707943205", "1663189207"], + ["7016", "0.0027739251040221915", "720", "40.94601576516794", "1663192802"], + ["7017", "0.0027739251040221915", "720", "40.800358868169496", "1663196407"], + ["7018", "0.0027739251040221915", "720", "40.63937165377246", "1663200012"], + ["7019", "0.0027739251040221915", "720", "40.49007439070166", "1663203604"], + ["7020", "0.0027739251040221915", "720", "40.347371158695836", "1663207234"], + ["7021", "0.0027739251040221915", "720", "40.20685816353894", "1663210808"], + ["7022", "0.0027739251040221915", "720", "40.06014587414998", "1663214416"], + ["7023", "0.0027739251040221915", "720", "39.93382631188957", "1663218006"], + ["7024", "0.0027739251040221915", "720", "39.800312555884766", "1663221604"], + ["7025", "0.0027739251040221915", "720", "39.678565423698736", "1663225223"], + ["7026", "0.0027739251040221915", "720", "39.6016805450081", "1663228811"], + ["7027", "0.0027739251040221915", "720", "39.52546844148905", "1663232411"], + ["7028", "0.0027739251040221915", "720", "39.297016794179456", "1663236011"], + ["7029", "0.0027739251040221915", "720", "39.09496360246076", "1663239611"], + ["7030", "0.0027739251040221915", "720", "38.893310716336195", "1663243211"], + ["7031", "0.0027739251040221915", "720", "38.76650797922312", "1663246811"], + ["7032", "0.0027739251040221915", "720", "38.75077411118928", "1663250411"], + ["7033", "0.0027739251040221915", "720", "38.74254713839836", "1663254011"], + ["7034", "0.0027739251040221915", "720", "38.50929531442272", "1663257623"], + ["7035", "0.0027739251040221915", "720", "37.92797355900836", "1663261211"], + ["7036", "0.0027739251040221915", "720", "37.77249044209515", "1663264811"], + ["7037", "0.0027739251040221915", "720", "37.68881147874224", "1663268411"], + ["7038", "0.0027739251040221915", "720", "37.58391283511541", "1663272011"], + ["7039", "0.0027739251040221915", "720", "37.51540324785649", "1663275611"], + ["7040", "0.0027739251040221915", "720", "37.208114571562874", "1663279211"], + ["7041", "0.0027739251040221915", "720", "36.881212955127125", "1663282811"], + ["7042", "0.0027739251040221915", "720", "36.63213749189062", "1663286411"], + ["7043", "0.0027739251040221915", "720", "36.585734955722245", "1663290011"], + ["7044", "0.0027739251040221915", "720", "36.50246675020494", "1663293623"], + ["7045", "0.0027739251040221915", "720", "36.328161461737714", "1663297211"], + ["7046", "0.0027739251040221915", "720", "36.47182761269096", "1663300811"], + ["7047", "0.0027739251040221915", "720", "36.351634120306095", "1663304411"], + ["7048", "0.0027739251040221915", "720", "36.22896251803663", "1663308011"], + ["7049", "0.0027739251040221915", "720", "36.10660059835484", "1663311623"], + ["7050", "0.0027739251040221915", "720", "35.98488981145404", "1663315211"], + ["7051", "0.0027739251040221915", "720", "35.87496724413964", "1663318823"], + ["7052", "0.0027739251040221915", "720", "35.748039385278304", "1663322411"], + ["7053", "0.0027739251040221915", "720", "35.61791037817214", "1663326011"], + ["7054", "0.0027739251040221915", "720", "35.493691731124144", "1663329611"], + ["7055", "0.0027739251040221915", "720", "35.36973998620919", "1663333211"], + ["7056", "0.0027739251040221915", "720", "35.245999547480096", "1663336823"], + ["7057", "0.0027739251040221915", "720", "35.135434908223935", "1663340411"], + ["7058", "0.0027739251040221915", "720", "35.0227498025775", "1663344011"], + ["7059", "0.0027739251040221915", "720", "34.96993675766586", "1663347611"], + ["7060", "0.0027739251040221915", "720", "34.83845230219026", "1663351223"], + ["7061", "0.0027739251040221915", "720", "34.75762704500844", "1663354811"], + ["7062", "0.0027739251040221915", "720", "34.664459561376376", "1663358411"], + ["7063", "0.0027739251040221915", "720", "34.59637518314852", "1663362011"], + ["7064", "0.0027739251040221915", "720", "34.534051888513645", "1663365611"], + ["7065", "0.0027739251040221915", "720", "34.403877040253604", "1663369211"], + ["7066", "0.0027739251040221915", "720", "34.29138915025933", "1663372811"], + ["7067", "0.0027739251040221915", "720", "34.20638926391888", "1663376411"], + ["7068", "0.0027739251040221915", "720", "34.121686313736554", "1663380023"], + ["7069", "0.0027739251040221915", "720", "34.05049277069274", "1663383611"], + ["7070", "0.0027739251040221915", "720", "33.98613350441418", "1663387211"], + ["7071", "0.0027739251040221915", "720", "33.90655022875809", "1663390811"], + ["7072", "0.0027739251040221915", "720", "33.81440890323562", "1663394411"], + ["7073", "0.0027739251040221915", "720", "33.708575517682476", "1663398011"], + ["7074", "0.0027739251040221915", "720", "33.619531947468246", "1663401611"], + ["7075", "0.0027739251040221915", "720", "33.517478129587154", "1663405211"], + ["7076", "0.0027739251040221915", "720", "33.46169556334697", "1663408823"], + ["7077", "0.0027739251040221915", "720", "33.32941691430416", "1663412411"], + ["7078", "0.0027739251040221915", "720", "33.228251497322425", "1663416011"], + ["7079", "0.0027739251040221915", "720", "33.11564709069795", "1663419611"], + ["7080", "0.0027739251040221915", "720", "33.004127119924696", "1663423223"], + ["7081", "0.0027739251040221915", "720", "32.91008481635048", "1663426811"], + ["7082", "0.0027739251040221915", "720", "32.828061418064806", "1663430411"], + ["7083", "0.0027739251040221915", "720", "32.76954825790984", "1663434011"], + ["7084", "0.0027739251040221915", "720", "32.68370499080117", "1663437611"], + ["7085", "0.0027739251040221915", "720", "32.59355910106505", "1663441211"], + ["7086", "0.0027739251040221915", "720", "32.535710183509195", "1663444811"], + ["7087", "0.0027739251040221915", "720", "32.48222756812486", "1663448411"], + ["7088", "0.0027739251040221915", "720", "32.371534977486355", "1663452011"], + ["7089", "0.0027739251040221915", "720", "32.302886773281415", "1663455623"], + ["7090", "0.0027739251040221915", "720", "32.23127300221557", "1663459211"], + ["7091", "0.0027739251040221915", "720", "32.21649035718757", "1663462811"], + ["7092", "0.0027739251040221915", "720", "32.230470509311445", "1663466411"], + ["7093", "0.0027739251040221915", "720", "32.21253005256589", "1663470023"], + ["7094", "0.0027739251040221915", "720", "32.094229169346285", "1663473611"], + ["7095", "0.0027739251040221915", "720", "32.015631002433395", "1663477211"], + ["7096", "0.0027739251040221915", "720", "31.89469664259569", "1663480811"], + ["7097", "0.0027739251040221915", "720", "31.81632864343587", "1663484411"], + ["7098", "0.0027739251040221915", "720", "31.700115019677085", "1663488023"], + ["7099", "0.0027739251040221915", "720", "31.62732454741937", "1663491611"], + ["7100", "0.0027739251040221915", "720", "31.564141327341133", "1663495211"], + ["7101", "0.0027739251040221915", "720", "31.50241446156442", "1663498811"], + ["7102", "0.0027739251040221915", "720", "31.441101658144333", "1663502423"], + ["7103", "0.0027739251040221915", "720", "31.377450677672467", "1663506011"], + ["7104", "0.0027739251040221915", "720", "31.32433872446006", "1663509623"], + ["7105", "0.0027739251040221915", "720", "31.253088586761393", "1663513211"], + ["7106", "0.0027739251040221915", "720", "31.17722881394963", "1663516811"], + ["7107", "0.0027739251040221915", "720", "31.114301884536165", "1663520411"], + ["7108", "0.0027739251040221915", "720", "31.03379988005114", "1663524011"], + ["7109", "0.0027739251040221915", "720", "30.93482770998234", "1663527611"], + ["7110", "0.0027739251040221915", "720", "30.867366014406468", "1663531223"], + ["7111", "0.0027739251040221915", "720", "30.84992380017699", "1663534811"], + ["7112", "0.0027739251040221915", "720", "30.758030923281655", "1663538411"], + ["7113", "0.0027739251040221915", "720", "30.642876882438042", "1663542011"], + ["7114", "0.0027739251040221915", "720", "30.634986259182586", "1663545611"], + ["7115", "0.0027739251040221915", "720", "30.53747149180559", "1663549211"], + ["7116", "0.0027739251040221915", "720", "30.321867237456765", "1663552811"], + ["7117", "0.0027739251040221915", "720", "30.052469606960816", "1663556423"], + ["7118", "0.0027739251040221915", "720", "29.88797694472636", "1663560011"], + ["7119", "0.0027739251040221915", "720", "29.786520521957037", "1663563623"], + ["7120", "0.0027739251040221915", "720", "29.686005833879374", "1663567211"], + ["7121", "0.0027739251040221915", "720", "29.60693995916681", "1663570811"], + ["7122", "0.0027739251040221915", "720", "29.490572397533366", "1663574411"], + ["7123", "0.0027739251040221915", "720", "29.4273681411982", "1663578023"], + ["7124", "0.0027739251040221915", "720", "29.311190282200958", "1663581611"], + ["7125", "0.0027739251040221915", "720", "29.195298090962915", "1663585211"], + ["7126", "0.0027739251040221915", "720", "29.112344399801323", "1663588823"], + ["7127", "0.0027739251040221915", "720", "28.99126302322597", "1663592411"], + ["7128", "0.0027739251040221915", "720", "28.871628892991524", "1663596011"], + ["7129", "0.0027739251040221915", "720", "28.791541156811242", "1663599611"], + ["7130", "0.0027739251040221915", "720", "28.677324460579527", "1663603211"], + ["7131", "0.0027739251040221915", "720", "28.563338022737216", "1663606811"], + ["7132", "0.0027739251040221915", "720", "28.44963883179346", "1663610411"], + ["7133", "0.0027739251040221915", "720", "28.336240784848428", "1663614011"], + ["7134", "0.0027739251040221915", "720", "28.237297026337323", "1663617623"], + ["7135", "0.0027739251040221915", "720", "28.12360977090323", "1663621211"], + ["7136", "0.0027739251040221915", "720", "28.045596983743994", "1663624823"], + ["7137", "0.0027739251040221915", "720", "27.949987049707676", "1663628411"], + ["7138", "0.0027739251040221915", "720", "27.81282943276511", "1663632011"], + ["7139", "0.0027739251040221915", "720", "27.656926858295463", "1663635611"], + ["7140", "0.0027739251040221915", "720", "27.501806186398593", "1663639211"], + ["7141", "0.0027739251040221915", "720", "27.39013720543395", "1663642823"], + ["7142", "0.0027739251040221915", "720", "27.29799928791815", "1663646411"], + ["7143", "0.0027739251040221915", "720", "27.193272159594244", "1663650011"], + ["7144", "0.0027739251040221915", "720", "27.097892829465962", "1663653611"], + ["7145", "0.0027739251040221915", "720", "27.001353402324554", "1663657211"], + ["7146", "0.0027739251040221915", "720", "26.914038695966035", "1663660811"], + ["7147", "0.0027739251040221915", "720", "26.819615764744132", "1663664423"], + ["7148", "0.0027739251040221915", "720", "26.727352078810554", "1663668023"], + ["7149", "0.0027739251040221915", "720", "26.636596140653953", "1663671611"], + ["7150", "0.0027739251040221915", "720", "26.54774939706223", "1663675211"], + ["7151", "0.0027739251040221915", "720", "26.393273909122858", "1663678811"], + ["7152", "0.0027739251040221915", "720", "26.247290261000206", "1663682411"], + ["7153", "0.0027739251040221915", "720", "26.143993966000583", "1663686023"], + ["7154", "0.0027739251040221915", "720", "26.052935365368562", "1663689611"], + ["7155", "0.0027739251040221915", "720", "25.9806664739251", "1663693211"], + ["7156", "0.0027739251040221915", "720", "25.727591408861798", "1663696811"], + ["7157", "0.0027739251040221915", "720", "25.544409780748865", "1663700411"], + ["7158", "0.0027739251040221915", "720", "25.446050855901266", "1663704011"], + ["7159", "0.0027739251040221915", "720", "25.346940939657408", "1663707611"], + ["7160", "0.0027739251040221915", "720", "25.20535210378728", "1663711211"], + ["7161", "0.0027739251040221915", "720", "25.126906259424114", "1663714811"], + ["7162", "0.0027739251040221915", "720", "25.057167121222093", "1663718423"], + ["7163", "0.0027739251040221915", "720", "24.98730390984439", "1663722011"], + ["7164", "0.0027739251040221915", "720", "24.872996031753992", "1663725611"], + ["7165", "0.0027739251040221915", "720", "24.70655328375151", "1663729211"], + ["7166", "0.0027739251040221915", "720", "24.63799985781613", "1663732811"], + ["7167", "0.0027739251040221915", "720", "24.569604192359698", "1663736411"], + ["7168", "0.0027739251040221915", "720", "24.500278042301364", "1663740011"], + ["7169", "0.0027739251040221915", "720", "24.39223676956676", "1663743611"], + ["7170", "0.0027739251040221915", "720", "24.259455085633082", "1663747223"], + ["7171", "0.0027739251040221915", "720", "24.126811482017743", "1663750811"], + ["7172", "0.0027739251040221915", "720", "23.99410846170524", "1663754411"], + ["7173", "0.0027739251040221915", "720", "23.86218770697609", "1663758011"], + ["7174", "0.0027739251040221915", "720", "23.786965389810295", "1663761611"], + ["7175", "0.0027739251040221915", "720", "23.72095424733122", "1663765211"], + ["7176", "0.0027739251040221915", "720", "23.60694083919139", "1663768811"], + ["7177", "0.0027739251040221915", "720", "23.47284747429488", "1663772423"], + ["7178", "0.0027739251040221915", "720", "23.376119376472932", "1663776011"], + ["7179", "0.0027739251040221915", "720", "23.27901255780503", "1663779623"], + ["7180", "0.0027739251040221915", "720", "23.18551945859438", "1663783211"], + ["7181", "0.0027739251040221915", "720", "23.09364206448988", "1663786811"], + ["7182", "0.0027739251040221915", "720", "23.001784551729465", "1663790411"], + ["7183", "0.0027739251040221915", "720", "22.910154165139616", "1663794011"], + ["7184", "0.0027739251040221915", "720", "22.818749135321646", "1663797611"], + ["7185", "0.0027739251040221915", "720", "22.730563798614302", "1663801211"], + ["7186", "0.0027739251040221915", "720", "22.660540300755226", "1663804823"], + ["7187", "0.0027739251040221915", "720", "22.59755075349124", "1663808411"], + ["7188", "0.0027739251040221915", "720", "22.520813395033155", "1663812011"], + ["7189", "0.0027739251040221915", "720", "22.355785575713316", "1663815611"], + ["7190", "0.0027739251040221915", "720", "22.288670138361557", "1663819211"], + ["7191", "0.0027739251040221915", "720", "22.22114679850152", "1663822811"], + ["7192", "0.0027739251040221915", "720", "22.1438170107028", "1663826411"], + ["7193", "0.0027739251040221915", "720", "22.066650811657475", "1663830011"], + ["7194", "0.0027739251040221915", "720", "21.99210150112691", "1663833611"], + ["7195", "0.0027739251040221915", "720", "21.916304186810848", "1663837211"], + ["7196", "0.0027739251040221915", "720", "21.84222814675128", "1663840811"], + ["7197", "0.0027739251040221915", "720", "21.767137069241244", "1663844411"], + ["7198", "0.0027739251040221915", "720", "21.692175994486107", "1663848011"], + ["7199", "0.0027739251040221915", "720", "21.61734828330191", "1663851611"], + ["7200", "0.0027739251040221915", "720", "21.542518438991156", "1663855211"], + ["7201", "0.0027739251040221915", "720", "21.453983751625746", "1663858811"], + ["7202", "0.0027739251040221915", "720", "21.39447200751583", "1663862411"], + ["7203", "0.0027739251040221915", "720", "21.33432346992705", "1663866011"], + ["7204", "0.0027739251040221915", "720", "21.270790410919776", "1663869611"], + ["7205", "0.0027739251040221915", "720", "21.20737803927331", "1663873211"], + ["7206", "0.0027739251040221915", "720", "21.13334685569243", "1663876811"], + ["7207", "0.0027739251040221915", "720", "20.930968182749485", "1663880411"], + ["7208", "0.0027739251040221915", "720", "20.805900962179297", "1663884011"], + ["7209", "0.0027739251040221915", "720", "20.715644444270833", "1663887611"], + ["7210", "0.0027739251040221915", "720", "20.603235229923257", "1663891211"], + ["7211", "0.0027739251040221915", "720", "20.482291111253712", "1663894811"], + ["7212", "0.0027739251040221915", "720", "20.370484457647766", "1663898411"], + ["7213", "0.0027739251040221915", "720", "20.298983854621955", "1663902011"], + ["7214", "0.0027739251040221915", "720", "20.212176264223917", "1663905611"], + ["7215", "0.0027739251040221915", "720", "20.116239358528833", "1663909211"], + ["7216", "0.0027739251040221915", "720", "20.020561947146312", "1663912811"], + ["7217", "0.0027739251040221915", "720", "19.925111540107046", "1663916411"], + ["7218", "0.0027739251040221915", "720", "19.848595428335127", "1663920011"], + ["7219", "0.0027739251040221915", "720", "19.728581441404447", "1663923611"], + ["7220", "0.0027739251040221915", "720", "19.608429935691294", "1663927211"], + ["7221", "0.0027739251040221915", "720", "19.48800822314935", "1663930811"], + ["7222", "0.0027739251040221915", "720", "19.373357454917024", "1663934411"], + ["7223", "0.0027739251040221915", "720", "19.293480626305573", "1663938011"], + ["7224", "0.0027739251040221915", "720", "19.213782227228638", "1663941611"], + ["7225", "0.0027739251040221915", "720", "19.12077270555205", "1663945211"], + ["7226", "0.0027739251040221915", "720", "19.00280223178575", "1663948811"], + ["7227", "0.0027739251040221915", "720", "18.884528718709923", "1663952411"], + ["7228", "0.0027739251040221915", "720", "18.766449062853134", "1663956011"], + ["7229", "0.0027739251040221915", "720", "18.671261232344587", "1663959611"], + ["7230", "0.0027739251040221915", "720", "18.555691772636496", "1663963211"], + ["7231", "0.0027739251040221915", "720", "18.44021419563906", "1663966811"], + ["7232", "0.0027739251040221915", "720", "18.330931902697866", "1663970411"], + ["7233", "0.0027739251040221915", "720", "18.220078118377277", "1663974011"], + ["7234", "0.0027739251040221915", "720", "18.109359891364917", "1663977611"], + ["7235", "0.0027739251040221915", "720", "18.018726820453196", "1663981211"], + ["7236", "0.0027739251040221915", "720", "17.96040553833125", "1663984811"], + ["7237", "0.0027739251040221915", "720", "17.910017959494365", "1663988411"], + ["7238", "0.0027739251040221915", "720", "17.795137943188692", "1663992023"], + ["7239", "0.0027739251040221915", "720", "17.6807541168157", "1663995611"], + ["7240", "0.0027739251040221915", "720", "17.566811656186484", "1663999223"], + ["7241", "0.0027739251040221915", "720", "17.484859950926467", "1664002811"], + ["7242", "0.0027739251040221915", "720", "17.37715391414345", "1664006411"], + ["7243", "0.0027739251040221915", "720", "17.264657869291568", "1664010011"], + ["7244", "0.0027739251040221915", "720", "17.176441210566672", "1664013611"], + ["7245", "0.0027739251040221915", "720", "17.0620178009247", "1664017211"], + ["7246", "0.0027739251040221915", "720", "16.880721217391958", "1664020811"], + ["7247", "0.0027739251040221915", "720", "16.741113205465833", "1664024411"], + ["7248", "0.0027739251040221915", "720", "16.6293585460592", "1664028011"], + ["7249", "0.0027739251040221915", "720", "16.51785530794237", "1664031611"], + ["7250", "0.0027739251040221915", "720", "16.406644075592435", "1664035211"], + ["7251", "0.0027739251040221915", "720", "16.301121564681242", "1664038811"], + ["7252", "0.0027739251040221915", "720", "16.208275504056893", "1664042411"], + ["7253", "0.0027739251040221915", "720", "16.163314961743282", "1664046011"], + ["7254", "0.0027739251040221915", "720", "16.04570150960916", "1664049611"], + ["7255", "0.0027739251040221915", "720", "15.98325389096224", "1664053211"], + ["7256", "0.0027739251040221915", "720", "15.936695986087663", "1664056811"], + ["7257", "0.0027739251040221915", "720", "15.887204757259212", "1664060411"], + ["7258", "0.0027739251040221915", "720", "15.794800027032615", "1664064011"], + ["7259", "0.0027739251040221915", "720", "15.702380811487036", "1664067611"], + ["7260", "0.0027739251040221915", "720", "15.632106911447075", "1664071211"], + ["7261", "0.0027739251040221915", "720", "15.567130084439537", "1664074811"], + ["7262", "0.0027739251040221915", "720", "15.509103510044957", "1664078411"], + ["7263", "0.0027739251040221915", "720", "15.454304593223997", "1664082011"], + ["7264", "0.0027739251040221915", "720", "15.345107655603801", "1664085611"], + ["7265", "0.0027739251040221915", "720", "15.23693877277765", "1664089211"], + ["7266", "0.0027739251040221915", "720", "15.119386074444254", "1664092811"], + ["7267", "0.0027739251040221915", "720", "14.999487239543585", "1664096411"], + ["7268", "0.0027739251040221915", "720", "14.879784269405167", "1664100023"], + ["7269", "0.0027739251040221915", "720", "14.760311977903694", "1664103611"], + ["7270", "0.0027739251040221915", "720", "14.640939392375723", "1664107211"], + ["7271", "0.0027739251040221915", "720", "14.570694333271568", "1664110811"], + ["7272", "0.0027739251040221915", "720", "14.4893868980061", "1664114411"], + ["7273", "0.0027739251040221915", "720", "14.408189587217636", "1664118011"], + ["7274", "0.0027739251040221915", "720", "14.326585605596753", "1664121611"], + ["7275", "0.0027739251040221915", "720", "14.244859839711573", "1664125211"], + ["7276", "0.0027739251040221915", "720", "14.166555577782338", "1664128811"], + ["7277", "0.0027739251040221915", "720", "14.088351046877232", "1664132411"], + ["7278", "0.0027739251040221915", "720", "14.00927999301416", "1664136011"], + ["7279", "0.0027739251040221915", "720", "13.935676366893388", "1664139611"], + ["7280", "0.0027739251040221915", "720", "13.888187138222955", "1664143211"], + ["7281", "0.0027739251040221915", "720", "13.81623500664537", "1664146811"], + ["7282", "0.0027739251040221915", "720", "13.73712879729058", "1664150411"], + ["7283", "0.0027739251040221915", "720", "13.65793324572968", "1664154011"], + ["7284", "0.0027739251040221915", "720", "13.579604793956515", "1664157611"], + ["7285", "0.0027739251040221915", "720", "13.502314324955677", "1664161223"], + ["7286", "0.0027739251040221915", "720", "13.425223137689914", "1664164811"], + ["7287", "0.0027739251040221915", "720", "13.347487594193659", "1664168411"], + ["7288", "0.0027739251040221915", "720", "13.292634534622193", "1664172011"], + ["7289", "0.0027739251040221915", "720", "13.254564354858218", "1664175611"], + ["7290", "0.0027739251040221915", "720", "13.177541456367779", "1664179211"], + ["7291", "0.0027739251040221915", "720", "13.10043643227209", "1664182811"], + ["7292", "0.0027739251040221915", "720", "13.037920163575134", "1664186411"], + ["7293", "0.0027739251040221915", "720", "12.982518691998802", "1664190011"], + ["7294", "0.0027739251040221915", "720", "12.927967737616946", "1664193611"], + ["7295", "0.0027739251040221915", "720", "12.867774797147309", "1664197223"], + ["7296", "0.0027739251040221915", "720", "12.801752993641319", "1664200811"], + ["7297", "0.0027739251040221915", "720", "12.73589839466827", "1664204411"], + ["7298", "0.0027739251040221915", "720", "12.670109029076867", "1664208011"], + ["7299", "0.0027739251040221915", "720", "12.612444525325518", "1664211611"], + ["7300", "0.0027739251040221915", "720", "12.55664928128997", "1664215211"], + ["7301", "0.0027739251040221915", "720", "12.500958344290888", "1664218811"], + ["7302", "0.0027739251040221915", "720", "12.456581649538245", "1664222411"], + ["7303", "0.0027739251040221915", "720", "12.413960330854543", "1664226011"], + ["7304", "0.0027739251040221915", "720", "12.339245468579692", "1664229611"], + ["7305", "0.0027739251040221915", "720", "12.264712623211624", "1664233211"], + ["7306", "0.0027739251040221915", "720", "12.195148929824358", "1664236811"], + ["7307", "0.0027739251040221915", "720", "12.113330448097953", "1664240411"], + ["7308", "0.0027739251040221915", "720", "12.05351039484926", "1664244011"], + ["7309", "0.0027739251040221915", "720", "11.98646630449815", "1664247611"], + ["7310", "0.0027739251040221915", "720", "11.953196828109672", "1664251211"], + ["7311", "0.0027739251040221915", "720", "11.919998540370061", "1664254811"], + ["7312", "0.0027739251040221915", "720", "11.852666103590465", "1664258411"], + ["7313", "0.0027739251040221915", "720", "11.792478256419201", "1664262011"], + ["7314", "0.0027739251040221915", "720", "11.759607364419256", "1664265611"], + ["7315", "0.0027739251040221915", "720", "11.726725573973953", "1664269211"], + ["7316", "0.0027739251040221915", "720", "11.692389203541966", "1664272811"], + ["7317", "0.0027739251040221915", "720", "11.64488843629121", "1664276411"], + ["7318", "0.0027739251040221915", "720", "11.583208731389952", "1664280011"], + ["7319", "0.0027739251040221915", "720", "11.521566657677479", "1664283611"], + ["7320", "0.0027739251040221915", "720", "11.456939098336107", "1664287211"], + ["7321", "0.0027739251040221915", "720", "11.42515840735598", "1664290811"], + ["7322", "0.0027739251040221915", "720", "11.393465873632383", "1664294411"], + ["7323", "0.0027739251040221915", "720", "11.35368189970238", "1664298011"], + ["7324", "0.0027739251040221915", "720", "11.321442589464413", "1664301611"], + ["7325", "0.0027739251040221915", "720", "11.28993537398468", "1664305211"], + ["7326", "0.0027739251040221915", "720", "11.258507048505583", "1664308811"], + ["7327", "0.0027739251040221915", "720", "11.226795650390372", "1664312411"], + ["7328", "0.0027739251040221915", "720", "11.195157866916576", "1664316011"], + ["7329", "0.0027739251040221915", "720", "11.129495962909584", "1664319611"], + ["7330", "0.0027739251040221915", "720", "11.082625210843215", "1664323211"], + ["7331", "0.0027739251040221915", "720", "11.049944861562475", "1664326811"], + ["7332", "0.0027739251040221915", "720", "11.018590997663173", "1664330411"], + ["7333", "0.0027739251040221915", "720", "10.98735747718067", "1664334011"], + ["7334", "0.0027739251040221915", "720", "10.956177407320867", "1664337611"], + ["7335", "0.0027739251040221915", "720", "10.925028825523023", "1664341211"], + ["7336", "0.0027739251040221915", "720", "10.894017530180557", "1664344811"], + ["7337", "0.0027739251040221915", "720", "10.86379834146993", "1664348411"], + ["7338", "0.0027739251040221915", "720", "10.820134002552308", "1664352011"], + ["7339", "0.0027739251040221915", "720", "10.749807910444192", "1664355611"], + ["7340", "0.0027739251040221915", "720", "10.702777687041282", "1664359211"], + ["7341", "0.0027739251040221915", "720", "10.65726120669611", "1664362811"], + ["7342", "0.0027739251040221915", "720", "10.61328606870603", "1664366411"], + ["7343", "0.0027739251040221915", "720", "10.549712970655404", "1664370011"], + ["7344", "0.0027739251040221915", "720", "10.486202203260445", "1664373611"], + ["7345", "0.0027739251040221915", "720", "10.429353176996699", "1664377211"], + ["7346", "0.0027739251040221915", "720", "10.385464057469889", "1664380811"], + ["7347", "0.0027739251040221915", "720", "10.343684938651995", "1664384411"], + ["7348", "0.0027739251040221915", "720", "10.314469366813299", "1664388011"], + ["7349", "0.0027739251040221915", "720", "10.284879108472612", "1664391611"], + ["7350", "0.0027739251040221915", "720", "10.254623958448557", "1664395211"], + ["7351", "0.0027739251040221915", "720", "10.224221403634093", "1664398811"], + ["7352", "0.0027739251040221915", "720", "10.193687808947214", "1664402411"], + ["7353", "0.0027739251040221915", "720", "10.16299510361963", "1664406011"], + ["7354", "0.0027739251040221915", "720", "10.134450534155917", "1664409611"], + ["7355", "0.0027739251040221915", "720", "10.097947350165057", "1664413211"], + ["7356", "0.0027739251040221915", "720", "10.061451785267236", "1664416811"], + ["7357", "0.0027739251040221915", "720", "10.024880372313588", "1664420423"], + ["7358", "0.0027739251040221915", "720", "9.997072104984008", "1664424011"], + ["7359", "0.0027739251040221915", "720", "9.928898437771013", "1664427611"], + ["7360", "0.0027739251040221915", "720", "9.860862086214626", "1664431211"], + ["7361", "0.0027739251040221915", "720", "9.793004431085713", "1664434811"], + ["7362", "0.0027739251040221915", "720", "9.725188541259453", "1664438411"], + ["7363", "0.0027739251040221915", "720", "9.646149622064206", "1664442011"], + ["7364", "0.0027739251040221915", "720", "9.566421008407957", "1664445611"], + ["7365", "0.0027739251040221915", "720", "9.486675817780032", "1664449211"], + ["7366", "0.0027739251040221915", "720", "9.441979195457806", "1664452811"], + ["7367", "0.0027739251040221915", "720", "9.376354235575901", "1664456411"], + ["7368", "0.0027739251040221915", "720", "9.309915984191937", "1664460011"], + ["7369", "0.0027739251040221915", "720", "9.243485830239011", "1664463611"], + ["7370", "0.0027739251040221915", "720", "9.217845092845838", "1664467211"], + ["7371", "0.0027739251040221915", "720", "9.191685347783103", "1664470811"], + ["7372", "0.0027739251040221915", "720", "9.16532913145748", "1664474411"], + ["7373", "0.0027739251040221915", "720", "9.138921511370368", "1664478011"], + ["7374", "0.0027739251040221915", "720", "9.11357082756629", "1664481611"], + ["7375", "0.0027739251040221915", "720", "9.08829046466042", "1664485223"], + ["7376", "0.0027739251040221915", "720", "9.062959663714556", "1664488811"], + ["7377", "0.0027739251040221915", "720", "9.03749703922076", "1664492411"], + ["7378", "0.0027739251040221915", "720", "9.01196337787353", "1664496011"], + ["7379", "0.0027739251040221915", "720", "8.986337398422522", "1664499611"], + ["7380", "0.0027739251040221915", "720", "8.961409971519824", "1664503211"], + ["7381", "0.0027739251040221915", "720", "8.936208054754921", "1664506811"], + ["7382", "0.0027739251040221915", "720", "8.91141968289707", "1664510411"], + ["7383", "0.0027739251040221915", "720", "8.885960577814183", "1664514011"], + ["7384", "0.0027739251040221915", "720", "8.861311588694033", "1664517611"], + ["7385", "0.0027739251040221915", "720", "8.814999227462582", "1664521211"], + ["7386", "0.0027739251040221915", "720", "8.773311254552052", "1664524811"], + ["7387", "0.0027739251040221915", "720", "8.731694579843529", "1664528411"], + ["7388", "0.0027739251040221915", "720", "8.694649941580137", "1664532011"], + ["7389", "0.0027739251040221915", "720", "8.64441227948792", "1664535611"], + ["7390", "0.0027739251040221915", "720", "8.610314625598948", "1664539211"], + ["7391", "0.0027739251040221915", "720", "8.576305538234491", "1664542811"], + ["7392", "0.0027739251040221915", "720", "8.531747123172998", "1664546411"], + ["7393", "0.0027739251040221915", "720", "8.475092885915068", "1664550011"], + ["7394", "0.0027739251040221915", "720", "8.411244854382126", "1664553611"], + ["7395", "0.0027739251040221915", "720", "8.3642113306924", "1664557211"], + ["7396", "0.0027739251040221915", "720", "8.326412152394969", "1664560811"], + ["7397", "0.0027739251040221915", "720", "8.282551261852287", "1664564411"], + ["7398", "0.0027739251040221915", "720", "8.238789073587673", "1664568011"], + ["7399", "0.0027739251040221915", "720", "8.205035557727172", "1664571611"], + ["7400", "0.0027739251040221915", "720", "8.143209507925402", "1664575211"], + ["7401", "0.0027739251040221915", "720", "8.080395645749277", "1664578811"], + ["7402", "0.0027739251040221915", "720", "8.057036383374811", "1664582411"], + ["7403", "0.0027739251040221915", "720", "8.021047230450037", "1664586011"], + ["7404", "0.0027739251040221915", "720", "7.97104167787645", "1664589611"], + ["7405", "0.0027739251040221915", "720", "7.923661673463188", "1664593211"], + ["7406", "0.0027739251040221915", "720", "7.870713315915765", "1664596811"], + ["7407", "0.0027739251040221915", "720", "7.8086834656963715", "1664600411"], + ["7408", "0.0027739251040221915", "720", "7.766531390659684", "1664604011"], + ["7409", "0.0027739251040221915", "720", "7.744987614263956", "1664607611"], + ["7410", "0.0027739251040221915", "720", "7.693164572971497", "1664611211"], + ["7411", "0.0027739251040221915", "720", "7.656338990386974", "1664614811"], + ["7412", "0.0027739251040221915", "720", "7.635100879456636", "1664618411"], + ["7413", "0.0027739251040221915", "720", "7.584898451241747", "1664622011"], + ["7414", "0.0027739251040221915", "720", "7.557127290314224", "1664625611"], + ["7415", "0.0027739251040221915", "720", "7.522935749190137", "1664629211"], + ["7416", "0.0027739251040221915", "720", "7.462493432079314", "1664632811"], + ["7417", "0.0027739251040221915", "720", "7.441793034209469", "1664636411"], + ["7418", "0.0027739251040221915", "720", "7.33756818444364", "1664640011"], + ["7419", "0.0027739251040221915", "720", "7.276717648251808", "1664643611"], + ["7420", "0.0027739251040221915", "720", "7.21598017285113", "1664647211"], + ["7421", "0.0027739251040221915", "720", "7.155394037837829", "1664650811"], + ["7422", "0.0027739251040221915", "720", "7.0949606903162366", "1664654411"], + ["7423", "0.0027739251040221915", "720", "7.034616190563879", "1664658011"], + ["7424", "0.0027739251040221915", "720", "6.974946114076199", "1664661611"], + ["7425", "0.0027739251040221915", "720", "6.93344090631831", "1664665211"], + ["7426", "0.0027739251040221915", "720", "6.890493494320477", "1664668811"], + ["7427", "0.0027739251040221915", "720", "6.871353235108558", "1664672411"], + ["7428", "0.0027739251040221915", "720", "6.837410169050343", "1664676011"], + ["7429", "0.0027739251040221915", "720", "6.7531300765265785", "1664679611"], + ["7430", "0.0027739251040221915", "720", "6.712159297261482", "1664683211"], + ["7431", "0.0027739251040221915", "720", "6.653360361098175", "1664686811"], + ["7432", "0.0027739251040221915", "720", "6.575259069419868", "1664690411"], + ["7433", "0.0027739251040221915", "720", "6.490531350174553", "1664694011"], + ["7434", "0.0027739251040221915", "720", "6.421007415734808", "1664697623"], + ["7435", "0.0027739251040221915", "720", "6.403196022071189", "1664701211"], + ["7436", "0.0027739251040221915", "720", "6.38543403587959", "1664704811"], + ["7437", "0.0027739251040221915", "720", "6.367721320107386", "1664708411"], + ["7438", "0.0027739251040221915", "720", "6.350057738082123", "1664712011"], + ["7439", "0.0027739251040221915", "720", "6.258538994436144", "1664715611"], + ["7440", "0.0027739251040221915", "720", "6.2293270799763425", "1664719211"], + ["7441", "0.0027739251040221915", "720", "6.212047393208031", "1664722811"], + ["7442", "0.0027739251040221915", "720", "6.154138273437288", "1664726411"], + ["7443", "0.0027739251040221915", "720", "6.09565475703241", "1664730011"], + ["7444", "0.0027739251040221915", "720", "6.062817954296994", "1664733611"], + ["7445", "0.0027739251040221915", "720", "6.006717599002511", "1664737211"], + ["7446", "0.0027739251040221915", "720", "5.990055414261866", "1664740811"], + ["7447", "0.0027739251040221915", "720", "5.9332577273350555", "1664744411"], + ["7448", "0.0027739251040221915", "720", "5.87658060271785", "1664748011"], + ["7449", "0.0027739251040221915", "720", "5.8194628825426635", "1664751611"], + ["7450", "0.0027739251040221915", "720", "5.756962720863734", "1664755211"], + ["7451", "0.0027739251040221915", "720", "5.665732439963615", "1664758811"], + ["7452", "0.0027739251040221915", "720", "5.64784650963193", "1664762411"], + ["7453", "0.0027739251040221915", "720", "5.597615410234995", "1664766011"], + ["7454", "0.0027739251040221915", "720", "5.541865566910313", "1664769611"], + ["7455", "0.0027739251040221915", "720", "5.4862612098602375", "1664773211"], + ["7456", "0.0027739251040221915", "720", "5.471042732162983", "1664776811"], + ["7457", "0.0027739251040221915", "720", "5.455866469383058", "1664780411"], + ["7458", "0.0027739251040221915", "720", "5.438333713916126", "1664784011"], + ["7459", "0.0027739251040221915", "720", "5.423248183503044", "1664787611"], + ["7460", "0.0027739251040221915", "720", "5.408204499221482", "1664791211"], + ["7461", "0.0027739251040221915", "720", "5.393202544993406", "1664794811"], + ["7462", "0.0027739251040221915", "720", "5.378242205062772", "1664798411"], + ["7463", "0.0027739251040221915", "720", "5.363323363994637", "1664802011"], + ["7464", "0.0027739251040221915", "720", "5.348445906674264", "1664805611"], + ["7465", "0.0027739251040221915", "720", "5.333609718306235", "1664809211"], + ["7466", "0.0027739251040221915", "720", "5.278662210350237", "1664812811"], + ["7467", "0.0027739251040221915", "720", "5.2230453018108705", "1664816411"], + ["7468", "0.0027739251040221915", "720", "5.208556965328731", "1664820011"], + ["7469", "0.0027739251040221915", "720", "5.159419561416734", "1664823611"], + ["7470", "0.0027739251040221915", "720", "5.110146505738036", "1664827211"], + ["7471", "0.0027739251040221915", "720", "5.055763904674039", "1664830811"], + ["7472", "0.0027739251040221915", "720", "5.013332541606412", "1664834411"], + ["7473", "0.0027739251040221915", "720", "4.999132669879528", "1664838011"], + ["7474", "0.0027739251040221915", "720", "4.943893650043128", "1664841611"], + ["7475", "0.0027739251040221915", "720", "4.928994737948987", "1664845211"], + ["7476", "0.0027739251040221915", "720", "4.915227302088778", "1664848811"], + ["7477", "0.0027739251040221915", "720", "4.899981805424013", "1664852411"], + ["7478", "0.0027739251040221915", "720", "4.872234261967198", "1664856011"], + ["7479", "0.0027739251040221915", "720", "4.858653112118249", "1664859611"], + ["7480", "0.0027739251040221915", "720", "4.810437000000777", "1664863211"], + ["7481", "0.0027739251040221915", "720", "4.752688891147274", "1664866811"], + ["7482", "0.0027739251040221915", "720", "4.725574646928477", "1664870411"], + ["7483", "0.0027739251040221915", "720", "4.672317557463188", "1664874011"], + ["7484", "0.0027739251040221915", "720", "4.619177639719318", "1664877611"], + ["7485", "0.0027739251040221915", "720", "4.565651566174473", "1664881211"], + ["7486", "0.0027739251040221915", "720", "4.511788172467346", "1664884811"], + ["7487", "0.0027739251040221915", "720", "4.491968084521323", "1664888411"], + ["7488", "0.0027739251040221915", "720", "4.479486370719865", "1664892011"], + ["7489", "0.0027739251040221915", "720", "4.4670113910891125", "1664895611"], + ["7490", "0.0027739251040221915", "720", "4.454550616367644", "1664899211"], + ["7491", "0.0027739251040221915", "720", "4.442114556157844", "1664902811"], + ["7492", "0.0027739251040221915", "720", "4.429677098623257", "1664906411"], + ["7493", "0.0027739251040221915", "720", "4.417389506116674", "1664910011"], + ["7494", "0.0027739251040221915", "720", "4.390717376041158", "1664913611"], + ["7495", "0.0027739251040221915", "720", "4.338263531548483", "1664917211"], + ["7496", "0.0027739251040221915", "720", "4.28592482735039", "1664920811"], + ["7497", "0.0027739251040221915", "720", "4.27243645915098", "1664924411"], + ["7498", "0.0027739251040221915", "720", "4.227631966180622", "1664928011"], + ["7499", "0.0027739251040221915", "720", "4.17563253335907", "1664931611"], + ["7500", "0.0027739251040221915", "720", "4.160300797357783", "1664935211"], + ["7501", "0.0027739251040221915", "720", "4.148701363106854", "1664938811"], + ["7502", "0.0027739251040221915", "720", "4.135557745867507", "1664942411"], + ["7503", "0.0027739251040221915", "720", "4.08378226785741", "1664946011"], + ["7504", "0.0027739251040221915", "720", "4.032135388760713", "1664949611"], + ["7505", "0.0027739251040221915", "720", "4.018787080878253", "1664953211"], + ["7506", "0.0027739251040221915", "720", "3.9747757916363815", "1664956811"], + ["7507", "0.0027739251040221915", "720", "3.9183924423764167", "1664960411"], + ["7508", "0.0027739251040221915", "720", "3.880320325417953", "1664964011"], + ["7509", "0.0027739251040221915", "720", "3.8157212410434416", "1664967611"], + ["7510", "0.0027739251040221915", "720", "3.8051367161029606", "1664971211"], + ["7511", "0.0027739251040221915", "720", "3.7892108998539213", "1664974811"], + ["7512", "0.0027739251040221915", "720", "3.773273449628656", "1664978411"], + ["7513", "0.0027739251040221915", "720", "3.7541889674038718", "1664982011"], + ["7514", "0.0027739251040221915", "720", "3.735771330812805", "1664985611"], + ["7515", "0.0027739251040221915", "720", "3.717060878646413", "1664989211"], + ["7516", "0.0027739251040221915", "720", "3.706750030161957", "1664992811"], + ["7517", "0.0027739251040221915", "720", "3.6485758414945533", "1664996411"], + ["7518", "0.0027739251040221915", "720", "3.590401028857728", "1665000011"], + ["7519", "0.0027739251040221915", "720", "3.554362719687943", "1665003611"], + ["7520", "0.0027739251040221915", "720", "3.543856117835119", "1665007211"], + ["7521", "0.0027739251040221915", "720", "3.526395415800692", "1665010811"], + ["7522", "0.0027739251040221915", "720", "3.5146579680627905", "1665014411"], + ["7523", "0.0027739251040221915", "720", "3.5049085700931295", "1665018011"], + ["7524", "0.0027739251040221915", "720", "3.4882457002439744", "1665021611"], + ["7525", "0.0027739251040221915", "720", "3.4500617287223387", "1665025211"], + ["7526", "0.0027739251040221915", "720", "3.4404915158826097", "1665028811"], + ["7527", "0.0027739251040221915", "720", "3.4309478500965276", "1665032411"], + ["7528", "0.0027739251040221915", "720", "3.4117597553541748", "1665036011"], + ["7529", "0.0027739251040221915", "720", "3.3958044417459274", "1665039611"], + ["7530", "0.0027739251040221915", "720", "3.3820484880384734", "1665043211"], + ["7531", "0.0027739251040221915", "720", "3.3665954852363535", "1665046811"], + ["7532", "0.0027739251040221915", "720", "3.351107885168494", "1665050411"], + ["7533", "0.0027739251040221915", "720", "3.3350226865132697", "1665054011"], + ["7534", "0.0027739251040221915", "720", "3.318389781448468", "1665057611"], + ["7535", "0.0027739251040221915", "720", "3.288639896757432", "1665061211"], + ["7536", "0.0027739251040221915", "720", "3.2576741839135064", "1665064811"], + ["7537", "0.0027739251040221915", "720", "3.2351341641790143", "1665068411"], + ["7538", "0.0027739251040221915", "720", "3.21263145439494", "1665072011"], + ["7539", "0.0027739251040221915", "720", "3.1895729171226987", "1665075611"], + ["7540", "0.0027739251040221915", "720", "3.16819494760237", "1665079211"], + ["7541", "0.0027739251040221915", "720", "3.1475983171160564", "1665082811"], + ["7542", "0.0027739251040221915", "720", "3.1269850037540157", "1665086411"], + ["7543", "0.0027739251040221915", "720", "3.1048835264322046", "1665090011"], + ["7544", "0.0027739251040221915", "720", "3.0868643811602268", "1665093611"], + ["7545", "0.0027739251040221915", "720", "3.07686100625849", "1665097211"], + ["7546", "0.0027739251040221915", "720", "3.060419862067809", "1665100811"], + ["7547", "0.0027739251040221915", "720", "3.043875491048113", "1665104411"], + ["7548", "0.0027739251040221915", "720", "3.031974402469856", "1665108011"], + ["7549", "0.0027739251040221915", "720", "3.016828985543659", "1665111611"], + ["7550", "0.0027739251040221915", "720", "3.008460527886118", "1665115211"], + ["7551", "0.0027739251040221915", "720", "3.0001152837033547", "1665118811"], + ["7552", "0.0027739251040221915", "720", "2.991793188602929", "1665122411"], + ["7553", "0.0027739251040221915", "720", "2.9738565222621403", "1665126011"], + ["7554", "0.0027739251040221915", "720", "2.9656072669992772", "1665129611"], + ["7555", "0.0027739251040221915", "720", "2.9484544313876877", "1665133211"], + ["7556", "0.0027739251040221915", "720", "2.9306624065265496", "1665136811"], + ["7557", "0.0027739251040221915", "720", "2.918489260182186", "1665140411"], + ["7558", "0.0027739251040221915", "720", "2.9037887969998044", "1665144011"], + ["7559", "0.0027739251040221915", "720", "2.8891044109852526", "1665147611"], + ["7560", "0.0027739251040221915", "720", "2.878604116493644", "1665151211"], + ["7561", "0.0027739251040221915", "720", "2.8614862562744836", "1665154811"], + ["7562", "0.0027739251040221915", "720", "2.8442173339147927", "1665158435"], + ["7563", "0.0027739251040221915", "720", "2.8287770006863995", "1665162011"], + ["7564", "0.0027739251040221915", "720", "2.820930185150515", "1665165611"], + ["7565", "0.0027739251040221915", "720", "3.188862842057171", "1665169211"], + ["7566", "0.0027739251040221915", "720", "3.180017175366305", "1665172811"], + ["7567", "0.0027739251040221915", "720", "3.1117703986943273", "1665176411"], + ["7568", "0.0027739251040221915", "720", "3.0918103322646506", "1665180011"], + ["7569", "0.0027739251040221915", "720", "3.083233881967107", "1665183611"], + ["7570", "0.0027739251040221915", "720", "3.074681222100346", "1665187211"], + ["7571", "0.0027739251040221915", "720", "3.054515858639032", "1665190811"], + ["7572", "0.0027739251040221915", "720", "3.0273998188141356", "1665194411"], + ["7573", "0.0027739251040221915", "720", "3.0002732157919407", "1665198011"], + ["7574", "0.0027739251040221915", "720", "2.99195068259973", "1665201611"], + ["7575", "0.0027739251040221915", "720", "2.9753864468857656", "1665205211"], + ["7576", "0.0027739251040221915", "720", "2.9611423775483385", "1665208811"], + ["7577", "0.0027739251040221915", "720", "2.9807009176352266", "1665212411"], + ["7578", "0.0027739251040221915", "720", "2.963824462229357", "1665216011"], + ["7579", "0.0027739251040221915", "720", "2.946641432908694", "1665219611"], + ["7580", "0.0027739251040221915", "720", "2.9287989580337888", "1665223211"], + ["7581", "0.0027739251040221915", "720", "2.9109990550482916", "1665226811"], + ["7582", "0.0027739251040221915", "720", "2.8969309468030713", "1665230411"], + ["7583", "0.0027739251040221915", "720", "2.881562676669571", "1665234011"], + ["7584", "0.0027739251040221915", "720", "2.8662135855130404", "1665237611"], + ["7585", "0.0027739251040221915", "720", "2.849418734140041", "1665241211"], + ["7586", "0.0027739251040221915", "720", "2.841514659981539", "1665244811"], + ["7587", "0.0027739251040221915", "720", "2.7697422547872645", "1665248411"], + ["7588", "0.0027739251040221915", "720", "2.6977683740987533", "1665252011"], + ["7589", "0.0027739251040221915", "720", "2.6259047863533422", "1665255611"], + ["7590", "0.0027739251040221915", "720", "2.6117752296819225", "1665259211"], + ["7591", "0.0027739251040221915", "720", "2.5633511760406904", "1665262811"], + ["7592", "0.0027739251040221915", "720", "2.5150357180349574", "1665266411"], + ["7593", "0.0027739251040221915", "720", "2.4688636614826573", "1665270011"], + ["7594", "0.0027739251040221915", "720", "2.458668379090832", "1665273611"], + ["7595", "0.0027739251040221915", "720", "2.4013775792536878", "1665277211"], + ["7596", "0.0027739251040221915", "720", "2.3564189693667514", "1665280811"], + ["7597", "0.0027739251040221915", "720", "2.344405440902271", "1665284411"], + ["7598", "0.0027739251040221915", "720", "2.332232935824172", "1665288011"], + ["7599", "0.0027739251040221915", "720", "2.319819002461144", "1665291611"], + ["7600", "0.0027739251040221915", "720", "2.307152840632033", "1665295211"], + ["7601", "0.0027739251040221915", "720", "2.300752971448588", "1665298811"], + ["7602", "0.0027739251040221915", "720", "2.2888796526763735", "1665302411"], + ["7603", "0.0027739251040221915", "720", "2.276331312686797", "1665306011"], + ["7604", "0.0027739251040221915", "720", "2.2638059689693804", "1665309611"], + ["7605", "0.0027739251040221915", "720", "2.2511903057108835", "1665313211"], + ["7606", "0.0027739251040221915", "720", "2.24402464735142", "1665316811"], + ["7607", "0.0027739251040221915", "720", "2.2315457301722224", "1665320411"], + ["7608", "0.0027739251040221915", "720", "2.218275090042164", "1665324011"], + ["7609", "0.0027739251040221915", "720", "2.2050289459912675", "1665327611"], + ["7610", "0.0027739251040221915", "720", "2.1917408385313903", "1665331211"], + ["7611", "0.0027739251040221915", "720", "2.1788409944346934", "1665334811"], + ["7612", "0.0027739251040221915", "720", "2.16373646700092", "1665338411"], + ["7613", "0.0027739251040221915", "720", "2.148605509368919", "1665342011"], + ["7614", "0.0027739251040221915", "720", "2.14264543860784", "1665345611"], + ["7615", "0.0027739251040221915", "720", "2.121455289749354", "1665349211"], + ["7616", "0.0027739251040221915", "720", "2.1095078266079104", "1665352823"], + ["7617", "0.0027739251040221915", "720", "2.0989417488560957", "1665356411"], + ["7618", "0.0027739251040221915", "720", "2.090854215353292", "1665360011"], + ["7619", "0.0027739251040221915", "720", "2.0827331920667334", "1665363611"], + ["7620", "0.0027739251040221915", "720", "2.076955846180279", "1665367211"], + ["7621", "0.0027739251040221915", "720", "2.064722395479323", "1665370811"], + ["7622", "0.0027739251040221915", "720", "2.0369643926558703", "1665374411"], + ["7623", "0.0027739251040221915", "720", "2.0241486550356473", "1665378011"], + ["7624", "0.0027739251040221915", "720", "2.0113174716911177", "1665381611"], + ["7625", "0.0027739251040221915", "720", "1.9985029837269428", "1665385211"], + ["7626", "0.0027739251040221915", "720", "1.986917678709838", "1665388811"], + ["7627", "0.0027739251040221915", "720", "1.973276128300224", "1665392411"], + ["7628", "0.0027739251040221915", "720", "1.9621385718484252", "1665396011"], + ["7629", "0.0027739251040221915", "720", "1.9531746403320671", "1665399611"], + ["7630", "0.0027739251040221915", "720", "1.9380728663368818", "1665403211"], + ["7631", "0.0027739251040221915", "720", "1.9260779104291346", "1665406811"], + ["7632", "0.0027739251040221915", "720", "1.9140919998305848", "1665410411"], + ["7633", "0.0027739251040221915", "720", "1.9019172930680772", "1665414011"], + ["7634", "0.0027739251040221915", "720", "1.8895737991004788", "1665417611"], + ["7635", "0.0027739251040221915", "720", "1.877261878902706", "1665421211"], + ["7636", "0.0027739251040221915", "720", "1.8642656156408033", "1665424811"], + ["7637", "0.0027739251040221915", "720", "1.8442356163157216", "1665428411"], + ["7638", "0.0027739251040221915", "720", "1.8391198448418915", "1665432011"], + ["7639", "0.0027739251040221915", "720", "1.827348653005007", "1665435611"], + ["7640", "0.0027739251040221915", "720", "1.8155335923614355", "1665439211"], + ["7641", "0.0027739251040221915", "720", "1.8036824087906205", "1665442811"], + ["7642", "0.0027739251040221915", "720", "1.798679128877193", "1665446411"], + ["7643", "0.0027739251040221915", "720", "1.7859016005988806", "1665450011"], + ["7644", "0.0027739251040221915", "720", "1.7802709414910327", "1665453611"], + ["7645", "0.0027739251040221915", "720", "1.7668450436539944", "1665457211"], + ["7646", "0.0027739251040221915", "720", "1.7534314952263361", "1665460811"], + ["7647", "0.0027739251040221915", "720", "1.8327029198755591", "1665464411"], + ["7648", "0.0027739251040221915", "720", "1.935148516361119", "1665468011"], + ["7649", "0.0027739251040221915", "720", "2.0439302363217013", "1665471611"], + ["7650", "0.0027739251040221915", "720", "2.1532884492248505", "1665475211"], + ["7651", "0.0027739251040221915", "720", "2.245281608854524", "1665478811"], + ["7652", "0.0027739251040221915", "720", "2.2387424611071967", "1665482411"], + ["7653", "0.0027739251040221915", "720", "2.2200810312311288", "1665486011"], + ["7654", "0.0027739251040221915", "720", "2.2138657228389187", "1665489611"], + ["7655", "0.0027739251040221915", "720", "2.207645955078443", "1665493211"], + ["7656", "0.0027739251040221915", "720", "2.201282004660808", "1665496811"], + ["7657", "0.0027739251040221915", "720", "2.1949146675419886", "1665500411"], + ["7658", "0.0027739251040221915", "720", "2.188826138644507", "1665504011"], + ["7659", "0.0027739251040221915", "720", "2.2858592840399874", "1665507623"], + ["7660", "0.0027739251040221915", "720", "2.4155431884079612", "1665511211"], + ["7661", "0.0027739251040221915", "720", "2.4026178362729356", "1665514811"], + ["7662", "0.0027739251040221915", "720", "2.4875481915522064", "1665518411"], + ["7663", "0.0027739251040221915", "720", "2.572757783868299", "1665522011"], + ["7664", "0.0027739251040221915", "720", "2.6555644863474117", "1665525611"], + ["7665", "0.0027739251040221915", "720", "2.7162075312051464", "1665529211"], + ["7666", "0.0027739251040221915", "720", "2.8098206865849877", "1665532811"], + ["7667", "0.0027739251040221915", "720", "2.823204220986685", "1665536411"], + ["7668", "0.0027739251040221915", "720", "2.912473732198216", "1665540011"], + ["7669", "0.0027739251040221915", "720", "2.9992019617301513", "1665543611"], + ["7670", "0.0027739251040221915", "720", "3.0858069110339374", "1665547211"], + ["7671", "0.0027739251040221915", "720", "3.171568575951663", "1665550811"], + ["7672", "0.0027739251040221915", "720", "3.2432572225064207", "1665554411"], + ["7673", "0.0027739251040221915", "720", "3.3171234866339074", "1665558011"], + ["7674", "0.0027739251040221915", "720", "3.399540697489292", "1665561611"], + ["7675", "0.0027739251040221915", "720", "3.474812656728607", "1665565211"], + ["7676", "0.0027739251040221915", "720", "3.5185067147573097", "1665568811"], + ["7677", "0.0027739251040221915", "720", "3.5914377566198863", "1665572411"], + ["7678", "0.0027739251040221915", "720", "3.6643704801915646", "1665576011"], + ["7679", "0.0027739251040221915", "720", "3.74245028474254", "1665579611"], + ["7680", "0.0027739251040221915", "720", "3.724309291846193", "1665583211"], + ["7681", "0.0027739251040221915", "720", "3.713978336806398", "1665586811"], + ["7682", "0.0027739251040221915", "720", "3.8667537810871013", "1665590411"], + ["7683", "0.0027739251040221915", "720", "3.9494265640233985", "1665594011"], + ["7684", "0.0027739251040221915", "720", "4.041596788648933", "1665597611"], + ["7685", "0.0027739251040221915", "720", "4.29019813353091", "1665601211"], + ["7686", "0.0027739251040221915", "720", "4.36840506148848", "1665604811"], + ["7687", "0.0027739251040221915", "720", "4.44891843711504", "1665608411"], + ["7688", "0.0027739251040221915", "720", "4.539223455136265", "1665612011"], + ["7689", "0.0027739251040221915", "720", "4.629878544026317", "1665615611"], + ["7690", "0.0027739251040221915", "720", "4.715546268096582", "1665619211"], + ["7691", "0.0027739251040221915", "720", "4.850349011912207", "1665622811"], + ["7692", "0.0027739251040221915", "720", "4.933593735975008", "1665626411"], + ["7693", "0.0027739251040221915", "720", "5.026077117103931", "1665630011"], + ["7694", "0.0027739251040221915", "720", "5.108905272883682", "1665633611"], + ["7695", "0.0027739251040221915", "720", "5.187575983092005", "1665637211"], + ["7696", "0.0027739251040221915", "720", "5.1662685707556815", "1665640811"], + ["7697", "0.0027739251040221915", "720", "5.151937728673142", "1665644411"], + ["7698", "0.0027739251040221915", "720", "5.129303294737228", "1665648011"], + ["7699", "0.0027739251040221915", "720", "5.106692848458458", "1665651611"], + ["7700", "0.0027739251040221915", "720", "5.08404243761714", "1665655211"], + ["7701", "0.0027739251040221915", "720", "5.0658129519167865", "1665658811"], + ["7702", "0.0027739251040221915", "720", "5.051489558767862", "1665662411"], + ["7703", "0.0027739251040221915", "720", "5.036897368878295", "1665666011"], + ["7704", "0.0027739251040221915", "720", "5.0229253928203805", "1665669611"], + ["7705", "0.0027739251040221915", "720", "5.002196961354836", "1665673211"], + ["7706", "0.0027739251040221915", "720", "4.985171403869264", "1665676823"], + ["7707", "0.0027739251040221915", "720", "4.962681561256017", "1665680411"], + ["7708", "0.0027739251040221915", "720", "4.948723845678614", "1665684011"], + ["7709", "0.0027739251040221915", "720", "4.92826212464988", "1665687611"], + ["7710", "0.0027739251040221915", "720", "4.907606027866296", "1665691211"], + ["7711", "0.0027739251040221915", "720", "4.886485130347656", "1665694811"], + ["7712", "0.0027739251040221915", "720", "5.023329471966967", "1665698411"], + ["7713", "0.0027739251040221915", "720", "5.157514990320969", "1665702011"], + ["7714", "0.0027739251040221915", "720", "5.267346827079891", "1665705611"], + ["7715", "0.0027739251040221915", "720", "5.252183454886669", "1665709211"], + ["7716", "0.0027739251040221915", "720", "5.229906365611723", "1665712811"], + ["7717", "0.0027739251040221915", "720", "5.205950394893599", "1665716411"], + ["7718", "0.0027739251040221915", "720", "5.18023621584786", "1665720011"], + ["7719", "0.0027739251040221915", "720", "5.282012655946349", "1665723611"], + ["7720", "0.0027739251040221915", "720", "5.3669362820806334", "1665727211"], + ["7721", "0.0027739251040221915", "720", "5.352048802796083", "1665730811"], + ["7722", "0.0027739251040221915", "720", "5.3315672118828354", "1665734411"], + ["7723", "0.0027739251040221915", "720", "5.311044599910243", "1665738011"], + ["7724", "0.0027739251040221915", "720", "5.29044494075006", "1665741611"], + ["7725", "0.0027739251040221915", "720", "5.269974268612589", "1665745211"], + ["7726", "0.0027739251040221915", "720", "5.250525970875009", "1665748811"], + ["7727", "0.0027739251040221915", "720", "5.231076803594456", "1665752411"], + ["7728", "0.0027739251040221915", "720", "5.212406196925153", "1665756011"], + ["7729", "0.0027739251040221915", "720", "5.190914293335733", "1665759611"], + ["7730", "0.0027739251040221915", "720", "5.3309830499318736", "1665763211"], + ["7731", "0.0027739251040221915", "720", "5.473301710978168", "1665766811"], + ["7732", "0.0027739251040221915", "720", "5.617787042082815", "1665770411"], + ["7733", "0.0027739251040221915", "720", "5.738538691148014", "1665774011"], + ["7734", "0.0027739251040221915", "720", "5.721531087865067", "1665777611"], + ["7735", "0.0027739251040221915", "720", "5.704532438959748", "1665781211"], + ["7736", "0.0027739251040221915", "720", "5.686534989217791", "1665784811"], + ["7737", "0.0027739251040221915", "720", "5.667051038659585", "1665788411"], + ["7738", "0.0027739251040221915", "720", "5.650354167773325", "1665792011"], + ["7739", "0.0027739251040221915", "720", "5.633404024747527", "1665795611"], + ["7740", "0.0027739251040221915", "720", "5.616418889700679", "1665799211"], + ["7741", "0.0027739251040221915", "720", "5.598919339062738", "1665802811"], + ["7742", "0.0027739251040221915", "720", "5.580895903149131", "1665806411"], + ["7743", "0.0027739251040221915", "720", "5.559758369714355", "1665810011"], + ["7744", "0.0027739251040221915", "720", "5.538494816063032", "1665813611"], + ["7745", "0.0027739251040221915", "720", "5.516971663691255", "1665817211"], + ["7746", "0.0027739251040221915", "720", "5.4943605213996864", "1665820811"], + ["7747", "0.0027739251040221915", "720", "5.471498419468083", "1665824411"], + ["7748", "0.0027739251040221915", "720", "5.456320892645703", "1665828011"], + ["7749", "0.0027739251040221915", "720", "5.441185467145992", "1665831611"], + ["7750", "0.0027739251040221915", "720", "5.426092026183035", "1665835211"], + ["7751", "0.0027739251040221915", "720", "5.411040453294872", "1665838811"], + ["7752", "0.0027739251040221915", "720", "5.381026975944292", "1665842411"], + ["7753", "0.0027739251040221915", "720", "5.352598789868826", "1665846011"], + ["7754", "0.0027739251040221915", "720", "5.323805455677934", "1665849611"], + ["7755", "0.0027739251040221915", "720", "5.464031021681601", "1665853211"], + ["7756", "0.0027739251040221915", "720", "5.604012472384287", "1665856811"], + ["7757", "0.0027739251040221915", "720", "5.736194978156374", "1665860411"], + ["7758", "0.0027739251040221915", "720", "5.715601173868831", "1665864011"], + ["7759", "0.0027739251040221915", "720", "5.692994644052664", "1665867611"], + ["7760", "0.0027739251040221915", "720", "5.677202703292462", "1665871211"], + ["7761", "0.0027739251040221915", "720", "5.654580667120386", "1665874811"], + ["7762", "0.0027739251040221915", "720", "5.638895283855142", "1665878411"], + ["7763", "0.0027739251040221915", "720", "5.596749733891547", "1665882011"], + ["7764", "0.0027739251040221915", "720", "5.576188919107082", "1665885611"], + ["7765", "0.0027739251040221915", "720", "5.553022416267712", "1665889211"], + ["7766", "0.0027739251040221915", "720", "5.498052734069274", "1665892811"], + ["7767", "0.0027739251040221915", "720", "5.482801547567002", "1665896411"], + ["7768", "0.0027739251040221915", "720", "5.467592666713834", "1665900011"], + ["7769", "0.0027739251040221915", "720", "5.452425974157069", "1665903611"], + ["7770", "0.0027739251040221915", "720", "5.4373013528695315", "1665907211"], + ["7771", "0.0027739251040221915", "720", "5.422218686148673", "1665910811"], + ["7772", "0.0027739251040221915", "720", "5.407177857615667", "1665914411"], + ["7773", "0.0027739251040221915", "720", "5.392178751214514", "1665918011"], + ["7774", "0.0027739251040221915", "720", "5.377221251211145", "1665921611"], + ["7775", "0.0027739251040221915", "720", "5.362305242192529", "1665925211"], + ["7776", "0.0027739251040221915", "720", "5.347430609065781", "1665928811"], + ["7777", "0.0027739251040221915", "720", "5.332597237057277", "1665932411"], + ["7778", "0.0027739251040221915", "720", "5.317805011711765", "1665936011"], + ["7779", "0.0027739251040221915", "720", "5.296135085295126", "1665939611"], + ["7780", "0.0027739251040221915", "720", "5.281444003227733", "1665943211"], + ["7781", "0.0027739251040221915", "720", "5.25927994256571", "1665946811"], + ["7782", "0.0027739251040221915", "720", "5.236987165525337", "1665950411"], + ["7783", "0.0027739251040221915", "720", "5.214618723129208", "1665954011"], + ["7784", "0.0027739251040221915", "720", "5.191981773206625", "1665957611"], + ["7785", "0.0027739251040221915", "720", "5.177579604626302", "1665961211"], + ["7786", "0.0027739251040221915", "720", "5.16082164205873", "1665964811"], + ["7787", "0.0027739251040221915", "720", "5.1404195767719", "1665968411"], + ["7788", "0.0027739251040221915", "720", "5.120059382478065", "1665972011"], + ["7789", "0.0027739251040221915", "720", "5.099744497406962", "1665975611"], + ["7790", "0.0027739251040221915", "720", "5.079435565961371", "1665979211"], + ["7791", "0.0027739251040221915", "720", "5.0612627571319715", "1665982811"], + ["7792", "0.0027739251040221915", "720", "5.0459959028385315", "1665986411"], + ["7793", "0.0027739251040221915", "720", "5.031975836955215", "1665990011"], + ["7794", "0.0027739251040221915", "720", "5.013001369405587", "1665993611"], + ["7795", "0.0027739251040221915", "720", "4.9990956790604955", "1665997211"], + ["7796", "0.0027739251040221915", "720", "4.9801951234925985", "1666000811"], + ["7797", "0.0027739251040221915", "720", "4.962749213664984", "1666004411"], + ["7798", "0.0027739251040221915", "720", "4.947220341603567", "1666008011"], + ["7799", "0.0027739251040221915", "720", "4.931661382671972", "1666011611"], + ["7800", "0.0027739251040221915", "720", "4.916032541708551", "1666015211"], + ["7801", "0.0027739251040221915", "720", "4.8981211881714986", "1666018811"], + ["7802", "0.0027739251040221915", "720", "4.878783547178608", "1666022411"], + ["7803", "0.0027739251040221915", "720", "5.148811502986275", "1666026011"], + ["7804", "0.0027739251040221915", "720", "5.430341066716411", "1666029611"], + ["7805", "0.0027739251040221915", "720", "5.711939782631363", "1666033211"], + ["7806", "0.0027739251040221915", "720", "5.987129927828307", "1666036811"], + ["7807", "0.0027739251040221915", "720", "6.261757896635528", "1666040411"], + ["7808", "0.0027739251040221915", "720", "6.542619852539452", "1666044011"], + ["7809", "0.0027739251040221915", "720", "6.815241398545272", "1666047611"], + ["7810", "0.0027739251040221915", "720", "6.789290160892019", "1666051211"], + ["7811", "0.0027739251040221915", "720", "6.914987933576124", "1666054811"], + ["7812", "0.0027739251040221915", "720", "6.8843888969206555", "1666058423"], + ["7813", "0.0027739251040221915", "720", "6.855907846090407", "1666062011"], + ["7814", "0.0027739251040221915", "720", "6.84217048729404", "1666065611"], + ["7815", "0.0027739251040221915", "720", "7.072379286724141", "1666069211"], + ["7816", "0.0027739251040221915", "720", "7.355830248785281", "1666072811"], + ["7817", "0.0027739251040221915", "720", "7.381706435863538", "1666076411"], + ["7818", "0.0027739251040221915", "720", "7.523768779539596", "1666080011"], + ["7819", "0.0027739251040221915", "720", "7.496190929387879", "1666083611"], + ["7820", "0.0027739251040221915", "720", "7.468265193127832", "1666087211"], + ["7821", "0.0027739251040221915", "720", "7.440412995862773", "1666090811"], + ["7822", "0.0027739251040221915", "720", "7.4119758223348775", "1666094411"], + ["7823", "0.0027739251040221915", "720", "7.383556401597613", "1666098011"], + ["7824", "0.0027739251040221915", "720", "7.62837799271331", "1666101611"], + ["7825", "0.0027739251040221915", "720", "7.734997627888038", "1666105211"], + ["7826", "0.0027739251040221915", "720", "8.007811644401768", "1666108811"], + ["7827", "0.0027739251040221915", "720", "8.28724311934915", "1666112411"], + ["7828", "0.0027739251040221915", "720", "8.567441658681515", "1666116011"], + ["7829", "0.0027739251040221915", "720", "8.817013103819562", "1666119611"], + ["7830", "0.0027739251040221915", "720", "9.042292993285196", "1666123211"], + ["7831", "0.0027739251040221915", "720", "9.26469712780064", "1666126811"], + ["7832", "0.0027739251040221915", "720", "9.496741191641142", "1666130411"], + ["7833", "0.0027739251040221915", "720", "9.469790866708939", "1666134011"], + ["7834", "0.0027739251040221915", "720", "9.430986007877094", "1666137611"], + ["7835", "0.0027739251040221915", "720", "9.404683648814812", "1666141211"], + ["7836", "0.0027739251040221915", "720", "9.665497020573268", "1666144811"], + ["7837", "0.0027739251040221915", "720", "9.926124503454847", "1666148411"], + ["7838", "0.0027739251040221915", "720", "10.18612420868216", "1666152011"], + ["7839", "0.0027739251040221915", "720", "10.445603992367568", "1666155611"], + ["7840", "0.0027739251040221915", "720", "10.704747980134467", "1666159211"], + ["7841", "0.0027739251040221915", "720", "10.963644264009044", "1666162811"], + ["7842", "0.0027739251040221915", "720", "11.163959031653958", "1666166411"], + ["7843", "0.0027739251040221915", "720", "12.938963631631045", "1666170011"], + ["7844", "0.0027739251040221915", "720", "13.459608511987131", "1666173611"], + ["7845", "0.0027739251040221915", "720", "13.422352785185502", "1666177211"], + ["7846", "0.0027739251040221915", "720", "13.385250278153087", "1666180811"], + ["7847", "0.0027739251040221915", "720", "13.34873315671577", "1666184411"], + ["7848", "0.0027739251040221915", "720", "13.312558337973146", "1666188011"], + ["7849", "0.0027739251040221915", "720", "13.276771452153525", "1666191611"], + ["7850", "0.0027739251040221915", "720", "13.241732011232157", "1666195211"], + ["7851", "0.0027739251040221915", "720", "13.461819650590735", "1666198811"], + ["7852", "0.0027739251040221915", "720", "14.062496447676477", "1666202411"], + ["7853", "0.0027739251040221915", "720", "14.054447461691243", "1666206011"], + ["7854", "0.0027739251040221915", "720", "14.015461477054096", "1666209611"], + ["7855", "0.0027739251040221915", "720", "13.976583636618441", "1666213211"], + ["7856", "0.0027739251040221915", "720", "13.937813640400359", "1666216811"], + ["7857", "0.0027739251040221915", "720", "13.89915118924807", "1666220411"], + ["7858", "0.0027739251040221915", "720", "13.860595984839614", "1666224011"], + ["7859", "0.0027739251040221915", "720", "13.822147729680559", "1666227611"], + ["7860", "0.0027739251040221915", "720", "13.783806127101695", "1666231211"], + ["7861", "0.0027739251040221915", "720", "13.745570881256752", "1666234811"], + ["7862", "0.0027739251040221915", "720", "14.004724440532046", "1666238411"], + ["7863", "0.0027739251040221915", "720", "13.96587638383154", "1666242011"], + ["7864", "0.0027739251040221915", "720", "13.927136088730759", "1666245611"], + ["7865", "0.0027739251040221915", "720", "14.206879328429148", "1666249211"], + ["7866", "0.0027739251040221915", "720", "14.45630396274696", "1666252811"], + ["7867", "0.0027739251040221915", "720", "14.70554849821784", "1666256411"], + ["7868", "0.0027739251040221915", "720", "14.954210105712383", "1666260011"], + ["7869", "0.0027739251040221915", "720", "15.202459400842168", "1666263611"], + ["7870", "0.0027739251040221915", "720", "15.450679854653979", "1666267211"], + ["7871", "0.0027739251040221915", "720", "15.698398207345646", "1666270811"], + ["7872", "0.0027739251040221915", "720", "15.946803471680333", "1666274411"], + ["7873", "0.0027739251040221915", "720", "16.19506953139828", "1666278011"], + ["7874", "0.0027739251040221915", "720", "16.442725321879838", "1666281611"], + ["7875", "0.0027739251040221915", "720", "16.694344519322613", "1666285211"], + ["7876", "0.0027739251040221915", "720", "16.946337211363325", "1666288811"], + ["7877", "0.0027739251040221915", "720", "17.20641821216398", "1666292411"], + ["7878", "0.0027739251040221915", "720", "17.158688896734954", "1666296011"], + ["7879", "0.0027739251040221915", "720", "17.372183027395884", "1666299611"], + ["7880", "0.0027739251040221915", "720", "17.32399389278452", "1666303211"], + ["7881", "0.0027739251040221915", "720", "17.275938431223402", "1666306811"], + ["7882", "0.0027739251040221915", "720", "17.22801627191349", "1666310411"], + ["7883", "0.0027739251040221915", "720", "17.670286201811095", "1666314011"], + ["7884", "0.0027739251040221915", "720", "18.339316093068206", "1666317611"], + ["7885", "0.0027739251040221915", "720", "18.288444203767046", "1666321211"], + ["7886", "0.0027739251040221915", "720", "18.237713429276706", "1666324811"], + ["7887", "0.0027739251040221915", "720", "18.187123378155274", "1666328411"], + ["7888", "0.0027739251040221915", "720", "18.13667366004666", "1666332011"], + ["7889", "0.0027739251040221915", "720", "18.0863638856776", "1666335611"], + ["7890", "0.0027739251040221915", "720", "18.036193666854636", "1666339211"], + ["7891", "0.0027739251040221915", "720", "17.986162616461144", "1666342811"], + ["7892", "0.0027739251040221915", "720", "17.936270348454315", "1666346411"], + ["7893", "0.0027739251040221915", "720", "17.88651647786221", "1666350011"], + ["7894", "0.0027739251040221915", "720", "17.83690062078076", "1666353611"], + ["7895", "0.0027739251040221915", "720", "17.78742239437083", "1666357211"], + ["7896", "0.0027739251040221915", "720", "17.738081416855238", "1666360811"], + ["7897", "0.0027739251040221915", "720", "17.68887730751583", "1666364411"], + ["7898", "0.0027739251040221915", "720", "17.639809686690544", "1666368011"], + ["7899", "0.0027739251040221915", "720", "17.59087817577046", "1666371611"], + ["7900", "0.0027739251040221915", "720", "17.542082397196896", "1666375211"], + ["7901", "0.0027739251040221915", "720", "17.493421974458485", "1666378811"], + ["7902", "0.0027739251040221915", "720", "17.44489653208828", "1666382411"], + ["7903", "0.0027739251040221915", "720", "17.396505695660853", "1666386023"], + ["7904", "0.0027739251040221915", "720", "17.34824909178939", "1666389611"], + ["7905", "0.0027739251040221915", "720", "17.30012634812285", "1666393211"], + ["7906", "0.0027739251040221915", "720", "17.252137093343034", "1666396811"], + ["7907", "0.0027739251040221915", "720", "17.204280957161778", "1666400411"], + ["7908", "0.0027739251040221915", "720", "17.590322091815974", "1666404011"], + ["7909", "0.0027739251040221915", "720", "17.844559778107747", "1666407611"], + ["7910", "0.0027739251040221915", "720", "18.15895335986057", "1666411211"], + ["7911", "0.0027739251040221915", "720", "18.560164798529474", "1666414811"], + ["7912", "0.0027739251040221915", "720", "19.00597986150165", "1666418411"], + ["7913", "0.0027739251040221915", "720", "19.44267044718403", "1666422011"], + ["7914", "0.0027739251040221915", "720", "19.865499167164103", "1666425611"], + ["7915", "0.0027739251040221915", "720", "20.30391288930789", "1666429211"], + ["7916", "0.0027739251040221915", "720", "20.74112778836668", "1666432811"], + ["7917", "0.0027739251040221915", "720", "21.17716010240727", "1666436411"], + ["7918", "0.0027739251040221915", "720", "21.61210365552126", "1666440011"], + ["7919", "0.0027739251040221915", "720", "22.047171265353377", "1666443611"], + ["7920", "0.0027739251040221915", "720", "22.474028770858638", "1666447211"], + ["7921", "0.0027739251040221915", "720", "22.900005029469295", "1666450811"], + ["7922", "0.0027739251040221915", "720", "23.324866022452735", "1666454411"], + ["7923", "0.0027739251040221915", "720", "23.74862805845148", "1666458011"], + ["7924", "0.0027739251040221915", "720", "24.171428521534832", "1666461611"], + ["7925", "0.0027739251040221915", "720", "24.593461732293402", "1666465211"], + ["7926", "0.0027739251040221915", "720", "24.525241311399387", "1666468811"], + ["7927", "0.0027739251040221915", "720", "24.457210128843492", "1666472411"], + ["7928", "0.0027739251040221915", "720", "24.38936765969275", "1666476011"], + ["7929", "0.0027739251040221915", "720", "24.3217133804703", "1666479623"], + ["7930", "0.0027739251040221915", "720", "24.25424676915138", "1666483211"], + ["7931", "0.0027739251040221915", "720", "24.186967305159282", "1666486811"], + ["7932", "0.0027739251040221915", "720", "24.11987446936134", "1666490411"], + ["7933", "0.0027739251040221915", "720", "24.05296774406491", "1666494011"], + ["7934", "0.0027739251040221915", "720", "23.986246613013414", "1666497611"], + ["7935", "0.0027739251040221915", "720", "23.91971056138231", "1666501211"], + ["7936", "0.0027739251040221915", "720", "23.853359075775145", "1666504811"], + ["7937", "0.0027739251040221915", "720", "23.787191644219597", "1666508411"], + ["7938", "0.0027739251040221915", "720", "23.72120775616351", "1666512011"], + ["7939", "0.0027739251040221915", "720", "23.65540690247096", "1666515611"], + ["7940", "0.0027739251040221915", "720", "23.58978857541834", "1666519211"], + ["7941", "0.0027739251040221915", "720", "23.52435226869041", "1666522811"], + ["7942", "0.0027739251040221915", "720", "23.459097477376428", "1666526411"], + ["7943", "0.0027739251040221915", "720", "23.39402369796623", "1666530023"], + ["7944", "0.0027739251040221915", "720", "23.32913042834635", "1666533611"], + ["7945", "0.0027739251040221915", "720", "23.264417167796154", "1666537211"], + ["7946", "0.0027739251040221915", "720", "23.19988341698396", "1666540811"], + ["7947", "0.0027739251040221915", "720", "23.135528677963197", "1666544411"], + ["7948", "0.0027739251040221915", "720", "23.071352454168572", "1666548011"], + ["7949", "0.0027739251040221915", "720", "23.00735425041221", "1666551611"], + ["7950", "0.0027739251040221915", "720", "22.943533572879858", "1666555211"], + ["7951", "0.0027739251040221915", "720", "22.87988992912707", "1666558811"], + ["7952", "0.0027739251040221915", "720", "22.8164228280754", "1666562411"], + ["7953", "0.0027739251040221915", "720", "22.75313178000862", "1666566011"], + ["7954", "0.0027739251040221915", "720", "22.690016296568928", "1666569611"], + ["7955", "0.0027739251040221915", "720", "22.6270758907532", "1666573211"], + ["7956", "0.0027739251040221915", "720", "22.564310076909226", "1666576811"], + ["7957", "0.0027739251040221915", "720", "22.501718370731947", "1666580411"], + ["7958", "0.0027739251040221915", "720", "22.439300289259737", "1666584011"], + ["7959", "0.0027739251040221915", "720", "22.377055350870666", "1666587611"], + ["7960", "0.0027739251040221915", "720", "23.02795862867685", "1666591211"], + ["7961", "0.0027739251040221915", "720", "23.668660923742934", "1666594811"], + ["7962", "0.0027739251040221915", "720", "24.33947688234559", "1666598411"], + ["7963", "0.0027739251040221915", "720", "24.961992938150456", "1666602011"], + ["7964", "0.0027739251040221915", "720", "25.554160705312313", "1666605611"], + ["7965", "0.0027739251040221915", "720", "26.153283407932804", "1666609211"], + ["7966", "0.0027739251040221915", "720", "26.79241592829915", "1666612811"], + ["7967", "0.0027739251040221915", "720", "27.43086295485033", "1666616495"], + ["7968", "0.0027739251040221915", "720", "28.073593978553937", "1666620011"], + ["7969", "0.0027739251040221915", "720", "28.714871038252817", "1666623611"], + ["7970", "0.0027739251040221915", "720", "29.365547309991367", "1666627211"], + ["7971", "0.0027739251040221915", "720", "30.020761164887368", "1666630811"], + ["7972", "0.0027739251040221915", "720", "30.768716063181717", "1666634411"], + ["7973", "0.0027739251040221915", "720", "31.66212939171658", "1666638011"], + ["7974", "0.0027739251040221915", "720", "32.57159139062998", "1666641611"], + ["7975", "0.0027739251040221915", "720", "33.464368177341136", "1666645211"], + ["7976", "0.0027739251040221915", "720", "34.2431973141585", "1666648811"], + ["7977", "0.0027739251040221915", "720", "34.61165473908455", "1666652411"], + ["7978", "0.0027739251040221915", "720", "35.00003443745047", "1666656011"], + ["7979", "0.0027739251040221915", "720", "35.395774916126065", "1666659611"], + ["7980", "0.0027739251040221915", "720", "35.779858738827514", "1666663211"], + ["7981", "0.0027739251040221915", "720", "36.16040877838694", "1666666811"], + ["7982", "0.0027739251040221915", "720", "36.54285928662997", "1666670411"], + ["7983", "0.0027739251040221915", "720", "36.93155144117469", "1666674011"], + ["7984", "0.0027739251040221915", "720", "37.33767428599806", "1666677611"], + ["7985", "0.0027739251040221915", "720", "37.72181633236145", "1666681211"], + ["7986", "0.0027739251040221915", "720", "38.10363514697348", "1666684811"], + ["7987", "0.0027739251040221915", "720", "38.47764990107342", "1666688411"], + ["7988", "0.0027739251040221915", "720", "38.85132708858778", "1666692011"], + ["7989", "0.0027739251040221915", "720", "39.22410949888296", "1666695611"], + ["7990", "0.0027739251040221915", "720", "39.6020183490941", "1666699211"], + ["7991", "0.0027739251040221915", "720", "39.97148692510216", "1666702811"], + ["7992", "0.0027739251040221915", "720", "40.34017267843059", "1666706411"], + ["7993", "0.0027739251040221915", "720", "40.71838888181913", "1666710011"], + ["7994", "0.0027739251040221915", "720", "41.09468888492088", "1666713611"], + ["7995", "0.0027739251040221915", "720", "41.6645514705383", "1666717211"], + ["7996", "0.0027739251040221915", "720", "42.271187416528484", "1666720823"], + ["7997", "0.0027739251040221915", "720", "42.87964228638555", "1666724411"], + ["7998", "0.0027739251040221915", "720", "43.48383175022359", "1666728011"], + ["7999", "0.0027739251040221915", "720", "44.31664942359329", "1666731611"], + ["8000", "0.0027739251040221915", "720", "45.17932912006044", "1666735211"], + ["8001", "0.0027739251040221915", "720", "46.05354984649578", "1666738811"], + ["8002", "0.0027739251040221915", "720", "46.897798887143495", "1666742411"], + ["8003", "0.0027739251040221915", "720", "47.758873691894834", "1666746011"], + ["8004", "0.0027739251040221915", "720", "48.60726623643882", "1666749611"], + ["8005", "0.0027739251040221915", "720", "49.475005897364085", "1666753211"], + ["8006", "0.0027739251040221915", "720", "50.42220659113007", "1666756811"], + ["8007", "0.0027739251040221915", "720", "51.63360544108532", "1666760411"], + ["8008", "0.0027739251040221915", "720", "52.403823811567754", "1666764011"], + ["8009", "0.0027739251040221915", "720", "53.219508647041906", "1666767611"], + ["8010", "0.0027739251040221915", "720", "54.03961941917216", "1666771211"], + ["8011", "0.0027739251040221915", "720", "54.72593162327987", "1666774811"], + ["8012", "0.0027739251040221915", "720", "55.47925721101002", "1666778411"], + ["8013", "0.0027739251040221915", "720", "56.28640155439141", "1666782011"], + ["8014", "0.0027739251040221915", "720", "57.0913917775415", "1666785611"], + ["8015", "0.0027739251040221915", "720", "57.88367984195886", "1666789211"], + ["8016", "0.0027739251040221915", "720", "58.66495764267465", "1666792811"], + ["8017", "0.0027739251040221915", "720", "59.44870825670329", "1666796411"], + ["8018", "0.0027739251040221915", "720", "60.23482620328664", "1666800011"], + ["8019", "0.0027739251040221915", "720", "61.22695598635658", "1666803611"], + ["8020", "0.0027739251040221915", "720", "62.467863639653785", "1666807211"], + ["8021", "0.0027739251040221915", "720", "63.68617689169358", "1666810811"], + ["8022", "0.0027739251040221915", "720", "64.90244758824922", "1666814411"], + ["8023", "0.0027739251040221915", "720", "66.12315326484214", "1666818011"], + ["8024", "0.0027739251040221915", "720", "67.33928842915604", "1666821611"], + ["8025", "0.0027739251040221915", "720", "68.53954390369374", "1666825211"], + ["8026", "0.0027739251040221915", "720", "69.77108267233814", "1666828811"], + ["8027", "0.0027739251040221915", "720", "70.98533402969643", "1666832411"], + ["8028", "0.0027739251040221915", "720", "72.18895409341434", "1666836011"], + ["8029", "0.0027739251040221915", "720", "73.42036921659488", "1666839611"], + ["8030", "0.0027739251040221915", "720", "74.51723326869863", "1666843211"], + ["8031", "0.0027739251040221915", "720", "75.64411930956216", "1666846811"], + ["8032", "0.0027739251040221915", "720", "76.86454226570761", "1666850411"], + ["8033", "0.0027739251040221915", "720", "78.08186126635754", "1666854011"], + ["8034", "0.0027739251040221915", "720", "79.2965420090306", "1666857611"], + ["8035", "0.0027739251040221915", "720", "79.0765793404896", "1666861211"], + ["8036", "0.0027739251040221915", "720", "78.85722683191682", "1666864811"], + ["8037", "0.0027739251040221915", "720", "78.63848279077419", "1666868411"], + ["8038", "0.0027739251040221915", "720", "78.42034552921864", "1666872011"], + ["8039", "0.0027739251040221915", "720", "78.20281336408905", "1666875611"], + ["8040", "0.0027739251040221915", "720", "77.98588461689324", "1666879211"], + ["8041", "0.0027739251040221915", "720", "77.80802837107662", "1666882811"], + ["8042", "0.0027739251040221915", "720", "77.63374567933992", "1666886411"], + ["8043", "0.0027739251040221915", "720", "77.41839548328073", "1666890011"], + ["8044", "0.0027739251040221915", "720", "77.20364265253654", "1666893611"], + ["8045", "0.0027739251040221915", "720", "76.9894855300607", "1666897211"], + ["8046", "0.0027739251040221915", "720", "77.45113977269577", "1666900811"], + ["8047", "0.0027739251040221915", "720", "78.6824249356009", "1666904411"], + ["8048", "0.0027739251040221915", "720", "79.91324880263114", "1666908011"], + ["8049", "0.0027739251040221915", "720", "81.06502619846296", "1666911611"], + ["8050", "0.0027739251040221915", "720", "82.28294692468081", "1666915211"], + ["8051", "0.0027739251040221915", "720", "83.54904245054855", "1666918811"], + ["8052", "0.0027739251040221915", "720", "84.85571783903524", "1666922411"], + ["8053", "0.0027739251040221915", "720", "85.17431634156219", "1666926011"], + ["8054", "0.0027739251040221915", "720", "84.94645427958837", "1666929611"], + ["8055", "0.0027739251040221915", "720", "84.72153839254374", "1666933211"], + ["8056", "0.0027739251040221915", "720", "85.46044746496386", "1666936811"], + ["8057", "0.0027739251040221915", "720", "86.67709036797368", "1666940411"], + ["8058", "0.0027739251040221915", "720", "87.8926102393524", "1666944011"], + ["8059", "0.0027739251040221915", "720", "89.10479451885489", "1666947611"], + ["8060", "0.0027739251040221915", "720", "90.25473584335182", "1666951211"], + ["8061", "0.0027739251040221915", "720", "91.3988692418446", "1666954811"], + ["8062", "0.0027739251040221915", "720", "92.54000579595876", "1666958411"], + ["8063", "0.0027739251040221915", "720", "93.68089034576192", "1666962011"], + ["8064", "0.0027739251040221915", "720", "94.81946578169601", "1666965611"], + ["8065", "0.0027739251040221915", "720", "95.97704275040144", "1666969211"], + ["8066", "0.0027739251040221915", "720", "97.14423546676647", "1666972811"], + ["8067", "0.0027739251040221915", "720", "96.87476463329418", "1666976423"], + ["8068", "0.0027739251040221915", "720", "96.60604129173164", "1666980011"], + ["8069", "0.0027739251040221915", "720", "96.3380633685923", "1666983611"], + ["8070", "0.0027739251040221915", "720", "96.07082879614129", "1666987211"], + ["8071", "0.0027739251040221915", "720", "97.13547907409928", "1666990811"], + ["8072", "0.0027739251040221915", "720", "98.30108932909484", "1666994411"], + ["8073", "0.0027739251040221915", "720", "99.46365721722495", "1666998011"], + ["8074", "0.0027739251040221915", "720", "100.87462319720491", "1667001611"], + ["8075", "0.0027739251040221915", "720", "102.42354526877993", "1667005211"], + ["8076", "0.0027739251040221915", "720", "102.13943002531592", "1667008811"], + ["8077", "0.0027739251040221915", "720", "101.85610289625816", "1667012411"], + ["8078", "0.0027739251040221915", "720", "101.57356169543637", "1667016011"], + ["8079", "0.0027739251040221915", "720", "101.29180424274445", "1667019611"], + ["8080", "0.0027739251040221915", "720", "101.0108283641238", "1667023211"], + ["8081", "0.0027739251040221915", "720", "100.73063189154648", "1667026811"], + ["8082", "0.0027739251040221915", "720", "100.4512126629985", "1667030411"], + ["8083", "0.0027739251040221915", "720", "100.17256852246314", "1667034011"], + ["8084", "0.0027739251040221915", "720", "99.8946973199043", "1667037611"], + ["8085", "0.0027739251040221915", "720", "99.61759691124992", "1667041211"], + ["8086", "0.0027739251040221915", "720", "99.34126515837544", "1667044811"], + ["8087", "0.0027739251040221915", "720", "99.06569992908729", "1667048411"], + ["8088", "0.0027739251040221915", "720", "98.79089909710648", "1667052011"], + ["8089", "0.0027739251040221915", "720", "98.51686054205209", "1667055611"], + ["8090", "0.0027739251040221915", "720", "98.24358214942504", "1667059211"], + ["8091", "0.0027739251040221915", "720", "97.97106181059168", "1667062811"], + ["8092", "0.0027739251040221915", "720", "97.69929742276756", "1667066411"], + ["8093", "0.0027739251040221915", "720", "97.42828688900121", "1667070011"], + ["8094", "0.0027739251040221915", "720", "97.15802811815794", "1667073611"], + ["8095", "0.0027739251040221915", "720", "98.77202010396056", "1667077211"], + ["8096", "0.0027739251040221915", "720", "100.38161555166108", "1667080811"], + ["8097", "0.0027739251040221915", "720", "101.9868781992293", "1667084411"], + ["8098", "0.0027739251040221915", "720", "103.58518603778899", "1667088011"], + ["8099", "0.0027739251040221915", "720", "105.19577777416127", "1667091611"], + ["8100", "0.0027739251040221915", "720", "106.80874184413587", "1667095211"], + ["8101", "0.0027739251040221915", "720", "108.37968609144755", "1667098811"], + ["8102", "0.0027739251040221915", "720", "109.94627790256698", "1667102411"], + ["8103", "0.0027739251040221915", "720", "111.50857843543086", "1667106011"], + ["8104", "0.0027739251040221915", "720", "113.06666870329376", "1667109611"], + ["8105", "0.0027739251040221915", "720", "114.62065505640528", "1667113211"], + ["8106", "0.0027739251040221915", "720", "115.45302492864826", "1667116811"], + ["8107", "0.0027739251040221915", "720", "115.13617323675187", "1667120411"], + ["8108", "0.0027739251040221915", "720", "115.61540256480527", "1667124011"], + ["8109", "0.0027739251040221915", "720", "115.43426178099166", "1667127611"], + ["8110", "0.0027739251040221915", "720", "116.45849169283358", "1667131211"], + ["8111", "0.0027739251040221915", "720", "118.01572721657051", "1667134811"], + ["8112", "0.0027739251040221915", "720", "119.53786786506824", "1667138411"], + ["8113", "0.0027739251040221915", "720", "121.09092710261312", "1667142011"], + ["8114", "0.0027739251040221915", "720", "122.63171705794568", "1667145611"], + ["8115", "0.0027739251040221915", "720", "124.12617884696662", "1667149211"], + ["8116", "0.0027739251040221915", "720", "125.51556339108045", "1667152811"], + ["8117", "0.0027739251040221915", "720", "126.93981307099423", "1667156411"], + ["8118", "0.0027739251040221915", "720", "128.36436787800952", "1667160011"], + ["8119", "0.0027739251040221915", "720", "129.8529457784866", "1667163611"], + ["8120", "0.0027739251040221915", "720", "129.4927434323604", "1667167211"], + ["8121", "0.0027739251040221915", "720", "129.1335402605647", "1667170811"], + ["8122", "0.0027739251040221915", "720", "128.77533349146466", "1667174411"], + ["8123", "0.0027739251040221915", "720", "128.41812036111386", "1667178011"], + ["8124", "0.0027739251040221915", "720", "128.06189811323281", "1667181611"], + ["8125", "0.0027739251040221915", "720", "127.70666399918778", "1667185211"], + ["8126", "0.0027739251040221915", "720", "127.35241527796951", "1667188811"], + ["8127", "0.0027739251040221915", "720", "128.89656429245503", "1667192411"], + ["8128", "0.0027739251040221915", "720", "130.37279374518053", "1667196011"], + ["8129", "0.0027739251040221915", "720", "131.8782207944311", "1667199611"], + ["8130", "0.0027739251040221915", "720", "133.38953127211644", "1667203211"], + ["8131", "0.0027739251040221915", "720", "134.93812266664594", "1667206811"], + ["8132", "0.0027739251040221915", "720", "136.49890028754288", "1667210411"], + ["8133", "0.0027739251040221915", "720", "138.06424684707812", "1667214011"], + ["8134", "0.0027739251040221915", "720", "137.6812669667811", "1667217611"], + ["8135", "0.0027739251040221915", "720", "137.29934944398838", "1667221211"], + ["8136", "0.0027739251040221915", "720", "136.91849133179977", "1667224811"], + ["8137", "0.0027739251040221915", "720", "136.53868969148965", "1667228411"], + ["8138", "0.0027739251040221915", "720", "136.15994159248413", "1667232011"], + ["8139", "0.0027739251040221915", "720", "135.78224411233856", "1667235611"], + ["8140", "0.0027739251040221915", "720", "135.40559433671487", "1667239211"], + ["8141", "0.0027739251040221915", "720", "136.93150499874895", "1667242811"], + ["8142", "0.0027739251040221915", "720", "138.45348372552078", "1667246411"], + ["8143", "0.0027739251040221915", "720", "138.06942413127524", "1667250011"], + ["8144", "0.0027739251040221915", "720", "137.6864298895796", "1667253611"], + ["8145", "0.0027739251040221915", "720", "139.19927455008008", "1667257211"], + ["8146", "0.0027739251040221915", "720", "138.81314618794394", "1667260811"], + ["8147", "0.0027739251040221915", "720", "138.4280889169649", "1667264411"], + ["8148", "0.0027739251040221915", "720", "138.9756758214948", "1667268011"], + ["8149", "0.0027739251040221915", "720", "138.59016770548513", "1667271611"], + ["8150", "0.0027739251040221915", "720", "138.20572896011623", "1667275211"], + ["8151", "0.0027739251040221915", "720", "137.82235661903408", "1667278811"], + ["8152", "0.0027739251040221915", "720", "137.44004772411304", "1667282411"], + ["8153", "0.0027739251040221915", "720", "138.66474447106418", "1667286011"], + ["8154", "0.0027739251040221915", "720", "140.33397266393223", "1667289611"], + ["8155", "0.0027739251040221915", "720", "142.02389128899762", "1667293223"], + ["8156", "0.0027739251040221915", "720", "146.88964444769664", "1667296811"], + ["8157", "0.0027739251040221915", "720", "152.52445783619126", "1667300411"], + ["8158", "0.0027739251040221915", "720", "154.4731557894889", "1667304011"], + ["8159", "0.0027739251040221915", "720", "156.21271073875525", "1667307611"], + ["8160", "0.0027739251040221915", "720", "155.77972601548547", "1667311211"], + ["8161", "0.0027739251040221915", "720", "155.34760472279342", "1667314811"], + ["8162", "0.0027739251040221915", "720", "155.03173653770938", "1667318411"], + ["8163", "0.0027739251040221915", "720", "156.50825435036484", "1667322011"], + ["8164", "0.0027739251040221915", "720", "158.4639030622917", "1667325611"], + ["8165", "0.0027739251040221915", "720", "159.03230552259046", "1667329211"], + ["8166", "0.0027739251040221915", "720", "158.59116181795082", "1667332811"], + ["8167", "0.0027739251040221915", "720", "158.15124181290798", "1667336411"], + ["8168", "0.0027739251040221915", "720", "157.71254211301087", "1667340011"], + ["8169", "0.0027739251040221915", "720", "157.27505933322442", "1667343611"], + ["8170", "0.0027739251040221915", "720", "157.751884891246", "1667347211"], + ["8171", "0.0027739251040221915", "720", "158.2593053714367", "1667350811"], + ["8172", "0.0027739251040221915", "720", "158.75328539259777", "1667354411"], + ["8173", "0.0027739251040221915", "720", "159.24296023200804", "1667358011"], + ["8174", "0.0027739251040221915", "720", "159.7599213159692", "1667361611"], + ["8175", "0.0027739251040221915", "720", "160.24928652729798", "1667365211"], + ["8176", "0.0027739251040221915", "720", "161.0806397408145", "1667368811"], + ["8177", "0.0027739251040221915", "720", "161.59008693432125", "1667372411"], + ["8178", "0.0027739251040221915", "720", "161.4947110177212", "1667376011"], + ["8179", "0.0027739251040221915", "720", "161.04673678466233", "1667379611"], + ["8180", "0.0027739251040221915", "720", "160.6000051985745", "1667383211"], + ["8181", "0.0027739251040221915", "720", "160.15451281244808", "1667386811"], + ["8182", "0.0027739251040221915", "720", "159.7102561888352", "1667390411"], + ["8183", "0.0027739251040221915", "720", "159.26723189982314", "1667394011"], + ["8184", "0.0027739251040221915", "720", "158.82543652700812", "1667397611"], + ["8185", "0.0027739251040221915", "720", "158.38486666146855", "1667401211"], + ["8186", "0.0027739251040221915", "720", "157.9455189037391", "1667404811"], + ["8187", "0.0027739251040221915", "720", "159.16193148375646", "1667408411"], + ["8188", "0.0027739251040221915", "720", "158.8240231883785", "1667412011"], + ["8189", "0.0027739251040221915", "720", "160.21893884666318", "1667415611"], + ["8190", "0.0027739251040221915", "720", "161.61264270284443", "1667419211"], + ["8191", "0.0027739251040221915", "720", "161.1643413361236", "1667422811"], + ["8192", "0.0027739251040221915", "720", "160.71728352381814", "1667426411"], + ["8193", "0.0027739251040221915", "720", "161.4284166707701", "1667430011"], + ["8194", "0.0027739251040221915", "720", "162.1377392819469", "1667433611"], + ["8195", "0.0027739251040221915", "720", "162.8454376140358", "1667437211"], + ["8196", "0.0027739251040221915", "720", "163.51168620872642", "1667440811"], + ["8197", "0.0027739251040221915", "720", "163.05811703755103", "1667444411"], + ["8198", "0.0027739251040221915", "720", "162.60580603328597", "1667448011"], + ["8199", "0.0027739251040221915", "720", "163.8006683605168", "1667451611"], + ["8200", "0.0027739251040221915", "720", "164.99250444273451", "1667455211"], + ["8201", "0.0027739251040221915", "720", "166.18122151778934", "1667458811"], + ["8202", "0.0027739251040221915", "720", "167.3728821432601", "1667462411"], + ["8203", "0.0027739251040221915", "720", "168.5619768918225", "1667466011"], + ["8204", "0.0027739251040221915", "720", "169.74956408213643", "1667469611"], + ["8205", "0.0027739251040221915", "720", "170.0394354078448", "1667473211"], + ["8206", "0.0027739251040221915", "720", "169.5677587492932", "1667476811"], + ["8207", "0.0027739251040221915", "720", "169.09739048646577", "1667480411"], + ["8208", "0.0027739251040221915", "720", "168.62832698997073", "1667484011"], + ["8209", "0.0027739251040221915", "720", "168.16056464048398", "1667487611"], + ["8210", "0.0027739251040221915", "720", "169.1927217871123", "1667491283"], + ["8211", "0.0027739251040221915", "720", "170.0159115713367", "1667494811"], + ["8212", "0.0027739251040221915", "720", "170.96811463216517", "1667498411"], + ["8213", "0.0027739251040221915", "720", "172.1270259813131", "1667502011"], + ["8214", "0.0027739251040221915", "720", "173.27580189537326", "1667505611"], + ["8215", "0.0027739251040221915", "720", "174.50666070564964", "1667509211"], + ["8216", "0.0027739251040221915", "720", "175.73430805459373", "1667512811"], + ["8217", "0.0027739251040221915", "720", "176.9265081321122", "1667516411"], + ["8218", "0.0027739251040221915", "720", "177.99144805684975", "1667520011"], + ["8219", "0.0027739251040221915", "720", "179.04280921896668", "1667523611"], + ["8220", "0.0027739251040221915", "720", "180.09139727106384", "1667527211"], + ["8221", "0.0027739251040221915", "720", "181.14354264340486", "1667530811"], + ["8222", "0.0027739251040221915", "720", "182.17072291069084", "1667534411"], + ["8223", "0.0027739251040221915", "720", "183.1944886807028", "1667538011"], + ["8224", "0.0027739251040221915", "720", "184.22178443193525", "1667541611"], + ["8225", "0.0027739251040221915", "720", "185.29612766235982", "1667545211"], + ["8226", "0.0027739251040221915", "720", "186.42615060365702", "1667548811"], + ["8227", "0.0027739251040221915", "720", "187.55451487105327", "1667552411"], + ["8228", "0.0027739251040221915", "720", "188.67994053021818", "1667556011"], + ["8229", "0.0027739251040221915", "720", "189.78699619310245", "1667559611"], + ["8230", "0.0027739251040221915", "720", "190.9380443062977", "1667563211"], + ["8231", "0.0027739251040221915", "720", "192.05159196148136", "1667566811"], + ["8232", "0.0027739251040221915", "720", "193.1629216841957", "1667570411"], + ["8233", "0.0027739251040221915", "720", "194.27169462820626", "1667574011"], + ["8234", "0.0027739251040221915", "720", "195.37635748638044", "1667577611"], + ["8235", "0.0027739251040221915", "720", "196.44628000375525", "1667581211"], + ["8236", "0.0027739251040221915", "720", "198.36278631719838", "1667584811"], + ["8237", "0.0027739251040221915", "720", "200.1641284744322", "1667588411"], + ["8238", "0.0027739251040221915", "720", "201.22429301957942", "1667592011"], + ["8239", "0.0027739251040221915", "720", "200.6661119016333", "1667595611"], + ["8240", "0.0027739251040221915", "720", "200.10947913630284", "1667599211"], + ["8241", "0.0027739251040221915", "720", "201.14005787656274", "1667602811"], + ["8242", "0.0027739251040221915", "720", "202.16536295873593", "1667606411"], + ["8243", "0.0027739251040221915", "720", "203.18569328894748", "1667610011"], + ["8244", "0.0027739251040221915", "720", "204.09824563211268", "1667613611"], + ["8245", "0.0027739251040221915", "720", "205.12064667335508", "1667617211"], + ["8246", "0.0027739251040221915", "720", "204.5516573621946", "1667620811"], + ["8247", "0.0027739251040221915", "720", "203.98424638476826", "1667624411"], + ["8248", "0.0027739251040221915", "720", "203.4184093628965", "1667628011"], + ["8249", "0.0027739251040221915", "720", "204.36827826618944", "1667631611"], + ["8250", "0.0027739251040221915", "720", "205.6077911863942", "1667635211"], + ["8251", "0.0027739251040221915", "720", "206.8439107947537", "1667638811"], + ["8252", "0.0027739251040221915", "720", "208.07663207687645", "1667642411"], + ["8253", "0.0027739251040221915", "720", "207.87843328332062", "1667646011"], + ["8254", "0.0027739251040221915", "720", "207.3017940786512", "1667649611"], + ["8255", "0.0027739251040221915", "720", "206.72675442794758", "1667653211"], + ["8256", "0.0027739251040221915", "720", "206.15330989416688", "1667656811"], + ["8257", "0.0027739251040221915", "720", "205.5814560525742", "1667660411"], + ["8258", "0.0027739251040221915", "720", "205.01118849070852", "1667664011"], + ["8259", "0.0027739251040221915", "720", "204.4425028083487", "1667667611"], + ["8260", "0.0027739251040221915", "720", "205.39007927489976", "1667671211"], + ["8261", "0.0027739251040221915", "720", "206.5819560813494", "1667674811"], + ["8262", "0.0027739251040221915", "720", "207.79639623091572", "1667678411"], + ["8263", "0.0027739251040221915", "720", "209.05759542306296", "1667682011"], + ["8264", "0.0027739251040221915", "720", "210.3154693442195", "1667685611"], + ["8265", "0.0027739251040221915", "720", "211.57040967613568", "1667689211"], + ["8266", "0.0027739251040221915", "720", "212.82189490033502", "1667692811"], + ["8267", "0.0027739251040221915", "720", "214.0134137272412", "1667696411"], + ["8268", "0.0027739251040221915", "720", "215.10398926197837", "1667700011"], + ["8269", "0.0027739251040221915", "720", "216.23938867872738", "1667703611"], + ["8270", "0.0027739251040221915", "720", "217.24237410264215", "1667707211"], + ["8271", "0.0027739251040221915", "720", "218.33095193037408", "1667710811"], + ["8272", "0.0027739251040221915", "720", "219.42930609145486", "1667714411"], + ["8273", "0.0027739251040221915", "720", "220.5246225572206", "1667718023"], + ["8274", "0.0027739251040221915", "720", "221.62458797315062", "1667721611"], + ["8275", "0.0027739251040221915", "720", "222.75187161538878", "1667725211"], + ["8276", "0.0027739251040221915", "720", "223.87607733906316", "1667728811"], + ["8277", "0.0027739251040221915", "720", "224.9265288721032", "1667732411"], + ["8278", "0.0027739251040221915", "720", "225.97672650352592", "1667736011"], + ["8279", "0.0027739251040221915", "720", "226.87179595289203", "1667739611"], + ["8280", "0.0027739251040221915", "720", "227.64112171723906", "1667743211"], + ["8281", "0.0027739251040221915", "720", "228.36437302454215", "1667746811"], + ["8282", "0.0027739251040221915", "720", "229.07597201753924", "1667750411"], + ["8283", "0.0027739251040221915", "720", "228.54922109377355", "1667754011"], + ["8284", "0.0027739251040221915", "720", "228.5517202641098", "1667757611"], + ["8285", "0.0027739251040221915", "720", "227.86688169953453", "1667761211"], + ["8286", "0.0027739251040221915", "720", "227.23479603601294", "1667764811"], + ["8287", "0.0027739251040221915", "720", "226.60446373078128", "1667768411"], + ["8288", "0.0027739251040221915", "720", "228.76656727937828", "1667772011"], + ["8289", "0.0027739251040221915", "720", "230.90449985557973", "1667775611"], + ["8290", "0.0027739251040221915", "720", "233.0378770016114", "1667779211"], + ["8291", "0.0027739251040221915", "720", "235.16696606402024", "1667782811"], + ["8292", "0.0027739251040221915", "720", "237.2599722441478", "1667786411"], + ["8293", "0.0027739251040221915", "720", "239.3049942601141", "1667790011"], + ["8294", "0.0027739251040221915", "720", "241.36839134122334", "1667793611"], + ["8295", "0.0027739251040221915", "720", "243.4778308187789", "1667797211"], + ["8296", "0.0027739251040221915", "720", "245.47644944228807", "1667800811"], + ["8297", "0.0027739251040221915", "720", "247.4863550460321", "1667804411"], + ["8298", "0.0027739251040221915", "720", "249.49624591691688", "1667808011"], + ["8299", "0.0027739251040221915", "720", "251.5555348048034", "1667811611"], + ["8300", "0.0027739251040221915", "720", "253.44860770964445", "1667815211"], + ["8301", "0.0027739251040221915", "720", "255.23439151072725", "1667818811"], + ["8302", "0.0027739251040221915", "720", "257.2434642027918", "1667822411"], + ["8303", "0.0027739251040221915", "720", "259.2557458860018", "1667826011"], + ["8304", "0.0027739251040221915", "720", "261.27477113458434", "1667829611"], + ["8305", "0.0027739251040221915", "720", "263.24198660716525", "1667833211"], + ["8306", "0.0027739251040221915", "720", "264.7283545500025", "1667836811"], + ["8307", "0.0027739251040221915", "720", "266.0180584902244", "1667840411"], + ["8308", "0.0027739251040221915", "720", "267.4249946774915", "1667844011"], + ["8309", "0.0027739251040221915", "720", "268.79038427894085", "1667847611"], + ["8310", "0.0027739251040221915", "720", "269.9751759231047", "1667851211"], + ["8311", "0.0027739251040221915", "720", "270.34185995105724", "1667854811"], + ["8312", "0.0027739251040221915", "720", "270.7084340177672", "1667858411"], + ["8313", "0.0027739251040221915", "720", "271.70418319108825", "1667862011"], + ["8314", "0.0027739251040221915", "720", "271.5614110823751", "1667865611"], + ["8315", "0.0027739251040221915", "720", "270.80812006689", "1667869211"], + ["8316", "0.0027739251040221915", "720", "270.0569186242634", "1667872811"], + ["8317", "0.0027739251040221915", "720", "269.3078009581767", "1667876411"], + ["8318", "0.0027739251040221915", "720", "268.5607612883898", "1667880011"], + ["8319", "0.0027739251040221915", "720", "270.36135405319317", "1667883611"], + ["8320", "0.0027739251040221915", "720", "272.34710395041037", "1667887211"], + ["8321", "0.0027739251040221915", "720", "274.15923880769077", "1667890811"], + ["8322", "0.0027739251040221915", "720", "275.8525675017055", "1667894411"], + ["8323", "0.0027739251040221915", "720", "277.1079781022556", "1667898011"], + ["8324", "0.0027739251040221915", "720", "276.4863169369234", "1667901611"], + ["8325", "0.0027739251040221915", "720", "275.71936460145344", "1667905211"], + ["8326", "0.0027739251040221915", "720", "274.9545397343204", "1667908811"], + ["8327", "0.0027739251040221915", "720", "274.1918364340865", "1667912411"], + ["8328", "0.0027739251040221915", "720", "273.43124881568406", "1667916011"], + ["8329", "0.0027739251040221915", "720", "272.67277101037007", "1667919611"], + ["8330", "0.0027739251040221915", "720", "271.91639716568113", "1667923211"], + ["8331", "0.0027739251040221915", "720", "271.7825056256931", "1667926811"], + ["8332", "0.0027739251040221915", "720", "272.12192222867316", "1667930411"], + ["8333", "0.0027739251040221915", "720", "271.36707639724824", "1667934011"], + ["8334", "0.0027739251040221915", "720", "270.6143244516248", "1667937611"], + ["8335", "0.0027739251040221915", "720", "269.8636605835204", "1667941211"], + ["8336", "0.0027739251040221915", "720", "269.11507900076447", "1667944811"], + ["8337", "0.0027739251040221915", "720", "268.36857392725335", "1667948411"], + ["8338", "0.0027739251040221915", "720", "270.3164558470113", "1667952011"], + ["8339", "0.0027739251040221915", "720", "272.2588284965342", "1667955611"], + ["8340", "0.0027739251040221915", "720", "274.2125350721332", "1667959211"], + ["8341", "0.0027739251040221915", "720", "276.22425887498446", "1667962811"], + ["8342", "0.0027739251040221915", "720", "276.6270732775504", "1667966411"], + ["8343", "0.0027739251040221915", "720", "276.6383099841314", "1667970011"], + ["8344", "0.0027739251040221915", "720", "275.8709360313321", "1667973611"], + ["8345", "0.0027739251040221915", "720", "275.10569071640475", "1667977211"], + ["8346", "0.0027739251040221915", "720", "274.34256813466715", "1667980811"], + ["8347", "0.0027739251040221915", "720", "273.58156239781647", "1667984411"], + ["8348", "0.0027739251040221915", "720", "272.82266763388355", "1667988011"], + ["8349", "0.0027739251040221915", "720", "272.0658779871876", "1667991611"], + ["8350", "0.0027739251040221915", "720", "271.3111876182911", "1667995211"], + ["8351", "0.0027739251040221915", "720", "270.5585907039547", "1667998811"], + ["8352", "0.0027739251040221915", "720", "269.8080814370921", "1668002411"], + ["8353", "0.0027739251040221915", "720", "269.0596540267257", "1668006011"], + ["8354", "0.0027739251040221915", "720", "268.3133026979414", "1668009611"], + ["8355", "0.0027739251040221915", "720", "267.5690216918445", "1668013211"], + ["8356", "0.0027739251040221915", "720", "266.82680526551485", "1668016811"], + ["8357", "0.0027739251040221915", "720", "266.08664769196275", "1668020411"], + ["8358", "0.0027739251040221915", "720", "265.3485432600849", "1668024011"], + ["8359", "0.0027739251040221915", "720", "264.61248627462004", "1668027611"], + ["8360", "0.0027739251040221915", "720", "263.8784710561052", "1668031211"], + ["8361", "0.0027739251040221915", "720", "263.14649194083165", "1668034811"], + ["8362", "0.0027739251040221915", "720", "262.4165432808016", "1668038411"], + ["8363", "0.0027739251040221915", "720", "261.6886194436843", "1668042011"], + ["8364", "0.0027739251040221915", "720", "260.9627148127725", "1668045611"], + ["8365", "0.0027739251040221915", "720", "260.2388237869396", "1668049211"], + ["8366", "0.0027739251040221915", "720", "259.5169407805958", "1668052811"], + ["8367", "0.0027739251040221915", "720", "258.78456932802527", "1668056411"], + ["8368", "0.0027739251040221915", "720", "258.05116825221626", "1668060011"], + ["8369", "0.0027739251040221915", "720", "257.31979332155953", "1668063611"], + ["8370", "0.0027739251040221915", "720", "256.5904333971613", "1668067211"], + ["8371", "0.0027739251040221915", "720", "255.86540505606823", "1668070811"], + ["8372", "0.0027739251040221915", "720", "255.15565358573238", "1668074411"], + ["8373", "0.0027739251040221915", "720", "254.44787091281773", "1668078011"], + ["8374", "0.0027739251040221915", "720", "253.74205157602768", "1668081611"], + ["8375", "0.0027739251040221915", "720", "253.03819012921483", "1668085211"], + ["8376", "0.0027739251040221915", "720", "252.33628114133907", "1668088811"], + ["8377", "0.0027739251040221915", "720", "251.63631919642552", "1668092411"], + ["8378", "0.0027739251040221915", "720", "250.9382988935228", "1668096011"], + ["8379", "0.0027739251040221915", "720", "250.2271985738775", "1668099611"], + ["8380", "0.0027739251040221915", "720", "249.51360549148242", "1668103211"], + ["8381", "0.0027739251040221915", "720", "251.515058530341", "1668106811"], + ["8382", "0.0027739251040221915", "720", "253.00162668139484", "1668110411"], + ["8383", "0.0027739251040221915", "720", "252.77980248349476", "1668114011"], + ["8384", "0.0027739251040221915", "720", "253.55277195370482", "1668117611"], + ["8385", "0.0027739251040221915", "720", "255.42407439095712", "1668121211"], + ["8386", "0.0027739251040221915", "720", "256.83335031250107", "1668124811"], + ["8387", "0.0027739251040221915", "720", "257.9908982191224", "1668128411"], + ["8388", "0.0027739251040221915", "720", "259.14255945543067", "1668132011"], + ["8389", "0.0027739251040221915", "720", "260.0818957873974", "1668135611"], + ["8390", "0.0027739251040221915", "720", "259.54516920626907", "1668139211"], + ["8391", "0.0027739251040221915", "720", "261.3168309097479", "1668142811"], + ["8392", "0.0027739251040221915", "720", "263.0963019396931", "1668146411"], + ["8393", "0.0027739251040221915", "720", "262.3544139056633", "1668150011"], + ["8394", "0.0027739251040221915", "720", "261.6142631890224", "1668153611"], + ["8395", "0.0027739251040221915", "720", "260.87611068839874", "1668157211"], + ["8396", "0.0027739251040221915", "720", "260.1442475460096", "1668160811"], + ["8397", "0.0027739251040221915", "720", "259.41032448829696", "1668164411"], + ["8398", "0.0027739251040221915", "720", "258.67840263351684", "1668168011"], + ["8399", "0.0027739251040221915", "720", "257.9488721672348", "1668171611"], + ["8400", "0.0027739251040221915", "720", "257.23334131517595", "1668175211"], + ["8401", "0.0027739251040221915", "720", "256.51979529211025", "1668178811"], + ["8402", "0.0027739251040221915", "720", "255.78615844824674", "1668182411"], + ["8403", "0.0027739251040221915", "720", "255.0630657319627", "1668186011"], + ["8404", "0.0027739251040221915", "720", "254.34063316777124", "1668189611"], + ["8405", "0.0027739251040221915", "720", "253.6047023235216", "1668193211"], + ["8406", "0.0027739251040221915", "720", "252.88772499553448", "1668196811"], + ["8407", "0.0027739251040221915", "720", "254.66568864312543", "1668200411"], + ["8408", "0.0027739251040221915", "720", "256.49143298375935", "1668204011"], + ["8409", "0.0027739251040221915", "720", "258.31358373388053", "1668207611"], + ["8410", "0.0027739251040221915", "720", "260.22722427286436", "1668211211"], + ["8411", "0.0027739251040221915", "720", "262.2493398634751", "1668214811"], + ["8412", "0.0027739251040221915", "720", "264.2304443026927", "1668218411"], + ["8413", "0.0027739251040221915", "720", "266.26752479724166", "1668222011"], + ["8414", "0.0027739251040221915", "720", "268.32694760764787", "1668225611"], + ["8415", "0.0027739251040221915", "720", "270.25747752127154", "1668229211"], + ["8416", "0.0027739251040221915", "720", "272.06108339499895", "1668232811"], + ["8417", "0.0027739251040221915", "720", "271.3064063259421", "1668236411"], + ["8418", "0.0027739251040221915", "720", "270.5538226745525", "1668240011"], + ["8419", "0.0027739251040221915", "720", "269.80332663384644", "1668243611"], + ["8420", "0.0027739251040221915", "720", "269.0549124129481", "1668247211"], + ["8421", "0.0027739251040221915", "720", "268.3085742370453", "1668250811"], + ["8422", "0.0027739251040221915", "720", "267.56430634734477", "1668254411"], + ["8423", "0.0027739251040221915", "720", "266.8221030010276", "1668258011"], + ["8424", "0.0027739251040221915", "720", "266.08195847120504", "1668261611"], + ["8425", "0.0027739251040221915", "720", "265.3438670468744", "1668265211"], + ["8426", "0.0027739251040221915", "720", "267.412194209019", "1668268811"], + ["8427", "0.0027739251040221915", "720", "269.4909075510189", "1668272411"], + ["8428", "0.0027739251040221915", "720", "271.47158799609235", "1668276011"], + ["8429", "0.0027739251040221915", "720", "273.4059579850075", "1668279611"], + ["8430", "0.0027739251040221915", "720", "275.3420193359506", "1668283211"], + ["8431", "0.0027739251040221915", "720", "277.2195501616484", "1668286811"], + ["8432", "0.0027739251040221915", "720", "276.4291925210026", "1668290411"], + ["8433", "0.0027739251040221915", "720", "276.99909445682175", "1668294011"], + ["8434", "0.0027739251040221915", "720", "276.2105262934475", "1668297611"], + ["8435", "0.0027739251040221915", "720", "275.44433898056695", "1668301211"], + ["8436", "0.0027739251040221915", "720", "274.680277013908", "1668304811"], + ["8437", "0.0027739251040221915", "720", "276.43335961026327", "1668308411"], + ["8438", "0.0027739251040221915", "720", "278.1828815170309", "1668312011"], + ["8439", "0.0027739251040221915", "720", "280.07549865198035", "1668315611"], + ["8440", "0.0027739251040221915", "720", "281.87742750367636", "1668319211"], + ["8441", "0.0027739251040221915", "720", "283.68842654527504", "1668322811"], + ["8442", "0.0027739251040221915", "720", "285.4953713676182", "1668326423"], + ["8443", "0.0027739251040221915", "720", "287.34848962179956", "1668330011"], + ["8444", "0.0027739251040221915", "720", "289.2039765715311", "1668333611"], + ["8445", "0.0027739251040221915", "720", "291.0580110609304", "1668337211"], + ["8446", "0.0027739251040221915", "720", "292.91207263357694", "1668340811"], + ["8447", "0.0027739251040221915", "720", "294.7613450451343", "1668344411"], + ["8448", "0.0027739251040221915", "720", "296.4809236469508", "1668348011"], + ["8449", "0.0027739251040221915", "720", "298.1143802415501", "1668351611"], + ["8450", "0.0027739251040221915", "720", "299.7694863745952", "1668355211"], + ["8451", "0.0027739251040221915", "720", "301.4594677546145", "1668358811"], + ["8452", "0.0027739251040221915", "720", "303.1497217245047", "1668362411"], + ["8453", "0.0027739251040221915", "720", "304.8416788456121", "1668366011"], + ["8454", "0.0027739251040221915", "720", "306.5321009070667", "1668369611"], + ["8455", "0.0027739251040221915", "720", "308.46647896002906", "1668373211"], + ["8456", "0.0027739251040221915", "720", "310.0335743609721", "1668376811"], + ["8457", "0.0027739251040221915", "720", "311.50572469561575", "1668380411"], + ["8458", "0.0027739251040221915", "720", "312.9790578198997", "1668384011"], + ["8459", "0.0027739251040221915", "720", "314.38111488281265", "1668387611"], + ["8460", "0.0027739251040221915", "720", "314.6771714767577", "1668391211"], + ["8461", "0.0027739251040221915", "720", "313.810975408861", "1668394811"], + ["8462", "0.0027739251040221915", "720", "312.94048726625664", "1668398411"], + ["8463", "0.0027739251040221915", "720", "312.07241379256385", "1668402011"], + ["8464", "0.0027739251040221915", "720", "311.20674828967185", "1668405611"], + ["8465", "0.0027739251040221915", "720", "310.34348407805004", "1668409211"], + ["8466", "0.0027739251040221915", "720", "309.4826144966962", "1668412811"], + ["8467", "0.0027739251040221915", "720", "308.6241329030854", "1668416411"], + ["8468", "0.0027739251040221915", "720", "307.76803267311846", "1668420011"], + ["8469", "0.0027739251040221915", "720", "306.914307201071", "1668423611"], + ["8470", "0.0027739251040221915", "720", "306.06294989954233", "1668427211"], + ["8471", "0.0027739251040221915", "720", "305.2139541994049", "1668430811"], + ["8472", "0.0027739251040221915", "720", "304.9845123236784", "1668434411"], + ["8473", "0.0027739251040221915", "720", "304.7640060037792", "1668438011"], + ["8474", "0.0027739251040221915", "720", "304.3369031743651", "1668441611"], + ["8475", "0.0027739251040221915", "720", "305.94790228418066", "1668445211"], + ["8476", "0.0027739251040221915", "720", "307.5599170706124", "1668448811"], + ["8477", "0.0027739251040221915", "720", "309.2227577066539", "1668452411"], + ["8478", "0.0027739251040221915", "720", "311.1125881346521", "1668456011"], + ["8479", "0.0027739251040221915", "720", "312.99892554343256", "1668459611"], + ["8480", "0.0027739251040221915", "720", "314.5084373477504", "1668463211"], + ["8481", "0.0027739251040221915", "720", "316.24054666440014", "1668466811"], + ["8482", "0.0027739251040221915", "720", "317.9713912950121", "1668470411"], + ["8483", "0.0027739251040221915", "720", "319.2574214217943", "1668474011"], + ["8484", "0.0027739251040221915", "720", "321.14560375349527", "1668477611"], + ["8485", "0.0027739251040221915", "720", "323.04958385126645", "1668481211"], + ["8486", "0.0027739251040221915", "720", "324.9741924203337", "1668484811"], + ["8487", "0.0027739251040221915", "720", "326.89709331237157", "1668488411"], + ["8488", "0.0027739251040221915", "720", "328.70285323938305", "1668492011"], + ["8489", "0.0027739251040221915", "720", "328.37315212914893", "1668495611"], + ["8490", "0.0027739251040221915", "720", "327.46226959897103", "1668499211"], + ["8491", "0.0027739251040221915", "720", "326.60637828524295", "1668502811"], + ["8492", "0.0027739251040221915", "720", "326.29222408750303", "1668506411"], + ["8493", "0.0027739251040221915", "720", "325.981512728037", "1668510011"], + ["8494", "0.0027739251040221915", "720", "325.67394051519915", "1668513611"], + ["8495", "0.0027739251040221915", "720", "325.3466877093318", "1668517211"], + ["8496", "0.0027739251040221915", "720", "325.0310027642296", "1668520811"], + ["8497", "0.0027739251040221915", "720", "324.7203161768115", "1668524411"], + ["8498", "0.0027739251040221915", "720", "323.8195663399826", "1668528011"], + ["8499", "0.0027739251040221915", "720", "322.92131511573854", "1668531611"], + ["8500", "0.0027739251040221915", "720", "322.0255555731151", "1668535211"], + ["8501", "0.0027739251040221915", "720", "321.1322808003742", "1668538811"], + ["8502", "0.0027739251040221915", "720", "321.83944713657286", "1668542411"], + ["8503", "0.0027739251040221915", "720", "321.30048376310106", "1668546011"], + ["8504", "0.0027739251040221915", "720", "320.9083591396251", "1668549611"], + ["8505", "0.0027739251040221915", "720", "320.1610292224555", "1668553211"], + ["8506", "0.0027739251040221915", "720", "319.2729265061658", "1668556811"], + ["8507", "0.0027739251040221915", "720", "320.33539616079497", "1668560411"], + ["8508", "0.0027739251040221915", "720", "319.44680976367766", "1668564011"], + ["8509", "0.0027739251040221915", "720", "318.5606882386744", "1668567611"], + ["8510", "0.0027739251040221915", "720", "317.67702474841457", "1668571211"], + ["8511", "0.0027739251040221915", "720", "317.7217782054231", "1668574811"], + ["8512", "0.0027739251040221915", "720", "316.8469606542291", "1668578411"], + ["8513", "0.0027739251040221915", "720", "317.6707288327195", "1668582011"], + ["8514", "0.0027739251040221915", "720", "319.1004291716024", "1668585611"], + ["8515", "0.0027739251040221915", "720", "320.6459430435258", "1668589211"], + ["8516", "0.0027739251040221915", "720", "322.22937987003473", "1668592811"], + ["8517", "0.0027739251040221915", "720", "322.91143792587377", "1668596411"], + ["8518", "0.0027739251040221915", "720", "322.50045853911683", "1668600011"], + ["8519", "0.0027739251040221915", "720", "322.0926041354022", "1668603611"], + ["8520", "0.0027739251040221915", "720", "321.3965508728907", "1668607211"], + ["8521", "0.0027739251040221915", "720", "320.50502091207824", "1668610811"], + ["8522", "0.0027739251040221915", "720", "319.6159639886051", "1668614411"], + ["8523", "0.0027739251040221915", "720", "318.6903446654653", "1668618011"], + ["8524", "0.0027739251040221915", "720", "317.76612345007106", "1668621611"], + ["8525", "0.0027739251040221915", "720", "316.84442358527025", "1668625211"], + ["8526", "0.0027739251040221915", "720", "315.9252408648159", "1668628811"], + ["8527", "0.0027739251040221915", "720", "315.00857959452514", "1668632411"], + ["8528", "0.0027739251040221915", "720", "316.79904349584433", "1668636011"], + ["8529", "0.0027739251040221915", "720", "318.3795862448603", "1668639611"], + ["8530", "0.0027739251040221915", "720", "317.93011046886903", "1668643211"], + ["8531", "0.0027739251040221915", "720", "317.027922049585", "1668646811"], + ["8532", "0.0027739251040221915", "720", "316.1481249932675", "1668650411"], + ["8533", "0.0027739251040221915", "720", "315.27049262902864", "1668654011"], + ["8534", "0.0027739251040221915", "720", "314.39524126927955", "1668657611"], + ["8535", "0.0027739251040221915", "720", "313.48859414888017", "1668661211"], + ["8536", "0.0027739251040221915", "720", "312.57794935738855", "1668664811"], + ["8537", "0.0027739251040221915", "720", "311.704227496055", "1668668411"], + ["8538", "0.0027739251040221915", "720", "310.8174874581806", "1668672011"], + ["8539", "0.0027739251040221915", "720", "309.9553030269513", "1668675611"], + ["8540", "0.0027739251040221915", "720", "309.09551023076", "1668679211"], + ["8541", "0.0027739251040221915", "720", "308.2381024353904", "1668682823"], + ["8542", "0.0027739251040221915", "720", "307.3830730250287", "1668686411"], + ["8543", "0.0027739251040221915", "720", "306.53041540221307", "1668690011"], + ["8544", "0.0027739251040221915", "720", "305.64320319758815", "1668693611"], + ["8545", "0.0027739251040221915", "720", "305.45547891975656", "1668697211"], + ["8546", "0.0027739251040221915", "720", "307.09866842911015", "1668700811"], + ["8547", "0.0027739251040221915", "720", "306.20502804559874", "1668704411"], + ["8548", "0.0027739251040221915", "720", "305.31383915957764", "1668708011"], + ["8549", "0.0027739251040221915", "720", "304.4294308411343", "1668711611"], + ["8550", "0.0027739251040221915", "720", "305.9058481990396", "1668715283"], + ["8551", "0.0027739251040221915", "720", "306.01875139324346", "1668718811"], + ["8552", "0.0027739251040221915", "720", "305.1345206739798", "1668722411"], + ["8553", "0.0027739251040221915", "720", "304.31934896059846", "1668726011"], + ["8554", "0.0027739251040221915", "720", "303.47518987887696", "1668729611"], + ["8555", "0.0027739251040221915", "720", "302.6333724312241", "1668733211"], + ["8556", "0.0027739251040221915", "720", "301.755037487536", "1668736811"], + ["8557", "0.0027739251040221915", "720", "300.8790504794218", "1668740411"], + ["8558", "0.0027739251040221915", "720", "300.00547757052703", "1668744011"], + ["8559", "0.0027739251040221915", "720", "299.13429974938936", "1668747611"], + ["8560", "0.0027739251040221915", "720", "298.265480852643", "1668751211"], + ["8561", "0.0027739251040221915", "720", "299.69008755626055", "1668754811"], + ["8562", "0.0027739251040221915", "720", "302.1725002222709", "1668758411"], + ["8563", "0.0027739251040221915", "720", "302.2504562009863", "1668762011"], + ["8564", "0.0027739251040221915", "720", "302.01055923719383", "1668765611"], + ["8565", "0.0027739251040221915", "720", "301.8546248876981", "1668769211"], + ["8566", "0.0027739251040221915", "720", "301.70044224978136", "1668772811"], + ["8567", "0.0027739251040221915", "720", "301.5609612538555", "1668776411"], + ["8568", "0.0027739251040221915", "720", "301.4223399158371", "1668780011"], + ["8569", "0.0027739251040221915", "720", "301.30111923931815", "1668783611"], + ["8570", "0.0027739251040221915", "720", "301.1951605193251", "1668787211"], + ["8571", "0.0027739251040221915", "720", "301.04636915995445", "1668790811"], + ["8572", "0.0027739251040221915", "720", "300.8036714709255", "1668794411"], + ["8573", "0.0027739251040221915", "720", "300.3418616136023", "1668798011"], + ["8574", "0.0027739251040221915", "720", "299.5087357838836", "1668801611"], + ["8575", "0.0027739251040221915", "720", "298.6779209828187", "1668805211"], + ["8576", "0.0027739251040221915", "720", "297.84941079978734", "1668808811"], + ["8577", "0.0027739251040221915", "720", "297.02319884195157", "1668812411"], + ["8578", "0.0027739251040221915", "720", "296.1992787342069", "1668816011"], + ["8579", "0.0027739251040221915", "720", "295.3776441191328", "1668819611"], + ["8580", "0.0027739251040221915", "720", "294.55828865694383", "1668823211"], + ["8581", "0.0027739251040221915", "720", "293.74120602544053", "1668826811"], + ["8582", "0.0027739251040221915", "720", "292.88615712741955", "1668830411"], + ["8583", "0.0027739251040221915", "720", "292.0737128635432", "1668834011"], + ["8584", "0.0027739251040221915", "720", "291.26352225920607", "1668837611"], + ["8585", "0.0027739251040221915", "720", "290.4124916024399", "1668841211"], + ["8586", "0.0027739251040221915", "720", "289.5678197944889", "1668844811"], + ["8587", "0.0027739251040221915", "720", "288.72542178020126", "1668848411"], + ["8588", "0.0027739251040221915", "720", "287.8853458367787", "1668852011"], + ["8589", "0.0027739251040221915", "720", "287.04756265152474", "1668855611"], + ["8590", "0.0027739251040221915", "720", "286.21201412219", "1668859211"], + ["8591", "0.0027739251040221915", "720", "285.37875810950055", "1668862811"], + ["8592", "0.0027739251040221915", "720", "284.5476275275084", "1668866423"], + ["8593", "0.0027739251040221915", "720", "283.7187280250889", "1668870011"], + ["8594", "0.0027739251040221915", "720", "282.89211721723507", "1668873611"], + ["8595", "0.0027739251040221915", "720", "282.06717000541266", "1668877211"], + ["8596", "0.0027739251040221915", "720", "281.2443661282122", "1668880811"], + ["8597", "0.0027739251040221915", "720", "280.4226554147536", "1668884411"], + ["8598", "0.0027739251040221915", "720", "279.64478397116204", "1668888011"], + ["8599", "0.0027739251040221915", "720", "279.18379252825747", "1668891611"], + ["8600", "0.0027739251040221915", "720", "278.9429354172221", "1668895211"], + ["8601", "0.0027739251040221915", "720", "278.709075626883", "1668898811"], + ["8602", "0.0027739251040221915", "720", "278.4762330232024", "1668902411"], + ["8603", "0.0027739251040221915", "720", "278.1797422755093", "1668906011"], + ["8604", "0.0027739251040221915", "720", "277.86436004797997", "1668909611"], + ["8605", "0.0027739251040221915", "720", "277.64932127114787", "1668913211"], + ["8606", "0.0027739251040221915", "720", "277.4357664520878", "1668916811"], + ["8607", "0.0027739251040221915", "720", "277.22779671435666", "1668920411"], + ["8608", "0.0027739251040221915", "720", "277.3897316222225", "1668924011"], + ["8609", "0.0027739251040221915", "720", "277.78207585905403", "1668927611"], + ["8610", "0.0027739251040221915", "720", "278.17358446693464", "1668931211"], + ["8611", "0.0027739251040221915", "720", "277.9675085211179", "1668934811"], + ["8612", "0.0027739251040221915", "720", "277.39755427834086", "1668938411"], + ["8613", "0.0027739251040221915", "720", "276.6280742387338", "1668942011"], + ["8614", "0.0027739251040221915", "720", "275.86072867912566", "1668945611"], + ["8615", "0.0027739251040221915", "720", "275.0955116786288", "1668949211"], + ["8616", "0.0027739251040221915", "720", "274.594790095609", "1668952811"], + ["8617", "0.0027739251040221915", "720", "274.0229116903507", "1668956411"], + ["8618", "0.0027739251040221915", "720", "273.4618212085467", "1668960011"], + ["8619", "0.0027739251040221915", "720", "272.84010775165757", "1668963611"], + ["8620", "0.0027739251040221915", "720", "272.1928136386155", "1668967211"], + ["8621", "0.0027739251040221915", "720", "271.4377711597289", "1668970811"], + ["8622", "0.0027739251040221915", "720", "270.6848231121291", "1668974411"], + ["8623", "0.0027739251040221915", "720", "269.93396368602055", "1668978011"], + ["8624", "0.0027739251040221915", "720", "269.3365299171273", "1668981611"], + ["8625", "0.0027739251040221915", "720", "268.87298801167066", "1668985211"], + ["8626", "0.0027739251040221915", "720", "268.4279908105287", "1668988811"], + ["8627", "0.0027739251040221915", "720", "267.985343008003", "1668992411"], + ["8628", "0.0027739251040221915", "720", "267.5024694779342", "1668996011"], + ["8629", "0.0027739251040221915", "720", "267.05711404133416", "1668999611"], + ["8630", "0.0027739251040221915", "720", "266.53692177772746", "1669003211"], + ["8631", "0.0027739251040221915", "720", "265.73645328257936", "1669006811"], + ["8632", "0.0027739251040221915", "720", "264.9320181721512", "1669010411"], + ["8633", "0.0027739251040221915", "720", "264.1308820034101", "1669014011"], + ["8634", "0.0027739251040221915", "720", "263.3336801857321", "1669017611"], + ["8635", "0.0027739251040221915", "720", "262.53642181431934", "1669021211"], + ["8636", "0.0027739251040221915", "720", "261.7413726361133", "1669024811"], + ["8637", "0.0027739251040221915", "720", "260.94852477544634", "1669028411"], + ["8638", "0.0027739251040221915", "720", "260.1578598722885", "1669032011"], + ["8639", "0.0027739251040221915", "720", "259.3692081432019", "1669035611"], + ["8640", "0.0027739251040221915", "720", "258.5836918618154", "1669039211"], + ["8641", "0.0027739251040221915", "720", "257.80031356106184", "1669042811"], + ["8642", "0.0027739251040221915", "720", "257.01909931212225", "1669046411"], + ["8643", "0.0027739251040221915", "720", "256.24004132362836", "1669050011"], + ["8644", "0.0027739251040221915", "720", "255.46311543394597", "1669053611"], + ["8645", "0.0027739251040221915", "720", "254.68828979137788", "1669057211"], + ["8646", "0.0027739251040221915", "720", "253.9818035506251", "1669060811"], + ["8647", "0.0027739251040221915", "720", "253.27727704979117", "1669064411"], + ["8648", "0.0027739251040221915", "720", "252.57470485270437", "1669068011"], + ["8649", "0.0027739251040221915", "720", "251.87408153827246", "1669071611"], + ["8650", "0.0027739251040221915", "720", "251.17540170044091", "1669075211"], + ["8651", "0.0027739251040221915", "720", "250.4786599481512", "1669078811"], + ["8652", "0.0027739251040221915", "720", "249.7838509052992", "1669082411"], + ["8653", "0.0027739251040221915", "720", "249.09096921069366", "1669086011"], + ["8654", "0.0027739251040221915", "720", "248.40000951801488", "1669089611"], + ["8655", "0.0027739251040221915", "720", "247.7109664957735", "1669093211"], + ["8656", "0.0027739251040221915", "720", "247.0238348272693", "1669096811"], + ["8657", "0.0027739251040221915", "720", "246.3386092105501", "1669100411"], + ["8658", "0.0027739251040221915", "720", "245.65528435837103", "1669104011"], + ["8659", "0.0027739251040221915", "720", "244.97385499815366", "1669107611"], + ["8660", "0.0027739251040221915", "720", "244.29431587194517", "1669111211"], + ["8661", "0.0027739251040221915", "720", "243.61666173637806", "1669114811"], + ["8662", "0.0027739251040221915", "720", "242.94088736262944", "1669118411"], + ["8663", "0.0027739251040221915", "720", "242.2669875363808", "1669122011"], + ["8664", "0.0027739251040221915", "720", "241.5949570577778", "1669125611"], + ["8665", "0.0027739251040221915", "720", "240.92479074139007", "1669129211"], + ["8666", "0.0027739251040221915", "720", "240.25648341617125", "1669132811"], + ["8667", "0.0027739251040221915", "720", "239.59002992541903", "1669136411"], + ["8668", "0.0027739251040221915", "720", "238.9254251267355", "1669140011"], + ["8669", "0.0027739251040221915", "720", "238.26266389198727", "1669143611"], + ["8670", "0.0027739251040221915", "720", "237.60174110726607", "1669147211"], + ["8671", "0.0027739251040221915", "720", "236.94265167284925", "1669150811"], + ["8672", "0.0027739251040221915", "720", "236.28539050316036", "1669154411"], + ["8673", "0.0027739251040221915", "720", "235.62995252672994", "1669158011"], + ["8674", "0.0027739251040221915", "720", "234.9763326861565", "1669161611"], + ["8675", "0.0027739251040221915", "720", "234.3245259380673", "1669165211"], + ["8676", "0.0027739251040221915", "720", "233.6745272530796", "1669168811"], + ["8677", "0.0027739251040221915", "720", "233.02633161576176", "1669172411"], + ["8678", "0.0027739251040221915", "720", "232.37993402459458", "1669176011"], + ["8679", "0.0027739251040221915", "720", "231.73532949193273", "1669179611"], + ["8680", "0.0027739251040221915", "720", "230.99602241959428", "1669183211"], + ["8681", "0.0027739251040221915", "720", "230.25990232557038", "1669186811"], + ["8682", "0.0027739251040221915", "720", "229.5215082119113", "1669190411"], + ["8683", "0.0027739251040221915", "720", "228.79144719018535", "1669194011"], + ["8684", "0.0027739251040221915", "720", "228.06728479359796", "1669197611"], + ["8685", "0.0027739251040221915", "720", "227.3439676169323", "1669201211"], + ["8686", "0.0027739251040221915", "720", "226.61701721855934", "1669204811"], + ["8687", "0.0027739251040221915", "720", "225.89193616113377", "1669208411"], + ["8688", "0.0027739251040221915", "720", "225.168046969982", "1669212011"], + ["8689", "0.0027739251040221915", "720", "224.44612127830288", "1669215611"], + ["8690", "0.0027739251040221915", "720", "223.7246853695628", "1669219211"], + ["8691", "0.0027739251040221915", "720", "223.00439230566303", "1669222811"], + ["8692", "0.0027739251040221915", "720", "222.273300188063", "1669226411"], + ["8693", "0.0027739251040221915", "720", "221.5242696433594", "1669230011"], + ["8694", "0.0027739251040221915", "720", "220.7748095089169", "1669233611"], + ["8695", "0.0027739251040221915", "720", "220.02934499513609", "1669237211"], + ["8696", "0.0027739251040221915", "720", "219.30103430487642", "1669240811"], + ["8697", "0.0027739251040221915", "720", "218.6299892145398", "1669244411"], + ["8698", "0.0027739251040221915", "720", "217.95797104757204", "1669248011"], + ["8699", "0.0027739251040221915", "720", "217.28667503524943", "1669251611"], + ["8700", "0.0027739251040221915", "720", "216.61867013787858", "1669255211"], + ["8701", "0.0027739251040221915", "720", "215.95285229229026", "1669258811"], + ["8702", "0.0027739251040221915", "720", "215.28848131331807", "1669262411"], + ["8703", "0.0027739251040221915", "720", "214.62496496026148", "1669266011"], + ["8704", "0.0027739251040221915", "720", "213.96078424879076", "1669269611"], + ["8705", "0.0027739251040221915", "720", "213.30126823627234", "1669273211"], + ["8706", "0.0027739251040221915", "720", "212.64375187604332", "1669276811"], + ["8707", "0.0027739251040221915", "720", "211.98897224194002", "1669280411"], + ["8708", "0.0027739251040221915", "720", "211.33591419343637", "1669284011"], + ["8709", "0.0027739251040221915", "720", "210.68464849187052", "1669287611"], + ["8710", "0.0027739251040221915", "720", "210.03435561923567", "1669291211"], + ["8711", "0.0027739251040221915", "720", "209.3868670051999", "1669294811"], + ["8712", "0.0027739251040221915", "720", "208.74114171748053", "1669298411"], + ["8713", "0.0027739251040221915", "720", "208.0957794107291", "1669302011"], + ["8714", "0.0027739251040221915", "720", "207.45232463391716", "1669305611"], + ["8715", "0.0027739251040221915", "720", "206.78431767264343", "1669309211"], + ["8716", "0.0027739251040221915", "720", "206.11297305410403", "1669312811"], + ["8717", "0.0027739251040221915", "720", "205.4430167941243", "1669316411"], + ["8718", "0.0027739251040221915", "720", "204.77526778210986", "1669320011"], + ["8719", "0.0027739251040221915", "720", "204.07820281370275", "1669323611"], + ["8720", "0.0027739251040221915", "720", "203.37871742352357", "1669327211"], + ["8721", "0.0027739251040221915", "720", "202.67928658876085", "1669330811"], + ["8722", "0.0027739251040221915", "720", "201.9855239533899", "1669334411"], + ["8723", "0.0027739251040221915", "720", "201.29109170791344", "1669338011"], + ["8724", "0.0027739251040221915", "720", "200.59997886492098", "1669341611"], + ["8725", "0.0027739251040221915", "720", "199.907846278501", "1669345211"], + ["8726", "0.0027739251040221915", "720", "199.20655399080684", "1669348811"], + ["8727", "0.0027739251040221915", "720", "198.47109616097998", "1669352411"], + ["8728", "0.0027739251040221915", "720", "197.79693087386977", "1669356011"], + ["8729", "0.0027739251040221915", "720", "197.11819331450928", "1669359611"], + ["8730", "0.0027739251040221915", "720", "196.44043332188207", "1669363211"], + ["8731", "0.0027739251040221915", "720", "195.78235315118675", "1669366811"], + ["8732", "0.0027739251040221915", "720", "195.1167715339156", "1669370411"], + ["8733", "0.0027739251040221915", "720", "194.44546981747888", "1669374011"], + ["8734", "0.0027739251040221915", "720", "193.77601876020293", "1669377611"], + ["8735", "0.0027739251040221915", "720", "193.10984155711733", "1669381211"], + ["8736", "0.0027739251040221915", "720", "192.44670492250748", "1669384811"], + ["8737", "0.0027739251040221915", "720", "191.78477982172123", "1669388411"], + ["8738", "0.0027739251040221915", "720", "191.12407624098694", "1669392011"], + ["8739", "0.0027739251040221915", "720", "190.437029652004", "1669395611"], + ["8740", "0.0027739251040221915", "720", "189.71784804366655", "1669399211"], + ["8741", "0.0027739251040221915", "720", "189.00325335854006", "1669402811"], + ["8742", "0.0027739251040221915", "720", "188.2904599687031", "1669406411"], + ["8743", "0.0027739251040221915", "720", "187.578587006315", "1669410023"], + ["8744", "0.0027739251040221915", "720", "186.86884901253146", "1669413611"], + ["8745", "0.0027739251040221915", "720", "186.1627723096945", "1669417211"], + ["8746", "0.0027739251040221915", "720", "185.45396989546927", "1669420811"], + ["8747", "0.0027739251040221915", "720", "184.7490109084485", "1669424411"], + ["8748", "0.0027739251040221915", "720", "184.04699037070228", "1669428011"], + ["8749", "0.0027739251040221915", "720", "183.34270368758743", "1669431611"], + ["8750", "0.0027739251040221915", "720", "182.65811784199715", "1669435211"], + ["8751", "0.0027739251040221915", "720", "181.97095618400473", "1669438811"], + ["8752", "0.0027739251040221915", "720", "181.27261878866605", "1669442411"], + ["8753", "0.0027739251040221915", "720", "180.57618044479622", "1669446011"], + ["8754", "0.0027739251040221915", "720", "179.88157402459836", "1669449611"], + ["8755", "0.0027739251040221915", "720", "179.3825960106605", "1669453211"], + ["8756", "0.0027739251040221915", "720", "178.88500212436185", "1669456811"], + ["8757", "0.0027739251040221915", "720", "178.38878852623603", "1669460411"], + ["8758", "0.0027739251040221915", "720", "177.89395138746698", "1669464011"], + ["8759", "0.0027739251040221915", "720", "177.4004868898596", "1669467611"], + ["8760", "0.0027739251040221915", "720", "176.90839122581005", "1669471211"], + ["8761", "0.0027739251040221915", "720", "176.4124541541391", "1669474811"], + ["8762", "0.0027739251040221915", "720", "175.91747591634632", "1669478411"], + ["8763", "0.0027739251040221915", "720", "175.42949401366573", "1669482011"], + ["8764", "0.0027739251040221915", "720", "174.94286573623532", "1669485611"], + ["8765", "0.0027739251040221915", "720", "174.4575873292", "1669489211"], + ["8766", "0.0027739251040221915", "720", "173.88227443983743", "1669492811"], + ["8767", "0.0027739251040221915", "720", "173.20422603133883", "1669496411"], + ["8768", "0.0027739251040221915", "720", "172.5276586717757", "1669500011"], + ["8769", "0.0027739251040221915", "720", "171.86320375928747", "1669503611"], + ["8770", "0.0027739251040221915", "720", "171.1912080919946", "1669507211"], + ["8771", "0.0027739251040221915", "720", "170.51409952962373", "1669510811"], + ["8772", "0.0027739251040221915", "720", "169.83290203131986", "1669514411"], + ["8773", "0.0027739251040221915", "720", "169.2868250788131", "1669518011"], + ["8774", "0.0027739251040221915", "720", "168.81609859814992", "1669521611"], + ["8775", "0.0027739251040221915", "720", "168.34636469815572", "1669525211"], + ["8776", "0.0027739251040221915", "720", "167.74757888423667", "1669528811"], + ["8777", "0.0027739251040221915", "720", "167.08552250373657", "1669532411"], + ["8778", "0.0027739251040221915", "720", "166.42499786440766", "1669536011"], + ["8779", "0.0027739251040221915", "720", "165.7663005759937", "1669539611"], + ["8780", "0.0027739251040221915", "720", "165.1173990561943", "1669543211"], + ["8781", "0.0027739251040221915", "720", "164.47065185806264", "1669546811"], + ["8782", "0.0027739251040221915", "720", "163.82567474798336", "1669550411"], + ["8783", "0.0027739251040221915", "720", "163.18209246767822", "1669554011"], + ["8784", "0.0027739251040221915", "720", "162.54017964174537", "1669557611"], + ["8785", "0.0027739251040221915", "720", "161.8970484274165", "1669561211"], + ["8786", "0.0027739251040221915", "720", "161.25396529730767", "1669564811"], + ["8787", "0.0027739251040221915", "720", "160.80665887484633", "1669568411"], + ["8788", "0.0027739251040221915", "720", "160.36059324689947", "1669572011"], + ["8789", "0.0027739251040221915", "720", "159.91576497159602", "1669575611"], + ["8790", "0.0027739251040221915", "720", "159.47217061661237", "1669579211"], + ["8791", "0.0027739251040221915", "720", "158.8496562998675", "1669582811"], + ["8792", "0.0027739251040221915", "720", "158.21480568191424", "1669586411"], + ["8793", "0.0027739251040221915", "720", "157.58169024996664", "1669590011"], + ["8794", "0.0027739251040221915", "720", "156.91627761094588", "1669593611"], + ["8795", "0.0027739251040221915", "720", "156.23351078405685", "1669597211"], + ["8796", "0.0027739251040221915", "720", "155.8001307264034", "1669600823"], + ["8797", "0.0027739251040221915", "720", "155.36795283257152", "1669604411"], + ["8798", "0.0027739251040221915", "720", "154.9369737678487", "1669608011"], + ["8799", "0.0027739251040221915", "720", "154.50719020677283", "1669611611"], + ["8800", "0.0027739251040221915", "720", "154.07859883310635", "1669615211"], + ["8801", "0.0027739251040221915", "720", "153.6511963398106", "1669618811"], + ["8802", "0.0027739251040221915", "720", "153.22497942902058", "1669622411"], + ["8803", "0.0027739251040221915", "720", "152.79994481201913", "1669626011"], + ["8804", "0.0027739251040221915", "720", "152.37608920921187", "1669629611"], + ["8805", "0.0027739251040221915", "720", "151.9534093501017", "1669633211"], + ["8806", "0.0027739251040221915", "720", "151.5319019732637", "1669636811"], + ["8807", "0.0027739251040221915", "720", "151.11156382631984", "1669640411"], + ["8808", "0.0027739251040221915", "720", "150.69239166591396", "1669644011"], + ["8809", "0.0027739251040221915", "720", "150.27438225768674", "1669647611"], + ["8810", "0.0027739251040221915", "720", "149.8575323762507", "1669651211"], + ["8811", "0.0027739251040221915", "720", "149.44183880516542", "1669654811"], + ["8812", "0.0027739251040221915", "720", "149.02729833691254", "1669658411"], + ["8813", "0.0027739251040221915", "720", "148.61390777287116", "1669662011"], + ["8814", "0.0027739251040221915", "720", "148.20166392329315", "1669665611"], + ["8815", "0.0027739251040221915", "720", "147.53565978307685", "1669669211"], + ["8816", "0.0027739251040221915", "720", "146.87149218657385", "1669672811"], + ["8817", "0.0027739251040221915", "720", "146.20914906386633", "1669676411"], + ["8818", "0.0027739251040221915", "720", "145.54898183043233", "1669680011"], + ["8819", "0.0027739251040221915", "720", "144.88838338893063", "1669683611"], + ["8820", "0.0027739251040221915", "720", "144.22869170663344", "1669687211"], + ["8821", "0.0027739251040221915", "720", "143.57591119497766", "1669690811"], + ["8822", "0.0027739251040221915", "720", "142.9249407376713", "1669694411"], + ["8823", "0.0027739251040221915", "720", "142.27576867088882", "1669698023"], + ["8824", "0.0027739251040221915", "720", "141.6283806530784", "1669701611"], + ["8825", "0.0027739251040221915", "720", "140.98275892307242", "1669705211"], + ["8826", "0.0027739251040221915", "720", "140.43600476345296", "1669708811"], + ["8827", "0.0027739251040221915", "720", "140.04598480527213", "1669712411"], + ["8828", "0.0027739251040221915", "720", "139.54942797060355", "1669716011"], + ["8829", "0.0027739251040221915", "720", "139.14343990138062", "1669719611"], + ["8830", "0.0027739251040221915", "720", "138.57551703990202", "1669723211"], + ["8831", "0.0027739251040221915", "720", "137.93665067562418", "1669726811"], + ["8832", "0.0027739251040221915", "720", "137.30372144662283", "1669730411"], + ["8833", "0.0027739251040221915", "720", "136.66779211927997", "1669734011"], + ["8834", "0.0027739251040221915", "720", "136.0347042437857", "1669737611"], + ["8835", "0.0027739251040221915", "720", "135.4090639069686", "1669741211"], + ["8836", "0.0027739251040221915", "720", "134.79881865491276", "1669744811"], + ["8837", "0.0027739251040221915", "720", "134.18502611242357", "1669748411"], + ["8838", "0.0027739251040221915", "720", "133.57236021326833", "1669752011"], + ["8839", "0.0027739251040221915", "720", "132.95219443974014", "1669755611"], + ["8840", "0.0027739251040221915", "720", "132.5833950099489", "1669759211"], + ["8841", "0.0027739251040221915", "720", "132.2156186021543", "1669762811"], + ["8842", "0.0027739251040221915", "720", "131.84886237856998", "1669766411"], + ["8843", "0.0027739251040221915", "720", "131.48312350928128", "1669770011"], + ["8844", "0.0027739251040221915", "720", "131.11839917222366", "1669773623"], + ["8845", "0.0027739251040221915", "720", "130.7546865531606", "1669777211"], + ["8846", "0.0027739251040221915", "720", "130.39198284566226", "1669780811"], + ["8847", "0.0027739251040221915", "720", "129.7734983745479", "1669784411"], + ["8848", "0.0027739251040221915", "720", "129.1653417461988", "1669788011"], + ["8849", "0.0027739251040221915", "720", "128.55436644837732", "1669791611"], + ["8850", "0.0027739251040221915", "720", "127.94372456429184", "1669795211"], + ["8851", "0.0027739251040221915", "720", "127.32916377786069", "1669798811"], + ["8852", "0.0027739251040221915", "720", "126.71407715689254", "1669802411"], + ["8853", "0.0027739251040221915", "720", "126.09949247165501", "1669806011"], + ["8854", "0.0027739251040221915", "720", "125.74970192388344", "1669809611"], + ["8855", "0.0027739251040221915", "720", "125.40088166889346", "1669813211"], + ["8856", "0.0027739251040221915", "720", "125.0530290151656", "1669816811"], + ["8857", "0.0027739251040221915", "720", "124.70614127864641", "1669820411"], + ["8858", "0.0027739251040221915", "720", "124.36021578272785", "1669824011"], + ["8859", "0.0027739251040221915", "720", "124.01524985822653", "1669827611"], + ["8860", "0.0027739251040221915", "720", "123.6712408433632", "1669831211"], + ["8861", "0.0027739251040221915", "720", "123.07084425705087", "1669834811"], + ["8862", "0.0027739251040221915", "720", "122.47207241349689", "1669838411"], + ["8863", "0.0027739251040221915", "720", "122.13234405728747", "1669842011"], + ["8864", "0.0027739251040221915", "720", "121.79355808209388", "1669845611"], + ["8865", "0.0027739251040221915", "720", "121.19928208863864", "1669849211"], + ["8866", "0.0027739251040221915", "720", "120.8630843574635", "1669852823"], + ["8867", "0.0027739251040221915", "720", "120.52781921361478", "1669856411"], + ["8868", "0.0027739251040221915", "720", "120.06740912297417", "1669860011"], + ["8869", "0.0027739251040221915", "720", "119.73435112263304", "1669863611"], + ["8870", "0.0027739251040221915", "720", "119.40221700024017", "1669867211"], + ["8871", "0.0027739251040221915", "720", "119.07100419302729", "1669870811"], + ["8872", "0.0027739251040221915", "720", "118.74071014533513", "1669874411"], + ["8873", "0.0027739251040221915", "720", "118.19399154694963", "1669878011"], + ["8874", "0.0027739251040221915", "720", "117.58816903049501", "1669881611"], + ["8875", "0.0027739251040221915", "720", "116.98060023437742", "1669885211"], + ["8876", "0.0027739251040221915", "720", "115.94428046377053", "1669888811"], + ["8877", "0.0027739251040221915", "720", "114.8049278666643", "1669892411"], + ["8878", "0.0027739251040221915", "720", "114.16548122102084", "1669896011"], + ["8879", "0.0027739251040221915", "720", "113.555381184128", "1669899611"], + ["8880", "0.0027739251040221915", "720", "113.24034136747626", "1669903211"], + ["8881", "0.0027739251040221915", "720", "112.92622114176898", "1669906823"], + ["8882", "0.0027739251040221915", "720", "112.59740135744894", "1669910411"], + ["8883", "0.0027739251040221915", "720", "112.02703951976484", "1669914011"], + ["8884", "0.0027739251040221915", "720", "111.39286229177937", "1669917611"], + ["8885", "0.0027739251040221915", "720", "110.94745317784964", "1669921211"], + ["8886", "0.0027739251040221915", "720", "110.63969325225227", "1669924811"], + ["8887", "0.0027739251040221915", "720", "110.33278702963854", "1669928411"], + ["8888", "0.0027739251040221915", "720", "110.02673214190028", "1669932011"], + ["8889", "0.0027739251040221915", "720", "109.72152622749834", "1669935611"], + ["8890", "0.0027739251040221915", "720", "109.29359314788255", "1669939211"], + ["8891", "0.0027739251040221915", "720", "108.86252755062284", "1669942823"], + ["8892", "0.0027739251040221915", "720", "108.4342861725884", "1669946411"], + ["8893", "0.0027739251040221915", "720", "108.00762990153397", "1669950011"], + ["8894", "0.0027739251040221915", "720", "107.57828052756932", "1669953611"], + ["8895", "0.0027739251040221915", "720", "107.15366275496775", "1669957211"], + ["8896", "0.0027739251040221915", "720", "106.68375614431787", "1669960811"], + ["8897", "0.0027739251040221915", "720", "106.25840610792176", "1669964411"], + ["8898", "0.0027739251040221915", "720", "105.9158985110249", "1669968011"], + ["8899", "0.0027739251040221915", "720", "105.62209574123011", "1669971611"], + ["8900", "0.0027739251040221915", "720", "105.32910795831408", "1669975211"], + ["8901", "0.0027739251040221915", "720", "105.03693290156424", "1669978811"], + ["8902", "0.0027739251040221915", "720", "104.7455683165391", "1669982411"], + ["8903", "0.0027739251040221915", "720", "104.45501195505078", "1669986011"], + ["8904", "0.0027739251040221915", "720", "104.16526157514772", "1669989611"], + ["8905", "0.0027739251040221915", "720", "103.87631494109739", "1669993211"], + ["8906", "0.0027739251040221915", "720", "103.58816982336896", "1669996823"], + ["8907", "0.0027739251040221915", "720", "103.07690642781085", "1670000411"], + ["8908", "0.0027739251040221915", "720", "102.77695877122899", "1670004011"], + ["8909", "0.0027739251040221915", "720", "102.24345808196792", "1670007611"], + ["8910", "0.0027739251040221915", "720", "101.71107761850217", "1670011211"], + ["8911", "0.0027739251040221915", "720", "101.42893870693906", "1670014811"], + ["8912", "0.0027739251040221915", "720", "101.14758242758555", "1670018411"], + ["8913", "0.0027739251040221915", "720", "100.71043053927013", "1670022011"], + ["8914", "0.0027739251040221915", "720", "100.27446934050037", "1670025611"], + ["8915", "0.0027739251040221915", "720", "99.83967100101579", "1670029211"], + ["8916", "0.0027739251040221915", "720", "99.4114226876507", "1670032811"], + ["8917", "0.0027739251040221915", "720", "99.13566284663086", "1670036411"], + ["8918", "0.0027739251040221915", "720", "98.8606679427567", "1670040011"], + ["8919", "0.0027739251040221915", "720", "98.36368527329851", "1670043611"], + ["8920", "0.0027739251040221915", "720", "97.8680421911254", "1670047211"], + ["8921", "0.0027739251040221915", "720", "97.37374867037926", "1670050811"], + ["8922", "0.0027739251040221915", "720", "96.87998166149062", "1670054411"], + ["8923", "0.0027739251040221915", "720", "96.38748421786688", "1670058011"], + ["8924", "0.0027739251040221915", "720", "95.89611055341216", "1670061611"], + ["8925", "0.0027739251040221915", "720", "95.52714656580042", "1670065211"], + ["8926", "0.0027739251040221915", "720", "95.26216141582594", "1670068811"], + ["8927", "0.0027739251040221915", "720", "94.99791131481118", "1670072411"], + ["8928", "0.0027739251040221915", "720", "94.73439422378534", "1670076011"], + ["8929", "0.0027739251040221915", "720", "94.47160810943365", "1670079611"], + ["8930", "0.0027739251040221915", "720", "94.00673477770181", "1670083211"], + ["8931", "0.0027739251040221915", "720", "93.57104410903021", "1670086811"], + ["8932", "0.0027739251040221915", "720", "93.11879295453554", "1670090411"], + ["8933", "0.0027739251040221915", "720", "92.63946395606669", "1670094011"], + ["8934", "0.0027739251040221915", "720", "92.162401194274", "1670097611"], + ["8935", "0.0027739251040221915", "720", "91.67512180978811", "1670101211"], + ["8936", "0.0027739251040221915", "720", "91.18916664925216", "1670104811"], + ["8937", "0.0027739251040221915", "720", "90.70889588186", "1670108411"], + ["8938", "0.0027739251040221915", "720", "90.24673255309537", "1670112011"], + ["8939", "0.0027739251040221915", "720", "89.78728912559382", "1670115611"], + ["8940", "0.0027739251040221915", "720", "89.3291007679742", "1670119211"], + ["8941", "0.0027739251040221915", "720", "88.8713083103474", "1670122811"], + ["8942", "0.0027739251040221915", "720", "88.41776940460717", "1670126411"], + ["8943", "0.0027739251040221915", "720", "87.96556506999842", "1670130011"], + ["8944", "0.0027739251040221915", "720", "87.5137530546", "1670133611"], + ["8945", "0.0027739251040221915", "720", "87.05644149961962", "1670137211"], + ["8946", "0.0027739251040221915", "720", "86.5924597542825", "1670140811"], + ["8947", "0.0027739251040221915", "720", "86.12956531507146", "1670144411"], + ["8948", "0.0027739251040221915", "720", "85.66792900861499", "1670148011"], + ["8949", "0.0027739251040221915", "720", "85.20963685671502", "1670151611"], + ["8950", "0.0027739251040221915", "720", "84.74624665068852", "1670155211"], + ["8951", "0.0027739251040221915", "720", "84.28878486862033", "1670158811"], + ["8952", "0.0027739251040221915", "720", "83.83247417908605", "1670162411"], + ["8953", "0.0027739251040221915", "720", "83.37735807946619", "1670166011"], + ["8954", "0.0027739251040221915", "720", "82.92364443288709", "1670169611"], + ["8955", "0.0027739251040221915", "720", "82.4754762409142", "1670173211"], + ["8956", "0.0027739251040221915", "720", "81.91357706442578", "1670176811"], + ["8957", "0.0027739251040221915", "720", "81.36810283323061", "1670180411"], + ["8958", "0.0027739251040221915", "720", "80.92377281888216", "1670184011"], + ["8959", "0.0027739251040221915", "720", "80.69929633394767", "1670187611"], + ["8960", "0.0027739251040221915", "720", "80.47544252997001", "1670191211"], + ["8961", "0.0027739251040221915", "720", "80.03761320245951", "1670194811"], + ["8962", "0.0027739251040221915", "720", "79.60132520279976", "1670198411"], + ["8963", "0.0027739251040221915", "720", "79.1665357827508", "1670202011"], + ["8964", "0.0027739251040221915", "720", "78.74715553997964", "1670205611"], + ["8965", "0.0027739251040221915", "720", "78.31372966026343", "1670209211"], + ["8966", "0.0027739251040221915", "720", "78.09649323956923", "1670212811"], + ["8967", "0.0027739251040221915", "720", "77.87985941643588", "1670216411"], + ["8968", "0.0027739251040221915", "720", "77.66382651930292", "1670220011"], + ["8969", "0.0027739251040221915", "720", "77.24347707492713", "1670223611"], + ["8970", "0.0027739251040221915", "720", "76.78473805400228", "1670227211"], + ["8971", "0.0027739251040221915", "720", "76.32726545012073", "1670230811"], + ["8972", "0.0027739251040221915", "720", "75.87105770284106", "1670234411"], + ["8973", "0.0027739251040221915", "720", "75.60930639114743", "1670238011"], + ["8974", "0.0027739251040221915", "720", "75.39957183805133", "1670241611"], + ["8975", "0.0027739251040221915", "720", "75.19041907289723", "1670245211"], + ["8976", "0.0027739251040221915", "720", "74.98184648184898", "1670248811"], + ["8977", "0.0027739251040221915", "720", "74.77385245554703", "1670252411"], + ["8978", "0.0027739251040221915", "720", "74.56643538909614", "1670256011"], + ["8979", "0.0027739251040221915", "720", "74.35959368205287", "1670259611"], + ["8980", "0.0027739251040221915", "720", "73.94833572490654", "1670263211"], + ["8981", "0.0027739251040221915", "720", "73.50480042418876", "1670266811"], + ["8982", "0.0027739251040221915", "720", "73.05899440284713", "1670270411"], + ["8983", "0.0027739251040221915", "720", "72.6076409615692", "1670274011"], + ["8984", "0.0027739251040221915", "720", "72.15751610074174", "1670277611"], + ["8985", "0.0027739251040221915", "720", "71.70856465242034", "1670281211"], + ["8986", "0.0027739251040221915", "720", "71.26085504270367", "1670284811"], + ["8987", "0.0027739251040221915", "720", "70.82203308545007", "1670288411"], + ["8988", "0.0027739251040221915", "720", "70.39764225147239", "1670292011"], + ["8989", "0.0027739251040221915", "720", "69.96795298854727", "1670295611"], + ["8990", "0.0027739251040221915", "720", "69.55694967395621", "1670299223"], + ["8991", "0.0027739251040221915", "720", "69.13512626424733", "1670302811"], + ["8992", "0.0027739251040221915", "720", "68.71274121753177", "1670306411"], + ["8993", "0.0027739251040221915", "720", "68.29152660958898", "1670310011"], + ["8994", "0.0027739251040221915", "720", "67.87044006108373", "1670313611"], + ["8995", "0.0027739251040221915", "720", "67.44641152256659", "1670317211"], + ["8996", "0.0027739251040221915", "720", "67.02355256496234", "1670320811"], + ["8997", "0.0027739251040221915", "720", "66.61142608041897", "1670324411"], + ["8998", "0.0027739251040221915", "720", "66.20008281624074", "1670328011"], + ["8999", "0.0027739251040221915", "720", "65.81048062280473", "1670331611"], + ["9000", "0.0027739251040221915", "720", "65.43864067448038", "1670335211"], + ["9001", "0.0027739251040221915", "720", "65.07377886183114", "1670338811"], + ["9002", "0.0027739251040221915", "720", "64.71123460037204", "1670342411"], + ["9003", "0.0027739251040221915", "720", "64.51702108975542", "1670346011"], + ["9004", "0.0027739251040221915", "720", "64.25191794087328", "1670349611"], + ["9005", "0.0027739251040221915", "720", "64.07368793271552", "1670353211"], + ["9006", "0.0027739251040221915", "720", "63.89595232125168", "1670356811"], + ["9007", "0.0027739251040221915", "720", "63.71870973506235", "1670360411"], + ["9008", "0.0027739251040221915", "720", "63.1642808280449", "1670364011"], + ["9009", "0.0027739251040221915", "720", "62.613849372360676", "1670367611"], + ["9010", "0.0027739251040221915", "720", "62.06475868184165", "1670371223"], + ["9011", "0.0027739251040221915", "720", "61.51697056608313", "1670374811"], + ["9012", "0.0027739251040221915", "720", "60.974785974175674", "1670378411"], + ["9013", "0.0027739251040221915", "720", "60.43981356950182", "1670382011"], + ["9014", "0.0027739251040221915", "720", "59.90307062615942", "1670385611"], + ["9015", "0.0027739251040221915", "720", "59.360810796013844", "1670389211"], + ["9016", "0.0027739251040221915", "720", "58.83421576654441", "1670392811"], + ["9017", "0.0027739251040221915", "720", "58.30618452869287", "1670396411"], + ["9018", "0.0027739251040221915", "720", "57.779530021103795", "1670400011"], + ["9019", "0.0027739251040221915", "720", "57.24689659560941", "1670403623"], + ["9020", "0.0027739251040221915", "720", "56.73746243703762", "1670407235"], + ["9021", "0.0027739251040221915", "720", "56.24325071576864", "1670410811"], + ["9022", "0.0027739251040221915", "720", "55.71952067423029", "1670414411"], + ["9023", "0.0027739251040221915", "720", "55.19605490654673", "1670418011"], + ["9024", "0.0027739251040221915", "720", "54.67237312296747", "1670421611"], + ["9025", "0.0027739251040221915", "720", "54.156397713954775", "1670425211"], + ["9026", "0.0027739251040221915", "720", "53.70619062373376", "1670428811"], + ["9027", "0.0027739251040221915", "720", "53.28328992194874", "1670432411"], + ["9028", "0.0027739251040221915", "720", "52.84521250902628", "1670436023"], + ["9029", "0.0027739251040221915", "720", "52.41344482461543", "1670439611"], + ["9030", "0.0027739251040221915", "720", "52.0068034955243", "1670443211"], + ["9031", "0.0027739251040221915", "720", "51.71156406060924", "1670446811"], + ["9032", "0.0027739251040221915", "720", "51.417020822739396", "1670450411"], + ["9033", "0.0027739251040221915", "720", "51.03800752862451", "1670454011"], + ["9034", "0.0027739251040221915", "720", "50.81375367736867", "1670457623"], + ["9035", "0.0027739251040221915", "720", "50.67280013041342", "1670461211"], + ["9036", "0.0027739251040221915", "720", "50.53223757804057", "1670464811"], + ["9037", "0.0027739251040221915", "720", "50.39206493566043", "1670468411"], + ["9038", "0.0027739251040221915", "720", "50.25228112169189", "1670472011"], + ["9039", "0.0027739251040221915", "720", "49.768381389588676", "1670475611"], + ["9040", "0.0027739251040221915", "720", "49.26008973881501", "1670479223"], + ["9041", "0.0027739251040221915", "720", "48.77595879210885", "1670482811"], + ["9042", "0.0027739251040221915", "720", "48.3085691409054", "1670486411"], + ["9043", "0.0027739251040221915", "720", "47.90110599498066", "1670490011"], + ["9044", "0.0027739251040221915", "720", "47.748335540694775", "1670493611"], + ["9045", "0.0027739251040221915", "720", "47.61588523406317", "1670497211"], + ["9046", "0.0027739251040221915", "720", "47.483802334662165", "1670500811"], + ["9047", "0.0027739251040221915", "720", "47.35208582333161", "1670504411"], + ["9048", "0.0027739251040221915", "720", "47.22073468373846", "1670508011"], + ["9049", "0.0027739251040221915", "720", "47.08974790236887", "1670511611"], + ["9050", "0.0027739251040221915", "720", "46.959124468520415", "1670515211"], + ["9051", "0.0027739251040221915", "720", "46.74490361351031", "1670518811"], + ["9052", "0.0027739251040221915", "720", "46.46727204604692", "1670522411"], + ["9053", "0.0027739251040221915", "720", "46.33837531360297", "1670526011"], + ["9054", "0.0027739251040221915", "720", "46.20983613104096", "1670529611"], + ["9055", "0.0027739251040221915", "720", "46.08165350654431", "1670533211"], + ["9056", "0.0027739251040221915", "720", "45.95382645104766", "1670536811"], + ["9057", "0.0027739251040221915", "720", "45.82635397822922", "1670540411"], + ["9058", "0.0027739251040221915", "720", "45.33487019162178", "1670544011"], + ["9059", "0.0027739251040221915", "720", "44.844764088623585", "1670547611"], + ["9060", "0.0027739251040221915", "720", "44.353754440063646", "1670551211"], + ["9061", "0.0027739251040221915", "720", "43.85552160778446", "1670554811"], + ["9062", "0.0027739251040221915", "720", "43.57565754529746", "1670558411"], + ["9063", "0.0027739251040221915", "720", "43.34941279466718", "1670562011"], + ["9064", "0.0027739251040221915", "720", "43.22916477027143", "1670565611"], + ["9065", "0.0027739251040221915", "720", "43.109250304889265", "1670569223"], + ["9066", "0.0027739251040221915", "720", "42.989668473252955", "1670572811"], + ["9067", "0.0027739251040221915", "720", "42.8704183526614", "1670576411"], + ["9068", "0.0027739251040221915", "720", "42.75149902297303", "1670580011"], + ["9069", "0.0027739251040221915", "720", "42.63290956659862", "1670583611"], + ["9070", "0.0027739251040221915", "720", "42.51464906849432", "1670587211"], + ["9071", "0.0027739251040221915", "720", "42.396716616154535", "1670590811"], + ["9072", "0.0027739251040221915", "720", "42.27911129960487", "1670594423"], + ["9073", "0.0027739251040221915", "720", "42.161832211395144", "1670598011"], + ["9074", "0.0027739251040221915", "720", "42.044878446592385", "1670601611"], + ["9075", "0.0027739251040221915", "720", "41.92824910277382", "1670605223"], + ["9076", "0.0027739251040221915", "720", "41.81194328001994", "1670608811"], + ["9077", "0.0027739251040221915", "720", "41.69596008090754", "1670612411"], + ["9078", "0.0027739251040221915", "720", "41.58029861050281", "1670616095"], + ["9079", "0.0027739251040221915", "720", "41.46495797635439", "1670619611"], + ["9080", "0.0027739251040221915", "720", "41.34993728848656", "1670623211"], + ["9081", "0.0027739251040221915", "720", "41.23523565939228", "1670626823"], + ["9082", "0.0027739251040221915", "720", "41.12085220402642", "1670630411"], + ["9083", "0.0027739251040221915", "720", "41.00678603979889", "1670634011"], + ["9084", "0.0027739251040221915", "720", "40.89303628656782", "1670637611"], + ["9085", "0.0027739251040221915", "720", "40.77960206663282", "1670641211"], + ["9086", "0.0027739251040221915", "720", "40.66648250472815", "1670644811"], + ["9087", "0.0027739251040221915", "720", "40.55367672801601", "1670648411"], + ["9088", "0.0027739251040221915", "720", "40.44118386607977", "1670652011"], + ["9089", "0.0027739251040221915", "720", "40.32900305091727", "1670655611"], + ["9090", "0.0027739251040221915", "720", "40.21713341693414", "1670659211"], + ["9091", "0.0027739251040221915", "720", "40.1055741009371", "1670662811"], + ["9092", "0.0027739251040221915", "720", "39.994324242127284", "1670666411"], + ["9093", "0.0027739251040221915", "720", "39.88338298209365", "1670670011"], + ["9094", "0.0027739251040221915", "720", "39.77274946480629", "1670673611"], + ["9095", "0.0027739251040221915", "720", "39.66242283660988", "1670677211"], + ["9096", "0.0027739251040221915", "720", "39.552402246217056", "1670680811"], + ["9097", "0.0027739251040221915", "720", "39.442686844701896", "1670684411"], + ["9098", "0.0027739251040221915", "720", "39.33327578549329", "1670688011"], + ["9099", "0.0027739251040221915", "720", "39.22416822436848", "1670691611"], + ["9100", "0.0027739251040221915", "720", "39.115363319446516", "1670695211"], + ["9101", "0.0027739251040221915", "720", "38.642323598506586", "1670698811"], + ["9102", "0.0027739251040221915", "720", "38.237771454255736", "1670702411"], + ["9103", "0.0027739251040221915", "720", "38.06494783216806", "1670706011"], + ["9104", "0.0027739251040221915", "720", "37.75802123717523", "1670709611"], + ["9105", "0.0027739251040221915", "720", "37.30297792694634", "1670713211"], + ["9106", "0.0027739251040221915", "720", "36.9110108869547", "1670716811"], + ["9107", "0.0027739251040221915", "720", "36.55502283822318", "1670720423"], + ["9108", "0.0027739251040221915", "720", "36.19905198513886", "1670724011"], + ["9109", "0.0027739251040221915", "720", "35.872357616110214", "1670727611"], + ["9110", "0.0027739251040221915", "720", "35.74597708836192", "1670731211"], + ["9111", "0.0027739251040221915", "720", "35.30773914547483", "1670734811"], + ["9112", "0.0027739251040221915", "720", "34.869233275452075", "1670738411"], + ["9113", "0.0027739251040221915", "720", "34.77250863391129", "1670742011"], + ["9114", "0.0027739251040221915", "720", "34.67605229928186", "1670745611"], + ["9115", "0.0027739251040221915", "720", "34.579863527300496", "1670749211"], + ["9116", "0.0027739251040221915", "720", "34.483941575768455", "1670752811"], + ["9117", "0.0027739251040221915", "720", "34.388285704545794", "1670756411"], + ["9118", "0.0027739251040221915", "720", "34.29289517554567", "1670760023"], + ["9119", "0.0027739251040221915", "720", "34.19776925272862", "1670763635"], + ["9120", "0.0027739251040221915", "720", "34.10290720209692", "1670767211"], + ["9121", "0.0027739251040221915", "720", "34.008308291688884", "1670770811"], + ["9122", "0.0027739251040221915", "720", "33.91397179157324", "1670774411"], + ["9123", "0.0027739251040221915", "720", "33.8198969738435", "1670778011"], + ["9124", "0.0027739251040221915", "720", "33.72608311261231", "1670781611"], + ["9125", "0.0027739251040221915", "720", "33.631754792804834", "1670785211"], + ["9126", "0.0027739251040221915", "720", "33.53846282389275", "1670788811"], + ["9127", "0.0027739251040221915", "720", "33.10799636533566", "1670792423"], + ["9128", "0.0027739251040221915", "720", "32.671577594965704", "1670796023"], + ["9129", "0.0027739251040221915", "720", "32.23616778365784", "1670799611"], + ["9130", "0.0027739251040221915", "720", "31.788876391302793", "1670803211"], + ["9131", "0.0027739251040221915", "720", "31.326456781106405", "1670806811"], + ["9132", "0.0027739251040221915", "720", "30.871028726746307", "1670810411"], + ["9133", "0.0027739251040221915", "720", "30.408416293716243", "1670814011"], + ["9134", "0.0027739251040221915", "720", "29.943591721274824", "1670817611"], + ["9135", "0.0027739251040221915", "720", "29.496702454360964", "1670821211"], + ["9136", "0.0027739251040221915", "720", "29.06933240022691", "1670824811"], + ["9137", "0.0027739251040221915", "720", "28.988696249324754", "1670828411"], + ["9138", "0.0027739251040221915", "720", "28.908283777065876", "1670832011"], + ["9139", "0.0027739251040221915", "720", "28.828094362982476", "1670835611"], + ["9140", "0.0027739251040221915", "720", "28.74812738832788", "1670839211"], + ["9141", "0.0027739251040221915", "720", "28.668382236071768", "1670842811"], + ["9142", "0.0027739251040221915", "720", "28.588858290895423", "1670846411"], + ["9143", "0.0027739251040221915", "720", "28.509554939186977", "1670850011"], + ["9144", "0.0027739251040221915", "720", "28.430471569036666", "1670853611"], + ["9145", "0.0027739251040221915", "720", "28.351607570232126", "1670857211"], + ["9146", "0.0027739251040221915", "720", "27.89343245490903", "1670860811"], + ["9147", "0.0027739251040221915", "720", "27.434346198679", "1670864411"], + ["9148", "0.0027739251040221915", "720", "26.989020337503543", "1670868011"], + ["9149", "0.0027739251040221915", "720", "26.55045364138482", "1670871611"], + ["9150", "0.0027739251040221915", "720", "26.11214841498262", "1670875211"], + ["9151", "0.0027739251040221915", "720", "25.682253433736246", "1670878811"], + ["9152", "0.0027739251040221915", "720", "25.611012786208548", "1670882411"], + ["9153", "0.0027739251040221915", "720", "25.35633824648842", "1670886011"], + ["9154", "0.0027739251040221915", "720", "25.28600166328041", "1670889611"], + ["9155", "0.0027739251040221915", "720", "25.21586018848629", "1670893211"], + ["9156", "0.0027739251040221915", "720", "25.145913280889932", "1670896811"], + ["9157", "0.0027739251040221915", "720", "24.73578920257119", "1670900411"], + ["9158", "0.0027739251040221915", "720", "24.32662654025791", "1670904011"], + ["9159", "0.0027739251040221915", "720", "23.89577705166044", "1670907611"], + ["9160", "0.0027739251040221915", "720", "23.477617536116515", "1670911211"], + ["9161", "0.0027739251040221915", "720", "23.061581178447756", "1670914811"], + ["9162", "0.0027739251040221915", "720", "22.646567686514796", "1670918411"], + ["9163", "0.0027739251040221915", "720", "22.225778180311615", "1670922011"], + ["9164", "0.0027739251040221915", "720", "21.80513966689499", "1670925611"], + ["9165", "0.0027739251040221915", "720", "21.385167974740117", "1670929211"], + ["9166", "0.0027739251040221915", "720", "20.96566156521023", "1670932811"], + ["9167", "0.0027739251040221915", "720", "20.547270944432036", "1670936411"], + ["9168", "0.0027739251040221915", "720", "20.146898799451602", "1670940011"], + ["9169", "0.0027739251040221915", "720", "19.758647041996937", "1670943611"], + ["9170", "0.0027739251040221915", "720", "19.36494677214701", "1670947211"], + ["9171", "0.0027739251040221915", "720", "18.96693170108966", "1670950811"], + ["9172", "0.0027739251040221915", "720", "18.569345262215247", "1670954411"], + ["9173", "0.0027739251040221915", "720", "18.172422628829157", "1670958011"], + ["9174", "0.0027739251040221915", "720", "17.77879978614633", "1670961611"], + ["9175", "0.0027739251040221915", "720", "17.35261841257111", "1670965211"], + ["9176", "0.0027739251040221915", "720", "16.976599288208895", "1670968811"], + ["9177", "0.0027739251040221915", "720", "16.61388431121713", "1670972411"], + ["9178", "0.0027739251040221915", "720", "16.251462746282982", "1670976011"], + ["9179", "0.0027739251040221915", "720", "15.899139561986692", "1670979611"], + ["9180", "0.0027739251040221915", "720", "15.696948044572231", "1670983211"], + ["9181", "0.0027739251040221915", "720", "15.652499839740258", "1670986811"], + ["9182", "0.0027739251040221915", "720", "15.609080977494099", "1670990411"], + ["9183", "0.0027739251040221915", "720", "15.565782555919913", "1670994011"], + ["9184", "0.0027739251040221915", "720", "15.522604240924297", "1670997611"], + ["9185", "0.0027739251040221915", "720", "15.479545699340596", "1671001223"], + ["9186", "0.0027739251040221915", "720", "15.436606598926335", "1671004811"], + ["9187", "0.0027739251040221915", "720", "15.393786608360658", "1671008411"], + ["9188", "0.0027739251040221915", "720", "15.351085397241766", "1671012023"], + ["9189", "0.0027739251040221915", "720", "15.30850263608437", "1671015611"], + ["9190", "0.0027739251040221915", "720", "15.266037996317145", "1671019211"], + ["9191", "0.0027739251040221915", "720", "15.223691150280205", "1671022811"], + ["9192", "0.0027739251040221915", "720", "15.097933107758859", "1671026411"], + ["9193", "0.0027739251040221915", "720", "14.97140074885505", "1671030011"], + ["9194", "0.0027739251040221915", "720", "14.873261922570197", "1671033611"], + ["9195", "0.0027739251040221915", "720", "14.496890120076698", "1671037211"], + ["9196", "0.0027739251040221915", "720", "14.120817450572927", "1671040811"], + ["9197", "0.0027739251040221915", "720", "13.73830406520357", "1671044411"], + ["9198", "0.0027739251040221915", "720", "13.328349483822537", "1671048011"], + ["9199", "0.0027739251040221915", "720", "12.919295353669046", "1671051611"], + ["9200", "0.0027739251040221915", "720", "12.561665494461161", "1671055211"], + ["9201", "0.0027739251040221915", "720", "12.174335730053299", "1671058811"], + ["9202", "0.0027739251040221915", "720", "11.787601295607727", "1671062423"], + ["9203", "0.0027739251040221915", "720", "11.461488877522758", "1671066023"], + ["9204", "0.0027739251040221915", "720", "11.054305948585428", "1671069611"], + ["9205", "0.0027739251040221915", "720", "10.645405680696898", "1671073211"], + ["9206", "0.0027739251040221915", "720", "10.234133142976788", "1671076811"], + ["9207", "0.0027739251040221915", "720", "9.823510036873323", "1671080411"], + ["9208", "0.0027739251040221915", "720", "9.429157378625689", "1671084011"], + ["9209", "0.0027739251040221915", "720", "9.324223578418863", "1671087611"], + ["9210", "0.0027739251040221915", "720", "9.29835888055917", "1671091211"], + ["9211", "0.0027739251040221915", "720", "9.26546564106712", "1671094811"], + ["9212", "0.0027739251040221915", "720", "9.159668902904233", "1671098411"], + ["9213", "0.0027739251040221915", "720", "9.053817636532264", "1671102011"], + ["9214", "0.0027739251040221915", "720", "8.947951800876366", "1671105611"], + ["9215", "0.0027739251040221915", "720", "8.845158569843681", "1671109223"], + ["9216", "0.0027739251040221915", "720", "8.741207795633377", "1671112823"], + ["9217", "0.0027739251040221915", "720", "8.63698743091605", "1671116411"], + ["9218", "0.0027739251040221915", "720", "8.613029074658309", "1671120011"], + ["9219", "0.0027739251040221915", "720", "8.58913717708644", "1671123611"], + ["9220", "0.0027739251040221915", "720", "8.56531155384903", "1671127211"], + ["9221", "0.0027739251040221915", "720", "8.541552021106037", "1671130811"], + ["9222", "0.0027739251040221915", "720", "8.301597867087343", "1671134411"], + ["9223", "0.0027739251040221915", "720", "8.230688951318552", "1671138011"], + ["9224", "0.0027739251040221915", "720", "8.140306625253986", "1671141611"], + ["9225", "0.0027739251040221915", "720", "8.098393967492955", "1671145211"], + ["9226", "0.0027739251040221915", "720", "8.075929629164264", "1671148811"], + ["9227", "0.0027739251040221915", "720", "7.78988008257638", "1671152423"], + ["9228", "0.0027739251040221915", "720", "7.768271538657999", "1671156011"], + ["9229", "0.0027739251040221915", "720", "7.746722935222055", "1671159611"], + ["9230", "0.0027739251040221915", "720", "7.725234105998138", "1671163211"], + ["9231", "0.0027739251040221915", "720", "7.578489211871629", "1671166811"], + ["9232", "0.0027739251040221915", "720", "7.556584819026779", "1671170411"], + ["9233", "0.0027739251040221915", "720", "7.305191316906269", "1671174011"], + ["9234", "0.0027739251040221915", "720", "6.9721820160768", "1671177611"], + ["9235", "0.0027739251040221915", "720", "6.623886097938885", "1671181223"], + ["9236", "0.0027739251040221915", "720", "6.270843818868911", "1671184811"], + ["9237", "0.0027739251040221915", "720", "6.040174609834614", "1671188411"], + ["9238", "0.0027739251040221915", "720", "5.957815550512811", "1671192023"], + ["9239", "0.0027739251040221915", "720", "5.8754163146803", "1671195611"], + ["9240", "0.0027739251040221915", "720", "5.832402184581723", "1671199211"], + ["9241", "0.0027739251040221915", "720", "5.8162235377451585", "1671202811"], + ["9242", "0.0027739251040221915", "720", "5.800089769263202", "1671206411"], + ["9243", "0.0027739251040221915", "720", "5.7840007546466605", "1671210011"], + ["9244", "0.0027739251040221915", "720", "5.767956369751663", "1671213611"], + ["9245", "0.0027739251040221915", "720", "5.751956490778704", "1671217211"], + ["9246", "0.0027739251040221915", "720", "5.73600099427169", "1671220811"], + ["9247", "0.0027739251040221915", "720", "5.720089757116983", "1671224411"], + ["9248", "0.0027739251040221915", "720", "5.338190540877933", "1671228011"], + ["9249", "0.0027739251040221915", "720", "4.98508811513677", "1671231611"], + ["9250", "0.0027739251040221915", "720", "4.912566999748231", "1671235211"], + ["9251", "0.0027739251040221915", "720", "4.898788589406438", "1671238811"], + ["9252", "0.0027739251040221915", "720", "4.885199716758986", "1671242411"], + ["9253", "0.0027739251040221915", "720", "4.871648538626506", "1671246011"], + ["9254", "0.0027739251040221915", "720", "4.858134950447237", "1671249611"], + ["9255", "0.0027739251040221915", "720", "4.844658847949463", "1671253211"], + ["9256", "0.0027739251040221915", "720", "4.831220127150713", "1671256811"], + ["9257", "0.0027739251040221915", "720", "4.817818684356952", "1671260411"], + ["9258", "0.0027739251040221915", "720", "4.8044544161617875", "1671264011"], + ["9259", "0.0027739251040221915", "720", "4.791127219445666", "1671267611"], + ["9260", "0.0027739251040221915", "720", "4.777836991375082", "1671271211"], + ["9261", "0.0027739251040221915", "720", "4.7645836294017805", "1671274811"], + ["9262", "0.0027739251040221915", "720", "4.75136703126197", "1671278411"], + ["9263", "0.0027739251040221915", "720", "4.738187094975529", "1671282011"], + ["9264", "0.0027739251040221915", "720", "4.725043718845222", "1671285611"], + ["9265", "0.0027739251040221915", "720", "4.620137269255145", "1671289211"], + ["9266", "0.0027739251040221915", "720", "4.264751503236875", "1671292811"], + ["9267", "0.0027739251040221915", "720", "4.25292140197963", "1671296411"], + ["9268", "0.0027739251040221915", "720", "4.241124116537245", "1671300011"], + ["9269", "0.0027739251040221915", "720", "4.229359555881108", "1671303611"], + ["9270", "0.0027739251040221915", "720", "3.8988331000736878", "1671307211"], + ["9271", "0.0027739251040221915", "720", "3.753194594322034", "1671310811"], + ["9272", "0.0027739251040221915", "720", "3.7427835136165637", "1671314411"], + ["9273", "0.0027739251040221915", "720", "3.7281722806394972", "1671318011"], + ["9274", "0.0027739251040221915", "720", "3.7178306099581113", "1671321611"], + ["9275", "0.0027739251040221915", "720", "3.7075176262966467", "1671325211"], + ["9276", "0.0027739251040221915", "720", "3.6972332500794574", "1671328811"], + ["9277", "0.0027739251040221915", "720", "3.6869774019516366", "1671332411"], + ["9278", "0.0027739251040221915", "720", "3.6767500027784004", "1671336011"], + ["9279", "0.0027739251040221915", "720", "3.6665509736444797", "1671339611"], + ["9280", "0.0027739251040221915", "720", "3.6563802358535105", "1671343211"], + ["9281", "0.0027739251040221915", "720", "3.3361728875789227", "1671346811"], + ["9282", "0.0027739251040221915", "720", "2.8742286083447977", "1671350423"], + ["9283", "0.0027739251040221915", "720", "2.7090582388579794", "1671354011"], + ["9284", "0.0027739251040221915", "720", "2.610349019285732", "1671357611"], + ["9285", "0.0027739251040221915", "720", "2.5108324095599515", "1671361211"], + ["9286", "0.0027739251040221915", "720", "2.411412409114467", "1671364823"], + ["9287", "0.0027739251040221915", "720", "2.3103275889495873", "1671368411"], + ["9288", "0.0027739251040221915", "720", "2.2094547769085118", "1671372011"], + ["9289", "0.0027739251040221915", "720", "2.106553630509869", "1671375611"], + ["9290", "0.0027739251040221915", "720", "2.001906081315588", "1671379211"], + ["9291", "0.0027739251040221915", "720", "1.89871433117989", "1671382811"], + ["9292", "0.0027739251040221915", "720", "1.8015916108529346", "1671386411"], + ["9293", "0.0027739251040221915", "720", "1.7456016368233276", "1671390011"], + ["9294", "0.0027739251040221915", "720", "1.7407594686213212", "1671393611"], + ["9295", "0.0027739251040221915", "720", "1.7359307322312483", "1671397211"], + ["9296", "0.0027739251040221915", "720", "1.7311153903942682", "1671400811"], + ["9297", "0.0027739251040221915", "720", "1.7263134059548944", "1671404411"], + ["9298", "0.0027739251040221915", "720", "1.721524741860706", "1671408011"], + ["9299", "0.0027739251040221915", "720", "1.7167493611620634", "1671411611"], + ["9300", "0.0027739251040221915", "720", "1.711987227011822", "1671415211"], + ["9301", "0.0027739251040221915", "720", "1.7072383026650484", "1671418811"], + ["9302", "0.0027739251040221915", "720", "1.7025025514787377", "1671422411"], + ["9303", "0.0027739251040221915", "720", "1.697779936911529", "1671426011"], + ["9304", "0.0027739251040221915", "720", "1.6930704225234248", "1671429611"], + ["9305", "0.0027739251040221915", "720", "1.6883739719755095", "1671433211"], + ["9306", "0.0027739251040221915", "720", "1.6836905490296692", "1671436811"], + ["9307", "0.0027739251040221915", "720", "1.6790201175483108", "1671440411"], + ["9308", "0.0027739251040221915", "720", "1.6743626414940853", "1671444011"], + ["9309", "0.0027739251040221915", "720", "1.6697180849296078", "1671447611"], + ["9310", "0.0027739251040221915", "720", "1.6650864120171818", "1671451211"], + ["9311", "0.0027739251040221915", "720", "1.660467587018521", "1671454811"], + ["9312", "0.0027739251040221915", "720", "1.6558615742944753", "1671458411"], + ["9313", "0.0027739251040221915", "720", "1.6512683383047542", "1671462011"], + ["9314", "0.0027739251040221915", "720", "1.6466878436076535", "1671465611"], + ["9315", "0.0027739251040221915", "720", "1.642120054859782", "1671469211"], + ["9316", "0.0027739251040221915", "720", "1.6375649368157883", "1671472811"], + ["9317", "0.0027739251040221915", "720", "1.6330224543280885", "1671476411"], + ["9318", "0.0027739251040221915", "720", "1.628492572346596", "1671480011"], + ["9319", "0.0027739251040221915", "720", "1.5766002496574443", "1671483611"], + ["9320", "0.0027739251040221915", "720", "1.500015066153885", "1671487211"], + ["9321", "0.0027739251040221915", "720", "1.4227857610901664", "1671490811"], + ["9322", "0.0027739251040221915", "720", "1.3457208164439203", "1671494411"], + ["9323", "0.0027739251040221915", "720", "1.2685951605546173", "1671498011"], + ["9324", "0.0027739251040221915", "720", "1.1901757184895618", "1671501611"], + ["9325", "0.0027739251040221915", "720", "1.1116636480459772", "1671505211"], + ["9326", "0.0027739251040221915", "720", "1.033249260208854", "1671508811"], + ["9327", "0.0027739251040221915", "720", "0.9543767009177976", "1671512411"], + ["9328", "0.0027739251040221915", "720", "0.8257399164019301", "1671516011"], + ["9329", "0.0027739251040221915", "720", "0.6662166971011819", "1671519611"], + ["9330", "0.0027739251040221915", "720", "0.5071017834616075", "1671523211"], + ["9331", "0.0027739251040221915", "720", "0.4291554374689797", "1671526811"], + ["9332", "0.0027739251040221915", "720", "0.4007481807136891", "1671530423"], + ["9333", "0.0027739251040221915", "720", "0.39963653527481624", "1671534011"], + ["9334", "0.0027739251040221915", "720", "0.398527973457133", "1671537611"], + ["9335", "0.0027739251040221915", "720", "0.3974224867069051", "1671541211"], + ["9336", "0.0027739251040221915", "720", "0.36081181998701545", "1671544811"], + ["9337", "0.0027739251040221915", "720", "0.33412070043969183", "1671548411"], + ["9338", "0.0027739251040221915", "720", "0.3062583238217766", "1671552011"], + ["9339", "0.0027739251040221915", "720", "0.2868882909756649", "1671555611"], + ["9340", "0.0027739251040221915", "720", "0.27126734715480677", "1671559211"], + ["9341", "0.0027739251040221915", "720", "0.27051487185063255", "1671562811"], + ["9342", "0.0027739251040221915", "720", "0.26976448385659474", "1671566411"], + ["9343", "0.0027739251040221915", "720", "0.2690161773826513", "1671570011"], + ["9344", "0.0027739251040221915", "720", "0.24778794831172002", "1671573611"], + ["9345", "0.0027739251040221915", "720", "0.20872261708659473", "1671577211"], + ["9346", "0.0027739251040221915", "720", "0.16742991859599876", "1671580811"], + ["9347", "0.0027739251040221915", "720", "0.12610086299767398", "1671584411"], + ["9348", "0.0027739251040221915", "720", "0.08255192460010241", "1671588011"], + ["9349", "0.0027739251040221915", "720", "0.03662199262808663", "1671591611"], + ["9350", "0.0027739251040221915", "720", "0.0", "1671595211"], + ["9351", "0.0027739251040221915", "720", "0.0", "1671598811"], + ["9352", "0.0027739251040221915", "720", "0.0", "1671602411"], + ["9353", "0.0027739251040221915", "720", "0.0", "1671606011"], + ["9354", "0.0027739251040221915", "720", "0.0", "1671609611"], + ["9355", "0.0027739251040221915", "720", "0.0", "1671613211"], + ["9356", "0.0027739251040221915", "720", "0.0", "1671616811"], + ["9357", "0.0027739251040221915", "720", "0.0", "1671620411"], + ["9358", "0.0027739251040221915", "720", "0.0", "1671624011"], + ["9359", "0.0027739251040221915", "720", "0.0", "1671627611"], + ["9360", "0.0027739251040221915", "720", "0.0", "1671631211"], + ["9361", "0.0027739251040221915", "720", "0.0", "1671634823"], + ["9362", "0.0027739251040221915", "720", "0.0", "1671638411"], + ["9363", "0.0027739251040221915", "720", "0.0", "1671642011"], + ["9364", "0.0027739251040221915", "720", "0.0", "1671645611"], + ["9365", "0.0027739251040221915", "720", "0.0", "1671649211"], + ["9366", "0.0027739251040221915", "720", "0.0", "1671652811"], + ["9367", "0.0027739251040221915", "720", "0.0", "1671656411"], + ["9368", "0.0027739251040221915", "720", "0.0", "1671660011"], + ["9369", "0.0027739251040221915", "720", "0.0", "1671663611"], + ["9370", "0.0027739251040221915", "720", "0.0", "1671667211"], + ["9371", "0.0027739251040221915", "720", "0.0", "1671670811"], + ["9372", "0.0027739251040221915", "720", "0.0", "1671674411"], + ["9373", "0.0027739251040221915", "720", "0.0", "1671678011"], + ["9374", "0.0027739251040221915", "720", "0.0", "1671681611"], + ["9375", "0.0027739251040221915", "720", "0.0", "1671685211"], + ["9376", "0.0027739251040221915", "720", "0.0", "1671688811"], + ["9377", "0.0027739251040221915", "720", "0.0", "1671692411"], + ["9378", "0.0027739251040221915", "720", "0.0", "1671696011"], + ["9379", "0.0027739251040221915", "720", "0.0", "1671699611"], + ["9380", "0.0027739251040221915", "720", "0.0", "1671703211"], + ["9381", "0.0027739251040221915", "720", "0.0", "1671706811"], + ["9382", "0.0027739251040221915", "720", "0.0", "1671710411"], + ["9383", "0.0027739251040221915", "720", "0.0", "1671714011"], + ["9384", "0.0027739251040221915", "720", "0.0", "1671717611"], + ["9385", "0.0027739251040221915", "720", "0.0", "1671721211"], + ["9386", "0.0027739251040221915", "720", "0.0", "1671724811"], + ["9387", "0.0027739251040221915", "720", "0.0", "1671728411"], + ["9388", "0.0027739251040221915", "720", "0.0", "1671732011"], + ["9389", "0.0027739251040221915", "720", "0.0", "1671735611"], + ["9390", "0.0027739251040221915", "720", "0.0", "1671739211"], + ["9391", "0.0027739251040221915", "720", "0.0", "1671742811"], + ["9392", "0.0027739251040221915", "720", "0.0", "1671746411"], + ["9393", "0.0027739251040221915", "720", "0.0", "1671750011"], + ["9394", "0.0027739251040221915", "720", "0.0", "1671753611"], + ["9395", "0.0027739251040221915", "720", "0.0", "1671757211"], + ["9396", "0.0027739251040221915", "720", "0.0", "1671760811"], + ["9397", "0.0027739251040221915", "720", "0.0", "1671764411"], + ["9398", "0.0027739251040221915", "720", "0.0", "1671768011"], + ["9399", "0.0027739251040221915", "720", "0.0", "1671771611"], + ["9400", "0.0027739251040221915", "720", "0.0", "1671775211"], + ["9401", "0.0027739251040221915", "720", "0.0", "1671778811"], + ["9402", "0.0027739251040221915", "720", "0.0", "1671782411"], + ["9403", "0.0027739251040221915", "720", "0.0", "1671786011"], + ["9404", "0.0027739251040221915", "720", "0.0", "1671789611"], + ["9405", "0.0027739251040221915", "720", "0.0", "1671793211"], + ["9406", "0.0027739251040221915", "720", "0.0", "1671796811"], + ["9407", "0.0027739251040221915", "720", "0.0", "1671800411"], + ["9408", "0.0027739251040221915", "720", "0.0", "1671804011"], + ["9409", "0.0027739251040221915", "720", "0.0", "1671807611"], + ["9410", "0.0027739251040221915", "720", "0.0", "1671811211"], + ["9411", "0.0027739251040221915", "720", "0.0", "1671814823"], + ["9412", "0.0027739251040221915", "720", "0.0", "1671818411"], + ["9413", "0.0027739251040221915", "720", "0.0", "1671822011"], + ["9414", "0.0027739251040221915", "720", "0.0", "1671825623"], + ["9415", "0.0027739251040221915", "720", "0.0", "1671829211"], + ["9416", "0.0027739251040221915", "720", "0.0", "1671832811"], + ["9417", "0.0027739251040221915", "720", "0.0", "1671836411"], + ["9418", "0.0027739251040221915", "720", "0.0", "1671840011"], + ["9419", "0.0027739251040221915", "720", "0.0", "1671843611"], + ["9420", "0.0027739251040221915", "720", "0.0", "1671847211"], + ["9421", "0.0027739251040221915", "720", "0.0", "1671850811"], + ["9422", "0.0027739251040221915", "720", "0.0", "1671854411"], + ["9423", "0.0027739251040221915", "720", "0.0", "1671858011"], + ["9424", "0.0027739251040221915", "720", "0.0", "1671861611"], + ["9425", "0.0027739251040221915", "720", "0.0", "1671865211"], + ["9426", "0.0027739251040221915", "720", "0.0", "1671868823"], + ["9427", "0.0027739251040221915", "720", "0.0", "1671872411"], + ["9428", "0.0027739251040221915", "720", "0.0", "1671876011"], + ["9429", "0.0027739251040221915", "720", "0.0", "1671879611"], + ["9430", "0.0027739251040221915", "720", "0.0", "1671883211"], + ["9431", "0.0027739251040221915", "720", "0.0", "1671886811"], + ["9432", "0.0027739251040221915", "720", "0.0", "1671890411"], + ["9433", "0.0027739251040221915", "720", "0.0", "1671894011"], + ["9434", "0.0027739251040221915", "720", "0.0", "1671897611"], + ["9435", "0.0027739251040221915", "720", "0.0", "1671901223"], + ["9436", "0.0027739251040221915", "720", "0.0", "1671904811"], + ["9437", "0.0027739251040221915", "720", "0.0", "1671908411"], + ["9438", "0.0027739251040221915", "720", "0.0", "1671912035"], + ["9439", "0.0027739251040221915", "720", "0.0", "1671915611"], + ["9440", "0.0027739251040221915", "720", "0.0", "1671919211"], + ["9441", "0.0027739251040221915", "720", "0.0", "1671922811"], + ["9442", "0.0027739251040221915", "720", "0.0", "1671926411"], + ["9443", "0.0027739251040221915", "720", "0.0", "1671930011"], + ["9444", "0.0027739251040221915", "720", "0.0", "1671933611"], + ["9445", "0.0027739251040221915", "720", "0.0", "1671937211"], + ["9446", "0.0027739251040221915", "720", "0.0", "1671940811"], + ["9447", "0.0027739251040221915", "720", "0.0", "1671944411"], + ["9448", "0.0027739251040221915", "720", "0.0", "1671948011"], + ["9449", "0.0027739251040221915", "720", "0.0", "1671951611"], + ["9450", "0.0027739251040221915", "720", "0.0", "1671955211"], + ["9451", "0.0027739251040221915", "720", "0.0", "1671958811"], + ["9452", "0.0027739251040221915", "720", "0.0", "1671962411"], + ["9453", "0.0027739251040221915", "720", "0.0", "1671966011"], + ["9454", "0.0027739251040221915", "720", "0.0", "1671969623"], + ["9455", "0.0027739251040221915", "720", "0.0", "1671973211"], + ["9456", "0.0027739251040221915", "720", "0.0", "1671976835"], + ["9457", "0.0027739251040221915", "720", "0.0", "1671980411"], + ["9458", "0.0027739251040221915", "720", "0.0", "1671984011"], + ["9459", "0.0027739251040221915", "720", "0.0", "1671987611"], + ["9460", "0.0027739251040221915", "720", "0.0", "1671991211"], + ["9461", "0.0027739251040221915", "720", "0.0", "1671994811"], + ["9462", "0.0027739251040221915", "720", "0.0", "1671998411"], + ["9463", "0.0027739251040221915", "720", "0.0", "1672002011"], + ["9464", "0.0027739251040221915", "720", "0.0", "1672005611"], + ["9465", "0.0027739251040221915", "720", "0.0", "1672009211"], + ["9466", "0.0027739251040221915", "720", "0.0", "1672012811"], + ["9467", "0.0027739251040221915", "720", "0.0", "1672016411"], + ["9468", "0.0027739251040221915", "720", "0.0", "1672020011"], + ["9469", "0.0027739251040221915", "720", "0.0", "1672023611"], + ["9470", "0.0027739251040221915", "720", "0.0", "1672027211"], + ["9471", "0.0027739251040221915", "720", "0.0", "1672030811"], + ["9472", "0.0027739251040221915", "720", "0.0", "1672034411"], + ["9473", "0.0027739251040221915", "720", "0.0", "1672038023"], + ["9474", "0.0027739251040221915", "720", "0.0", "1672041611"], + ["9475", "0.0027739251040221915", "720", "0.0", "1672045211"], + ["9476", "0.0027739251040221915", "720", "0.0", "1672048811"], + ["9477", "0.0027739251040221915", "720", "0.0", "1672052411"], + ["9478", "0.0027739251040221915", "720", "0.0", "1672056011"], + ["9479", "0.0027739251040221915", "720", "0.0", "1672059611"], + ["9480", "0.0027739251040221915", "720", "0.0", "1672063211"], + ["9481", "0.0027739251040221915", "720", "0.0", "1672066811"], + ["9482", "0.0027739251040221915", "720", "0.0", "1672070411"], + ["9483", "0.0027739251040221915", "720", "0.0", "1672074011"], + ["9484", "0.0027739251040221915", "720", "0.0", "1672077611"], + ["9485", "0.0027739251040221915", "720", "0.0", "1672081211"], + ["9486", "0.0027739251040221915", "720", "0.0", "1672084811"], + ["9487", "0.0027739251040221915", "720", "0.0", "1672088411"], + ["9488", "0.0027739251040221915", "720", "0.0", "1672092011"], + ["9489", "0.0027739251040221915", "720", "0.0", "1672095611"], + ["9490", "0.0027739251040221915", "720", "0.0", "1672099223"], + ["9491", "0.0027739251040221915", "720", "0.0", "1672102811"], + ["9492", "0.0027739251040221915", "720", "0.0", "1672106411"], + ["9493", "0.0027739251040221915", "720", "0.0", "1672110011"], + ["9494", "0.0027739251040221915", "720", "0.0", "1672113611"], + ["9495", "0.0027739251040221915", "720", "0.0", "1672117211"], + ["9496", "0.0027739251040221915", "720", "0.0", "1672120811"], + ["9497", "0.0027739251040221915", "720", "0.0", "1672124411"], + ["9498", "0.0027739251040221915", "720", "0.0", "1672128011"], + ["9499", "0.0027739251040221915", "720", "0.0", "1672131611"], + ["9500", "0.0027739251040221915", "720", "0.0", "1672135211"], + ["9501", "0.0027739251040221915", "720", "0.0", "1672138811"], + ["9502", "0.0027739251040221915", "720", "0.0", "1672142411"], + ["9503", "0.0027739251040221915", "720", "0.0", "1672146011"], + ["9504", "0.0027739251040221915", "720", "0.0", "1672149611"], + ["9505", "0.0027739251040221915", "720", "0.0", "1672153211"], + ["9506", "0.0027739251040221915", "720", "0.0", "1672156811"], + ["9507", "0.0027739251040221915", "720", "0.0", "1672160411"], + ["9508", "0.0027739251040221915", "720", "0.0", "1672164011"], + ["9509", "0.0027739251040221915", "720", "0.0", "1672167611"], + ["9510", "0.0027739251040221915", "720", "0.0", "1672171211"], + ["9511", "0.0027739251040221915", "720", "0.0", "1672174811"], + ["9512", "0.0027739251040221915", "720", "0.0", "1672178411"], + ["9513", "0.0027739251040221915", "720", "0.0", "1672182011"], + ["9514", "0.0027739251040221915", "720", "0.0", "1672185611"], + ["9515", "0.0027739251040221915", "720", "0.0", "1672189211"], + ["9516", "0.0027739251040221915", "720", "0.0", "1672192811"], + ["9517", "0.0027739251040221915", "720", "0.0", "1672196411"], + ["9518", "0.0027739251040221915", "720", "0.0", "1672200011"], + ["9519", "0.0027739251040221915", "720", "0.0", "1672203611"], + ["9520", "0.0027739251040221915", "720", "0.0", "1672207211"], + ["9521", "0.0027739251040221915", "720", "0.0", "1672210811"], + ["9522", "0.0027739251040221915", "720", "0.0", "1672214411"], + ["9523", "0.0027739251040221915", "720", "0.0", "1672218011"], + ["9524", "0.0027739251040221915", "720", "0.0", "1672221611"], + ["9525", "0.0027739251040221915", "720", "0.0", "1672225211"], + ["9526", "0.0027739251040221915", "720", "0.0", "1672228811"], + ["9527", "0.0027739251040221915", "720", "0.0", "1672232423"], + ["9528", "0.0027739251040221915", "720", "0.0", "1672236011"], + ["9529", "0.0027739251040221915", "720", "0.0", "1672239611"], + ["9530", "0.0027739251040221915", "720", "0.0", "1672243211"], + ["9531", "0.0027739251040221915", "720", "0.0", "1672246811"], + ["9532", "0.0027739251040221915", "720", "0.0", "1672250411"], + ["9533", "0.0027739251040221915", "720", "0.0", "1672254011"], + ["9534", "0.0027739251040221915", "720", "0.0", "1672257611"], + ["9535", "0.0027739251040221915", "720", "0.0", "1672261211"], + ["9536", "0.0027739251040221915", "720", "0.0", "1672264811"], + ["9537", "0.0027739251040221915", "720", "0.0", "1672268411"], + ["9538", "0.0027739251040221915", "720", "0.0", "1672272023"], + ["9539", "0.0027739251040221915", "720", "0.0", "1672275611"], + ["9540", "0.0027739251040221915", "720", "0.0", "1672279211"], + ["9541", "0.0027739251040221915", "720", "0.0", "1672282811"], + ["9542", "0.0027739251040221915", "720", "0.0", "1672286411"], + ["9543", "0.0027739251040221915", "720", "0.0", "1672290011"], + ["9544", "0.0027739251040221915", "720", "0.0", "1672293611"], + ["9545", "0.0027739251040221915", "720", "0.0", "1672297211"], + ["9546", "0.0027739251040221915", "720", "0.0", "1672300811"], + ["9547", "0.0027739251040221915", "720", "0.0", "1672304411"], + ["9548", "0.0027739251040221915", "720", "0.0", "1672308011"], + ["9549", "0.0027739251040221915", "720", "0.0", "1672311611"], + ["9550", "0.0027739251040221915", "720", "0.0", "1672315211"], + ["9551", "0.0027739251040221915", "720", "0.0", "1672318811"], + ["9552", "0.0027739251040221915", "720", "0.0", "1672322411"], + ["9553", "0.0027739251040221915", "720", "0.0", "1672326011"], + ["9554", "0.0027739251040221915", "720", "0.0", "1672329611"], + ["9555", "0.0027739251040221915", "720", "0.0", "1672333211"], + ["9556", "0.0027739251040221915", "720", "0.0", "1672336811"], + ["9557", "0.0027739251040221915", "720", "0.0", "1672340411"], + ["9558", "0.0027739251040221915", "720", "0.0", "1672344011"], + ["9559", "0.0027739251040221915", "720", "0.0", "1672347611"], + ["9560", "0.0027739251040221915", "720", "0.0", "1672351211"], + ["9561", "0.0027739251040221915", "720", "0.0", "1672354811"], + ["9562", "0.0027739251040221915", "720", "0.0", "1672358411"], + ["9563", "0.0027739251040221915", "720", "0.0", "1672362011"], + ["9564", "0.0027739251040221915", "720", "0.0", "1672365611"], + ["9565", "0.0027739251040221915", "720", "0.0", "1672369211"], + ["9566", "0.0027739251040221915", "720", "0.0", "1672372811"], + ["9567", "0.0027739251040221915", "720", "0.0", "1672376411"], + ["9568", "0.0027739251040221915", "720", "0.0", "1672380011"], + ["9569", "0.0027739251040221915", "720", "0.0", "1672383611"], + ["9570", "0.0027739251040221915", "720", "0.0", "1672387211"], + ["9571", "0.0027739251040221915", "720", "0.0", "1672390811"], + ["9572", "0.0027739251040221915", "720", "0.0", "1672394411"], + ["9573", "0.0027739251040221915", "720", "0.0", "1672398011"], + ["9574", "0.0027739251040221915", "720", "0.0", "1672401611"], + ["9575", "0.0027739251040221915", "720", "0.0", "1672405211"], + ["9576", "0.0027739251040221915", "720", "0.0", "1672408811"], + ["9577", "0.0027739251040221915", "720", "0.0", "1672412411"], + ["9578", "0.0027739251040221915", "720", "0.0", "1672416011"], + ["9579", "0.0027739251040221915", "720", "0.0", "1672419611"], + ["9580", "0.0027739251040221915", "720", "0.0", "1672423223"], + ["9581", "0.0027739251040221915", "720", "0.0", "1672426811"], + ["9582", "0.0027739251040221915", "720", "0.0", "1672430411"], + ["9583", "0.0027739251040221915", "720", "0.0", "1672434011"], + ["9584", "0.0027739251040221915", "720", "0.0", "1672437611"], + ["9585", "0.0027739251040221915", "720", "0.0", "1672441223"], + ["9586", "0.0027739251040221915", "720", "0.0", "1672444811"], + ["9587", "0.0027739251040221915", "720", "0.0", "1672448411"], + ["9588", "0.0027739251040221915", "720", "0.0", "1672452035"], + ["9589", "0.0027739251040221915", "720", "0.0", "1672455611"], + ["9590", "0.0027739251040221915", "720", "0.0", "1672459211"], + ["9591", "0.0027739251040221915", "720", "0.0", "1672462811"], + ["9592", "0.0027739251040221915", "720", "0.0", "1672466411"], + ["9593", "0.0027739251040221915", "720", "0.0", "1672470023"], + ["9594", "0.0027739251040221915", "720", "0.0", "1672473623"], + ["9595", "0.0027739251040221915", "720", "0.0", "1672477211"], + ["9596", "0.0027739251040221915", "720", "0.0", "1672480811"], + ["9597", "0.0027739251040221915", "720", "0.0", "1672484411"], + ["9598", "0.0027739251040221915", "720", "0.0", "1672488011"], + ["9599", "0.0027739251040221915", "720", "0.0", "1672491611"], + ["9600", "0.0027739251040221915", "720", "0.0", "1672495211"], + ["9601", "0.0027739251040221915", "720", "0.0", "1672498811"], + ["9602", "0.0027739251040221915", "720", "0.0", "1672502411"], + ["9603", "0.0027739251040221915", "720", "0.0", "1672506011"], + ["9604", "0.0027739251040221915", "720", "0.0", "1672509611"], + ["9605", "0.0027739251040221915", "720", "0.0", "1672513211"], + ["9606", "0.0027739251040221915", "720", "0.0", "1672516811"], + ["9607", "0.0027739251040221915", "720", "0.0", "1672520411"], + ["9608", "0.0027739251040221915", "720", "0.0", "1672524011"], + ["9609", "0.0027739251040221915", "720", "0.0", "1672527611"], + ["9610", "0.0027739251040221915", "720", "0.0", "1672531211"], + ["9611", "0.0027739251040221915", "720", "0.0", "1672534811"], + ["9612", "0.0027739251040221915", "720", "0.0", "1672538411"], + ["9613", "0.0027739251040221915", "720", "0.0", "1672542011"], + ["9614", "0.0027739251040221915", "720", "0.0", "1672545623"], + ["9615", "0.0027739251040221915", "720", "0.0", "1672549211"], + ["9616", "0.0027739251040221915", "720", "0.0", "1672552811"], + ["9617", "0.0027739251040221915", "720", "0.0", "1672556411"], + ["9618", "0.0027739251040221915", "720", "0.0", "1672560011"], + ["9619", "0.0027739251040221915", "720", "0.0", "1672563611"], + ["9620", "0.0027739251040221915", "720", "0.0", "1672567211"], + ["9621", "0.0027739251040221915", "720", "0.0", "1672570811"], + ["9622", "0.0027739251040221915", "720", "0.0", "1672574411"], + ["9623", "0.0027739251040221915", "720", "0.0", "1672578011"], + ["9624", "0.0027739251040221915", "720", "0.0", "1672581623"], + ["9625", "0.0027739251040221915", "720", "0.0", "1672585211"], + ["9626", "0.0027739251040221915", "720", "0.0", "1672588811"], + ["9627", "0.0027739251040221915", "720", "0.0", "1672592411"], + ["9628", "0.0027739251040221915", "720", "0.0", "1672596011"], + ["9629", "0.0027739251040221915", "720", "0.0", "1672599611"], + ["9630", "0.0027739251040221915", "720", "0.0", "1672603211"], + ["9631", "0.0027739251040221915", "720", "0.0", "1672606811"], + ["9632", "0.0027739251040221915", "720", "0.0", "1672610423"], + ["9633", "0.0027739251040221915", "720", "0.0", "1672614011"], + ["9634", "0.0027739251040221915", "720", "0.0", "1672617611"], + ["9635", "0.0027739251040221915", "720", "0.0", "1672621211"], + ["9636", "0.0027739251040221915", "720", "0.0", "1672624811"], + ["9637", "0.0027739251040221915", "720", "0.0", "1672628411"], + ["9638", "0.0027739251040221915", "720", "0.0", "1672632011"], + ["9639", "0.0027739251040221915", "720", "0.0", "1672635611"], + ["9640", "0.0027739251040221915", "720", "0.0", "1672639211"], + ["9641", "0.0027739251040221915", "720", "0.0", "1672642811"], + ["9642", "0.0027739251040221915", "720", "0.0", "1672646411"], + ["9643", "0.0027739251040221915", "720", "0.0", "1672650011"], + ["9644", "0.0027739251040221915", "720", "0.0", "1672653611"], + ["9645", "0.0027739251040221915", "720", "0.0", "1672657211"], + ["9646", "0.0027739251040221915", "720", "0.0", "1672660811"], + ["9647", "0.0027739251040221915", "720", "0.0", "1672664411"], + ["9648", "0.0027739251040221915", "720", "0.0", "1672668011"], + ["9649", "0.0027739251040221915", "720", "0.0", "1672671611"], + ["9650", "0.0027739251040221915", "720", "0.0", "1672675211"], + ["9651", "0.0027739251040221915", "720", "0.0", "1672678811"], + ["9652", "0.0027739251040221915", "720", "0.0", "1672682411"], + ["9653", "0.0027739251040221915", "720", "0.0", "1672686011"], + ["9654", "0.0027739251040221915", "720", "0.0", "1672689611"], + ["9655", "0.0027739251040221915", "720", "0.0", "1672693223"], + ["9656", "0.0027739251040221915", "720", "0.0", "1672696823"], + ["9657", "0.0027739251040221915", "720", "0.0", "1672700411"], + ["9658", "0.0027739251040221915", "720", "0.0", "1672704011"], + ["9659", "0.0027739251040221915", "720", "0.0", "1672707611"], + ["9660", "0.0027739251040221915", "720", "0.0", "1672711211"], + ["9661", "0.0027739251040221915", "720", "0.0", "1672714811"], + ["9662", "0.0027739251040221915", "720", "0.0", "1672718411"], + ["9663", "0.0027739251040221915", "720", "0.0", "1672722011"], + ["9664", "0.0027739251040221915", "720", "0.0", "1672725611"], + ["9665", "0.0027739251040221915", "720", "0.0", "1672729211"], + ["9666", "0.0027739251040221915", "720", "0.0", "1672732811"], + ["9667", "0.0027739251040221915", "720", "0.0", "1672736423"], + ["9668", "0.0027739251040221915", "720", "0.0", "1672740011"], + ["9669", "0.0027739251040221915", "720", "0.0", "1672743611"], + ["9670", "0.0027739251040221915", "720", "0.0", "1672747211"], + ["9671", "0.0027739251040221915", "720", "0.0", "1672750811"], + ["9672", "0.0027739251040221915", "720", "0.0", "1672754411"], + ["9673", "0.0027739251040221915", "720", "0.0", "1672758011"], + ["9674", "0.0027739251040221915", "720", "0.0", "1672761611"], + ["9675", "0.0027739251040221915", "720", "0.0", "1672765223"], + ["9676", "0.0027739251040221915", "720", "0.0", "1672768811"], + ["9677", "0.0027739251040221915", "720", "0.0", "1672772411"], + ["9678", "0.0027739251040221915", "720", "0.0", "1672776011"], + ["9679", "0.0027739251040221915", "720", "0.0", "1672779611"], + ["9680", "0.0027739251040221915", "720", "0.0", "1672783211"], + ["9681", "0.0027739251040221915", "720", "0.0", "1672786811"], + ["9682", "0.0027739251040221915", "720", "0.0", "1672790411"], + ["9683", "0.0027739251040221915", "720", "0.0", "1672794023"], + ["9684", "0.0027739251040221915", "720", "0.0", "1672797611"], + ["9685", "0.0027739251040221915", "720", "0.0", "1672801211"], + ["9686", "0.0027739251040221915", "720", "0.0", "1672804811"], + ["9687", "0.0027739251040221915", "720", "0.0", "1672808423"], + ["9688", "0.0027739251040221915", "720", "0.0", "1672812011"], + ["9689", "0.0027739251040221915", "720", "0.0", "1672815611"], + ["9690", "0.0027739251040221915", "720", "0.0", "1672819211"], + ["9691", "0.0027739251040221915", "720", "0.0", "1672822811"], + ["9692", "0.0027739251040221915", "720", "0.0", "1672826411"], + ["9693", "0.0027739251040221915", "720", "0.0", "1672830011"], + ["9694", "0.0027739251040221915", "720", "0.0", "1672833611"], + ["9695", "0.0027739251040221915", "720", "0.0", "1672837211"], + ["9696", "0.0027739251040221915", "720", "0.0", "1672840811"], + ["9697", "0.0027739251040221915", "720", "0.0", "1672844423"], + ["9698", "0.0027739251040221915", "720", "0.0", "1672848047"], + ["9699", "0.0027739251040221915", "720", "0.0", "1672851611"], + ["9700", "0.0027739251040221915", "720", "0.0", "1672855211"], + ["9701", "0.0027739251040221915", "720", "0.0", "1672858823"], + ["9702", "0.0027739251040221915", "720", "0.0", "1672862411"], + ["9703", "0.0027739251040221915", "720", "0.0", "1672866011"], + ["9704", "0.0027739251040221915", "720", "0.0", "1672869611"], + ["9705", "0.0027739251040221915", "720", "0.0", "1672873211"], + ["9706", "0.0027739251040221915", "720", "0.0", "1672876823"], + ["9707", "0.0027739251040221915", "720", "0.0", "1672880411"], + ["9708", "0.0027739251040221915", "720", "0.0", "1672884011"], + ["9709", "0.0027739251040221915", "720", "0.0", "1672887611"], + ["9710", "0.0027739251040221915", "720", "0.0", "1672891211"], + ["9711", "0.0027739251040221915", "720", "0.0", "1672894811"], + ["9712", "0.0027739251040221915", "720", "0.0", "1672898411"], + ["9713", "0.0027739251040221915", "720", "0.0", "1672902011"], + ["9714", "0.0027739251040221915", "720", "0.0", "1672905611"], + ["9715", "0.0027739251040221915", "720", "0.0", "1672909211"], + ["9716", "0.0027739251040221915", "720", "0.0", "1672912811"], + ["9717", "0.0027739251040221915", "720", "0.0", "1672916411"], + ["9718", "0.0027739251040221915", "720", "0.0", "1672920011"], + ["9719", "0.0027739251040221915", "720", "0.0", "1672923611"], + ["9720", "0.0027739251040221915", "720", "0.0", "1672927211"], + ["9721", "0.0027739251040221915", "720", "0.0", "1672930811"], + ["9722", "0.0027739251040221915", "720", "0.0", "1672934423"], + ["9723", "0.0027739251040221915", "720", "0.0", "1672938011"], + ["9724", "0.0027739251040221915", "720", "0.0", "1672941611"], + ["9725", "0.0027739251040221915", "720", "0.0", "1672945211"], + ["9726", "0.0027739251040221915", "720", "0.0", "1672948811"], + ["9727", "0.0027739251040221915", "720", "0.0", "1672952411"], + ["9728", "0.0027739251040221915", "720", "0.0", "1672956011"], + ["9729", "0.0027739251040221915", "720", "0.0", "1672959611"], + ["9730", "0.0027739251040221915", "720", "0.0", "1672963211"], + ["9731", "0.0027739251040221915", "720", "0.0", "1672966811"], + ["9732", "0.0027739251040221915", "720", "0.0", "1672970411"], + ["9733", "0.0027739251040221915", "720", "0.0", "1672974011"], + ["9734", "0.0027739251040221915", "720", "0.0", "1672977611"], + ["9735", "0.0027739251040221915", "720", "0.0", "1672981211"], + ["9736", "0.0027739251040221915", "720", "0.0", "1672984811"], + ["9737", "0.0027739251040221915", "720", "0.0", "1672988411"], + ["9738", "0.0027739251040221915", "720", "0.0", "1672992011"], + ["9739", "0.0027739251040221915", "720", "0.0", "1672995611"], + ["9740", "0.0027739251040221915", "720", "0.0", "1672999211"], + ["9741", "0.0027739251040221915", "720", "0.0", "1673002811"], + ["9742", "0.0027739251040221915", "720", "0.0", "1673006411"], + ["9743", "0.0027739251040221915", "720", "0.0", "1673010011"], + ["9744", "0.0027739251040221915", "720", "0.0", "1673013611"], + ["9745", "0.0027739251040221915", "720", "0.0", "1673017211"], + ["9746", "0.0027739251040221915", "720", "0.0", "1673020811"], + ["9747", "0.0027739251040221915", "720", "0.0", "1673024411"], + ["9748", "0.0027739251040221915", "720", "0.0", "1673028011"], + ["9749", "0.0027739251040221915", "720", "0.0", "1673031611"], + ["9750", "0.0027739251040221915", "720", "0.0", "1673035211"], + ["9751", "0.0027739251040221915", "720", "0.0", "1673038811"], + ["9752", "0.0027739251040221915", "720", "0.0", "1673042423"], + ["9753", "0.0027739251040221915", "720", "0.0", "1673046011"], + ["9754", "0.0027739251040221915", "720", "0.0", "1673049611"], + ["9755", "0.0027739251040221915", "720", "0.0", "1673053211"], + ["9756", "0.0027739251040221915", "720", "0.0", "1673056811"], + ["9757", "0.0027739251040221915", "720", "0.0", "1673060411"], + ["9758", "0.0027739251040221915", "720", "0.0", "1673064023"], + ["9759", "0.0027739251040221915", "720", "0.0", "1673067611"], + ["9760", "0.0027739251040221915", "720", "0.0", "1673071211"], + ["9761", "0.0027739251040221915", "720", "0.0", "1673074811"], + ["9762", "0.0027739251040221915", "720", "0.0", "1673078411"], + ["9763", "0.0027739251040221915", "720", "0.0", "1673082011"], + ["9764", "0.0027739251040221915", "720", "0.0", "1673085611"], + ["9765", "0.0027739251040221915", "720", "0.0", "1673089211"], + ["9766", "0.0027739251040221915", "720", "0.0", "1673092811"], + ["9767", "0.0027739251040221915", "720", "0.0", "1673096411"], + ["9768", "0.0027739251040221915", "720", "0.0", "1673100011"], + ["9769", "0.0027739251040221915", "720", "0.0", "1673103611"], + ["9770", "0.0027739251040221915", "720", "0.0", "1673107211"], + ["9771", "0.0027739251040221915", "720", "0.0", "1673110811"], + ["9772", "0.0027739251040221915", "720", "0.0", "1673114411"], + ["9773", "0.0027739251040221915", "720", "0.0", "1673118011"], + ["9774", "0.0027739251040221915", "720", "0.0", "1673121611"], + ["9775", "0.0027739251040221915", "720", "0.0", "1673125211"], + ["9776", "0.0027739251040221915", "720", "0.0", "1673128811"], + ["9777", "0.0027739251040221915", "720", "0.0", "1673132411"], + ["9778", "0.0027739251040221915", "720", "0.0", "1673136011"], + ["9779", "0.0027739251040221915", "720", "0.0", "1673139611"], + ["9780", "0.0027739251040221915", "720", "0.0", "1673143211"], + ["9781", "0.0027739251040221915", "720", "0.0", "1673146811"], + ["9782", "0.0027739251040221915", "720", "0.0", "1673150411"], + ["9783", "0.0027739251040221915", "720", "0.0", "1673154011"], + ["9784", "0.0027739251040221915", "720", "0.0", "1673157611"], + ["9785", "0.0027739251040221915", "720", "0.0", "1673161211"], + ["9786", "0.0027739251040221915", "720", "0.0", "1673164811"], + ["9787", "0.0027739251040221915", "720", "0.0", "1673168411"], + ["9788", "0.0027739251040221915", "720", "0.0", "1673172011"], + ["9789", "0.0027739251040221915", "720", "0.0", "1673175611"], + ["9790", "0.0027739251040221915", "720", "0.0", "1673179211"], + ["9791", "0.0027739251040221915", "720", "0.0", "1673182811"], + ["9792", "0.0027739251040221915", "720", "0.0", "1673186411"], + ["9793", "0.0027739251040221915", "720", "0.0", "1673190011"], + ["9794", "0.0027739251040221915", "720", "0.0", "1673193611"], + ["9795", "0.0027739251040221915", "720", "0.0", "1673197223"], + ["9796", "0.0027739251040221915", "720", "0.0", "1673200811"], + ["9797", "0.0027739251040221915", "720", "0.0", "1673204411"], + ["9798", "0.0027739251040221915", "720", "0.0", "1673208011"], + ["9799", "0.0027739251040221915", "720", "0.0", "1673211611"], + ["9800", "0.0027739251040221915", "720", "0.0", "1673215211"], + ["9801", "0.0027739251040221915", "720", "0.0", "1673218811"], + ["9802", "0.0027739251040221915", "720", "0.0", "1673222411"], + ["9803", "0.0027739251040221915", "720", "0.0", "1673226011"], + ["9804", "0.0027739251040221915", "720", "0.0", "1673229611"], + ["9805", "0.0027739251040221915", "720", "0.0", "1673233211"], + ["9806", "0.0027739251040221915", "720", "0.0", "1673236811"], + ["9807", "0.0027739251040221915", "720", "0.0", "1673240411"], + ["9808", "0.0027739251040221915", "720", "0.0", "1673244011"], + ["9809", "0.0027739251040221915", "720", "0.0", "1673247611"], + ["9810", "0.0027739251040221915", "720", "0.0", "1673251211"], + ["9811", "0.0027739251040221915", "720", "0.0", "1673254811"], + ["9812", "0.0027739251040221915", "720", "0.0", "1673258411"], + ["9813", "0.0027739251040221915", "720", "0.0", "1673262011"], + ["9814", "0.0027739251040221915", "720", "0.0", "1673265611"], + ["9815", "0.0027739251040221915", "720", "0.0", "1673269211"], + ["9816", "0.0027739251040221915", "720", "0.0", "1673272811"], + ["9817", "0.0027739251040221915", "720", "0.0", "1673276411"], + ["9818", "0.0027739251040221915", "720", "0.0", "1673280011"], + ["9819", "0.0027739251040221915", "720", "0.0", "1673283611"], + ["9820", "0.0027739251040221915", "720", "0.0", "1673287211"], + ["9821", "0.0027739251040221915", "720", "0.0", "1673290811"], + ["9822", "0.0027739251040221915", "720", "0.0", "1673294411"], + ["9823", "0.0027739251040221915", "720", "0.0", "1673298011"], + ["9824", "0.0027739251040221915", "720", "0.0", "1673301611"], + ["9825", "0.0027739251040221915", "720", "0.0", "1673305211"], + ["9826", "0.0027739251040221915", "720", "0.0", "1673308811"], + ["9827", "0.0027739251040221915", "720", "0.0", "1673312411"], + ["9828", "0.0027739251040221915", "720", "0.0", "1673316011"], + ["9829", "0.0027739251040221915", "720", "0.0", "1673319635"], + ["9830", "0.0027739251040221915", "720", "0.0", "1673323211"], + ["9831", "0.0027739251040221915", "720", "0.0", "1673326811"], + ["9832", "0.0027739251040221915", "720", "0.0", "1673330411"], + ["9833", "0.0027739251040221915", "720", "0.0", "1673334011"], + ["9834", "0.0027739251040221915", "720", "0.0", "1673337611"], + ["9835", "0.0027739251040221915", "720", "0.0", "1673341211"], + ["9836", "0.0027739251040221915", "720", "0.0", "1673344811"], + ["9837", "0.0027739251040221915", "720", "0.0", "1673348411"], + ["9838", "0.0027739251040221915", "720", "0.0", "1673352011"], + ["9839", "0.0027739251040221915", "720", "0.0", "1673355611"], + ["9840", "0.0027739251040221915", "720", "0.0", "1673359247"], + ["9841", "0.0027739251040221915", "720", "0.0", "1673362811"], + ["9842", "0.0027739251040221915", "720", "0.0", "1673366411"], + ["9843", "0.0027739251040221915", "720", "0.0", "1673370011"], + ["9844", "0.0027739251040221915", "720", "0.0", "1673373611"], + ["9845", "0.0027739251040221915", "720", "0.0", "1673377211"], + ["9846", "0.0027739251040221915", "720", "0.0", "1673380811"], + ["9847", "0.0027739251040221915", "720", "0.0", "1673384411"], + ["9848", "0.0027739251040221915", "720", "0.0", "1673388011"], + ["9849", "0.0027739251040221915", "720", "0.0", "1673391611"], + ["9850", "0.0027739251040221915", "720", "0.0", "1673395211"], + ["9851", "0.0027739251040221915", "720", "0.0", "1673398811"], + ["9852", "0.0027739251040221915", "720", "0.0", "1673402411"], + ["9853", "0.0027739251040221915", "720", "0.0", "1673406011"], + ["9854", "0.0027739251040221915", "720", "0.0", "1673409611"], + ["9855", "0.0027739251040221915", "720", "0.0", "1673413211"], + ["9856", "0.0027739251040221915", "720", "0.0", "1673416811"], + ["9857", "0.0027739251040221915", "720", "0.0", "1673420411"], + ["9858", "0.0027739251040221915", "720", "0.0", "1673424011"], + ["9859", "0.0027739251040221915", "720", "0.0", "1673427623"], + ["9860", "0.0027739251040221915", "720", "0.0", "1673431211"], + ["9861", "0.0027739251040221915", "720", "0.0", "1673434811"], + ["9862", "0.0027739251040221915", "720", "0.0", "1673438411"], + ["9863", "0.0027739251040221915", "720", "0.0", "1673442011"], + ["9864", "0.0027739251040221915", "720", "0.0", "1673445611"], + ["9865", "0.0027739251040221915", "720", "0.0", "1673449211"], + ["9866", "0.0027739251040221915", "720", "0.0", "1673452859"], + ["9867", "0.0027739251040221915", "720", "0.0", "1673456411"], + ["9868", "0.0027739251040221915", "720", "0.0", "1673460011"], + ["9869", "0.0027739251040221915", "720", "0.0", "1673463611"], + ["9870", "0.0027739251040221915", "720", "0.0", "1673467223"], + ["9871", "0.0027739251040221915", "720", "0.0", "1673470811"], + ["9872", "0.0027739251040221915", "720", "0.0", "1673474411"], + ["9873", "0.0027739251040221915", "720", "0.0", "1673478011"], + ["9874", "0.0027739251040221915", "720", "0.0", "1673481611"], + ["9875", "0.0027739251040221915", "720", "0.0", "1673485211"], + ["9876", "0.0027739251040221915", "720", "0.0", "1673488811"], + ["9877", "0.0027739251040221915", "720", "0.0", "1673492411"], + ["9878", "0.0027739251040221915", "720", "0.0", "1673496011"], + ["9879", "0.0027739251040221915", "720", "0.0", "1673499611"], + ["9880", "0.0027739251040221915", "720", "0.0", "1673503211"], + ["9881", "0.0027739251040221915", "720", "0.0", "1673506811"], + ["9882", "0.0027739251040221915", "720", "0.0", "1673510411"], + ["9883", "0.0027739251040221915", "720", "0.0", "1673514011"], + ["9884", "0.0027739251040221915", "720", "0.0", "1673517611"], + ["9885", "0.0027739251040221915", "720", "0.0", "1673521211"], + ["9886", "0.0027739251040221915", "720", "0.0", "1673524811"], + ["9887", "0.0027739251040221915", "720", "0.0", "1673528411"], + ["9888", "0.0027739251040221915", "720", "0.0", "1673532011"], + ["9889", "0.0027739251040221915", "720", "0.0", "1673535611"], + ["9890", "0.0027739251040221915", "720", "0.0", "1673539211"], + ["9891", "0.0027739251040221915", "720", "0.0", "1673542811"], + ["9892", "0.0027739251040221915", "720", "0.0", "1673546411"], + ["9893", "0.0027739251040221915", "720", "0.0", "1673550023"], + ["9894", "0.0027739251040221915", "720", "0.0", "1673553635"], + ["9895", "0.0027739251040221915", "720", "0.0", "1673557211"], + ["9896", "0.0027739251040221915", "720", "0.0", "1673560811"], + ["9897", "0.0027739251040221915", "720", "0.0", "1673564411"], + ["9898", "0.0027739251040221915", "720", "0.0", "1673568011"], + ["9899", "0.0027739251040221915", "720", "0.0", "1673571611"], + ["9900", "0.0027739251040221915", "720", "0.0", "1673575211"], + ["9901", "0.0027739251040221915", "720", "0.0", "1673578811"], + ["9902", "0.0027739251040221915", "720", "0.0", "1673582411"], + ["9903", "0.0027739251040221915", "720", "0.0", "1673586011"], + ["9904", "0.0027739251040221915", "720", "0.0", "1673589611"], + ["9905", "0.0027739251040221915", "720", "0.0", "1673593211"], + ["9906", "0.0027739251040221915", "720", "0.0", "1673596811"], + ["9907", "0.0027739251040221915", "720", "0.0", "1673600411"], + ["9908", "0.0027739251040221915", "720", "0.0", "1673604011"], + ["9909", "0.0027739251040221915", "720", "0.0", "1673607611"], + ["9910", "0.0027739251040221915", "720", "0.0", "1673611211"], + ["9911", "0.0027739251040221915", "720", "0.0", "1673614811"], + ["9912", "0.0027739251040221915", "720", "0.0", "1673618411"], + ["9913", "0.0027739251040221915", "720", "0.0", "1673622011"], + ["9914", "0.0027739251040221915", "720", "0.0", "1673625611"], + ["9915", "0.0027739251040221915", "720", "0.0", "1673629211"], + ["9916", "0.0027739251040221915", "720", "0.0", "1673632811"], + ["9917", "0.0027739251040221915", "720", "0.0", "1673636411"], + ["9918", "0.0027739251040221915", "720", "0.0", "1673640047"], + ["9919", "0.0027739251040221915", "720", "0.0", "1673643611"], + ["9920", "0.0027739251040221915", "720", "0.0", "1673647211"], + ["9921", "0.0027739251040221915", "720", "0.0", "1673650811"], + ["9922", "0.0027739251040221915", "720", "0.0", "1673654411"], + ["9923", "0.0027739251040221915", "720", "0.0", "1673658011"], + ["9924", "0.0027739251040221915", "720", "0.0", "1673661611"], + ["9925", "0.0027739251040221915", "720", "0.0", "1673665211"], + ["9926", "0.0027739251040221915", "720", "0.0", "1673668811"], + ["9927", "0.0027739251040221915", "720", "0.0", "1673672423"], + ["9928", "0.0027739251040221915", "720", "0.0", "1673676011"], + ["9929", "0.0027739251040221915", "720", "0.0", "1673679611"], + ["9930", "0.0027739251040221915", "720", "0.0", "1673683211"], + ["9931", "0.0027739251040221915", "720", "0.0", "1673686811"], + ["9932", "0.0027739251040221915", "720", "0.0", "1673690411"], + ["9933", "0.0027739251040221915", "720", "0.0", "1673694011"], + ["9934", "0.0027739251040221915", "720", "0.0", "1673697611"], + ["9935", "0.0027739251040221915", "720", "0.0", "1673701211"], + ["9936", "0.0027739251040221915", "720", "0.0", "1673704811"], + ["9937", "0.0027739251040221915", "720", "0.0", "1673708423"], + ["9938", "0.0027739251040221915", "720", "0.0", "1673712011"], + ["9939", "0.0027739251040221915", "720", "0.0", "1673715623"], + ["9940", "0.0027739251040221915", "720", "0.0", "1673719211"], + ["9941", "0.0027739251040221915", "720", "0.0", "1673722811"], + ["9942", "0.0027739251040221915", "720", "0.0", "1673726411"], + ["9943", "0.0027739251040221915", "720", "0.0", "1673730011"], + ["9944", "0.0027739251040221915", "720", "0.0", "1673733611"], + ["9945", "0.0027739251040221915", "720", "0.0", "1673737211"], + ["9946", "0.0027739251040221915", "720", "0.0", "1673740811"], + ["9947", "0.0027739251040221915", "720", "0.0", "1673744411"], + ["9948", "0.0027739251040221915", "720", "0.0", "1673748011"], + ["9949", "0.0027739251040221915", "720", "0.0", "1673751611"], + ["9950", "0.0027739251040221915", "720", "0.0", "1673755211"], + ["9951", "0.0027739251040221915", "720", "0.0", "1673758811"], + ["9952", "0.0027739251040221915", "720", "0.0", "1673762411"], + ["9953", "0.0027739251040221915", "720", "0.0", "1673766011"], + ["9954", "0.0027739251040221915", "720", "0.0", "1673769611"], + ["9955", "0.0027739251040221915", "720", "0.0", "1673773211"], + ["9956", "0.0027739251040221915", "720", "0.0", "1673776811"], + ["9957", "0.0027739251040221915", "720", "0.0", "1673780411"], + ["9958", "0.0027739251040221915", "720", "0.0", "1673784011"], + ["9959", "0.0027739251040221915", "720", "0.0", "1673787611"], + ["9960", "0.0027739251040221915", "720", "0.0", "1673791211"], + ["9961", "0.0027739251040221915", "720", "0.0", "1673794823"], + ["9962", "0.0027739251040221915", "720", "0.0", "1673798411"], + ["9963", "0.0027739251040221915", "720", "0.0", "1673802011"], + ["9964", "0.0027739251040221915", "720", "0.0", "1673805611"], + ["9965", "0.0027739251040221915", "720", "0.0", "1673809211"], + ["9966", "0.0027739251040221915", "720", "0.0", "1673812811"], + ["9967", "0.0027739251040221915", "720", "0.0", "1673816411"], + ["9968", "0.0027739251040221915", "720", "0.0", "1673820011"], + ["9969", "0.0027739251040221915", "720", "0.0", "1673823611"], + ["9970", "0.0027739251040221915", "720", "0.0", "1673827211"], + ["9971", "0.0027739251040221915", "720", "0.0", "1673830811"], + ["9972", "0.0027739251040221915", "720", "0.0", "1673834411"], + ["9973", "0.0027739251040221915", "720", "0.0", "1673838011"], + ["9974", "0.0027739251040221915", "720", "0.0", "1673841611"], + ["9975", "0.0027739251040221915", "720", "0.0", "1673845211"], + ["9976", "0.0027739251040221915", "720", "0.0", "1673848811"], + ["9977", "0.0027739251040221915", "720", "0.0", "1673852411"], + ["9978", "0.0027739251040221915", "720", "0.0", "1673856011"], + ["9979", "0.0027739251040221915", "720", "0.0", "1673859611"], + ["9980", "0.0027739251040221915", "720", "0.0", "1673863211"], + ["9981", "0.0027739251040221915", "720", "0.0", "1673866811"], + ["9982", "0.0027739251040221915", "720", "0.0", "1673870411"], + ["9983", "0.0027739251040221915", "720", "0.0", "1673874011"], + ["9984", "0.0027739251040221915", "720", "0.0", "1673877611"], + ["9985", "0.0027739251040221915", "720", "0.0", "1673881211"], + ["9986", "0.0027739251040221915", "720", "0.0", "1673884823"], + ["9987", "0.0027739251040221915", "720", "0.0", "1673888411"], + ["9988", "0.0027739251040221915", "720", "0.0", "1673892011"], + ["9989", "0.0027739251040221915", "720", "0.0", "1673895611"], + ["9990", "0.0027739251040221915", "720", "0.0", "1673899211"], + ["9991", "0.0027739251040221915", "720", "0.0", "1673902811"], + ["9992", "0.0027739251040221915", "720", "0.0", "1673906411"], + ["9993", "0.0027739251040221915", "720", "0.0", "1673910011"], + ["9994", "0.0027739251040221915", "720", "0.0", "1673913611"], + ["9995", "0.0027739251040221915", "720", "0.0", "1673917211"], + ["9996", "0.0027739251040221915", "720", "0.0", "1673920811"], + ["9997", "0.0027739251040221915", "720", "0.0", "1673924411"], + ["9998", "0.0027739251040221915", "720", "0.0", "1673928011"], + ["9999", "0.0027739251040221915", "720", "0.0", "1673931611"], + ["10000", "0.0027739251040221915", "720", "0.0", "1673935211"], + ["10001", "0.0027739251040221915", "720", "0.0", "1673938811"], + ["10002", "0.0027739251040221915", "720", "0.0", "1673942411"], + ["10003", "0.0027739251040221915", "720", "0.0", "1673946011"], + ["10004", "0.0027739251040221915", "720", "0.0", "1673949611"], + ["10005", "0.0027739251040221915", "720", "0.0", "1673953211"], + ["10006", "0.0027739251040221915", "720", "0.0", "1673956811"], + ["10007", "0.0027739251040221915", "720", "0.0", "1673960411"], + ["10008", "0.0027739251040221915", "720", "0.0", "1673964011"], + ["10009", "0.0027739251040221915", "720", "0.0", "1673967611"], + ["10010", "0.0027739251040221915", "720", "0.0", "1673971247"], + ["10011", "0.0027739251040221915", "720", "0.0", "1673974811"], + ["10012", "0.0027739251040221915", "720", "0.0", "1673978411"], + ["10013", "0.0027739251040221915", "720", "0.0", "1673982011"], + ["10014", "0.0027739251040221915", "720", "0.0", "1673985623"], + ["10015", "0.0027739251040221915", "720", "0.0", "1673989211"], + ["10016", "0.0027739251040221915", "720", "0.0", "1673992811"], + ["10017", "0.0027739251040221915", "720", "0.0", "1673996411"], + ["10018", "0.0027739251040221915", "720", "0.0", "1674000011"], + ["10019", "0.0027739251040221915", "720", "0.0", "1674003611"], + ["10020", "0.0027739251040221915", "720", "0.0", "1674007211"], + ["10021", "0.0027739251040221915", "720", "0.0", "1674010811"], + ["10022", "0.0027739251040221915", "720", "0.0", "1674014411"], + ["10023", "0.0027739251040221915", "720", "0.0", "1674018011"], + ["10024", "0.0027739251040221915", "720", "0.0", "1674021611"], + ["10025", "0.0027739251040221915", "720", "0.0", "1674025211"], + ["10026", "0.0027739251040221915", "720", "0.0", "1674028811"], + ["10027", "0.0027739251040221915", "720", "0.0", "1674032411"], + ["10028", "0.0027739251040221915", "720", "0.0", "1674036011"], + ["10029", "0.0027739251040221915", "720", "0.0", "1674039611"], + ["10030", "0.0027739251040221915", "720", "0.0", "1674043211"], + ["10031", "0.0027739251040221915", "720", "0.0", "1674046811"], + ["10032", "0.0027739251040221915", "720", "0.0", "1674050411"], + ["10033", "0.0027739251040221915", "720", "0.0", "1674054011"], + ["10034", "0.0027739251040221915", "720", "0.0", "1674057635"], + ["10035", "0.0027739251040221915", "720", "0.0", "1674061271"], + ["10036", "0.0027739251040221915", "720", "0.0", "1674064811"], + ["10037", "0.0027739251040221915", "720", "0.0", "1674068411"], + ["10038", "0.0027739251040221915", "720", "0.0", "1674072011"], + ["10039", "0.0027739251040221915", "720", "0.0", "1674075611"], + ["10040", "0.0027739251040221915", "720", "0.0", "1674079211"], + ["10041", "0.0027739251040221915", "720", "0.0", "1674082811"], + ["10042", "0.0027739251040221915", "720", "0.0", "1674086411"], + ["10043", "0.0027739251040221915", "720", "0.0", "1674090011"], + ["10044", "0.0027739251040221915", "720", "0.0", "1674093611"], + ["10045", "0.0027739251040221915", "720", "0.0", "1674097211"], + ["10046", "0.0027739251040221915", "720", "0.0", "1674100811"], + ["10047", "0.0027739251040221915", "720", "0.0", "1674104411"], + ["10048", "0.0027739251040221915", "720", "0.0", "1674108011"], + ["10049", "0.0027739251040221915", "720", "0.0", "1674111611"], + ["10050", "0.0027739251040221915", "720", "0.0", "1674115211"], + ["10051", "0.0027739251040221915", "720", "0.0", "1674118811"], + ["10052", "0.0027739251040221915", "720", "0.0", "1674122411"], + ["10053", "0.0027739251040221915", "720", "0.0", "1674126011"], + ["10054", "0.0027739251040221915", "720", "0.0", "1674129611"], + ["10055", "0.0027739251040221915", "720", "0.0", "1674133211"], + ["10056", "0.0027739251040221915", "720", "0.0", "1674136811"], + ["10057", "0.0027739251040221915", "720", "0.0", "1674140411"], + ["10058", "0.0027739251040221915", "720", "0.0", "1674144035"], + ["10059", "0.0027739251040221915", "720", "0.0", "1674147611"], + ["10060", "0.0027739251040221915", "720", "0.0", "1674151211"], + ["10061", "0.0027739251040221915", "720", "0.0", "1674154811"], + ["10062", "0.0027739251040221915", "720", "0.0", "1674158411"], + ["10063", "0.0027739251040221915", "720", "0.0", "1674162011"], + ["10064", "0.0027739251040221915", "720", "0.0", "1674165611"], + ["10065", "0.0027739251040221915", "720", "0.0", "1674169211"], + ["10066", "0.0027739251040221915", "720", "0.0", "1674172811"], + ["10067", "0.0027739251040221915", "720", "0.0", "1674176411"], + ["10068", "0.0027739251040221915", "720", "0.0", "1674180011"], + ["10069", "0.0027739251040221915", "720", "0.0", "1674183611"], + ["10070", "0.0027739251040221915", "720", "0.0", "1674187211"], + ["10071", "0.0027739251040221915", "720", "0.0", "1674190811"], + ["10072", "0.0027739251040221915", "720", "0.0", "1674194411"], + ["10073", "0.0027739251040221915", "720", "0.0", "1674198011"], + ["10074", "0.0027739251040221915", "720", "0.0", "1674201611"], + ["10075", "0.0027739251040221915", "720", "0.0", "1674205211"], + ["10076", "0.0027739251040221915", "720", "0.0", "1674208811"], + ["10077", "0.0027739251040221915", "720", "0.0", "1674212411"], + ["10078", "0.0027739251040221915", "720", "0.0", "1674216011"], + ["10079", "0.0027739251040221915", "720", "0.0", "1674219611"], + ["10080", "0.0027739251040221915", "720", "0.0", "1674223211"], + ["10081", "0.0027739251040221915", "720", "0.0", "1674226811"], + ["10082", "0.0027739251040221915", "720", "0.0", "1674230411"], + ["10083", "0.0027739251040221915", "720", "0.0", "1674234011"], + ["10084", "0.0027739251040221915", "720", "0.0", "1674237611"], + ["10085", "0.0027739251040221915", "720", "0.0", "1674241211"], + ["10086", "0.0027739251040221915", "720", "0.0", "1674244811"], + ["10087", "0.0027739251040221915", "720", "0.0", "1674248411"], + ["10088", "0.0027739251040221915", "720", "0.0", "1674252011"], + ["10089", "0.0027739251040221915", "720", "0.0", "1674255611"], + ["10090", "0.0027739251040221915", "720", "0.0", "1674259211"], + ["10091", "0.0027739251040221915", "720", "0.0", "1674262811"], + ["10092", "0.0027739251040221915", "720", "0.0", "1674266411"], + ["10093", "0.0027739251040221915", "720", "0.0", "1674270011"], + ["10094", "0.0027739251040221915", "720", "0.0", "1674273611"], + ["10095", "0.0027739251040221915", "720", "0.0", "1674277211"], + ["10096", "0.0027739251040221915", "720", "0.0", "1674280811"], + ["10097", "0.0027739251040221915", "720", "0.0", "1674284411"], + ["10098", "0.0027739251040221915", "720", "0.0", "1674288011"], + ["10099", "0.0027739251040221915", "720", "0.0", "1674291611"], + ["10100", "0.0027739251040221915", "720", "0.0", "1674295211"], + ["10101", "0.0027739251040221915", "720", "0.0", "1674298811"], + ["10102", "0.0027739251040221915", "720", "0.0", "1674302411"], + ["10103", "0.0027739251040221915", "720", "0.0", "1674306011"], + ["10104", "0.0027739251040221915", "720", "0.0", "1674309611"], + ["10105", "0.0027739251040221915", "720", "0.0", "1674313211"], + ["10106", "0.0027739251040221915", "720", "0.0", "1674316811"], + ["10107", "0.0027739251040221915", "720", "0.0", "1674320411"], + ["10108", "0.0027739251040221915", "720", "0.0", "1674324011"], + ["10109", "0.0027739251040221915", "720", "0.0", "1674327611"], + ["10110", "0.0027739251040221915", "720", "0.0", "1674331223"], + ["10111", "0.0027739251040221915", "720", "0.0", "1674334823"], + ["10112", "0.0027739251040221915", "720", "0.0", "1674338411"], + ["10113", "0.0027739251040221915", "720", "0.0", "1674342023"], + ["10114", "0.0027739251040221915", "720", "0.0", "1674345611"], + ["10115", "0.0027739251040221915", "720", "0.0", "1674349211"], + ["10116", "0.0027739251040221915", "720", "0.0", "1674352811"], + ["10117", "0.0027739251040221915", "720", "0.0", "1674356411"], + ["10118", "0.0027739251040221915", "720", "0.0", "1674360011"], + ["10119", "0.0027739251040221915", "720", "0.0", "1674363611"], + ["10120", "0.0027739251040221915", "720", "0.0", "1674367211"], + ["10121", "0.0027739251040221915", "720", "0.0", "1674370811"], + ["10122", "0.0027739251040221915", "720", "0.0", "1674374411"], + ["10123", "0.0027739251040221915", "720", "0.0", "1674378011"], + ["10124", "0.0027739251040221915", "720", "0.0", "1674381611"], + ["10125", "0.0027739251040221915", "720", "0.0", "1674385211"], + ["10126", "0.0027739251040221915", "720", "0.0", "1674388811"], + ["10127", "0.0027739251040221915", "720", "0.0", "1674392411"], + ["10128", "0.0027739251040221915", "720", "0.0", "1674396023"], + ["10129", "0.0027739251040221915", "720", "0.0", "1674399611"], + ["10130", "0.0027739251040221915", "720", "0.0", "1674403211"], + ["10131", "0.0027739251040221915", "720", "0.0", "1674406811"], + ["10132", "0.0027739251040221915", "720", "0.0", "1674410411"], + ["10133", "0.0027739251040221915", "720", "0.0", "1674414011"], + ["10134", "0.0027739251040221915", "720", "0.0", "1674417611"], + ["10135", "0.0027739251040221915", "720", "0.0", "1674421211"], + ["10136", "0.0027739251040221915", "720", "0.0", "1674424811"], + ["10137", "0.0027739251040221915", "720", "0.0", "1674428411"], + ["10138", "0.0027739251040221915", "720", "0.0", "1674432011"], + ["10139", "0.0027739251040221915", "720", "0.0", "1674435611"], + ["10140", "0.0027739251040221915", "720", "0.0", "1674439211"], + ["10141", "0.0027739251040221915", "720", "0.0", "1674442823"], + ["10142", "0.0027739251040221915", "720", "0.0", "1674446411"], + ["10143", "0.0027739251040221915", "720", "0.0", "1674450011"], + ["10144", "0.0027739251040221915", "720", "0.0", "1674453611"], + ["10145", "0.0027739251040221915", "720", "0.0", "1674457211"], + ["10146", "0.0027739251040221915", "720", "0.0", "1674460811"], + ["10147", "0.0027739251040221915", "720", "0.0", "1674464411"], + ["10148", "0.0027739251040221915", "720", "0.0", "1674468011"], + ["10149", "0.0027739251040221915", "720", "0.0", "1674471611"], + ["10150", "0.0027739251040221915", "720", "0.0", "1674475211"], + ["10151", "0.0027739251040221915", "720", "0.0", "1674478811"], + ["10152", "0.0027739251040221915", "720", "0.0", "1674482411"], + ["10153", "0.0027739251040221915", "720", "0.0", "1674486011"], + ["10154", "0.0027739251040221915", "720", "0.0", "1674489611"], + ["10155", "0.0027739251040221915", "720", "0.0", "1674493211"], + ["10156", "0.0027739251040221915", "720", "0.0", "1674496811"], + ["10157", "0.0027739251040221915", "720", "0.0", "1674500411"], + ["10158", "0.0027739251040221915", "720", "0.0", "1674504011"], + ["10159", "0.0027739251040221915", "720", "0.0", "1674507611"], + ["10160", "0.0027739251040221915", "720", "0.0", "1674511211"], + ["10161", "0.0027739251040221915", "720", "0.0", "1674514811"], + ["10162", "0.0027739251040221915", "720", "0.0", "1674518435"], + ["10163", "0.0027739251040221915", "720", "0.0", "1674522011"], + ["10164", "0.0027739251040221915", "720", "0.0", "1674525611"], + ["10165", "0.0027739251040221915", "720", "0.0", "1674529211"], + ["10166", "0.0027739251040221915", "720", "0.0", "1674532811"], + ["10167", "0.0027739251040221915", "720", "0.0", "1674536411"], + ["10168", "0.0027739251040221915", "720", "0.0", "1674540023"], + ["10169", "0.0027739251040221915", "720", "0.0", "1674543623"], + ["10170", "0.0027739251040221915", "720", "0.0", "1674547211"], + ["10171", "0.0027739251040221915", "720", "0.0", "1674550811"], + ["10172", "0.0027739251040221915", "720", "0.0", "1674554411"], + ["10173", "0.0027739251040221915", "720", "0.0", "1674558011"], + ["10174", "0.0027739251040221915", "720", "0.0", "1674561611"], + ["10175", "0.0027739251040221915", "720", "0.0", "1674565211"], + ["10176", "0.0027739251040221915", "720", "0.0", "1674568811"], + ["10177", "0.0027739251040221915", "720", "0.0", "1674572411"], + ["10178", "0.0027739251040221915", "720", "0.0", "1674576035"], + ["10179", "0.0027739251040221915", "720", "0.0", "1674579611"], + ["10180", "0.0027739251040221915", "720", "0.0", "1674583211"], + ["10181", "0.0027739251040221915", "720", "0.0", "1674586811"], + ["10182", "0.0027739251040221915", "720", "0.0", "1674590411"], + ["10183", "0.0027739251040221915", "720", "0.0", "1674594011"], + ["10184", "0.0027739251040221915", "720", "0.0", "1674597623"], + ["10185", "0.0027739251040221915", "720", "0.0", "1674601211"], + ["10186", "0.0027739251040221915", "720", "0.0", "1674604811"], + ["10187", "0.0027739251040221915", "720", "0.0", "1674608411"], + ["10188", "0.0027739251040221915", "720", "0.0", "1674612011"], + ["10189", "0.0027739251040221915", "720", "0.0", "1674615611"], + ["10190", "0.0027739251040221915", "720", "0.0", "1674619211"], + ["10191", "0.0027739251040221915", "720", "0.0", "1674622811"], + ["10192", "0.0027739251040221915", "720", "0.0", "1674626411"], + ["10193", "0.0027739251040221915", "720", "0.0", "1674630011"], + ["10194", "0.0027739251040221915", "720", "0.0", "1674633611"], + ["10195", "0.0027739251040221915", "720", "0.0", "1674637211"], + ["10196", "0.0027739251040221915", "720", "0.0", "1674640811"], + ["10197", "0.0027739251040221915", "720", "0.0", "1674644411"], + ["10198", "0.0027739251040221915", "720", "0.0", "1674648011"], + ["10199", "0.0027739251040221915", "720", "0.0", "1674651611"], + ["10200", "0.0027739251040221915", "720", "0.0", "1674655211"], + ["10201", "0.0027739251040221915", "720", "0.0", "1674658811"], + ["10202", "0.0027739251040221915", "720", "0.0", "1674662423"], + ["10203", "0.0027739251040221915", "720", "0.0", "1674666131"], + ["10204", "0.0027739251040221915", "720", "0.0", "1674669611"], + ["10205", "0.0027739251040221915", "720", "0.0", "1674673211"], + ["10206", "0.0027739251040221915", "720", "0.0", "1674676811"], + ["10207", "0.0027739251040221915", "720", "0.0", "1674680411"], + ["10208", "0.0027739251040221915", "720", "0.0", "1674684011"], + ["10209", "0.0027739251040221915", "720", "0.0", "1674687611"], + ["10210", "0.0027739251040221915", "720", "0.0", "1674691211"], + ["10211", "0.0027739251040221915", "720", "0.0", "1674694811"], + ["10212", "0.0027739251040221915", "720", "0.0", "1674698411"], + ["10213", "0.0027739251040221915", "720", "0.0", "1674702011"], + ["10214", "0.0027739251040221915", "720", "0.0", "1674705611"], + ["10215", "0.0027739251040221915", "720", "0.0", "1674709211"], + ["10216", "0.0027739251040221915", "720", "0.0", "1674712811"], + ["10217", "0.0027739251040221915", "720", "0.0", "1674716411"], + ["10218", "0.0027739251040221915", "720", "0.0", "1674720011"], + ["10219", "0.0027739251040221915", "720", "0.0", "1674723611"], + ["10220", "0.0027739251040221915", "720", "0.0", "1674727211"], + ["10221", "0.0027739251040221915", "720", "0.0", "1674730811"], + ["10222", "0.0027739251040221915", "720", "0.0", "1674734411"], + ["10223", "0.0027739251040221915", "720", "0.0", "1674738023"], + ["10224", "0.0027739251040221915", "720", "0.0", "1674741611"], + ["10225", "0.0027739251040221915", "720", "0.0", "1674745211"], + ["10226", "0.0027739251040221915", "720", "0.0", "1674748835"], + ["10227", "0.0027739251040221915", "720", "0.0", "1674752411"], + ["10228", "0.0027739251040221915", "720", "0.0", "1674756011"], + ["10229", "0.0027739251040221915", "720", "0.0", "1674759611"], + ["10230", "0.0027739251040221915", "720", "0.0", "1674763211"], + ["10231", "0.0027739251040221915", "720", "0.0", "1674766811"], + ["10232", "0.0027739251040221915", "720", "0.0", "1674770423"], + ["10233", "0.0027739251040221915", "720", "0.0", "1674774011"], + ["10234", "0.0027739251040221915", "720", "0.0", "1674777611"], + ["10235", "0.0027739251040221915", "720", "0.0", "1674781211"], + ["10236", "0.0027739251040221915", "720", "0.0", "1674784811"], + ["10237", "0.0027739251040221915", "720", "0.0", "1674788411"], + ["10238", "0.0027739251040221915", "720", "0.0", "1674792011"], + ["10239", "0.0027739251040221915", "720", "0.0", "1674795611"], + ["10240", "0.0027739251040221915", "720", "0.0", "1674799235"], + ["10241", "0.0027739251040221915", "720", "0.0", "1674802811"], + ["10242", "0.0027739251040221915", "720", "0.0", "1674806411"], + ["10243", "0.0027739251040221915", "720", "0.0", "1674810011"], + ["10244", "0.0027739251040221915", "720", "0.0", "1674813611"], + ["10245", "0.0027739251040221915", "720", "0.0", "1674817211"], + ["10246", "0.0027739251040221915", "720", "0.0", "1674820811"], + ["10247", "0.0027739251040221915", "720", "0.0", "1674824411"], + ["10248", "0.0027739251040221915", "720", "0.0", "1674828011"], + ["10249", "0.0027739251040221915", "720", "0.0", "1674831623"], + ["10250", "0.0027739251040221915", "720", "0.0", "1674835247"], + ["10251", "0.0027739251040221915", "720", "0.0", "1674838811"], + ["10252", "0.0027739251040221915", "720", "0.0", "1674842423"], + ["10253", "0.0027739251040221915", "720", "0.0", "1674846011"], + ["10254", "0.0027739251040221915", "720", "0.0", "1674849611"], + ["10255", "0.0027739251040221915", "720", "0.0", "1674853223"], + ["10256", "0.0027739251040221915", "720", "0.0", "1674856823"], + ["10257", "0.0027739251040221915", "720", "0.0", "1674860411"], + ["10258", "0.0027739251040221915", "720", "0.0", "1674864011"], + ["10259", "0.0027739251040221915", "720", "0.0", "1674867611"], + ["10260", "0.0027739251040221915", "720", "0.0", "1674871211"], + ["10261", "0.0027739251040221915", "720", "0.0", "1674874811"], + ["10262", "0.0027739251040221915", "720", "0.0", "1674878411"], + ["10263", "0.0027739251040221915", "720", "0.0", "1674882011"], + ["10264", "0.0027739251040221915", "720", "0.0", "1674885611"], + ["10265", "0.0027739251040221915", "720", "0.0", "1674889211"], + ["10266", "0.0027739251040221915", "720", "0.0", "1674892811"], + ["10267", "0.0027739251040221915", "720", "0.0", "1674896411"], + ["10268", "0.0027739251040221915", "720", "0.0", "1674900011"], + ["10269", "0.0027739251040221915", "720", "0.0", "1674903611"], + ["10270", "0.0027739251040221915", "720", "0.0", "1674907211"], + ["10271", "0.0027739251040221915", "720", "0.0", "1674910811"], + ["10272", "0.0027739251040221915", "720", "0.0", "1674914411"], + ["10273", "0.0027739251040221915", "720", "0.0", "1674918035"], + ["10274", "0.0027739251040221915", "720", "0.0", "1674921611"], + ["10275", "0.0027739251040221915", "720", "0.0", "1674925211"], + ["10276", "0.0027739251040221915", "720", "0.0", "1674928811"], + ["10277", "0.0027739251040221915", "720", "0.0", "1674932411"], + ["10278", "0.0027739251040221915", "720", "0.0", "1674936011"], + ["10279", "0.0027739251040221915", "720", "0.0", "1674939611"], + ["10280", "0.0027739251040221915", "720", "0.0", "1674943211"], + ["10281", "0.0027739251040221915", "720", "0.0", "1674946811"], + ["10282", "0.0027739251040221915", "720", "0.0", "1674950411"], + ["10283", "0.0027739251040221915", "720", "0.0", "1674954011"], + ["10284", "0.0027739251040221915", "720", "0.0", "1674957611"], + ["10285", "0.0027739251040221915", "720", "0.0", "1674961211"], + ["10286", "0.0027739251040221915", "720", "0.0", "1674964811"], + ["10287", "0.0027739251040221915", "720", "0.0", "1674968411"], + ["10288", "0.0027739251040221915", "720", "0.0", "1674972011"], + ["10289", "0.0027739251040221915", "720", "0.0", "1674975611"], + ["10290", "0.0027739251040221915", "720", "0.0", "1674979211"], + ["10291", "0.0027739251040221915", "720", "0.0", "1674982811"], + ["10292", "0.0027739251040221915", "720", "0.0", "1674986411"], + ["10293", "0.0027739251040221915", "720", "0.0", "1674990011"], + ["10294", "0.0027739251040221915", "720", "0.0", "1674993611"], + ["10295", "0.0027739251040221915", "720", "0.0", "1674997211"], + ["10296", "0.0027739251040221915", "720", "0.0", "1675000811"], + ["10297", "0.0027739251040221915", "720", "0.0", "1675004447"], + ["10298", "0.0027739251040221915", "720", "0.0", "1675008011"], + ["10299", "0.0027739251040221915", "720", "0.0", "1675011611"], + ["10300", "0.0027739251040221915", "720", "0.0", "1675015211"], + ["10301", "0.0027739251040221915", "720", "0.0", "1675018811"], + ["10302", "0.0027739251040221915", "720", "0.0", "1675022411"], + ["10303", "0.0027739251040221915", "720", "0.0", "1675026011"], + ["10304", "0.0027739251040221915", "720", "0.0", "1675029611"], + ["10305", "0.0027739251040221915", "720", "0.0", "1675033211"], + ["10306", "0.0027739251040221915", "720", "0.0", "1675036811"], + ["10307", "0.0027739251040221915", "720", "0.0", "1675040411"], + ["10308", "0.0027739251040221915", "720", "0.0", "1675044011"], + ["10309", "0.0027739251040221915", "720", "0.0", "1675047611"], + ["10310", "0.0027739251040221915", "720", "0.0", "1675051211"], + ["10311", "0.0027739251040221915", "720", "0.0", "1675054811"], + ["10312", "0.0027739251040221915", "720", "0.0", "1675058411"], + ["10313", "0.0027739251040221915", "720", "0.0", "1675062011"], + ["10314", "0.0027739251040221915", "720", "0.0", "1675065611"], + ["10315", "0.0027739251040221915", "720", "0.0", "1675069211"], + ["10316", "0.0027739251040221915", "720", "0.0", "1675072811"], + ["10317", "0.0027739251040221915", "720", "0.0", "1675076411"], + ["10318", "0.0027739251040221915", "720", "0.0", "1675080023"], + ["10319", "0.0027739251040221915", "720", "0.0", "1675083611"], + ["10320", "0.0027739251040221915", "720", "0.0", "1675087211"], + ["10321", "0.0027739251040221915", "720", "0.0", "1675090811"], + ["10322", "0.0027739251040221915", "720", "0.0", "1675094435"], + ["10323", "0.0027739251040221915", "720", "0.0", "1675098023"], + ["10324", "0.0027739251040221915", "720", "0.0", "1675101659"], + ["10325", "0.0027739251040221915", "720", "0.0", "1675105211"], + ["10326", "0.0027739251040221915", "720", "0.0", "1675108811"], + ["10327", "0.0027739251040221915", "720", "0.0", "1675112411"], + ["10328", "0.0027739251040221915", "720", "0.0", "1675116011"], + ["10329", "0.0027739251040221915", "720", "0.0", "1675119611"], + ["10330", "0.0027739251040221915", "720", "0.0", "1675123211"], + ["10331", "0.0027739251040221915", "720", "0.0", "1675126811"], + ["10332", "0.0027739251040221915", "720", "0.0", "1675130411"], + ["10333", "0.0027739251040221915", "720", "0.0", "1675134011"], + ["10334", "0.0027739251040221915", "720", "0.0", "1675137611"], + ["10335", "0.0027739251040221915", "720", "0.0", "1675141211"], + ["10336", "0.0027739251040221915", "720", "0.0", "1675144811"], + ["10337", "0.0027739251040221915", "720", "0.0", "1675148411"], + ["10338", "0.0027739251040221915", "720", "0.0", "1675152023"], + ["10339", "0.0027739251040221915", "720", "0.0", "1675155611"], + ["10340", "0.0027739251040221915", "720", "0.0", "1675159211"], + ["10341", "0.0027739251040221915", "720", "0.0", "1675162811"], + ["10342", "0.0027739251040221915", "720", "0.0", "1675166411"], + ["10343", "0.0027739251040221915", "720", "0.0", "1675170011"], + ["10344", "0.0027739251040221915", "720", "0.0", "1675173611"], + ["10345", "0.0027739251040221915", "720", "0.0", "1675177211"], + ["10346", "0.0027739251040221915", "720", "0.0", "1675180835"], + ["10347", "0.0027739251040221915", "720", "0.0", "1675184411"], + ["10348", "0.0027739251040221915", "720", "0.0", "1675188011"], + ["10349", "0.0027739251040221915", "720", "0.0", "1675191623"], + ["10350", "0.0027739251040221915", "720", "0.0", "1675195223"], + ["10351", "0.0027739251040221915", "720", "0.0", "1675198811"], + ["10352", "0.0027739251040221915", "720", "0.0", "1675202411"], + ["10353", "0.0027739251040221915", "720", "0.0", "1675206011"], + ["10354", "0.0027739251040221915", "720", "0.0", "1675209611"], + ["10355", "0.0027739251040221915", "720", "0.0", "1675213211"], + ["10356", "0.0027739251040221915", "720", "0.0", "1675216811"], + ["10357", "0.0027739251040221915", "720", "0.0", "1675220411"], + ["10358", "0.0027739251040221915", "720", "0.0", "1675224023"], + ["10359", "0.0027739251040221915", "720", "0.0", "1675227611"], + ["10360", "0.0027739251040221915", "720", "0.0", "1675231211"], + ["10361", "0.0027739251040221915", "720", "0.0", "1675234811"], + ["10362", "0.0027739251040221915", "720", "0.0", "1675238411"], + ["10363", "0.0027739251040221915", "720", "0.0", "1675242011"], + ["10364", "0.0027739251040221915", "720", "0.0", "1675245611"], + ["10365", "0.0027739251040221915", "720", "0.0", "1675249211"], + ["10366", "0.0027739251040221915", "720", "0.0", "1675252811"], + ["10367", "0.0027739251040221915", "720", "0.0", "1675256411"], + ["10368", "0.0027739251040221915", "720", "0.0", "1675260011"], + ["10369", "0.0027739251040221915", "720", "0.0", "1675263635"], + ["10370", "0.0027739251040221915", "720", "0.0", "1675267211"], + ["10371", "0.0027739251040221915", "720", "0.0", "1675270811"], + ["10372", "0.0027739251040221915", "720", "0.0", "1675274411"], + ["10373", "0.0027739251040221915", "720", "0.0", "1675278035"], + ["10374", "0.0027739251040221915", "720", "0.0", "1675281611"], + ["10375", "0.0027739251040221915", "720", "0.0", "1675285211"], + ["10376", "0.0027739251040221915", "720", "0.0", "1675288811"], + ["10377", "0.0027739251040221915", "720", "0.0", "1675292411"], + ["10378", "0.0027739251040221915", "720", "0.0", "1675296011"], + ["10379", "0.0027739251040221915", "720", "0.0", "1675299611"], + ["10380", "0.0027739251040221915", "720", "0.0", "1675303211"], + ["10381", "0.0027739251040221915", "720", "0.0", "1675306811"], + ["10382", "0.0027739251040221915", "720", "0.0", "1675310411"], + ["10383", "0.0027739251040221915", "720", "0.0", "1675314011"], + ["10384", "0.0027739251040221915", "720", "0.0", "1675317611"], + ["10385", "0.0027739251040221915", "720", "0.0", "1675321211"], + ["10386", "0.0027739251040221915", "720", "0.0", "1675324811"], + ["10387", "0.0027739251040221915", "720", "0.0", "1675328411"], + ["10388", "0.0027739251040221915", "720", "0.0", "1675332011"], + ["10389", "0.0027739251040221915", "720", "0.0", "1675335611"], + ["10390", "0.0027739251040221915", "720", "0.0", "1675339223"], + ["10391", "0.0027739251040221915", "720", "0.0", "1675342823"], + ["10392", "0.0027739251040221915", "720", "0.0", "1675346411"], + ["10393", "0.0027739251040221915", "720", "0.0", "1675350011"], + ["10394", "0.0027739251040221915", "720", "0.0", "1675353623"], + ["10395", "0.0027739251040221915", "720", "0.0", "1675357211"], + ["10396", "0.0027739251040221915", "720", "0.0", "1675360811"], + ["10397", "0.0027739251040221915", "720", "0.0", "1675364411"], + ["10398", "0.0027739251040221915", "720", "0.0", "1675368011"], + ["10399", "0.0027739251040221915", "720", "0.0", "1675371611"], + ["10400", "0.0027739251040221915", "720", "0.0", "1675375211"], + ["10401", "0.0027739251040221915", "720", "0.0", "1675378811"], + ["10402", "0.0027739251040221915", "720", "0.0", "1675382411"], + ["10403", "0.0027739251040221915", "720", "0.0", "1675386011"], + ["10404", "0.0027739251040221915", "720", "0.0", "1675389611"], + ["10405", "0.0027739251040221915", "720", "0.0", "1675393211"], + ["10406", "0.0027739251040221915", "720", "0.0", "1675396811"], + ["10407", "0.0027739251040221915", "720", "0.0", "1675400411"], + ["10408", "0.0027739251040221915", "720", "0.0", "1675404011"], + ["10409", "0.0027739251040221915", "720", "0.0", "1675407611"], + ["10410", "0.0027739251040221915", "720", "0.0", "1675411211"], + ["10411", "0.0027739251040221915", "720", "0.0", "1675414811"], + ["10412", "0.0027739251040221915", "720", "0.0", "1675418411"], + ["10413", "0.0027739251040221915", "720", "0.0", "1675422011"], + ["10414", "0.0027739251040221915", "720", "0.0", "1675425611"], + ["10415", "0.0027739251040221915", "720", "0.0", "1675429211"], + ["10416", "0.0027739251040221915", "720", "0.0", "1675432811"], + ["10417", "0.0027739251040221915", "720", "0.0", "1675436423"], + ["10418", "0.0027739251040221915", "720", "0.0", "1675440035"], + ["10419", "0.0027739251040221915", "720", "0.0", "1675443611"], + ["10420", "0.0027739251040221915", "720", "0.0", "1675447223"], + ["10421", "0.0027739251040221915", "720", "0.0", "1675450811"], + ["10422", "0.0027739251040221915", "720", "0.0", "1675454411"], + ["10423", "0.0027739251040221915", "720", "0.0", "1675458011"], + ["10424", "0.0027739251040221915", "720", "0.0", "1675461611"], + ["10425", "0.0027739251040221915", "720", "0.0", "1675465211"], + ["10426", "0.0027739251040221915", "720", "0.0", "1675468811"], + ["10427", "0.0027739251040221915", "720", "0.0", "1675472411"], + ["10428", "0.0027739251040221915", "720", "0.0", "1675476011"], + ["10429", "0.0027739251040221915", "720", "0.0", "1675479611"], + ["10430", "0.0027739251040221915", "720", "0.0", "1675483211"], + ["10431", "0.0027739251040221915", "720", "0.0", "1675486811"], + ["10432", "0.0027739251040221915", "720", "0.0", "1675490411"], + ["10433", "0.0027739251040221915", "720", "0.0", "1675494011"], + ["10434", "0.0027739251040221915", "720", "0.0", "1675497611"], + ["10435", "0.0027739251040221915", "720", "0.0", "1675501211"], + ["10436", "0.0027739251040221915", "720", "0.0", "1675504811"], + ["10437", "0.0027739251040221915", "720", "0.0", "1675508411"], + ["10438", "0.0027739251040221915", "720", "0.0", "1675512011"], + ["10439", "0.0027739251040221915", "720", "0.0", "1675515611"], + ["10440", "0.0027739251040221915", "720", "0.0", "1675519211"], + ["10441", "0.0027739251040221915", "720", "0.0", "1675522811"], + ["10442", "0.0027739251040221915", "720", "0.0", "1675526411"], + ["10443", "0.0027739251040221915", "720", "0.0", "1675530023"], + ["10444", "0.0027739251040221915", "720", "0.0", "1675533611"], + ["10445", "0.0027739251040221915", "720", "0.0", "1675537211"], + ["10446", "0.0027739251040221915", "720", "0.0", "1675540811"], + ["10447", "0.0027739251040221915", "720", "0.0", "1675544411"], + ["10448", "0.0027739251040221915", "720", "0.0", "1675548011"], + ["10449", "0.0027739251040221915", "720", "0.0", "1675551611"], + ["10450", "0.0027739251040221915", "720", "0.0", "1675555223"], + ["10451", "0.0027739251040221915", "720", "0.0", "1675558811"], + ["10452", "0.0027739251040221915", "720", "0.0", "1675562411"], + ["10453", "0.0027739251040221915", "720", "0.0", "1675566023"], + ["10454", "0.0027739251040221915", "720", "0.0", "1675569611"], + ["10455", "0.0027739251040221915", "720", "0.0", "1675573211"], + ["10456", "0.0027739251040221915", "720", "0.0", "1675576811"], + ["10457", "0.0027739251040221915", "720", "0.0", "1675580411"], + ["10458", "0.0027739251040221915", "720", "0.0", "1675584011"], + ["10459", "0.0027739251040221915", "720", "0.0", "1675587611"], + ["10460", "0.0027739251040221915", "720", "0.0", "1675591211"], + ["10461", "0.0027739251040221915", "720", "0.0", "1675594811"], + ["10462", "0.0027739251040221915", "720", "0.0", "1675598411"], + ["10463", "0.0027739251040221915", "720", "0.0", "1675602011"], + ["10464", "0.0027739251040221915", "720", "0.0", "1675605611"], + ["10465", "0.0027739251040221915", "720", "0.0", "1675609211"], + ["10466", "0.0027739251040221915", "720", "0.0", "1675612811"], + ["10467", "0.0027739251040221915", "720", "0.0", "1675616411"], + ["10468", "0.0027739251040221915", "720", "0.0", "1675620011"], + ["10469", "0.0027739251040221915", "720", "0.0", "1675623611"], + ["10470", "0.0027739251040221915", "720", "0.0", "1675627211"], + ["10471", "0.0027739251040221915", "720", "0.0", "1675630823"], + ["10472", "0.0027739251040221915", "720", "0.0", "1675634411"], + ["10473", "0.0027739251040221915", "720", "0.0", "1675638011"], + ["10474", "0.0027739251040221915", "720", "0.0", "1675641611"], + ["10475", "0.0027739251040221915", "720", "0.0", "1675645211"], + ["10476", "0.0027739251040221915", "720", "0.0", "1675648811"], + ["10477", "0.0027739251040221915", "720", "0.0", "1675652411"], + ["10478", "0.0027739251040221915", "720", "0.0", "1675656011"], + ["10479", "0.0027739251040221915", "720", "0.0", "1675659611"], + ["10480", "0.0027739251040221915", "720", "0.0", "1675663211"], + ["10481", "0.0027739251040221915", "720", "0.0", "1675666811"], + ["10482", "0.0027739251040221915", "720", "0.0", "1675670411"], + ["10483", "0.0027739251040221915", "720", "0.0", "1675674011"], + ["10484", "0.0027739251040221915", "720", "0.0", "1675677611"], + ["10485", "0.0027739251040221915", "720", "0.0", "1675681211"], + ["10486", "0.0027739251040221915", "720", "0.0", "1675684811"], + ["10487", "0.0027739251040221915", "720", "0.0", "1675688411"], + ["10488", "0.0027739251040221915", "720", "0.0", "1675692011"], + ["10489", "0.0027739251040221915", "720", "0.0", "1675695611"], + ["10490", "0.0027739251040221915", "720", "0.0", "1675699235"], + ["10491", "0.0027739251040221915", "720", "0.0", "1675702811"], + ["10492", "0.0027739251040221915", "720", "0.0", "1675706411"], + ["10493", "0.0027739251040221915", "720", "0.0", "1675710011"], + ["10494", "0.0027739251040221915", "720", "0.0", "1675713611"], + ["10495", "0.0027739251040221915", "720", "0.0", "1675717211"], + ["10496", "0.0027739251040221915", "720", "0.0", "1675720811"], + ["10497", "0.0027739251040221915", "720", "0.0", "1675724423"], + ["10498", "0.0027739251040221915", "720", "0.0", "1675728011"], + ["10499", "0.0027739251040221915", "720", "0.0", "1675731611"], + ["10500", "0.0027739251040221915", "720", "0.0", "1675735211"], + ["10501", "0.0027739251040221915", "720", "0.0", "1675738811"], + ["10502", "0.0027739251040221915", "720", "0.0", "1675742423"], + ["10503", "0.0027739251040221915", "720", "0.0", "1675746011"], + ["10504", "0.0027739251040221915", "720", "0.0", "1675749611"], + ["10505", "0.0027739251040221915", "720", "0.0", "1675753211"], + ["10506", "0.0027739251040221915", "720", "0.0", "1675756811"], + ["10507", "0.0027739251040221915", "720", "0.0", "1675760411"], + ["10508", "0.0027739251040221915", "720", "0.0", "1675764011"], + ["10509", "0.0027739251040221915", "720", "0.0", "1675767611"], + ["10510", "0.0027739251040221915", "720", "0.0", "1675771211"], + ["10511", "0.0027739251040221915", "720", "0.0", "1675774811"], + ["10512", "0.0027739251040221915", "720", "0.0", "1675778411"], + ["10513", "0.0027739251040221915", "720", "0.0", "1675782011"], + ["10514", "0.0027739251040221915", "720", "0.0", "1675785611"], + ["10515", "0.0027739251040221915", "720", "0.0", "1675789211"], + ["10516", "0.0027739251040221915", "720", "0.0", "1675792811"], + ["10517", "0.0027739251040221915", "720", "0.0", "1675796435"], + ["10518", "0.0027739251040221915", "720", "0.0", "1675800011"], + ["10519", "0.0027739251040221915", "720", "0.0", "1675803611"], + ["10520", "0.0027739251040221915", "720", "0.0", "1675807223"], + ["10521", "0.0027739251040221915", "720", "0.0", "1675810811"], + ["10522", "0.0027739251040221915", "720", "0.0", "1675814411"], + ["10523", "0.0027739251040221915", "720", "0.0", "1675818023"], + ["10524", "0.0027739251040221915", "720", "0.0", "1675821611"], + ["10525", "0.0027739251040221915", "720", "0.0", "1675825211"], + ["10526", "0.0027739251040221915", "720", "0.0", "1675828811"], + ["10527", "0.0027739251040221915", "720", "0.0", "1675832411"], + ["10528", "0.0027739251040221915", "720", "0.0", "1675836011"], + ["10529", "0.0027739251040221915", "720", "0.0", "1675839611"], + ["10530", "0.0027739251040221915", "720", "0.0", "1675843211"], + ["10531", "0.0027739251040221915", "720", "0.0", "1675846811"], + ["10532", "0.0027739251040221915", "720", "0.0", "1675850411"], + ["10533", "0.0027739251040221915", "720", "0.0", "1675854011"], + ["10534", "0.0027739251040221915", "720", "0.0", "1675857611"], + ["10535", "0.0027739251040221915", "720", "0.0", "1675861211"], + ["10536", "0.0027739251040221915", "720", "0.0", "1675864811"], + ["10537", "0.0027739251040221915", "720", "0.0", "1675868411"], + ["10538", "0.0027739251040221915", "720", "0.0", "1675872011"], + ["10539", "0.0027739251040221915", "720", "0.0", "1675875611"], + ["10540", "0.0027739251040221915", "720", "0.0", "1675879211"], + ["10541", "0.0027739251040221915", "720", "0.0", "1675882811"], + ["10542", "0.0027739251040221915", "720", "0.0", "1675886411"], + ["10543", "0.0027739251040221915", "720", "0.0", "1675890011"], + ["10544", "0.0027739251040221915", "720", "0.0", "1675893611"], + ["10545", "0.0027739251040221915", "720", "0.0", "1675897211"], + ["10546", "0.0027739251040221915", "720", "0.0", "1675900823"], + ["10547", "0.0027739251040221915", "720", "0.0", "1675904411"], + ["10548", "0.0027739251040221915", "720", "0.0", "1675908023"], + ["10549", "0.0027739251040221915", "720", "0.0", "1675911611"], + ["10550", "0.0027739251040221915", "720", "0.0", "1675915211"], + ["10551", "0.0027739251040221915", "720", "0.0", "1675918823"], + ["10552", "0.0027739251040221915", "720", "0.0", "1675922411"], + ["10553", "0.0027739251040221915", "720", "0.0", "1675926011"], + ["10554", "0.0027739251040221915", "720", "0.0", "1675929611"], + ["10555", "0.0027739251040221915", "720", "0.0", "1675933211"], + ["10556", "0.0027739251040221915", "720", "0.0", "1675936811"], + ["10557", "0.0027739251040221915", "720", "0.0", "1675940411"], + ["10558", "0.0027739251040221915", "720", "0.0", "1675944023"], + ["10559", "0.0027739251040221915", "720", "0.0", "1675947611"], + ["10560", "0.0027739251040221915", "720", "0.0", "1675951211"], + ["10561", "0.0027739251040221915", "720", "0.0", "1675954823"], + ["10562", "0.0027739251040221915", "720", "0.0", "1675958423"], + ["10563", "0.0027739251040221915", "720", "0.0", "1675962011"], + ["10564", "0.0027739251040221915", "720", "0.0", "1675965611"], + ["10565", "0.0027739251040221915", "720", "0.0", "1675969211"], + ["10566", "0.0027739251040221915", "720", "0.0", "1675972811"], + ["10567", "0.0027739251040221915", "720", "0.0", "1675976411"], + ["10568", "0.0027739251040221915", "720", "0.0", "1675980011"], + ["10569", "0.0027739251040221915", "720", "0.0", "1675983611"], + ["10570", "0.0027739251040221915", "720", "0.0", "1675987211"], + ["10571", "0.0027739251040221915", "720", "0.0", "1675990823"], + ["10572", "0.0027739251040221915", "720", "0.0", "1675994411"], + ["10573", "0.0027739251040221915", "720", "0.0", "1675998011"], + ["10574", "0.0027739251040221915", "720", "0.0", "1676001635"], + ["10575", "0.0027739251040221915", "720", "0.0", "1676005211"], + ["10576", "0.0027739251040221915", "720", "0.0", "1676008811"], + ["10577", "0.0027739251040221915", "720", "0.0", "1676012411"], + ["10578", "0.0027739251040221915", "720", "0.0", "1676016011"], + ["10579", "0.0027739251040221915", "720", "0.0", "1676019611"], + ["10580", "0.0027739251040221915", "720", "0.0", "1676023211"], + ["10581", "0.0027739251040221915", "720", "0.0", "1676026823"], + ["10582", "0.0027739251040221915", "720", "0.0", "1676030411"], + ["10583", "0.0027739251040221915", "720", "0.0", "1676034011"], + ["10584", "0.0027739251040221915", "720", "0.0", "1676037611"], + ["10585", "0.0027739251040221915", "720", "0.0", "1676041211"], + ["10586", "0.0027739251040221915", "720", "0.0", "1676044847"], + ["10587", "0.0027739251040221915", "720", "0.0", "1676048411"], + ["10588", "0.0027739251040221915", "720", "0.0", "1676052011"], + ["10589", "0.0027739251040221915", "720", "0.0", "1676055611"], + ["10590", "0.0027739251040221915", "720", "0.0", "1676059211"], + ["10591", "0.0027739251040221915", "720", "0.0", "1676062811"], + ["10592", "0.0027739251040221915", "720", "0.0", "1676066423"], + ["10593", "0.0027739251040221915", "720", "0.0", "1676070011"], + ["10594", "0.0027739251040221915", "720", "0.0", "1676073611"], + ["10595", "0.0027739251040221915", "720", "0.0", "1676077211"], + ["10596", "0.0027739251040221915", "720", "0.0", "1676080811"], + ["10597", "0.0027739251040221915", "720", "0.0", "1676084411"], + ["10598", "0.0027739251040221915", "720", "0.0", "1676088011"], + ["10599", "0.0027739251040221915", "720", "0.0", "1676091611"], + ["10600", "0.0027739251040221915", "720", "0.0", "1676095211"], + ["10601", "0.0027739251040221915", "720", "0.0", "1676098811"], + ["10602", "0.0027739251040221915", "720", "0.0", "1676102411"], + ["10603", "0.0027739251040221915", "720", "0.0", "1676106011"], + ["10604", "0.0027739251040221915", "720", "0.0", "1676109611"], + ["10605", "0.0027739251040221915", "720", "0.0", "1676113211"], + ["10606", "0.0027739251040221915", "720", "0.0", "1676116811"], + ["10607", "0.0027739251040221915", "720", "0.0", "1676120411"], + ["10608", "0.0027739251040221915", "720", "0.0", "1676124011"], + ["10609", "0.0027739251040221915", "720", "0.0", "1676127623"], + ["10610", "0.0027739251040221915", "720", "0.0", "1676131211"], + ["10611", "0.0027739251040221915", "720", "0.0", "1676134811"], + ["10612", "0.0027739251040221915", "720", "0.0", "1676138411"], + ["10613", "0.0027739251040221915", "720", "0.0", "1676142023"], + ["10614", "0.0027739251040221915", "720", "0.0", "1676145611"], + ["10615", "0.0027739251040221915", "720", "0.0", "1676149211"], + ["10616", "0.0027739251040221915", "720", "0.0", "1676152811"], + ["10617", "0.0027739251040221915", "720", "0.0", "1676156411"], + ["10618", "0.0027739251040221915", "720", "0.0", "1676160011"], + ["10619", "0.0027739251040221915", "720", "0.0", "1676163611"], + ["10620", "0.0027739251040221915", "720", "0.0", "1676167211"], + ["10621", "0.0027739251040221915", "720", "0.0", "1676170823"], + ["10622", "0.0027739251040221915", "720", "0.0", "1676174411"], + ["10623", "0.0027739251040221915", "720", "0.0", "1676178011"], + ["10624", "0.0027739251040221915", "720", "0.0", "1676181611"], + ["10625", "0.0027739251040221915", "720", "0.0", "1676185211"], + ["10626", "0.0027739251040221915", "720", "0.0", "1676188811"], + ["10627", "0.0027739251040221915", "720", "0.0", "1676192411"], + ["10628", "0.0027739251040221915", "720", "0.0", "1676196011"], + ["10629", "0.0027739251040221915", "720", "0.0", "1676199611"], + ["10630", "0.0027739251040221915", "720", "0.0", "1676203211"], + ["10631", "0.0027739251040221915", "720", "0.0", "1676206811"], + ["10632", "0.0027739251040221915", "720", "0.0", "1676210411"], + ["10633", "0.0027739251040221915", "720", "0.0", "1676214011"], + ["10634", "0.0027739251040221915", "720", "0.0", "1676217611"], + ["10635", "0.0027739251040221915", "720", "0.0", "1676221211"], + ["10636", "0.0027739251040221915", "720", "0.0", "1676224823"], + ["10637", "0.0027739251040221915", "720", "0.0", "1676228411"], + ["10638", "0.0027739251040221915", "720", "0.0", "1676232011"], + ["10639", "0.0027739251040221915", "720", "0.0", "1676235611"], + ["10640", "0.0027739251040221915", "720", "0.0", "1676239211"], + ["10641", "0.0027739251040221915", "720", "0.0", "1676242811"], + ["10642", "0.0027739251040221915", "720", "0.0", "1676246435"], + ["10643", "0.0027739251040221915", "720", "0.0", "1676250011"], + ["10644", "0.0027739251040221915", "720", "0.0", "1676253611"], + ["10645", "0.0027739251040221915", "720", "0.0", "1676257211"], + ["10646", "0.0027739251040221915", "720", "0.0", "1676260811"], + ["10647", "0.0027739251040221915", "720", "0.0", "1676264411"], + ["10648", "0.0027739251040221915", "720", "0.0", "1676268011"], + ["10649", "0.0027739251040221915", "720", "0.0", "1676271623"], + ["10650", "0.0027739251040221915", "720", "0.0", "1676275211"], + ["10651", "0.0027739251040221915", "720", "0.0", "1676278811"], + ["10652", "0.0027739251040221915", "720", "0.0", "1676282411"], + ["10653", "0.0027739251040221915", "720", "0.0", "1676286011"], + ["10654", "0.0027739251040221915", "720", "0.0", "1676289611"], + ["10655", "0.0027739251040221915", "720", "0.0", "1676293211"], + ["10656", "0.0027739251040221915", "720", "0.0", "1676296811"], + ["10657", "0.0027739251040221915", "720", "0.0", "1676300423"], + ["10658", "0.0027739251040221915", "720", "0.0", "1676304011"], + ["10659", "0.0027739251040221915", "720", "0.0", "1676307611"], + ["10660", "0.0027739251040221915", "720", "0.0", "1676311211"], + ["10661", "0.0027739251040221915", "720", "0.0", "1676314811"], + ["10662", "0.0027739251040221915", "720", "0.0", "1676318411"], + ["10663", "0.0027739251040221915", "720", "0.0", "1676322035"], + ["10664", "0.0027739251040221915", "720", "0.0", "1676325611"], + ["10665", "0.0027739251040221915", "720", "0.0", "1676329211"], + ["10666", "0.0027739251040221915", "720", "0.0", "1676332811"], + ["10667", "0.0027739251040221915", "720", "0.0", "1676336411"], + ["10668", "0.0027739251040221915", "720", "0.0", "1676340011"], + ["10669", "0.0027739251040221915", "720", "0.0", "1676343611"], + ["10670", "0.0027739251040221915", "720", "0.0", "1676347211"], + ["10671", "0.0027739251040221915", "720", "0.0", "1676350811"], + ["10672", "0.0027739251040221915", "720", "0.0", "1676354411"], + ["10673", "0.0027739251040221915", "720", "0.0", "1676358011"], + ["10674", "0.0027739251040221915", "720", "0.0", "1676361611"], + ["10675", "0.0027739251040221915", "720", "0.0", "1676365211"], + ["10676", "0.0027739251040221915", "720", "0.0", "1676368811"], + ["10677", "0.0027739251040221915", "720", "0.0", "1676372411"], + ["10678", "0.0027739251040221915", "720", "0.0", "1676376023"], + ["10679", "0.0027739251040221915", "720", "0.0", "1676379611"], + ["10680", "0.0027739251040221915", "720", "0.0", "1676383211"], + ["10681", "0.0027739251040221915", "720", "0.0", "1676386811"], + ["10682", "0.0027739251040221915", "720", "0.0", "1676390411"], + ["10683", "0.0027739251040221915", "720", "0.0", "1676394011"], + ["10684", "0.0027739251040221915", "720", "0.0", "1676397611"], + ["10685", "0.0027739251040221915", "720", "0.0", "1676401415"], + ["10686", "0.0027739251040221915", "720", "0.0", "1676404919"], + ["10687", "0.0027739251040221915", "720", "0.0", "1676408435"], + ["10688", "0.0027739251040221915", "720", "0.0", "1676412011"], + ["10689", "0.0027739251040221915", "720", "0.0", "1676415611"], + ["10690", "0.0027739251040221915", "720", "0.0", "1676419211"], + ["10691", "0.0027739251040221915", "720", "0.0", "1676422811"], + ["10692", "0.0027739251040221915", "720", "0.0", "1676426411"], + ["10693", "0.0027739251040221915", "720", "0.0", "1676430011"], + ["10694", "0.0027739251040221915", "720", "0.0", "1676433611"], + ["10695", "0.0027739251040221915", "720", "0.0", "1676437211"], + ["10696", "0.0027739251040221915", "720", "0.0", "1676440811"], + ["10697", "0.0027739251040221915", "720", "0.0", "1676444411"], + ["10698", "0.0027739251040221915", "720", "0.0", "1676448011"], + ["10699", "0.0027739251040221915", "720", "0.0", "1676451611"], + ["10700", "0.0027739251040221915", "720", "0.0", "1676455211"], + ["10701", "0.0027739251040221915", "720", "0.0", "1676458811"], + ["10702", "0.0027739251040221915", "720", "0.0", "1676462411"], + ["10703", "0.0027739251040221915", "720", "0.0", "1676466011"], + ["10704", "0.0027739251040221915", "720", "0.0", "1676469611"], + ["10705", "0.0027739251040221915", "720", "0.0", "1676473211"], + ["10706", "0.0027739251040221915", "720", "0.0", "1676476835"], + ["10707", "0.0027739251040221915", "720", "0.0", "1676480411"], + ["10708", "0.0027739251040221915", "720", "0.0", "1676484011"], + ["10709", "0.0027739251040221915", "720", "0.0", "1676487611"], + ["10710", "0.0027739251040221915", "720", "0.0", "1676491247"], + ["10711", "0.0027739251040221915", "720", "0.0", "1676494811"], + ["10712", "0.0027739251040221915", "720", "0.0", "1676498411"], + ["10713", "0.0027739251040221915", "720", "0.0", "1676502011"], + ["10714", "0.0027739251040221915", "720", "0.0", "1676505611"], + ["10715", "0.0027739251040221915", "720", "0.0", "1676509211"], + ["10716", "0.0027739251040221915", "720", "0.0", "1676512811"], + ["10717", "0.0027739251040221915", "720", "0.0", "1676516423"], + ["10718", "0.0027739251040221915", "720", "0.0", "1676520011"], + ["10719", "0.0027739251040221915", "720", "0.0", "1676523611"], + ["10720", "0.0027739251040221915", "720", "0.0", "1676527211"], + ["10721", "0.0027739251040221915", "720", "0.0", "1676530811"], + ["10722", "0.0027739251040221915", "720", "0.0", "1676534411"], + ["10723", "0.0027739251040221915", "720", "0.0", "1676538011"], + ["10724", "0.0027739251040221915", "720", "0.0", "1676541611"], + ["10725", "0.0027739251040221915", "720", "0.0", "1676545211"], + ["10726", "0.0027739251040221915", "720", "0.0", "1676548811"], + ["10727", "0.0027739251040221915", "720", "0.0", "1676552411"], + ["10728", "0.0027739251040221915", "720", "0.0", "1676556011"], + ["10729", "0.0027739251040221915", "720", "0.0", "1676559623"], + ["10730", "0.0027739251040221915", "720", "0.0", "1676563211"], + ["10731", "0.0027739251040221915", "720", "0.0", "1676566811"], + ["10732", "0.0027739251040221915", "720", "0.0", "1676570411"], + ["10733", "0.0027739251040221915", "720", "0.0", "1676574011"], + ["10734", "0.0027739251040221915", "720", "0.0", "1676577611"], + ["10735", "0.0027739251040221915", "720", "0.0", "1676581211"], + ["10736", "0.0027739251040221915", "720", "0.0", "1676584811"], + ["10737", "0.0027739251040221915", "720", "0.0", "1676588411"], + ["10738", "0.0027739251040221915", "720", "0.0", "1676592011"], + ["10739", "0.0027739251040221915", "720", "0.0", "1676595611"], + ["10740", "0.0027739251040221915", "720", "0.0", "1676599211"], + ["10741", "0.0027739251040221915", "720", "0.0", "1676602811"], + ["10742", "0.0027739251040221915", "720", "0.0", "1676606411"], + ["10743", "0.0027739251040221915", "720", "0.0", "1676610011"], + ["10744", "0.0027739251040221915", "720", "0.0", "1676613611"], + ["10745", "0.0027739251040221915", "720", "0.0", "1676617211"], + ["10746", "0.0027739251040221915", "720", "0.0", "1676620811"], + ["10747", "0.0027739251040221915", "720", "0.0", "1676624423"], + ["10748", "0.0027739251040221915", "720", "0.0", "1676628011"], + ["10749", "0.0027739251040221915", "720", "0.0", "1676631611"], + ["10750", "0.0027739251040221915", "720", "0.0", "1676635211"], + ["10751", "0.0027739251040221915", "720", "0.0", "1676638811"], + ["10752", "0.0027739251040221915", "720", "0.0", "1676642411"], + ["10753", "0.0027739251040221915", "720", "0.0", "1676646011"], + ["10754", "0.0027739251040221915", "720", "0.0", "1676649647"], + ["10755", "0.0027739251040221915", "720", "0.0", "1676653211"], + ["10756", "0.0027739251040221915", "720", "0.0", "1676656811"], + ["10757", "0.0027739251040221915", "720", "0.0", "1676660411"], + ["10758", "0.0027739251040221915", "720", "0.0", "1676664011"], + ["10759", "0.0027739251040221915", "720", "0.0", "1676667611"], + ["10760", "0.0027739251040221915", "720", "0.0", "1676671211"], + ["10761", "0.0027739251040221915", "720", "0.0", "1676674811"], + ["10762", "0.0027739251040221915", "720", "0.0", "1676678411"], + ["10763", "0.0027739251040221915", "720", "0.0", "1676682011"], + ["10764", "0.0027739251040221915", "720", "0.0", "1676685611"], + ["10765", "0.0027739251040221915", "720", "0.0", "1676689211"], + ["10766", "0.0027739251040221915", "720", "0.0", "1676692811"], + ["10767", "0.0027739251040221915", "720", "0.0", "1676696411"], + ["10768", "0.0027739251040221915", "720", "0.0", "1676700011"], + ["10769", "0.0027739251040221915", "720", "0.0", "1676703611"], + ["10770", "0.0027739251040221915", "720", "0.0", "1676707211"], + ["10771", "0.0027739251040221915", "720", "0.0", "1676710811"], + ["10772", "0.0027739251040221915", "720", "0.0", "1676714435"], + ["10773", "0.0027739251040221915", "720", "0.0", "1676718011"], + ["10774", "0.0027739251040221915", "720", "0.0", "1676721611"], + ["10775", "0.0027739251040221915", "720", "0.0", "1676725211"], + ["10776", "0.0027739251040221915", "720", "0.0", "1676728811"], + ["10777", "0.0027739251040221915", "720", "0.0", "1676732411"], + ["10778", "0.0027739251040221915", "720", "0.0", "1676736011"], + ["10779", "0.0027739251040221915", "720", "0.0", "1676739611"], + ["10780", "0.0027739251040221915", "720", "0.0", "1676743211"], + ["10781", "0.0027739251040221915", "720", "0.0", "1676746811"], + ["10782", "0.0027739251040221915", "720", "0.0", "1676750411"], + ["10783", "0.0027739251040221915", "720", "0.0", "1676754011"], + ["10784", "0.0027739251040221915", "720", "0.0", "1676757611"], + ["10785", "0.0027739251040221915", "720", "0.0", "1676761211"], + ["10786", "0.0027739251040221915", "720", "0.0", "1676764811"], + ["10787", "0.0027739251040221915", "720", "0.0", "1676768411"], + ["10788", "0.0027739251040221915", "720", "0.0", "1676772011"], + ["10789", "0.0027739251040221915", "720", "0.0", "1676775611"], + ["10790", "0.0027739251040221915", "720", "0.0", "1676779211"], + ["10791", "0.0027739251040221915", "720", "0.0", "1676782823"], + ["10792", "0.0027739251040221915", "720", "0.0", "1676786411"], + ["10793", "0.0027739251040221915", "720", "0.0", "1676790011"], + ["10794", "0.0027739251040221915", "720", "0.0", "1676793611"], + ["10795", "0.0027739251040221915", "720", "0.0", "1676797235"], + ["10796", "0.0027739251040221915", "720", "0.0", "1676800811"], + ["10797", "0.0027739251040221915", "720", "0.0", "1676804411"], + ["10798", "0.0027739251040221915", "720", "0.0", "1676808011"], + ["10799", "0.0027739251040221915", "720", "0.0", "1676811611"], + ["10800", "0.0027739251040221915", "720", "0.0", "1676815211"], + ["10801", "0.0027739251040221915", "720", "0.0", "1676818811"], + ["10802", "0.0027739251040221915", "720", "0.0", "1676822411"], + ["10803", "0.0027739251040221915", "720", "0.0", "1676826011"], + ["10804", "0.0027739251040221915", "720", "0.0", "1676829623"], + ["10805", "0.0027739251040221915", "720", "0.0", "1676833211"], + ["10806", "0.0027739251040221915", "720", "0.0", "1676836811"], + ["10807", "0.0027739251040221915", "720", "0.0", "1676840411"], + ["10808", "0.0027739251040221915", "720", "0.0", "1676844011"], + ["10809", "0.0027739251040221915", "720", "0.0", "1676847611"], + ["10810", "0.0027739251040221915", "720", "0.0", "1676851211"], + ["10811", "0.0027739251040221915", "720", "0.0", "1676854811"], + ["10812", "0.0027739251040221915", "720", "0.0", "1676858411"], + ["10813", "0.0027739251040221915", "720", "0.0", "1676862023"], + ["10814", "0.0027739251040221915", "720", "0.0", "1676865611"], + ["10815", "0.0027739251040221915", "720", "0.0", "1676869223"], + ["10816", "0.0027739251040221915", "720", "0.0", "1676872811"], + ["10817", "0.0027739251040221915", "720", "0.0", "1676876411"], + ["10818", "0.0027739251040221915", "720", "0.0", "1676880011"], + ["10819", "0.0027739251040221915", "720", "0.0", "1676883611"], + ["10820", "0.0027739251040221915", "720", "0.0", "1676887223"], + ["10821", "0.0027739251040221915", "720", "0.0", "1676890811"], + ["10822", "0.0027739251040221915", "720", "0.0", "1676894423"], + ["10823", "0.0027739251040221915", "720", "0.0", "1676898011"], + ["10824", "0.0027739251040221915", "720", "0.0", "1676901611"], + ["10825", "0.0027739251040221915", "720", "0.0", "1676905271"], + ["10826", "0.0027739251040221915", "720", "0.0", "1676908859"], + ["10827", "0.0027739251040221915", "720", "0.0", "1676912411"], + ["10828", "0.0027739251040221915", "720", "0.0", "1676916011"], + ["10829", "0.0027739251040221915", "720", "0.0", "1676919623"], + ["10830", "0.0027739251040221915", "720", "0.0", "1676923211"], + ["10831", "0.0027739251040221915", "720", "0.0", "1676926811"], + ["10832", "0.0027739251040221915", "720", "0.0", "1676930411"], + ["10833", "0.0027739251040221915", "720", "0.0", "1676934023"], + ["10834", "0.0027739251040221915", "720", "0.0", "1676937611"], + ["10835", "0.0027739251040221915", "720", "0.0", "1676941211"], + ["10836", "0.0027739251040221915", "720", "0.0", "1676944811"], + ["10837", "0.0027739251040221915", "720", "0.0", "1676948411"], + ["10838", "0.0027739251040221915", "720", "0.0", "1676952011"], + ["10839", "0.0027739251040221915", "720", "0.0", "1676955611"], + ["10840", "0.0027739251040221915", "720", "0.0", "1676959211"], + ["10841", "0.0027739251040221915", "720", "0.0", "1676962811"], + ["10842", "0.0027739251040221915", "720", "0.0", "1676966411"], + ["10843", "0.0027739251040221915", "720", "0.0", "1676970023"], + ["10844", "0.0027739251040221915", "720", "0.0", "1676973611"], + ["10845", "0.0027739251040221915", "720", "0.0", "1676977211"], + ["10846", "0.0027739251040221915", "720", "0.0", "1676980823"], + ["10847", "0.0027739251040221915", "720", "0.0", "1676984411"], + ["10848", "0.0027739251040221915", "720", "0.0", "1676988011"], + ["10849", "0.0027739251040221915", "720", "0.0", "1676991611"], + ["10850", "0.0027739251040221915", "720", "0.0", "1676995211"], + ["10851", "0.0027739251040221915", "720", "0.0", "1676998811"], + ["10852", "0.0027739251040221915", "720", "0.0", "1677002435"], + ["10853", "0.0027739251040221915", "720", "0.0", "1677006011"], + ["10854", "0.0027739251040221915", "720", "0.0", "1677009611"], + ["10855", "0.0027739251040221915", "720", "0.0", "1677013211"], + ["10856", "0.0027739251040221915", "720", "0.0", "1677016811"], + ["10857", "0.0027739251040221915", "720", "0.0", "1677020423"], + ["10858", "0.0027739251040221915", "720", "0.0", "1677024023"], + ["10859", "0.0027739251040221915", "720", "0.0", "1677027611"], + ["10860", "0.0027739251040221915", "720", "0.0", "1677031223"], + ["10861", "0.0027739251040221915", "720", "0.0", "1677034811"], + ["10862", "0.0027739251040221915", "720", "0.0", "1677038411"], + ["10863", "0.0027739251040221915", "720", "0.0", "1677042011"], + ["10864", "0.0027739251040221915", "720", "0.0", "1677045611"], + ["10865", "0.0027739251040221915", "720", "0.0", "1677049211"], + ["10866", "0.0027739251040221915", "720", "0.0", "1677052811"], + ["10867", "0.0027739251040221915", "720", "0.0", "1677056411"], + ["10868", "0.0027739251040221915", "720", "0.0", "1677060011"], + ["10869", "0.0027739251040221915", "720", "0.0", "1677063611"], + ["10870", "0.0027739251040221915", "720", "0.0", "1677067223"], + ["10871", "0.0027739251040221915", "720", "0.0", "1677070811"], + ["10872", "0.0027739251040221915", "720", "0.0", "1677074411"], + ["10873", "0.0027739251040221915", "720", "0.0", "1677078047"], + ["10874", "0.0027739251040221915", "720", "0.0", "1677081611"], + ["10875", "0.0027739251040221915", "720", "0.0", "1677085211"], + ["10876", "0.0027739251040221915", "720", "0.0", "1677088811"], + ["10877", "0.0027739251040221915", "720", "0.0", "1677092411"], + ["10878", "0.0027739251040221915", "720", "0.0", "1677096011"], + ["10879", "0.0027739251040221915", "720", "0.0", "1677099611"], + ["10880", "0.0027739251040221915", "720", "0.0", "1677103211"], + ["10881", "0.0027739251040221915", "720", "0.0", "1677106811"], + ["10882", "0.0027739251040221915", "720", "0.0", "1677110411"], + ["10883", "0.0027739251040221915", "720", "0.0", "1677114011"], + ["10884", "0.0027739251040221915", "720", "0.0", "1677117611"], + ["10885", "0.0027739251040221915", "720", "0.0", "1677121211"], + ["10886", "0.0027739251040221915", "720", "0.0", "1677124811"], + ["10887", "0.0027739251040221915", "720", "0.0", "1677128411"], + ["10888", "0.0027739251040221915", "720", "0.0", "1677132011"], + ["10889", "0.0027739251040221915", "720", "0.0", "1677135611"], + ["10890", "0.0027739251040221915", "720", "0.0", "1677139211"], + ["10891", "0.0027739251040221915", "720", "0.0", "1677142811"], + ["10892", "0.0027739251040221915", "720", "0.0", "1677146411"], + ["10893", "0.0027739251040221915", "720", "0.0", "1677150011"], + ["10894", "0.0027739251040221915", "720", "0.0", "1677153611"], + ["10895", "0.0027739251040221915", "720", "0.0", "1677157211"], + ["10896", "0.0027739251040221915", "720", "0.0", "1677160811"], + ["10897", "0.0027739251040221915", "720", "0.0", "1677164411"], + ["10898", "0.0027739251040221915", "720", "0.0", "1677168035"], + ["10899", "0.0027739251040221915", "720", "0.0", "1677171611"], + ["10900", "0.0027739251040221915", "720", "0.0", "1677175211"], + ["10901", "0.0027739251040221915", "720", "0.0", "1677178811"], + ["10902", "0.0027739251040221915", "720", "0.0", "1677182411"], + ["10903", "0.0027739251040221915", "720", "0.0", "1677186011"], + ["10904", "0.0027739251040221915", "720", "0.0", "1677189611"], + ["10905", "0.0027739251040221915", "720", "0.0", "1677193211"], + ["10906", "0.0027739251040221915", "720", "0.0", "1677196811"], + ["10907", "0.0027739251040221915", "720", "0.0", "1677200411"], + ["10908", "0.0027739251040221915", "720", "0.0", "1677204011"], + ["10909", "0.0027739251040221915", "720", "0.0", "1677207623"], + ["10910", "0.0027739251040221915", "720", "0.0", "1677211211"], + ["10911", "0.0027739251040221915", "720", "0.0", "1677214811"], + ["10912", "0.0027739251040221915", "720", "0.0", "1677218411"], + ["10913", "0.0027739251040221915", "720", "0.0", "1677222011"], + ["10914", "0.0027739251040221915", "720", "0.0", "1677225611"], + ["10915", "0.0027739251040221915", "720", "0.0", "1677229211"], + ["10916", "0.0027739251040221915", "720", "0.0", "1677232811"], + ["10917", "0.0027739251040221915", "720", "0.0", "1677236411"], + ["10918", "0.0027739251040221915", "720", "0.0", "1677240011"], + ["10919", "0.0027739251040221915", "720", "0.0", "1677243611"], + ["10920", "0.0027739251040221915", "720", "0.0", "1677247211"], + ["10921", "0.0027739251040221915", "720", "0.0", "1677250811"], + ["10922", "0.0027739251040221915", "720", "0.0", "1677254411"], + ["10923", "0.0027739251040221915", "720", "0.0", "1677258011"], + ["10924", "0.0027739251040221915", "720", "0.0", "1677261611"], + ["10925", "0.0027739251040221915", "720", "0.0", "1677265211"], + ["10926", "0.0027739251040221915", "720", "0.0", "1677268811"], + ["10927", "0.0027739251040221915", "720", "0.0", "1677272411"], + ["10928", "0.0027739251040221915", "720", "0.0", "1677276011"], + ["10929", "0.0027739251040221915", "720", "0.0", "1677279611"], + ["10930", "0.0027739251040221915", "720", "0.0", "1677283211"], + ["10931", "0.0027739251040221915", "720", "0.0", "1677286811"], + ["10932", "0.0027739251040221915", "720", "0.0", "1677290411"], + ["10933", "0.0027739251040221915", "720", "0.0", "1677294011"], + ["10934", "0.0027739251040221915", "720", "0.0", "1677297611"], + ["10935", "0.0027739251040221915", "720", "0.0", "1677301211"], + ["10936", "0.0027739251040221915", "720", "0.0", "1677304811"], + ["10937", "0.0027739251040221915", "720", "0.0", "1677308411"], + ["10938", "0.0027739251040221915", "720", "0.0", "1677312011"], + ["10939", "0.0027739251040221915", "720", "0.0", "1677315611"], + ["10940", "0.0027739251040221915", "720", "0.0", "1677319211"], + ["10941", "0.0027739251040221915", "720", "0.0", "1677322823"], + ["10942", "0.0027739251040221915", "720", "0.0", "1677326411"], + ["10943", "0.0027739251040221915", "720", "0.0", "1677330011"], + ["10944", "0.0027739251040221915", "720", "0.0", "1677333611"], + ["10945", "0.0027739251040221915", "720", "0.0", "1677337211"], + ["10946", "0.0027739251040221915", "720", "0.0", "1677340811"], + ["10947", "0.0027739251040221915", "720", "0.0", "1677344411"], + ["10948", "0.0027739251040221915", "720", "0.0", "1677348011"], + ["10949", "0.0027739251040221915", "720", "0.0", "1677351611"], + ["10950", "0.0027739251040221915", "720", "0.0", "1677355211"], + ["10951", "0.0027739251040221915", "720", "0.0", "1677358823"], + ["10952", "0.0027739251040221915", "720", "0.0", "1677362411"], + ["10953", "0.0027739251040221915", "720", "0.0", "1677366011"], + ["10954", "0.0027739251040221915", "720", "0.0", "1677369611"], + ["10955", "0.0027739251040221915", "720", "0.0", "1677373211"], + ["10956", "0.0027739251040221915", "720", "0.0", "1677376811"], + ["10957", "0.0027739251040221915", "720", "0.0", "1677380411"], + ["10958", "0.0027739251040221915", "720", "0.0", "1677384011"], + ["10959", "0.0027739251040221915", "720", "0.0", "1677387611"], + ["10960", "0.0027739251040221915", "720", "0.0", "1677391211"], + ["10961", "0.0027739251040221915", "720", "0.0", "1677394811"], + ["10962", "0.0027739251040221915", "720", "0.0", "1677398411"], + ["10963", "0.0027739251040221915", "720", "0.0", "1677402011"], + ["10964", "0.0027739251040221915", "720", "0.0", "1677405611"], + ["10965", "0.0027739251040221915", "720", "0.0", "1677409211"], + ["10966", "0.0027739251040221915", "720", "0.0", "1677412811"], + ["10967", "0.0027739251040221915", "720", "0.0", "1677416411"], + ["10968", "0.0027739251040221915", "720", "0.0", "1677420023"], + ["10969", "0.0027739251040221915", "720", "0.0", "1677423611"], + ["10970", "0.0027739251040221915", "720", "0.0", "1677427211"], + ["10971", "0.0027739251040221915", "720", "0.0", "1677430811"], + ["10972", "0.0027739251040221915", "720", "0.0", "1677434411"], + ["10973", "0.0027739251040221915", "720", "0.0", "1677438011"], + ["10974", "0.0027739251040221915", "720", "0.0", "1677441611"], + ["10975", "0.0027739251040221915", "720", "0.0", "1677445211"], + ["10976", "0.0027739251040221915", "720", "0.0", "1677448811"], + ["10977", "0.0027739251040221915", "720", "0.0", "1677452411"], + ["10978", "0.0027739251040221915", "720", "0.0", "1677456011"], + ["10979", "0.0027739251040221915", "720", "0.0", "1677459623"], + ["10980", "0.0027739251040221915", "720", "0.0", "1677463223"], + ["10981", "0.0027739251040221915", "720", "0.0", "1677466811"], + ["10982", "0.0027739251040221915", "720", "0.0", "1677470411"], + ["10983", "0.0027739251040221915", "720", "0.0", "1677474011"], + ["10984", "0.0027739251040221915", "720", "0.0", "1677477611"], + ["10985", "0.0027739251040221915", "720", "0.0", "1677481211"], + ["10986", "0.0027739251040221915", "720", "0.0", "1677484811"], + ["10987", "0.0027739251040221915", "720", "0.0", "1677488423"], + ["10988", "0.0027739251040221915", "720", "0.0", "1677492011"], + ["10989", "0.0027739251040221915", "720", "0.0", "1677495611"], + ["10990", "0.0027739251040221915", "720", "0.0", "1677499211"], + ["10991", "0.0027739251040221915", "720", "0.0", "1677502811"], + ["10992", "0.0027739251040221915", "720", "0.0", "1677506411"], + ["10993", "0.0027739251040221915", "720", "0.0", "1677510011"], + ["10994", "0.0027739251040221915", "720", "0.0", "1677513623"], + ["10995", "0.0027739251040221915", "720", "0.0", "1677517211"], + ["10996", "0.0027739251040221915", "720", "0.0", "1677520811"], + ["10997", "0.0027739251040221915", "720", "0.0", "1677524411"], + ["10998", "0.0027739251040221915", "720", "0.0", "1677528011"], + ["10999", "0.0027739251040221915", "720", "0.0", "1677531611"], + ["11000", "0.0027739251040221915", "720", "0.0", "1677535211"], + ["11001", "0.0027739251040221915", "720", "0.0", "1677538811"], + ["11002", "0.0027739251040221915", "720", "0.0", "1677542435"], + ["11003", "0.0027739251040221915", "720", "0.0", "1677546011"], + ["11004", "0.0027739251040221915", "720", "0.0", "1677549611"], + ["11005", "0.0027739251040221915", "720", "0.0", "1677553211"], + ["11006", "0.0027739251040221915", "720", "0.0", "1677556811"], + ["11007", "0.0027739251040221915", "720", "0.0", "1677560411"], + ["11008", "0.0027739251040221915", "720", "0.0", "1677564011"], + ["11009", "0.0027739251040221915", "720", "0.0", "1677567611"], + ["11010", "0.0027739251040221915", "720", "0.0", "1677571211"], + ["11011", "0.0027739251040221915", "720", "0.0", "1677574811"], + ["11012", "0.0027739251040221915", "720", "0.0", "1677578411"], + ["11013", "0.0027739251040221915", "720", "0.0", "1677582011"], + ["11014", "0.0027739251040221915", "720", "0.0", "1677585611"], + ["11015", "0.0027739251040221915", "720", "0.0", "1677589223"], + ["11016", "0.0027739251040221915", "720", "0.0", "1677592811"], + ["11017", "0.0027739251040221915", "720", "0.0", "1677596411"], + ["11018", "0.0027739251040221915", "720", "0.0", "1677600035"], + ["11019", "0.0027739251040221915", "720", "0.0", "1677603611"], + ["11020", "0.0027739251040221915", "720", "0.0", "1677607211"], + ["11021", "0.0027739251040221915", "720", "0.0", "1677610811"], + ["11022", "0.0027739251040221915", "720", "0.0", "1677614411"], + ["11023", "0.0027739251040221915", "720", "0.0", "1677618011"], + ["11024", "0.0027739251040221915", "720", "0.0", "1677621623"], + ["11025", "0.0027739251040221915", "720", "0.0", "1677625211"], + ["11026", "0.0027739251040221915", "720", "0.0", "1677628811"], + ["11027", "0.0027739251040221915", "720", "0.0", "1677632411"], + ["11028", "0.0027739251040221915", "720", "0.0", "1677636011"], + ["11029", "0.0027739251040221915", "720", "0.0", "1677639611"], + ["11030", "0.0027739251040221915", "720", "0.0", "1677643211"], + ["11031", "0.0027739251040221915", "720", "0.0", "1677646811"], + ["11032", "0.0027739251040221915", "720", "0.0", "1677650411"], + ["11033", "0.0027739251040221915", "720", "0.0", "1677654011"], + ["11034", "0.0027739251040221915", "720", "0.0", "1677657611"], + ["11035", "0.0027739251040221915", "720", "0.0", "1677661211"], + ["11036", "0.0027739251040221915", "720", "0.0", "1677664811"], + ["11037", "0.0027739251040221915", "720", "0.0", "1677668411"], + ["11038", "0.0027739251040221915", "720", "0.0", "1677672011"], + ["11039", "0.0027739251040221915", "720", "0.0", "1677675611"], + ["11040", "0.0027739251040221915", "720", "0.0", "1677679211"], + ["11041", "0.0027739251040221915", "720", "0.0", "1677682823"], + ["11042", "0.0027739251040221915", "720", "0.0", "1677686411"], + ["11043", "0.0027739251040221915", "720", "0.0", "1677690011"], + ["11044", "0.0027739251040221915", "720", "0.0", "1677693611"], + ["11045", "0.0027739251040221915", "720", "0.0", "1677697211"], + ["11046", "0.0027739251040221915", "720", "0.0", "1677700811"], + ["11047", "0.0027739251040221915", "720", "0.0", "1677704411"], + ["11048", "0.0027739251040221915", "720", "0.0", "1677708011"], + ["11049", "0.0027739251040221915", "720", "0.0", "1677711623"], + ["11050", "0.0027739251040221915", "720", "0.0", "1677715223"], + ["11051", "0.0027739251040221915", "720", "0.0", "1677718811"], + ["11052", "0.0027739251040221915", "720", "0.0", "1677722411"], + ["11053", "0.0027739251040221915", "720", "0.0", "1677726011"], + ["11054", "0.0027739251040221915", "720", "0.0", "1677729611"], + ["11055", "0.0027739251040221915", "720", "0.0", "1677733211"], + ["11056", "0.0027739251040221915", "720", "0.0", "1677736811"], + ["11057", "0.0027739251040221915", "720", "0.0", "1677740411"], + ["11058", "0.0027739251040221915", "720", "0.0", "1677744011"], + ["11059", "0.0027739251040221915", "720", "0.0", "1677747611"], + ["11060", "0.0027739251040221915", "720", "0.0", "1677751211"], + ["11061", "0.0027739251040221915", "720", "0.0", "1677754811"], + ["11062", "0.0027739251040221915", "720", "0.0", "1677758411"], + ["11063", "0.0027739251040221915", "720", "0.0", "1677762011"], + ["11064", "0.0027739251040221915", "720", "0.0", "1677765611"], + ["11065", "0.0027739251040221915", "720", "0.0", "1677769211"], + ["11066", "0.0027739251040221915", "720", "0.0", "1677772823"], + ["11067", "0.0027739251040221915", "720", "0.0", "1677776411"], + ["11068", "0.0027739251040221915", "720", "0.0", "1677780023"], + ["11069", "0.0027739251040221915", "720", "0.0", "1677783611"], + ["11070", "0.0027739251040221915", "720", "0.0", "1677787211"], + ["11071", "0.0027739251040221915", "720", "0.0", "1677790811"], + ["11072", "0.0027739251040221915", "720", "0.0", "1677794411"], + ["11073", "0.0027739251040221915", "720", "0.0", "1677798011"], + ["11074", "0.0027739251040221915", "720", "0.0", "1677801611"], + ["11075", "0.0027739251040221915", "720", "0.0", "1677805211"], + ["11076", "0.0027739251040221915", "720", "0.0", "1677808811"], + ["11077", "0.0027739251040221915", "720", "0.0", "1677812411"], + ["11078", "0.0027739251040221915", "720", "0.0", "1677816011"], + ["11079", "0.0027739251040221915", "720", "0.0", "1677819611"], + ["11080", "0.0027739251040221915", "720", "0.0", "1677823211"], + ["11081", "0.0027739251040221915", "720", "0.0", "1677826811"], + ["11082", "0.0027739251040221915", "720", "0.0", "1677830411"], + ["11083", "0.0027739251040221915", "720", "0.0", "1677834011"], + ["11084", "0.0027739251040221915", "720", "0.0", "1677837611"], + ["11085", "0.0027739251040221915", "720", "0.0", "1677841211"], + ["11086", "0.0027739251040221915", "720", "0.0", "1677844811"], + ["11087", "0.0027739251040221915", "720", "0.0", "1677848411"], + ["11088", "0.0027739251040221915", "720", "0.0", "1677852011"], + ["11089", "0.0027739251040221915", "720", "0.0", "1677855611"], + ["11090", "0.0027739251040221915", "720", "0.0", "1677859211"], + ["11091", "0.0027739251040221915", "720", "0.0", "1677862835"], + ["11092", "0.0027739251040221915", "720", "0.0", "1677866411"], + ["11093", "0.0027739251040221915", "720", "0.0", "1677870011"], + ["11094", "0.0027739251040221915", "720", "0.0", "1677873611"], + ["11095", "0.0027739251040221915", "720", "0.0", "1677877211"], + ["11096", "0.0027739251040221915", "720", "0.0", "1677880811"], + ["11097", "0.0027739251040221915", "720", "0.0", "1677884411"], + ["11098", "0.0027739251040221915", "720", "0.0", "1677888011"], + ["11099", "0.0027739251040221915", "720", "0.0", "1677891611"], + ["11100", "0.0027739251040221915", "720", "0.0", "1677895211"], + ["11101", "0.0027739251040221915", "720", "0.0", "1677898811"], + ["11102", "0.0027739251040221915", "720", "0.0", "1677902411"], + ["11103", "0.0027739251040221915", "720", "0.0", "1677906011"], + ["11104", "0.0027739251040221915", "720", "0.0", "1677909611"], + ["11105", "0.0027739251040221915", "720", "0.0", "1677913211"], + ["11106", "0.0027739251040221915", "720", "0.0", "1677916811"], + ["11107", "0.0027739251040221915", "720", "0.0", "1677920411"], + ["11108", "0.0027739251040221915", "720", "0.0", "1677924011"], + ["11109", "0.0027739251040221915", "720", "0.0", "1677927611"], + ["11110", "0.0027739251040221915", "720", "0.0", "1677931211"], + ["11111", "0.0027739251040221915", "720", "0.0", "1677934811"], + ["11112", "0.0027739251040221915", "720", "0.0", "1677938411"], + ["11113", "0.0027739251040221915", "720", "0.0", "1677942011"], + ["11114", "0.0027739251040221915", "720", "0.0", "1677945611"], + ["11115", "0.0027739251040221915", "720", "0.0", "1677949223"], + ["11116", "0.0027739251040221915", "720", "0.0", "1677952811"], + ["11117", "0.0027739251040221915", "720", "0.0", "1677956411"], + ["11118", "0.0027739251040221915", "720", "0.0", "1677960011"], + ["11119", "0.0027739251040221915", "720", "0.0", "1677963611"], + ["11120", "0.0027739251040221915", "720", "0.0", "1677967211"], + ["11121", "0.0027739251040221915", "720", "0.0", "1677970811"], + ["11122", "0.0027739251040221915", "720", "0.0", "1677974411"], + ["11123", "0.0027739251040221915", "720", "0.0", "1677978011"], + ["11124", "0.0027739251040221915", "720", "0.0", "1677981611"], + ["11125", "0.0027739251040221915", "720", "0.0", "1677985223"], + ["11126", "0.0027739251040221915", "720", "0.0", "1677988811"], + ["11127", "0.0027739251040221915", "720", "0.0", "1677992411"], + ["11128", "0.0027739251040221915", "720", "0.0", "1677996011"], + ["11129", "0.0027739251040221915", "720", "0.0", "1677999611"], + ["11130", "0.0027739251040221915", "720", "0.0", "1678003211"], + ["11131", "0.0027739251040221915", "720", "0.0", "1678006811"], + ["11132", "0.0027739251040221915", "720", "0.0", "1678010411"], + ["11133", "0.0027739251040221915", "720", "0.0", "1678014011"], + ["11134", "0.0027739251040221915", "720", "0.0", "1678017611"], + ["11135", "0.0027739251040221915", "720", "0.0", "1678021211"], + ["11136", "0.0027739251040221915", "720", "0.0", "1678024823"], + ["11137", "0.0027739251040221915", "720", "0.0", "1678028423"], + ["11138", "0.0027739251040221915", "720", "0.0", "1678032011"], + ["11139", "0.0027739251040221915", "720", "0.0", "1678035611"], + ["11140", "0.0027739251040221915", "720", "0.0", "1678039211"], + ["11141", "0.0027739251040221915", "720", "0.0", "1678042811"], + ["11142", "0.0027739251040221915", "720", "0.0", "1678046411"], + ["11143", "0.0027739251040221915", "720", "0.0", "1678050011"], + ["11144", "0.0027739251040221915", "720", "0.0", "1678053611"], + ["11145", "0.0027739251040221915", "720", "0.0", "1678057211"], + ["11146", "0.0027739251040221915", "720", "0.0", "1678060811"], + ["11147", "0.0027739251040221915", "720", "0.0", "1678064411"], + ["11148", "0.0027739251040221915", "720", "0.0", "1678068011"], + ["11149", "0.0027739251040221915", "720", "0.0", "1678071611"], + ["11150", "0.0027739251040221915", "720", "0.0", "1678075211"], + ["11151", "0.0027739251040221915", "720", "0.0", "1678078811"], + ["11152", "0.0027739251040221915", "720", "0.0", "1678082411"], + ["11153", "0.0027739251040221915", "720", "0.0", "1678086011"], + ["11154", "0.0027739251040221915", "720", "0.0", "1678089611"], + ["11155", "0.0027739251040221915", "720", "0.0", "1678093211"], + ["11156", "0.0027739251040221915", "720", "0.0", "1678096811"], + ["11157", "0.0027739251040221915", "720", "0.0", "1678100411"], + ["11158", "0.0027739251040221915", "720", "0.0", "1678104011"], + ["11159", "0.0027739251040221915", "720", "0.0", "1678107611"], + ["11160", "0.0027739251040221915", "720", "0.0", "1678111223"], + ["11161", "0.0027739251040221915", "720", "0.0", "1678114811"], + ["11162", "0.0027739251040221915", "720", "0.0", "1678118411"], + ["11163", "0.0027739251040221915", "720", "0.0", "1678122011"], + ["11164", "0.0027739251040221915", "720", "0.0", "1678125611"], + ["11165", "0.0027739251040221915", "720", "0.0", "1678129211"], + ["11166", "0.0027739251040221915", "720", "0.0", "1678132811"], + ["11167", "0.0027739251040221915", "720", "0.0", "1678136423"], + ["11168", "0.0027739251040221915", "720", "0.0", "1678140011"], + ["11169", "0.0027739251040221915", "720", "0.0", "1678143611"], + ["11170", "0.0027739251040221915", "720", "0.0", "1678147211"], + ["11171", "0.0027739251040221915", "720", "0.0", "1678150811"], + ["11172", "0.0027739251040221915", "720", "0.0", "1678154411"], + ["11173", "0.0027739251040221915", "720", "0.0", "1678158011"], + ["11174", "0.0027739251040221915", "720", "0.0", "1678161611"], + ["11175", "0.0027739251040221915", "720", "0.0", "1678165211"], + ["11176", "0.0027739251040221915", "720", "0.0", "1678168811"], + ["11177", "0.0027739251040221915", "720", "0.0", "1678172411"], + ["11178", "0.0027739251040221915", "720", "0.0", "1678176011"], + ["11179", "0.0027739251040221915", "720", "0.0", "1678179611"], + ["11180", "0.0027739251040221915", "720", "0.0", "1678183211"], + ["11181", "0.0027739251040221915", "720", "0.0", "1678186811"], + ["11182", "0.0027739251040221915", "720", "0.0", "1678190411"], + ["11183", "0.0027739251040221915", "720", "0.0", "1678194011"], + ["11184", "0.0027739251040221915", "720", "0.0", "1678197611"], + ["11185", "0.0027739251040221915", "720", "0.0", "1678201211"], + ["11186", "0.0027739251040221915", "720", "0.0", "1678204811"], + ["11187", "0.0027739251040221915", "720", "0.0", "1678208411"], + ["11188", "0.0027739251040221915", "720", "0.0", "1678212011"], + ["11189", "0.0027739251040221915", "720", "0.0", "1678215611"], + ["11190", "0.0027739251040221915", "720", "0.0", "1678219211"], + ["11191", "0.0027739251040221915", "720", "0.0", "1678222811"], + ["11192", "0.0027739251040221915", "720", "0.0", "1678226411"], + ["11193", "0.0027739251040221915", "720", "0.0", "1678230011"], + ["11194", "0.0027739251040221915", "720", "0.0", "1678233611"], + ["11195", "0.0027739251040221915", "720", "0.0", "1678237211"], + ["11196", "0.0027739251040221915", "720", "0.0", "1678240811"], + ["11197", "0.0027739251040221915", "720", "0.0", "1678244411"], + ["11198", "0.0027739251040221915", "720", "0.0", "1678248011"], + ["11199", "0.0027739251040221915", "720", "0.0", "1678251611"], + ["11200", "0.0027739251040221915", "720", "0.0", "1678255211"], + ["11201", "0.0027739251040221915", "720", "0.0", "1678258811"], + ["11202", "0.0027739251040221915", "720", "0.0", "1678262411"], + ["11203", "0.0027739251040221915", "720", "0.0", "1678266011"], + ["11204", "0.0027739251040221915", "720", "0.0", "1678269611"], + ["11205", "0.0027739251040221915", "720", "0.0", "1678273223"], + ["11206", "0.0027739251040221915", "720", "0.0", "1678276811"], + ["11207", "0.0027739251040221915", "720", "0.0", "1678280411"], + ["11208", "0.0027739251040221915", "720", "0.0", "1678284011"], + ["11209", "0.0027739251040221915", "720", "0.0", "1678287635"], + ["11210", "0.0027739251040221915", "720", "0.0", "1678291211"], + ["11211", "0.0027739251040221915", "720", "0.0", "1678294811"], + ["11212", "0.0027739251040221915", "720", "0.0", "1678298411"], + ["11213", "0.0027739251040221915", "720", "0.0", "1678302011"], + ["11214", "0.0027739251040221915", "720", "0.0", "1678305623"], + ["11215", "0.0027739251040221915", "720", "0.0", "1678309211"], + ["11216", "0.0027739251040221915", "720", "0.0", "1678312811"], + ["11217", "0.0027739251040221915", "720", "0.0", "1678316411"], + ["11218", "0.0027739251040221915", "720", "0.0", "1678320023"], + ["11219", "0.0027739251040221915", "720", "0.0", "1678323611"], + ["11220", "0.0027739251040221915", "720", "0.0", "1678327211"], + ["11221", "0.0027739251040221915", "720", "0.0", "1678330811"], + ["11222", "0.0027739251040221915", "720", "0.0", "1678334411"], + ["11223", "0.0027739251040221915", "720", "0.0", "1678338011"], + ["11224", "0.0027739251040221915", "720", "0.0", "1678341611"], + ["11225", "0.0027739251040221915", "720", "0.0", "1678345211"], + ["11226", "0.0027739251040221915", "720", "0.0", "1678348811"], + ["11227", "0.0027739251040221915", "720", "0.0", "1678352411"], + ["11228", "0.0027739251040221915", "720", "0.0", "1678356011"], + ["11229", "0.0027739251040221915", "720", "0.0", "1678359611"], + ["11230", "0.0027739251040221915", "720", "0.0", "1678363211"], + ["11231", "0.0027739251040221915", "720", "0.0", "1678366811"], + ["11232", "0.0027739251040221915", "720", "0.0", "1678370411"], + ["11233", "0.0027739251040221915", "720", "0.0", "1678374011"], + ["11234", "0.0027739251040221915", "720", "0.0", "1678377611"], + ["11235", "0.0027739251040221915", "720", "0.0", "1678381211"], + ["11236", "0.0027739251040221915", "720", "0.0", "1678384811"], + ["11237", "0.0027739251040221915", "720", "0.0", "1678388411"], + ["11238", "0.0027739251040221915", "720", "0.0", "1678392011"], + ["11239", "0.0027739251040221915", "720", "0.0", "1678395683"], + ["11240", "0.0027739251040221915", "720", "0.0", "1678399211"], + ["11241", "0.0027739251040221915", "720", "0.0", "1678402823"], + ["11242", "0.0027739251040221915", "720", "0.0", "1678406411"], + ["11243", "0.0027739251040221915", "720", "0.0", "1678410011"], + ["11244", "0.0027739251040221915", "720", "0.0", "1678413611"], + ["11245", "0.0027739251040221915", "720", "0.0", "1678417211"], + ["11246", "0.0027739251040221915", "720", "0.0", "1678420811"], + ["11247", "0.0027739251040221915", "720", "0.0", "1678424411"], + ["11248", "0.0027739251040221915", "720", "0.0", "1678428011"], + ["11249", "0.0027739251040221915", "720", "0.0", "1678431611"], + ["11250", "0.0027739251040221915", "720", "0.0", "1678435211"], + ["11251", "0.0027739251040221915", "720", "0.0", "1678438811"], + ["11252", "0.0027739251040221915", "720", "0.0", "1678442411"], + ["11253", "0.0027739251040221915", "720", "0.0", "1678446011"], + ["11254", "0.0027739251040221915", "720", "0.0", "1678449623"], + ["11255", "0.0027739251040221915", "720", "0.0", "1678453211"], + ["11256", "0.0027739251040221915", "720", "0.0", "1678456811"], + ["11257", "0.0027739251040221915", "720", "0.0", "1678460423"], + ["11258", "0.0027739251040221915", "720", "0.0", "1678464011"], + ["11259", "0.0027739251040221915", "720", "0.0", "1678467611"], + ["11260", "0.0027739251040221915", "720", "0.0", "1678471211"], + ["11261", "0.0027739251040221915", "720", "0.0", "1678474811"], + ["11262", "0.0027739251040221915", "720", "0.0", "1678478423"], + ["11263", "0.0027739251040221915", "720", "0.0", "1678482011"], + ["11264", "0.0027739251040221915", "720", "0.0", "1678485611"], + ["11265", "0.0027739251040221915", "720", "0.0", "1678489211"], + ["11266", "0.0027739251040221915", "720", "0.0", "1678492811"], + ["11267", "0.0027739251040221915", "720", "0.0", "1678496411"], + ["11268", "0.0027739251040221915", "720", "0.0", "1678500047"], + ["11269", "0.0027739251040221915", "720", "0.0", "1678503623"], + ["11270", "0.0027739251040221915", "720", "0.0", "1678507331"], + ["11271", "0.0027739251040221915", "720", "0.0", "1678510859"], + ["11272", "0.0027739251040221915", "720", "0.0", "1678514435"], + ["11273", "0.0027739251040221915", "720", "0.0", "1678518155"], + ["11274", "0.0027739251040221915", "720", "0.0", "1678521755"], + ["11275", "0.0027739251040221915", "720", "0.0", "1678525295"], + ["11276", "0.0027739251040221915", "720", "0.0", "1678528811"], + ["11277", "0.0027739251040221915", "720", "0.0", "1678532411"], + ["11278", "0.0027739251040221915", "720", "0.0", "1678536011"], + ["11279", "0.0027739251040221915", "720", "0.0", "1678539611"], + ["11280", "0.0027739251040221915", "720", "0.0", "1678543211"], + ["11281", "0.0027739251040221915", "720", "0.0", "1678546811"], + ["11282", "0.0027739251040221915", "720", "0.0", "1678550411"], + ["11283", "0.0027739251040221915", "720", "0.0", "1678554011"], + ["11284", "0.0027739251040221915", "720", "0.0", "1678557611"], + ["11285", "0.0027739251040221915", "720", "0.0", "1678561211"], + ["11286", "0.0027739251040221915", "720", "0.0", "1678564811"], + ["11287", "0.0027739251040221915", "720", "0.0", "1678568423"], + ["11288", "0.0027739251040221915", "720", "0.0", "1678572011"], + ["11289", "0.0027739251040221915", "720", "0.0", "1678575611"], + ["11290", "0.0027739251040221915", "720", "0.0", "1678579211"], + ["11291", "0.0027739251040221915", "720", "0.0", "1678582811"], + ["11292", "0.0027739251040221915", "720", "0.0", "1678586411"], + ["11293", "0.0027739251040221915", "720", "0.0", "1678590011"], + ["11294", "0.0027739251040221915", "720", "0.0", "1678593623"], + ["11295", "0.0027739251040221915", "720", "0.0", "1678597211"], + ["11296", "0.0027739251040221915", "720", "0.0", "1678600811"], + ["11297", "0.0027739251040221915", "720", "0.0", "1678604411"], + ["11298", "0.0027739251040221915", "720", "0.0", "1678608011"], + ["11299", "0.0027739251040221915", "720", "0.0", "1678611611"], + ["11300", "0.0027739251040221915", "720", "0.0", "1678615211"], + ["11301", "0.0027739251040221915", "720", "0.0", "1678618811"], + ["11302", "0.0027739251040221915", "720", "0.0", "1678622411"], + ["11303", "0.0027739251040221915", "720", "0.0", "1678626011"], + ["11304", "0.0027739251040221915", "720", "0.0", "1678629611"], + ["11305", "0.0027739251040221915", "720", "0.0", "1678633223"], + ["11306", "0.0027739251040221915", "720", "0.0", "1678636811"], + ["11307", "0.0027739251040221915", "720", "0.0", "1678640411"], + ["11308", "0.0027739251040221915", "720", "0.0", "1678644011"], + ["11309", "0.0027739251040221915", "720", "0.0", "1678647611"], + ["11310", "0.0027739251040221915", "720", "0.0", "1678651211"], + ["11311", "0.0027739251040221915", "720", "0.0", "1678654811"], + ["11312", "0.0027739251040221915", "720", "0.0", "1678658411"], + ["11313", "0.0027739251040221915", "720", "0.0", "1678662023"], + ["11314", "0.0027739251040221915", "720", "0.0", "1678665611"], + ["11315", "0.0027739251040221915", "720", "0.0", "1678669211"], + ["11316", "0.0027739251040221915", "720", "0.0", "1678672811"], + ["11317", "0.0027739251040221915", "720", "0.0", "1678676411"], + ["11318", "0.0027739251040221915", "720", "0.0", "1678680011"], + ["11319", "0.0027739251040221915", "720", "0.0", "1678683611"], + ["11320", "0.0027739251040221915", "720", "0.0", "1678687211"], + ["11321", "0.0027739251040221915", "720", "0.0", "1678690811"], + ["11322", "0.0027739251040221915", "720", "0.0", "1678694411"], + ["11323", "0.0027739251040221915", "720", "0.0", "1678698011"], + ["11324", "0.0027739251040221915", "720", "0.0", "1678701611"], + ["11325", "0.0027739251040221915", "720", "0.0", "1678705211"], + ["11326", "0.0027739251040221915", "720", "0.0", "1678708811"], + ["11327", "0.0027739251040221915", "720", "0.0", "1678712423"], + ["11328", "0.0027739251040221915", "720", "0.0", "1678716071"], + ["11329", "0.0027739251040221915", "720", "0.0", "1678719611"], + ["11330", "0.0027739251040221915", "720", "0.0", "1678723211"], + ["11331", "0.0027739251040221915", "720", "0.0", "1678726811"], + ["11332", "0.0027739251040221915", "720", "0.0", "1678730411"], + ["11333", "0.0027739251040221915", "720", "0.0", "1678734011"], + ["11334", "0.0027739251040221915", "720", "0.0", "1678737611"], + ["11335", "0.0027739251040221915", "720", "0.0", "1678741211"], + ["11336", "0.0027739251040221915", "720", "0.0", "1678744811"], + ["11337", "0.0027739251040221915", "720", "0.0", "1678748411"], + ["11338", "0.0027739251040221915", "720", "0.0", "1678752011"], + ["11339", "0.0027739251040221915", "720", "0.0", "1678755611"], + ["11340", "0.0027739251040221915", "720", "0.0", "1678759223"], + ["11341", "0.0027739251040221915", "720", "0.0", "1678762811"], + ["11342", "0.0027739251040221915", "720", "0.0", "1678766411"], + ["11343", "0.0027739251040221915", "720", "0.0", "1678770011"], + ["11344", "0.0027739251040221915", "720", "0.0", "1678773611"], + ["11345", "0.0027739251040221915", "720", "0.0", "1678777211"], + ["11346", "0.0027739251040221915", "720", "0.0", "1678780811"], + ["11347", "0.0027739251040221915", "720", "0.0", "1678784411"], + ["11348", "0.0027739251040221915", "720", "0.0", "1678788011"], + ["11349", "0.0027739251040221915", "720", "0.0", "1678791611"], + ["11350", "0.0027739251040221915", "720", "0.0", "1678795211"], + ["11351", "0.0027739251040221915", "720", "0.0", "1678798811"], + ["11352", "0.0027739251040221915", "720", "0.0", "1678802411"], + ["11353", "0.0027739251040221915", "720", "0.0", "1678806023"], + ["11354", "0.0027739251040221915", "720", "0.0", "1678809611"], + ["11355", "0.0027739251040221915", "720", "0.0", "1678813211"], + ["11356", "0.0027739251040221915", "720", "0.0", "1678816811"], + ["11357", "0.0027739251040221915", "720", "0.0", "1678820411"], + ["11358", "0.0027739251040221915", "720", "0.0", "1678824023"], + ["11359", "0.0027739251040221915", "720", "0.0", "1678827611"], + ["11360", "0.0027739251040221915", "720", "0.0", "1678831223"], + ["11361", "0.0027739251040221915", "720", "0.0", "1678834811"], + ["11362", "0.0027739251040221915", "720", "0.0", "1678838411"], + ["11363", "0.0027739251040221915", "720", "0.0", "1678842011"], + ["11364", "0.0027739251040221915", "720", "0.0", "1678845611"], + ["11365", "0.0027739251040221915", "720", "0.0", "1678849211"], + ["11366", "0.0027739251040221915", "720", "0.0", "1678852811"], + ["11367", "0.0027739251040221915", "720", "0.0", "1678856411"], + ["11368", "0.0027739251040221915", "720", "0.0", "1678860023"], + ["11369", "0.0027739251040221915", "720", "0.0", "1678863611"], + ["11370", "0.0027739251040221915", "720", "0.0", "1678867211"], + ["11371", "0.0027739251040221915", "720", "0.0", "1678870811"], + ["11372", "0.0027739251040221915", "720", "0.0", "1678874411"], + ["11373", "0.0027739251040221915", "720", "0.0", "1678878011"], + ["11374", "0.0027739251040221915", "720", "0.0", "1678881611"], + ["11375", "0.0027739251040221915", "720", "0.0", "1678885211"], + ["11376", "0.0027739251040221915", "720", "0.0", "1678888811"], + ["11377", "0.0027739251040221915", "720", "0.0", "1678892411"], + ["11378", "0.0027739251040221915", "720", "0.0", "1678896095"], + ["11379", "0.0027739251040221915", "720", "0.0", "1678899623"], + ["11380", "0.0027739251040221915", "720", "0.0", "1678903211"], + ["11381", "0.0027739251040221915", "720", "0.0", "1678906811"], + ["11382", "0.0027739251040221915", "720", "0.0", "1678910411"], + ["11383", "0.0027739251040221915", "720", "0.0", "1678914011"], + ["11384", "0.0027739251040221915", "720", "0.0", "1678917635"], + ["11385", "0.0027739251040221915", "720", "0.0", "1678921211"], + ["11386", "0.0027739251040221915", "720", "0.0", "1678924823"], + ["11387", "0.0027739251040221915", "720", "0.0", "1678928423"], + ["11388", "0.0027739251040221915", "720", "0.0", "1678932023"], + ["11389", "0.0027739251040221915", "720", "0.0", "1678935611"], + ["11390", "0.0027739251040221915", "720", "0.0", "1678939211"], + ["11391", "0.0027739251040221915", "720", "0.0", "1678942811"], + ["11392", "0.0027739251040221915", "720", "0.0", "1678946411"], + ["11393", "0.0027739251040221915", "720", "0.0", "1678950011"], + ["11394", "0.0027739251040221915", "720", "0.0", "1678953611"], + ["11395", "0.0027739251040221915", "720", "0.0", "1678957211"], + ["11396", "0.0027739251040221915", "720", "0.0", "1678960811"], + ["11397", "0.0027739251040221915", "720", "0.0", "1678964411"], + ["11398", "0.0027739251040221915", "720", "0.0", "1678968011"], + ["11399", "0.0027739251040221915", "720", "0.0", "1678971611"], + ["11400", "0.0027739251040221915", "720", "0.0", "1678975211"], + ["11401", "0.0027739251040221915", "720", "0.0", "1678978823"], + ["11402", "0.0027739251040221915", "720", "0.0", "1678982411"], + ["11403", "0.0027739251040221915", "720", "0.0", "1678986011"], + ["11404", "0.0027739251040221915", "720", "0.0", "1678989623"], + ["11405", "0.0027739251040221915", "720", "0.0", "1678993211"], + ["11406", "0.0027739251040221915", "720", "0.0", "1678996811"], + ["11407", "0.0027739251040221915", "720", "0.0", "1679000411"], + ["11408", "0.0027739251040221915", "720", "0.0", "1679004011"], + ["11409", "0.0027739251040221915", "720", "0.0", "1679007611"], + ["11410", "0.0027739251040221915", "720", "0.0", "1679011211"], + ["11411", "0.0027739251040221915", "720", "0.0", "1679014811"], + ["11412", "0.0027739251040221915", "720", "0.0", "1679018447"], + ["11413", "0.0027739251040221915", "720", "0.0", "1679022011"], + ["11414", "0.0027739251040221915", "720", "0.0", "1679025611"], + ["11415", "0.0027739251040221915", "720", "0.0", "1679029211"], + ["11416", "0.0027739251040221915", "720", "0.0", "1679032811"], + ["11417", "0.0027739251040221915", "720", "0.0", "1679036411"], + ["11418", "0.0027739251040221915", "720", "0.0", "1679040011"], + ["11419", "0.0027739251040221915", "720", "0.0", "1679043611"], + ["11420", "0.0027739251040221915", "720", "0.0", "1679047211"], + ["11421", "0.0027739251040221915", "720", "0.0", "1679050811"], + ["11422", "0.0027739251040221915", "720", "0.0", "1679054411"], + ["11423", "0.0027739251040221915", "720", "0.0", "1679058011"], + ["11424", "0.0027739251040221915", "720", "0.0", "1679061611"], + ["11425", "0.0027739251040221915", "720", "0.0", "1679065211"], + ["11426", "0.0027739251040221915", "720", "0.0", "1679068811"], + ["11427", "0.0027739251040221915", "720", "0.0", "1679072411"], + ["11428", "0.0027739251040221915", "720", "0.0", "1679076023"], + ["11429", "0.0027739251040221915", "720", "0.0", "1679079611"], + ["11430", "0.0027739251040221915", "720", "0.0", "1679083211"], + ["11431", "0.0027739251040221915", "720", "0.0", "1679086811"], + ["11432", "0.0027739251040221915", "720", "0.0", "1679090411"], + ["11433", "0.0027739251040221915", "720", "0.0", "1679094011"], + ["11434", "0.0027739251040221915", "720", "0.0", "1679097611"], + ["11435", "0.0027739251040221915", "720", "0.0", "1679101211"], + ["11436", "0.0027739251040221915", "720", "0.0", "1679104811"], + ["11437", "0.0027739251040221915", "720", "0.0", "1679108411"], + ["11438", "0.0027739251040221915", "720", "0.0", "1679112011"], + ["11439", "0.0027739251040221915", "720", "0.0", "1679115611"], + ["11440", "0.0027739251040221915", "720", "0.0", "1679119211"], + ["11441", "0.0027739251040221915", "720", "0.0", "1679122811"], + ["11442", "0.0027739251040221915", "720", "0.0", "1679126411"], + ["11443", "0.0027739251040221915", "720", "0.0", "1679130011"], + ["11444", "0.0027739251040221915", "720", "0.0", "1679133611"], + ["11445", "0.0027739251040221915", "720", "0.0", "1679137223"], + ["11446", "0.0027739251040221915", "720", "0.0", "1679140811"], + ["11447", "0.0027739251040221915", "720", "0.0", "1679144411"], + ["11448", "0.0027739251040221915", "720", "0.0", "1679148011"], + ["11449", "0.0027739251040221915", "720", "0.0", "1679151611"], + ["11450", "0.0027739251040221915", "720", "0.0", "1679155211"], + ["11451", "0.0027739251040221915", "720", "0.0", "1679158811"], + ["11452", "0.0027739251040221915", "720", "0.0", "1679162411"], + ["11453", "0.0027739251040221915", "720", "0.0", "1679166011"], + ["11454", "0.0027739251040221915", "720", "0.0", "1679169611"], + ["11455", "0.0027739251040221915", "720", "0.0", "1679173211"], + ["11456", "0.0027739251040221915", "720", "0.0", "1679176811"], + ["11457", "0.0027739251040221915", "720", "0.0", "1679180411"], + ["11458", "0.0027739251040221915", "720", "0.0", "1679184011"], + ["11459", "0.0027739251040221915", "720", "0.0", "1679187611"], + ["11460", "0.0027739251040221915", "720", "0.0", "1679191211"], + ["11461", "0.0027739251040221915", "720", "0.0", "1679194811"], + ["11462", "0.0027739251040221915", "720", "0.0", "1679198411"], + ["11463", "0.0027739251040221915", "720", "0.0", "1679202011"], + ["11464", "0.0027739251040221915", "720", "0.0", "1679205611"], + ["11465", "0.0027739251040221915", "720", "0.0", "1679209211"], + ["11466", "0.0027739251040221915", "720", "0.0", "1679212811"], + ["11467", "0.0027739251040221915", "720", "0.0", "1679216411"], + ["11468", "0.0027739251040221915", "720", "0.0", "1679220011"], + ["11469", "0.0027739251040221915", "720", "0.0", "1679223611"], + ["11470", "0.0027739251040221915", "720", "0.0", "1679227211"], + ["11471", "0.0027739251040221915", "720", "0.0", "1679230811"], + ["11472", "0.0027739251040221915", "720", "0.0", "1679234411"], + ["11473", "0.0027739251040221915", "720", "0.0", "1679238011"], + ["11474", "0.0027739251040221915", "720", "0.0", "1679241611"], + ["11475", "0.0027739251040221915", "720", "0.0", "1679245211"], + ["11476", "0.0027739251040221915", "720", "0.0", "1679248811"], + ["11477", "0.0027739251040221915", "720", "0.0", "1679252423"], + ["11478", "0.0027739251040221915", "720", "0.0", "1679256011"], + ["11479", "0.0027739251040221915", "720", "0.0", "1679259611"], + ["11480", "0.0027739251040221915", "720", "0.0", "1679263211"], + ["11481", "0.0027739251040221915", "720", "0.0", "1679266811"], + ["11482", "0.0027739251040221915", "720", "0.0", "1679270411"], + ["11483", "0.0027739251040221915", "720", "0.0", "1679274011"], + ["11484", "0.0027739251040221915", "720", "0.0", "1679277611"], + ["11485", "0.0027739251040221915", "720", "0.0", "1679281211"], + ["11486", "0.0027739251040221915", "720", "0.0", "1679284811"], + ["11487", "0.0027739251040221915", "720", "0.0", "1679288411"], + ["11488", "0.0027739251040221915", "720", "0.0", "1679292011"], + ["11489", "0.0027739251040221915", "720", "0.0", "1679295611"], + ["11490", "0.0027739251040221915", "720", "0.0", "1679299211"], + ["11491", "0.0027739251040221915", "720", "0.0", "1679302811"], + ["11492", "0.0027739251040221915", "720", "0.0", "1679306411"], + ["11493", "0.0027739251040221915", "720", "0.0", "1679310011"], + ["11494", "0.0027739251040221915", "720", "0.0", "1679313611"], + ["11495", "0.0027739251040221915", "720", "0.0", "1679317211"], + ["11496", "0.0027739251040221915", "720", "0.0", "1679320811"], + ["11497", "0.0027739251040221915", "720", "0.0", "1679324423"], + ["11498", "0.0027739251040221915", "720", "0.0", "1679328011"], + ["11499", "0.0027739251040221915", "720", "0.0", "1679331611"], + ["11500", "0.0027739251040221915", "720", "0.0", "1679335211"], + ["11501", "0.0027739251040221915", "720", "0.0", "1679338823"], + ["11502", "0.0027739251040221915", "720", "0.0", "1679342411"], + ["11503", "0.0027739251040221915", "720", "0.0", "1679346011"], + ["11504", "0.0027739251040221915", "720", "0.0", "1679349611"], + ["11505", "0.0027739251040221915", "720", "0.0", "1679353211"], + ["11506", "0.0027739251040221915", "720", "0.0", "1679356811"], + ["11507", "0.0027739251040221915", "720", "0.0", "1679360411"], + ["11508", "0.0027739251040221915", "720", "0.0", "1679364011"], + ["11509", "0.0027739251040221915", "720", "0.0", "1679367611"], + ["11510", "0.0027739251040221915", "720", "0.0", "1679371211"], + ["11511", "0.0027739251040221915", "720", "0.0", "1679374811"], + ["11512", "0.0027739251040221915", "720", "0.0", "1679378411"], + ["11513", "0.0027739251040221915", "720", "0.0", "1679382011"], + ["11514", "0.0027739251040221915", "720", "0.0", "1679385611"], + ["11515", "0.0027739251040221915", "720", "0.0", "1679389211"], + ["11516", "0.0027739251040221915", "720", "0.0", "1679392811"], + ["11517", "0.0027739251040221915", "720", "0.0", "1679396411"], + ["11518", "0.0027739251040221915", "720", "0.0", "1679400011"], + ["11519", "0.0027739251040221915", "720", "0.0", "1679403611"], + ["11520", "0.0027739251040221915", "720", "0.0", "1679407211"], + ["11521", "0.0027739251040221915", "720", "0.0", "1679410811"], + ["11522", "0.0027739251040221915", "720", "0.0", "1679414411"], + ["11523", "0.0027739251040221915", "720", "0.0", "1679418011"], + ["11524", "0.0027739251040221915", "720", "0.0", "1679421611"], + ["11525", "0.0027739251040221915", "720", "0.0", "1679425211"], + ["11526", "0.0027739251040221915", "720", "0.0", "1679428811"], + ["11527", "0.0027739251040221915", "720", "0.0", "1679432411"], + ["11528", "0.0027739251040221915", "720", "0.0", "1679436011"], + ["11529", "0.0027739251040221915", "720", "0.0", "1679439611"], + ["11530", "0.0027739251040221915", "720", "0.0", "1679443211"], + ["11531", "0.0027739251040221915", "720", "0.0", "1679446811"], + ["11532", "0.0027739251040221915", "720", "0.0", "1679450411"], + ["11533", "0.0027739251040221915", "720", "0.0", "1679454011"], + ["11534", "0.0027739251040221915", "720", "0.0", "1679457611"], + ["11535", "0.0027739251040221915", "720", "0.0", "1679461211"], + ["11536", "0.0027739251040221915", "720", "0.0", "1679464811"], + ["11537", "0.0027739251040221915", "720", "0.0", "1679468411"], + ["11538", "0.0027739251040221915", "720", "0.0", "1679472011"], + ["11539", "0.0027739251040221915", "720", "0.0", "1679475611"], + ["11540", "0.0027739251040221915", "720", "0.0", "1679479211"], + ["11541", "0.0027739251040221915", "720", "0.0", "1679482811"], + ["11542", "0.0027739251040221915", "720", "0.0", "1679486411"], + ["11543", "0.0027739251040221915", "720", "0.0", "1679490011"], + ["11544", "0.0027739251040221915", "720", "0.0", "1679493611"], + ["11545", "0.0027739251040221915", "720", "0.0", "1679497235"], + ["11546", "0.0027739251040221915", "720", "0.0", "1679500847"], + ["11547", "0.0027739251040221915", "720", "0.0", "1679504411"], + ["11548", "0.0027739251040221915", "720", "0.0", "1679508035"], + ["11549", "0.0027739251040221915", "720", "0.0", "1679511611"], + ["11550", "0.0027739251040221915", "720", "0.0", "1679515211"], + ["11551", "0.0027739251040221915", "720", "0.0", "1679518811"], + ["11552", "0.0027739251040221915", "720", "0.0", "1679522411"], + ["11553", "0.0027739251040221915", "720", "0.0", "1679526011"], + ["11554", "0.0027739251040221915", "720", "0.0", "1679529623"], + ["11555", "0.0027739251040221915", "720", "0.0", "1679533211"], + ["11556", "0.0027739251040221915", "720", "0.0", "1679536811"], + ["11557", "0.0027739251040221915", "720", "0.0", "1679540411"], + ["11558", "0.0027739251040221915", "720", "0.0", "1679544011"], + ["11559", "0.0027739251040221915", "720", "0.0", "1679547611"], + ["11560", "0.0027739251040221915", "720", "0.0", "1679551211"], + ["11561", "0.0027739251040221915", "720", "0.0", "1679554811"], + ["11562", "0.0027739251040221915", "720", "0.0", "1679558411"], + ["11563", "0.0027739251040221915", "720", "0.0", "1679562011"], + ["11564", "0.0027739251040221915", "720", "0.0", "1679565623"], + ["11565", "0.0027739251040221915", "720", "0.0", "1679569211"], + ["11566", "0.0027739251040221915", "720", "0.0", "1679572811"], + ["11567", "0.0027739251040221915", "720", "0.0", "1679576411"], + ["11568", "0.0027739251040221915", "720", "0.0", "1679580011"], + ["11569", "0.0027739251040221915", "720", "0.0", "1679583611"], + ["11570", "0.0027739251040221915", "720", "0.0", "1679587211"], + ["11571", "0.0027739251040221915", "720", "0.0", "1679590811"], + ["11572", "0.0027739251040221915", "720", "0.0", "1679594423"], + ["11573", "0.0027739251040221915", "720", "0.0", "1679598011"], + ["11574", "0.0027739251040221915", "720", "0.0", "1679601611"], + ["11575", "0.0027739251040221915", "720", "0.0", "1679605211"], + ["11576", "0.0027739251040221915", "720", "0.0", "1679608811"], + ["11577", "0.0027739251040221915", "720", "0.0", "1679612411"], + ["11578", "0.0027739251040221915", "720", "0.0", "1679616023"], + ["11579", "0.0027739251040221915", "720", "0.0", "1679619611"], + ["11580", "0.0027739251040221915", "720", "0.0", "1679623211"], + ["11581", "0.0027739251040221915", "720", "0.0", "1679626811"], + ["11582", "0.0027739251040221915", "720", "0.0", "1679630411"], + ["11583", "0.0027739251040221915", "720", "0.0", "1679634011"], + ["11584", "0.0027739251040221915", "720", "0.0", "1679637611"], + ["11585", "0.0027739251040221915", "720", "0.0", "1679641211"], + ["11586", "0.0027739251040221915", "720", "0.0", "1679644811"], + ["11587", "0.0027739251040221915", "720", "0.0", "1679648411"], + ["11588", "0.0027739251040221915", "720", "0.0", "1679652011"], + ["11589", "0.0027739251040221915", "720", "0.0", "1679655611"], + ["11590", "0.0027739251040221915", "720", "0.0", "1679659223"], + ["11591", "0.0027739251040221915", "720", "0.0", "1679662811"], + ["11592", "0.0027739251040221915", "720", "0.0", "1679666411"], + ["11593", "0.0027739251040221915", "720", "0.0", "1679670011"], + ["11594", "0.0027739251040221915", "720", "0.0", "1679673635"], + ["11595", "0.0027739251040221915", "720", "0.0", "1679677211"], + ["11596", "0.0027739251040221915", "720", "0.0", "1679680811"], + ["11597", "0.0027739251040221915", "720", "0.0", "1679684411"], + ["11598", "0.0027739251040221915", "720", "0.0", "1679688011"], + ["11599", "0.0027739251040221915", "720", "0.0", "1679691611"], + ["11600", "0.0027739251040221915", "720", "0.0", "1679695211"], + ["11601", "0.0027739251040221915", "720", "0.0", "1679698811"], + ["11602", "0.0027739251040221915", "720", "0.0", "1679702411"], + ["11603", "0.0027739251040221915", "720", "0.0", "1679706011"], + ["11604", "0.0027739251040221915", "720", "0.0", "1679709611"], + ["11605", "0.0027739251040221915", "720", "0.0", "1679713211"], + ["11606", "0.0027739251040221915", "720", "0.0", "1679716811"], + ["11607", "0.0027739251040221915", "720", "0.0", "1679720411"], + ["11608", "0.0027739251040221915", "720", "0.0", "1679724011"], + ["11609", "0.0027739251040221915", "720", "0.0", "1679727611"], + ["11610", "0.0027739251040221915", "720", "0.0", "1679731211"], + ["11611", "0.0027739251040221915", "720", "0.0", "1679734811"], + ["11612", "0.0027739251040221915", "720", "0.0", "1679738411"], + ["11613", "0.0027739251040221915", "720", "0.0", "1679742011"], + ["11614", "0.0027739251040221915", "720", "0.0", "1679745611"], + ["11615", "0.0027739251040221915", "720", "0.0", "1679749211"], + ["11616", "0.0027739251040221915", "720", "0.0", "1679752811"], + ["11617", "0.0027739251040221915", "720", "0.0", "1679756411"], + ["11618", "0.0027739251040221915", "720", "0.0", "1679760011"], + ["11619", "0.0027739251040221915", "720", "0.0", "1679763611"], + ["11620", "0.0027739251040221915", "720", "0.0", "1679767211"], + ["11621", "0.0027739251040221915", "720", "0.0", "1679770811"], + ["11622", "0.0027739251040221915", "720", "0.0", "1679774411"], + ["11623", "0.0027739251040221915", "720", "0.0", "1679778011"], + ["11624", "0.0027739251040221915", "720", "0.0", "1679781611"], + ["11625", "0.0027739251040221915", "720", "0.0", "1679785211"], + ["11626", "0.0027739251040221915", "720", "0.0", "1679788811"], + ["11627", "0.0027739251040221915", "720", "0.0", "1679792411"], + ["11628", "0.0027739251040221915", "720", "0.0", "1679796011"], + ["11629", "0.0027739251040221915", "720", "0.0", "1679799611"], + ["11630", "0.0027739251040221915", "720", "0.0", "1679803211"], + ["11631", "0.0027739251040221915", "720", "0.0", "1679806811"], + ["11632", "0.0027739251040221915", "720", "0.0", "1679810411"], + ["11633", "0.0027739251040221915", "720", "0.0", "1679814011"], + ["11634", "0.0027739251040221915", "720", "0.0", "1679817611"], + ["11635", "0.0027739251040221915", "720", "0.0", "1679821211"], + ["11636", "0.0027739251040221915", "720", "0.0", "1679824811"], + ["11637", "0.0027739251040221915", "720", "0.0", "1679828423"], + ["11638", "0.0027739251040221915", "720", "0.0", "1679832011"], + ["11639", "0.0027739251040221915", "720", "0.0", "1679835611"], + ["11640", "0.0027739251040221915", "720", "0.0", "1679839211"], + ["11641", "0.0027739251040221915", "720", "0.0", "1679842811"], + ["11642", "0.0027739251040221915", "720", "0.0", "1679846411"], + ["11643", "0.0027739251040221915", "720", "0.0", "1679850011"], + ["11644", "0.0027739251040221915", "720", "0.0", "1679853611"], + ["11645", "0.0027739251040221915", "720", "0.0", "1679857211"], + ["11646", "0.0027739251040221915", "720", "0.0", "1679860811"], + ["11647", "0.0027739251040221915", "720", "0.0", "1679864411"], + ["11648", "0.0027739251040221915", "720", "0.0", "1679868023"], + ["11649", "0.0027739251040221915", "720", "0.0", "1679871611"], + ["11650", "0.0027739251040221915", "720", "0.0", "1679875211"], + ["11651", "0.0027739251040221915", "720", "0.0", "1679878811"], + ["11652", "0.0027739251040221915", "720", "0.0", "1679882411"], + ["11653", "0.0027739251040221915", "720", "0.0", "1679886011"], + ["11654", "0.0027739251040221915", "720", "0.0", "1679889611"], + ["11655", "0.0027739251040221915", "720", "0.0", "1679893211"], + ["11656", "0.0027739251040221915", "720", "0.0", "1679896811"], + ["11657", "0.0027739251040221915", "720", "0.0", "1679900411"], + ["11658", "0.0027739251040221915", "720", "0.0", "1679904011"], + ["11659", "0.0027739251040221915", "720", "0.0", "1679907611"], + ["11660", "0.0027739251040221915", "720", "0.0", "1679911211"], + ["11661", "0.0027739251040221915", "720", "0.0", "1679914811"], + ["11662", "0.0027739251040221915", "720", "0.0", "1679918411"], + ["11663", "0.0027739251040221915", "720", "0.0", "1679922011"], + ["11664", "0.0027739251040221915", "720", "0.0", "1679925623"], + ["11665", "0.0027739251040221915", "720", "0.0", "1679929235"], + ["11666", "0.0027739251040221915", "720", "0.0", "1679932811"], + ["11667", "0.0027739251040221915", "720", "0.0", "1679936411"], + ["11668", "0.0027739251040221915", "720", "0.0", "1679940023"], + ["11669", "0.0027739251040221915", "720", "0.0", "1679943623"], + ["11670", "0.0027739251040221915", "720", "0.0", "1679947211"], + ["11671", "0.0027739251040221915", "720", "0.0", "1679950823"], + ["11672", "0.0027739251040221915", "720", "0.0", "1679954411"], + ["11673", "0.0027739251040221915", "720", "0.0", "1679958011"], + ["11674", "0.0027739251040221915", "720", "0.0", "1679961611"], + ["11675", "0.0027739251040221915", "720", "0.0", "1679965211"], + ["11676", "0.0027739251040221915", "720", "0.0", "1679968811"], + ["11677", "0.0027739251040221915", "720", "0.0", "1679972411"], + ["11678", "0.0027739251040221915", "720", "0.0", "1679976011"], + ["11679", "0.0027739251040221915", "720", "0.0", "1679979611"], + ["11680", "0.0027739251040221915", "720", "0.0", "1679983211"], + ["11681", "0.0027739251040221915", "720", "0.0", "1679986811"], + ["11682", "0.0027739251040221915", "720", "0.0", "1679990411"], + ["11683", "0.0027739251040221915", "720", "0.0", "1679994011"], + ["11684", "0.0027739251040221915", "720", "0.0", "1679997611"], + ["11685", "0.0027739251040221915", "720", "0.0", "1680001211"], + ["11686", "0.0027739251040221915", "720", "0.0", "1680004811"], + ["11687", "0.0027739251040221915", "720", "0.0", "1680008411"], + ["11688", "0.0027739251040221915", "720", "0.0", "1680012011"], + ["11689", "0.0027739251040221915", "720", "0.0", "1680015611"], + ["11690", "0.0027739251040221915", "720", "0.0", "1680019211"], + ["11691", "0.0027739251040221915", "720", "0.0", "1680022811"], + ["11692", "0.0027739251040221915", "720", "0.0", "1680026411"], + ["11693", "0.0027739251040221915", "720", "0.0", "1680030011"], + ["11694", "0.0027739251040221915", "720", "0.0", "1680033647"], + ["11695", "0.0027739251040221915", "720", "0.0", "1680037211"], + ["11696", "0.0027739251040221915", "720", "0.0", "1680040811"], + ["11697", "0.0027739251040221915", "720", "0.0", "1680044411"], + ["11698", "0.0027739251040221915", "720", "0.0", "1680048011"], + ["11699", "0.0027739251040221915", "720", "0.0", "1680051611"], + ["11700", "0.0027739251040221915", "720", "0.0", "1680055211"], + ["11701", "0.0027739251040221915", "720", "0.0", "1680058811"], + ["11702", "0.0027739251040221915", "720", "0.0", "1680062411"], + ["11703", "0.0027739251040221915", "720", "0.0", "1680066011"], + ["11704", "0.0027739251040221915", "720", "0.0", "1680069611"], + ["11705", "0.0027739251040221915", "720", "0.0", "1680073211"], + ["11706", "0.0027739251040221915", "720", "0.0", "1680076811"], + ["11707", "0.0027739251040221915", "720", "0.0", "1680080411"], + ["11708", "0.0027739251040221915", "720", "0.0", "1680084011"], + ["11709", "0.0027739251040221915", "720", "0.0", "1680087611"], + ["11710", "0.0027739251040221915", "720", "0.0", "1680091211"], + ["11711", "0.0027739251040221915", "720", "0.0", "1680094811"], + ["11712", "0.0027739251040221915", "720", "0.0", "1680098411"], + ["11713", "0.0027739251040221915", "720", "0.0", "1680102011"], + ["11714", "0.0027739251040221915", "720", "0.0", "1680105611"], + ["11715", "0.0027739251040221915", "720", "0.0", "1680109211"], + ["11716", "0.0027739251040221915", "720", "0.0", "1680112811"], + ["11717", "0.0027739251040221915", "720", "0.0", "1680116411"], + ["11718", "0.0027739251040221915", "720", "0.0", "1680120011"], + ["11719", "0.0027739251040221915", "720", "0.0", "1680123611"], + ["11720", "0.0027739251040221915", "720", "0.0", "1680127211"], + ["11721", "0.0027739251040221915", "720", "0.0", "1680130811"], + ["11722", "0.0027739251040221915", "720", "0.0", "1680134411"], + ["11723", "0.0027739251040221915", "720", "0.0", "1680138011"], + ["11724", "0.0027739251040221915", "720", "0.0", "1680141611"], + ["11725", "0.0027739251040221915", "720", "0.0", "1680145211"], + ["11726", "0.0027739251040221915", "720", "0.0", "1680148811"], + ["11727", "0.0027739251040221915", "720", "0.0", "1680152411"], + ["11728", "0.0027739251040221915", "720", "0.0", "1680156035"], + ["11729", "0.0027739251040221915", "720", "0.0", "1680159611"], + ["11730", "0.0027739251040221915", "720", "0.0", "1680163211"], + ["11731", "0.0027739251040221915", "720", "0.0", "1680166811"], + ["11732", "0.0027739251040221915", "720", "0.0", "1680170411"], + ["11733", "0.0027739251040221915", "720", "0.0", "1680174011"], + ["11734", "0.0027739251040221915", "720", "0.0", "1680177611"], + ["11735", "0.0027739251040221915", "720", "0.0", "1680181211"], + ["11736", "0.0027739251040221915", "720", "0.0", "1680184811"], + ["11737", "0.0027739251040221915", "720", "0.0", "1680188411"], + ["11738", "0.0027739251040221915", "720", "0.0", "1680192011"], + ["11739", "0.0027739251040221915", "720", "0.0", "1680195611"], + ["11740", "0.0027739251040221915", "720", "0.0", "1680199211"], + ["11741", "0.0027739251040221915", "720", "0.0", "1680202811"], + ["11742", "0.0027739251040221915", "720", "0.0", "1680206411"], + ["11743", "0.0027739251040221915", "720", "0.0", "1680210011"], + ["11744", "0.0027739251040221915", "720", "0.0", "1680213611"], + ["11745", "0.0027739251040221915", "720", "0.0", "1680217211"], + ["11746", "0.0027739251040221915", "720", "0.0", "1680220811"], + ["11747", "0.0027739251040221915", "720", "0.0", "1680224411"], + ["11748", "0.0027739251040221915", "720", "0.0", "1680228011"], + ["11749", "0.0027739251040221915", "720", "0.0", "1680231611"], + ["11750", "0.0027739251040221915", "720", "0.0", "1680235211"], + ["11751", "0.0027739251040221915", "720", "0.0", "1680238811"], + ["11752", "0.0027739251040221915", "720", "0.0", "1680242411"], + ["11753", "0.0027739251040221915", "720", "0.0", "1680246011"], + ["11754", "0.0027739251040221915", "720", "0.0", "1680249611"], + ["11755", "0.0027739251040221915", "720", "0.0", "1680253211"], + ["11756", "0.0027739251040221915", "720", "0.0", "1680256811"], + ["11757", "0.0027739251040221915", "720", "0.0", "1680260411"], + ["11758", "0.0027739251040221915", "720", "0.0", "1680264011"], + ["11759", "0.0027739251040221915", "720", "0.0", "1680267611"], + ["11760", "0.0027739251040221915", "720", "0.0", "1680271211"], + ["11761", "0.0027739251040221915", "720", "0.0", "1680274811"], + ["11762", "0.0027739251040221915", "720", "0.0", "1680278423"], + ["11763", "0.0027739251040221915", "720", "0.0", "1680282011"], + ["11764", "0.0027739251040221915", "720", "0.0", "1680285611"], + ["11765", "0.0027739251040221915", "720", "0.0", "1680289211"], + ["11766", "0.0027739251040221915", "720", "0.0", "1680292811"], + ["11767", "0.0027739251040221915", "720", "0.0", "1680296411"], + ["11768", "0.0027739251040221915", "720", "0.0", "1680300011"], + ["11769", "0.0027739251040221915", "720", "0.0", "1680303611"], + ["11770", "0.0027739251040221915", "720", "0.0", "1680307211"], + ["11771", "0.0027739251040221915", "720", "0.0", "1680310811"], + ["11772", "0.0027739251040221915", "720", "0.0", "1680314411"], + ["11773", "0.0027739251040221915", "720", "0.0", "1680318011"], + ["11774", "0.0027739251040221915", "720", "0.0", "1680321611"], + ["11775", "0.0027739251040221915", "720", "0.0", "1680325211"], + ["11776", "0.0027739251040221915", "720", "0.0", "1680328811"], + ["11777", "0.0027739251040221915", "720", "0.0", "1680332411"], + ["11778", "0.0027739251040221915", "720", "0.0", "1680336011"], + ["11779", "0.0027739251040221915", "720", "0.0", "1680339611"], + ["11780", "0.0027739251040221915", "720", "0.0", "1680343211"], + ["11781", "0.0027739251040221915", "720", "0.0", "1680346811"], + ["11782", "0.0027739251040221915", "720", "0.0", "1680350411"], + ["11783", "0.0027739251040221915", "720", "0.0", "1680354011"], + ["11784", "0.0027739251040221915", "720", "0.0", "1680357611"], + ["11785", "0.0027739251040221915", "720", "0.0", "1680361211"], + ["11786", "0.0027739251040221915", "720", "0.0", "1680364811"], + ["11787", "0.0027739251040221915", "720", "0.0", "1680368411"], + ["11788", "0.0027739251040221915", "720", "0.0", "1680372011"], + ["11789", "0.0027739251040221915", "720", "0.0", "1680375611"], + ["11790", "0.0027739251040221915", "720", "0.0", "1680379211"], + ["11791", "0.0027739251040221915", "720", "0.0", "1680382811"], + ["11792", "0.0027739251040221915", "720", "0.0", "1680386411"], + ["11793", "0.0027739251040221915", "720", "0.0", "1680390011"], + ["11794", "0.0027739251040221915", "720", "0.0", "1680393611"], + ["11795", "0.0027739251040221915", "720", "0.0", "1680397211"], + ["11796", "0.0027739251040221915", "720", "0.0", "1680400811"], + ["11797", "0.0027739251040221915", "720", "0.0", "1680404411"], + ["11798", "0.0027739251040221915", "720", "0.0", "1680408011"], + ["11799", "0.0027739251040221915", "720", "0.0", "1680411611"], + ["11800", "0.0027739251040221915", "720", "0.0", "1680415223"], + ["11801", "0.0027739251040221915", "720", "0.0", "1680418811"], + ["11802", "0.0027739251040221915", "720", "0.0", "1680422423"], + ["11803", "0.0027739251040221915", "720", "0.0", "1680426023"], + ["11804", "0.0027739251040221915", "720", "0.0", "1680429611"], + ["11805", "0.0027739251040221915", "720", "0.0", "1680433211"], + ["11806", "0.0027739251040221915", "720", "0.0", "1680436811"], + ["11807", "0.0027739251040221915", "720", "0.0", "1680440411"], + ["11808", "0.0027739251040221915", "720", "0.0", "1680444011"], + ["11809", "0.0027739251040221915", "720", "0.0", "1680447611"], + ["11810", "0.0027739251040221915", "720", "0.0", "1680451211"], + ["11811", "0.0027739251040221915", "720", "0.0", "1680454811"], + ["11812", "0.0027739251040221915", "720", "0.0", "1680458411"], + ["11813", "0.0027739251040221915", "720", "0.0", "1680462011"], + ["11814", "0.0027739251040221915", "720", "0.0", "1680465611"], + ["11815", "0.0027739251040221915", "720", "0.0", "1680469211"], + ["11816", "0.0027739251040221915", "720", "0.0", "1680472811"], + ["11817", "0.0027739251040221915", "720", "0.0", "1680476411"], + ["11818", "0.0027739251040221915", "720", "0.0", "1680480011"], + ["11819", "0.0027739251040221915", "720", "0.0", "1680483611"], + ["11820", "0.0027739251040221915", "720", "0.0", "1680487211"], + ["11821", "0.0027739251040221915", "720", "0.0", "1680490811"], + ["11822", "0.0027739251040221915", "720", "0.0", "1680494411"], + ["11823", "0.0027739251040221915", "720", "0.0", "1680498011"], + ["11824", "0.0027739251040221915", "720", "0.0", "1680501611"], + ["11825", "0.0027739251040221915", "720", "0.0", "1680505211"], + ["11826", "0.0027739251040221915", "720", "0.0", "1680508811"], + ["11827", "0.0027739251040221915", "720", "0.0", "1680512411"], + ["11828", "0.0027739251040221915", "720", "0.0", "1680516047"], + ["11829", "0.0027739251040221915", "720", "0.0", "1680519623"], + ["11830", "0.0027739251040221915", "720", "0.0", "1680523211"], + ["11831", "0.0027739251040221915", "720", "0.0", "1680526811"], + ["11832", "0.0027739251040221915", "720", "0.0", "1680530411"], + ["11833", "0.0027739251040221915", "720", "0.0", "1680534011"], + ["11834", "0.0027739251040221915", "720", "0.0", "1680537611"], + ["11835", "0.0027739251040221915", "720", "0.0", "1680541211"], + ["11836", "0.0027739251040221915", "720", "0.0", "1680544811"], + ["11837", "0.0027739251040221915", "720", "0.0", "1680548423"], + ["11838", "0.0027739251040221915", "720", "0.0", "1680552011"], + ["11839", "0.0027739251040221915", "720", "0.0", "1680555611"], + ["11840", "0.0027739251040221915", "720", "0.0", "1680559211"], + ["11841", "0.0027739251040221915", "720", "0.0", "1680562823"], + ["11842", "0.0027739251040221915", "720", "0.0", "1680566411"], + ["11843", "0.0027739251040221915", "720", "0.0", "1680570011"], + ["11844", "0.0027739251040221915", "720", "0.0", "1680573611"], + ["11845", "0.0027739251040221915", "720", "0.0", "1680577211"], + ["11846", "0.0027739251040221915", "720", "0.0", "1680580811"], + ["11847", "0.0027739251040221915", "720", "0.0", "1680584411"], + ["11848", "0.0027739251040221915", "720", "0.0", "1680588011"], + ["11849", "0.0027739251040221915", "720", "0.0", "1680591611"], + ["11850", "0.0027739251040221915", "720", "0.0", "1680595211"], + ["11851", "0.0027739251040221915", "720", "0.0", "1680598823"], + ["11852", "0.0027739251040221915", "720", "0.0", "1680602411"], + ["11853", "0.0027739251040221915", "720", "0.0", "1680606011"], + ["11854", "0.0027739251040221915", "720", "0.0", "1680609623"], + ["11855", "0.0027739251040221915", "720", "0.0", "1680613211"], + ["11856", "0.0027739251040221915", "720", "0.0", "1680616811"], + ["11857", "0.0027739251040221915", "720", "0.0", "1680620411"], + ["11858", "0.0027739251040221915", "720", "0.0", "1680624011"], + ["11859", "0.0027739251040221915", "720", "0.0", "1680627611"], + ["11860", "0.0027739251040221915", "720", "0.0", "1680631211"], + ["11861", "0.0027739251040221915", "720", "0.0", "1680634823"], + ["11862", "0.0027739251040221915", "720", "0.0", "1680638411"], + ["11863", "0.0027739251040221915", "720", "0.0", "1680642011"], + ["11864", "0.0027739251040221915", "720", "0.0", "1680645623"], + ["11865", "0.0027739251040221915", "720", "0.0", "1680649235"], + ["11866", "0.0027739251040221915", "720", "0.0", "1680652811"], + ["11867", "0.0027739251040221915", "720", "0.0", "1680656435"], + ["11868", "0.0027739251040221915", "720", "0.0", "1680660011"], + ["11869", "0.0027739251040221915", "720", "0.0", "1680663611"], + ["11870", "0.0027739251040221915", "720", "0.0", "1680667211"], + ["11871", "0.0027739251040221915", "720", "0.0", "1680670811"], + ["11872", "0.0027739251040221915", "720", "0.0", "1680674411"], + ["11873", "0.0027739251040221915", "720", "0.0", "1680678011"], + ["11874", "0.0027739251040221915", "720", "0.0", "1680681611"], + ["11875", "0.0027739251040221915", "720", "0.0", "1680685211"], + ["11876", "0.0027739251040221915", "720", "0.0", "1680688823"], + ["11877", "0.0027739251040221915", "720", "0.0", "1680692423"], + ["11878", "0.0027739251040221915", "720", "0.0", "1680696011"], + ["11879", "0.0027739251040221915", "720", "0.0", "1680699611"], + ["11880", "0.0027739251040221915", "720", "0.0", "1680703211"], + ["11881", "0.0027739251040221915", "720", "0.0", "1680706811"], + ["11882", "0.0027739251040221915", "720", "0.0", "1680710411"], + ["11883", "0.0027739251040221915", "720", "0.0", "1680714011"], + ["11884", "0.0027739251040221915", "720", "0.0", "1680717611"], + ["11885", "0.0027739251040221915", "720", "0.0", "1680721211"], + ["11886", "0.0027739251040221915", "720", "0.0", "1680724811"], + ["11887", "0.0027739251040221915", "720", "0.0", "1680728411"], + ["11888", "0.0027739251040221915", "720", "0.0", "1680732023"], + ["11889", "0.0027739251040221915", "720", "0.0", "1680735611"], + ["11890", "0.0027739251040221915", "720", "0.0", "1680739211"], + ["11891", "0.0027739251040221915", "720", "0.0", "1680742811"], + ["11892", "0.0027739251040221915", "720", "0.0", "1680746423"], + ["11893", "0.0027739251040221915", "720", "0.0", "1680750011"], + ["11894", "0.0027739251040221915", "720", "0.0", "1680753611"], + ["11895", "0.0027739251040221915", "720", "0.0", "1680757211"], + ["11896", "0.0027739251040221915", "720", "0.0", "1680760811"], + ["11897", "0.0027739251040221915", "720", "0.0", "1680764423"], + ["11898", "0.0027739251040221915", "720", "0.0", "1680768011"], + ["11899", "0.0027739251040221915", "720", "0.0", "1680771611"], + ["11900", "0.0027739251040221915", "720", "0.0", "1680775211"], + ["11901", "0.0027739251040221915", "720", "0.0", "1680778811"], + ["11902", "0.0027739251040221915", "720", "0.0", "1680782411"], + ["11903", "0.0027739251040221915", "720", "0.0", "1680786011"], + ["11904", "0.0027739251040221915", "720", "0.0", "1680789623"], + ["11905", "0.0027739251040221915", "720", "0.0", "1680793211"], + ["11906", "0.0027739251040221915", "720", "0.0", "1680796811"], + ["11907", "0.0027739251040221915", "720", "0.0", "1680800411"], + ["11908", "0.0027739251040221915", "720", "0.0", "1680804011"], + ["11909", "0.0027739251040221915", "720", "0.0", "1680807611"], + ["11910", "0.0027739251040221915", "720", "0.0", "1680811211"], + ["11911", "0.0027739251040221915", "720", "0.0", "1680814823"], + ["11912", "0.0027739251040221915", "720", "0.0", "1680818411"], + ["11913", "0.0027739251040221915", "720", "0.0", "1680822011"], + ["11914", "0.0027739251040221915", "720", "0.0", "1680825611"], + ["11915", "0.0027739251040221915", "720", "0.0", "1680829211"], + ["11916", "0.0027739251040221915", "720", "0.0", "1680832811"], + ["11917", "0.0027739251040221915", "720", "0.0", "1680836411"], + ["11918", "0.0027739251040221915", "720", "0.0", "1680840023"], + ["11919", "0.0027739251040221915", "720", "0.0", "1680843611"], + ["11920", "0.0027739251040221915", "720", "0.0", "1680847211"], + ["11921", "0.0027739251040221915", "720", "0.0", "1680850835"], + ["11922", "0.0027739251040221915", "720", "0.0", "1680854411"], + ["11923", "0.0027739251040221915", "720", "0.0", "1680858011"], + ["11924", "0.0027739251040221915", "720", "0.0", "1680861611"], + ["11925", "0.0027739251040221915", "720", "0.0", "1680865211"], + ["11926", "0.0027739251040221915", "720", "0.0", "1680868811"], + ["11927", "0.0027739251040221915", "720", "0.0", "1680872447"], + ["11928", "0.0027739251040221915", "720", "0.0", "1680876011"], + ["11929", "0.0027739251040221915", "720", "0.0", "1680879611"], + ["11930", "0.0027739251040221915", "720", "0.0", "1680883211"], + ["11931", "0.0027739251040221915", "720", "0.0", "1680886811"], + ["11932", "0.0027739251040221915", "720", "0.0", "1680890411"], + ["11933", "0.0027739251040221915", "720", "0.0", "1680894011"], + ["11934", "0.0027739251040221915", "720", "0.0", "1680897611"], + ["11935", "0.0027739251040221915", "720", "0.0", "1680901211"], + ["11936", "0.0027739251040221915", "720", "0.0", "1680904811"], + ["11937", "0.0027739251040221915", "720", "0.0", "1680908423"], + ["11938", "0.0027739251040221915", "720", "0.0", "1680912011"], + ["11939", "0.0027739251040221915", "720", "0.0", "1680915611"], + ["11940", "0.0027739251040221915", "720", "0.0", "1680919211"], + ["11941", "0.0027739251040221915", "720", "0.0", "1680922811"], + ["11942", "0.0027739251040221915", "720", "0.0", "1680926411"], + ["11943", "0.0027739251040221915", "720", "0.0", "1680930011"], + ["11944", "0.0027739251040221915", "720", "0.0", "1680933611"], + ["11945", "0.0027739251040221915", "720", "0.0", "1680937211"], + ["11946", "0.0027739251040221915", "720", "0.0", "1680940811"], + ["11947", "0.0027739251040221915", "720", "0.0", "1680944411"], + ["11948", "0.0027739251040221915", "720", "0.0", "1680948011"], + ["11949", "0.0027739251040221915", "720", "0.0", "1680951635"], + ["11950", "0.0027739251040221915", "720", "0.0", "1680955211"], + ["11951", "0.0027739251040221915", "720", "0.0", "1680958811"], + ["11952", "0.0027739251040221915", "720", "0.0", "1680962411"], + ["11953", "0.0027739251040221915", "720", "0.0", "1680966011"], + ["11954", "0.0027739251040221915", "720", "0.0", "1680969611"], + ["11955", "0.0027739251040221915", "720", "0.0", "1680973211"], + ["11956", "0.0027739251040221915", "720", "0.0", "1680976811"], + ["11957", "0.0027739251040221915", "720", "0.0", "1680980423"], + ["11958", "0.0027739251040221915", "720", "0.0", "1680984011"], + ["11959", "0.0027739251040221915", "720", "0.0", "1680987611"], + ["11960", "0.0027739251040221915", "720", "0.0", "1680991211"], + ["11961", "0.0027739251040221915", "720", "0.0", "1680994811"], + ["11962", "0.0027739251040221915", "720", "0.0", "1680998411"], + ["11963", "0.0027739251040221915", "720", "0.0", "1681002011"], + ["11964", "0.0027739251040221915", "720", "0.0", "1681005611"], + ["11965", "0.0027739251040221915", "720", "0.0", "1681009211"], + ["11966", "0.0027739251040221915", "720", "0.0", "1681012811"], + ["11967", "0.0027739251040221915", "720", "0.0", "1681016411"], + ["11968", "0.0027739251040221915", "720", "0.0", "1681020011"], + ["11969", "0.0027739251040221915", "720", "0.0", "1681023611"], + ["11970", "0.0027739251040221915", "720", "0.0", "1681027211"], + ["11971", "0.0027739251040221915", "720", "0.0", "1681030811"], + ["11972", "0.0027739251040221915", "720", "0.0", "1681034423"], + ["11973", "0.0027739251040221915", "720", "0.0", "1681038011"], + ["11974", "0.0027739251040221915", "720", "0.0", "1681041611"], + ["11975", "0.0027739251040221915", "720", "0.0", "1681045211"], + ["11976", "0.0027739251040221915", "720", "0.0", "1681048811"], + ["11977", "0.0027739251040221915", "720", "0.0", "1681052411"], + ["11978", "0.0027739251040221915", "720", "0.0", "1681056011"], + ["11979", "0.0027739251040221915", "720", "0.0", "1681059623"], + ["11980", "0.0027739251040221915", "720", "0.0", "1681063223"], + ["11981", "0.0027739251040221915", "720", "0.0", "1681066811"], + ["11982", "0.0027739251040221915", "720", "0.0", "1681070411"], + ["11983", "0.0027739251040221915", "720", "0.0", "1681074023"], + ["11984", "0.0027739251040221915", "720", "0.0", "1681077611"], + ["11985", "0.0027739251040221915", "720", "0.0", "1681081211"], + ["11986", "0.0027739251040221915", "720", "0.0", "1681084811"], + ["11987", "0.0027739251040221915", "720", "0.0", "1681088411"], + ["11988", "0.0027739251040221915", "720", "0.0", "1681092011"], + ["11989", "0.0027739251040221915", "720", "0.0", "1681095611"], + ["11990", "0.0027739251040221915", "720", "0.0", "1681099211"], + ["11991", "0.0027739251040221915", "720", "0.0", "1681102823"], + ["11992", "0.0027739251040221915", "720", "0.0", "1681106411"], + ["11993", "0.0027739251040221915", "720", "0.0", "1681110011"], + ["11994", "0.0027739251040221915", "720", "0.0", "1681113611"], + ["11995", "0.0027739251040221915", "720", "0.0", "1681117211"], + ["11996", "0.0027739251040221915", "720", "0.0", "1681120811"], + ["11997", "0.0027739251040221915", "720", "0.0", "1681124411"], + ["11998", "0.0027739251040221915", "720", "0.0", "1681128011"], + ["11999", "0.0027739251040221915", "720", "0.0", "1681131611"], + ["12000", "0.0027739251040221915", "720", "0.0", "1681135211"], + ["12001", "0.0027739251040221915", "720", "0.0", "1681138811"], + ["12002", "0.0027739251040221915", "720", "0.0", "1681142411"], + ["12003", "0.0027739251040221915", "720", "0.0", "1681146011"], + ["12004", "0.0027739251040221915", "720", "0.0", "1681149611"], + ["12005", "0.0027739251040221915", "720", "0.0", "1681153223"], + ["12006", "0.0027739251040221915", "720", "0.0", "1681156811"], + ["12007", "0.0027739251040221915", "720", "0.0", "1681160411"], + ["12008", "0.0027739251040221915", "720", "0.0", "1681164011"], + ["12009", "0.0027739251040221915", "720", "0.0", "1681167611"], + ["12010", "0.0027739251040221915", "720", "0.0", "1681171211"], + ["12011", "0.0027739251040221915", "720", "0.0", "1681174811"], + ["12012", "0.0027739251040221915", "720", "0.0", "1681178411"], + ["12013", "0.0027739251040221915", "720", "0.0", "1681182011"], + ["12014", "0.0027739251040221915", "720", "0.0", "1681185611"], + ["12015", "0.0027739251040221915", "720", "0.0", "1681189211"], + ["12016", "0.0027739251040221915", "720", "0.0", "1681192811"], + ["12017", "0.0027739251040221915", "720", "0.0", "1681196411"], + ["12018", "0.0027739251040221915", "720", "0.0", "1681200011"], + ["12019", "0.0027739251040221915", "720", "0.0", "1681203611"], + ["12020", "0.0027739251040221915", "720", "0.0", "1681207211"], + ["12021", "0.0027739251040221915", "720", "0.0", "1681210811"], + ["12022", "0.0027739251040221915", "720", "0.0", "1681214411"], + ["12023", "0.0027739251040221915", "720", "0.0", "1681218011"], + ["12024", "0.0027739251040221915", "720", "0.0", "1681221611"], + ["12025", "0.0027739251040221915", "720", "0.0", "1681225211"], + ["12026", "0.0027739251040221915", "720", "0.0", "1681228859"], + ["12027", "0.0027739251040221915", "720", "0.0", "1681232423"], + ["12028", "0.0027739251040221915", "720", "0.0", "1681236011"], + ["12029", "0.0027739251040221915", "720", "0.0", "1681239767"], + ["12030", "0.0027739251040221915", "720", "0.0", "1681243211"], + ["12031", "0.0027739251040221915", "720", "0.0", "1681246811"], + ["12032", "0.0027739251040221915", "720", "0.0", "1681250411"], + ["12033", "0.0027739251040221915", "720", "0.0", "1681254011"], + ["12034", "0.0027739251040221915", "720", "0.0", "1681257611"], + ["12035", "0.0027739251040221915", "720", "0.0", "1681261235"], + ["12036", "0.0027739251040221915", "720", "0.0", "1681264811"], + ["12037", "0.0027739251040221915", "720", "0.0", "1681268411"], + ["12038", "0.0027739251040221915", "720", "0.0", "1681272011"], + ["12039", "0.0027739251040221915", "720", "0.0", "1681275623"], + ["12040", "0.0027739251040221915", "720", "0.0", "1681279211"], + ["12041", "0.0027739251040221915", "720", "0.0", "1681282811"], + ["12042", "0.0027739251040221915", "720", "0.0", "1681286411"], + ["12043", "0.0027739251040221915", "720", "0.0", "1681290011"], + ["12044", "0.0027739251040221915", "720", "0.0", "1681293611"], + ["12045", "0.0027739251040221915", "720", "0.0", "1681297211"], + ["12046", "0.0027739251040221915", "720", "0.0", "1681300811"], + ["12047", "0.0027739251040221915", "720", "0.0", "1681304411"], + ["12048", "0.0027739251040221915", "720", "0.0", "1681308011"], + ["12049", "0.0027739251040221915", "720", "0.0", "1681311611"], + ["12050", "0.0027739251040221915", "720", "0.0", "1681315211"], + ["12051", "0.0027739251040221915", "720", "0.0", "1681318811"], + ["12052", "0.0027739251040221915", "720", "0.0", "1681322411"], + ["12053", "0.0027739251040221915", "720", "0.0", "1681326011"], + ["12054", "0.0027739251040221915", "720", "0.0", "1681329611"], + ["12055", "0.0027739251040221915", "720", "0.0", "1681333211"], + ["12056", "0.0027739251040221915", "720", "0.0", "1681336823"], + ["12057", "0.0027739251040221915", "720", "0.0", "1681340423"], + ["12058", "0.0027739251040221915", "720", "0.0", "1681344035"], + ["12059", "0.0027739251040221915", "720", "0.0", "1681347611"], + ["12060", "0.0027739251040221915", "720", "0.0", "1681351211"], + ["12061", "0.0027739251040221915", "720", "0.0", "1681354811"], + ["12062", "0.0027739251040221915", "720", "0.0", "1681358411"], + ["12063", "0.0027739251040221915", "720", "0.0", "1681362011"], + ["12064", "0.0027739251040221915", "720", "0.0", "1681365635"], + ["12065", "0.0027739251040221915", "720", "0.0", "1681369211"], + ["12066", "0.0027739251040221915", "720", "0.0", "1681372811"], + ["12067", "0.0027739251040221915", "720", "0.0", "1681376411"], + ["12068", "0.0027739251040221915", "720", "0.0", "1681380011"], + ["12069", "0.0027739251040221915", "720", "0.0", "1681383647"], + ["12070", "0.0027739251040221915", "720", "0.0", "1681387211"], + ["12071", "0.0027739251040221915", "720", "0.0", "1681390811"], + ["12072", "0.0027739251040221915", "720", "0.0", "1681394423"], + ["12073", "0.0027739251040221915", "720", "0.0", "1681398011"], + ["12074", "0.0027739251040221915", "720", "0.0", "1681401611"], + ["12075", "0.0027739251040221915", "720", "0.0", "1681405211"], + ["12076", "0.0027739251040221915", "720", "0.0", "1681408823"], + ["12077", "0.0027739251040221915", "720", "0.0", "1681412519"], + ["12078", "0.0027739251040221915", "720", "0.0", "1681416011"], + ["12079", "0.0027739251040221915", "720", "0.0", "1681419611"], + ["12080", "0.0027739251040221915", "720", "0.0", "1681423211"], + ["12081", "0.0027739251040221915", "720", "0.0", "1681426823"], + ["12082", "0.0027739251040221915", "720", "0.0", "1681430411"], + ["12083", "0.0027739251040221915", "720", "0.0", "1681434011"], + ["12084", "0.0027739251040221915", "720", "0.0", "1681437611"], + ["12085", "0.0027739251040221915", "720", "0.0", "1681441211"], + ["12086", "0.0027739251040221915", "720", "0.0", "1681444823"], + ["12087", "0.0027739251040221915", "720", "0.0", "1681448411"], + ["12088", "0.0027739251040221915", "720", "0.0", "1681452011"], + ["12089", "0.0027739251040221915", "720", "0.0", "1681455611"], + ["12090", "0.0027739251040221915", "720", "0.0", "1681459211"], + ["12091", "0.0027739251040221915", "720", "0.0", "1681462811"], + ["12092", "0.0027739251040221915", "720", "0.0", "1681466411"], + ["12093", "0.0027739251040221915", "720", "0.0", "1681470011"], + ["12094", "0.0027739251040221915", "720", "0.0", "1681473635"], + ["12095", "0.0027739251040221915", "720", "0.0", "1681477211"], + ["12096", "0.0027739251040221915", "720", "0.0", "1681480811"], + ["12097", "0.0027739251040221915", "720", "0.0", "1681484507"], + ["12098", "0.0027739251040221915", "720", "0.0", "1681488023"], + ["12099", "0.0027739251040221915", "720", "0.0", "1681491623"], + ["12100", "0.0027739251040221915", "720", "0.0", "1681495211"], + ["12101", "0.0027739251040221915", "720", "0.0", "1681498811"], + ["12102", "0.0027739251040221915", "720", "0.0", "1681502411"], + ["12103", "0.0027739251040221915", "720", "0.0", "1681506011"], + ["12104", "0.0027739251040221915", "720", "0.0", "1681509623"], + ["12105", "0.0027739251040221915", "720", "0.0", "1681513211"], + ["12106", "0.0027739251040221915", "720", "0.0", "1681516811"], + ["12107", "0.0027739251040221915", "720", "0.0", "1681520411"], + ["12108", "0.0027739251040221915", "720", "0.0", "1681524011"], + ["12109", "0.0027739251040221915", "720", "0.0", "1681527611"], + ["12110", "0.0027739251040221915", "720", "0.0", "1681531211"], + ["12111", "0.0027739251040221915", "720", "0.0", "1681534811"], + ["12112", "0.0027739251040221915", "720", "0.0", "1681538411"], + ["12113", "0.0027739251040221915", "720", "0.0", "1681542011"], + ["12114", "0.0027739251040221915", "720", "0.0", "1681545611"], + ["12115", "0.0027739251040221915", "720", "0.0", "1681549211"], + ["12116", "0.0027739251040221915", "720", "0.0", "1681552811"], + ["12117", "0.0027739251040221915", "720", "0.0", "1681556411"], + ["12118", "0.0027739251040221915", "720", "0.0", "1681560023"], + ["12119", "0.0027739251040221915", "720", "0.0", "1681563611"], + ["12120", "0.0027739251040221915", "720", "0.0", "1681567211"], + ["12121", "0.0027739251040221915", "720", "0.0", "1681570811"], + ["12122", "0.0027739251040221915", "720", "0.0", "1681574411"], + ["12123", "0.0027739251040221915", "720", "0.0", "1681578011"], + ["12124", "0.0027739251040221915", "720", "0.0", "1681581611"], + ["12125", "0.0027739251040221915", "720", "0.0", "1681585211"], + ["12126", "0.0027739251040221915", "720", "0.0", "1681588811"], + ["12127", "0.0027739251040221915", "720", "0.0", "1681592411"], + ["12128", "0.0027739251040221915", "720", "0.0", "1681596011"], + ["12129", "0.0027739251040221915", "720", "0.0", "1681599611"], + ["12130", "0.0027739251040221915", "720", "0.0", "1681603211"], + ["12131", "0.0027739251040221915", "720", "0.0", "1681606811"], + ["12132", "0.0027739251040221915", "720", "0.0", "1681610423"], + ["12133", "0.0027739251040221915", "720", "0.0", "1681614011"], + ["12134", "0.0027739251040221915", "720", "0.0", "1681617611"], + ["12135", "0.0027739251040221915", "720", "0.0", "1681621211"], + ["12136", "0.0027739251040221915", "720", "0.0", "1681624811"], + ["12137", "0.0027739251040221915", "720", "0.0", "1681628411"], + ["12138", "0.0027739251040221915", "720", "0.0", "1681632023"], + ["12139", "0.0027739251040221915", "720", "0.0", "1681635611"], + ["12140", "0.0027739251040221915", "720", "0.0", "1681639211"], + ["12141", "0.0027739251040221915", "720", "0.0", "1681642811"], + ["12142", "0.0027739251040221915", "720", "0.0", "1681646411"], + ["12143", "0.0027739251040221915", "720", "0.0", "1681650011"], + ["12144", "0.0027739251040221915", "720", "0.0", "1681653611"], + ["12145", "0.0027739251040221915", "720", "0.0", "1681657211"], + ["12146", "0.0027739251040221915", "720", "0.0", "1681660811"], + ["12147", "0.0027739251040221915", "720", "0.0", "1681664423"], + ["12148", "0.0027739251040221915", "720", "0.0", "1681668011"], + ["12149", "0.0027739251040221915", "720", "0.0", "1681671647"], + ["12150", "0.0027739251040221915", "720", "0.0", "1681675211"], + ["12151", "0.0027739251040221915", "720", "0.0", "1681678811"], + ["12152", "0.0027739251040221915", "720", "0.0", "1681682411"], + ["12153", "0.0027739251040221915", "720", "0.0", "1681686011"], + ["12154", "0.0027739251040221915", "720", "0.0", "1681689611"], + ["12155", "0.0027739251040221915", "720", "0.0", "1681693211"], + ["12156", "0.0027739251040221915", "720", "0.0", "1681696811"], + ["12157", "0.0027739251040221915", "720", "0.0", "1681700411"], + ["12158", "0.0027739251040221915", "720", "0.0", "1681704011"], + ["12159", "0.0027739251040221915", "720", "0.0", "1681707611"], + ["12160", "0.0027739251040221915", "720", "0.0", "1681711223"], + ["12161", "0.0027739251040221915", "720", "0.0", "1681714811"], + ["12162", "0.0027739251040221915", "720", "0.0", "1681718411"], + ["12163", "0.0027739251040221915", "720", "0.0", "1681722023"], + ["12164", "0.0027739251040221915", "720", "0.0", "1681725611"], + ["12165", "0.0027739251040221915", "720", "0.0", "1681729223"], + ["12166", "0.0027739251040221915", "720", "0.0", "1681732811"], + ["12167", "0.0027739251040221915", "720", "0.0", "1681736411"], + ["12168", "0.0027739251040221915", "720", "0.0", "1681740011"], + ["12169", "0.0027739251040221915", "720", "0.0", "1681743647"], + ["12170", "0.0027739251040221915", "720", "0.0", "1681747211"], + ["12171", "0.0027739251040221915", "720", "0.0", "1681750811"], + ["12172", "0.0027739251040221915", "720", "0.0", "1681754411"], + ["12173", "0.0027739251040221915", "720", "0.0", "1681758011"], + ["12174", "0.0027739251040221915", "720", "0.0", "1681761611"], + ["12175", "0.0027739251040221915", "720", "0.0", "1681765211"], + ["12176", "0.0027739251040221915", "720", "0.0", "1681768811"], + ["12177", "0.0027739251040221915", "720", "0.0", "1681772411"], + ["12178", "0.0027739251040221915", "720", "0.0", "1681776011"], + ["12179", "0.0027739251040221915", "720", "0.0", "1681779623"], + ["12180", "0.0027739251040221915", "720", "0.0", "1681783223"], + ["12181", "0.0027739251040221915", "720", "0.0", "1681786811"], + ["12182", "0.0027739251040221915", "720", "0.0", "1681790411"], + ["12183", "0.0027739251040221915", "720", "0.0", "1681794011"], + ["12184", "0.0027739251040221915", "720", "0.0", "1681797623"], + ["12185", "0.0027739251040221915", "720", "0.0", "1681801211"], + ["12186", "0.0027739251040221915", "720", "0.0", "1681804811"], + ["12187", "0.0027739251040221915", "720", "0.0", "1681808423"], + ["12188", "0.0027739251040221915", "720", "0.0", "1681812011"], + ["12189", "0.0027739251040221915", "720", "0.0", "1681815611"], + ["12190", "0.0027739251040221915", "720", "0.0", "1681819223"], + ["12191", "0.0027739251040221915", "720", "0.0", "1681822811"], + ["12192", "0.0027739251040221915", "720", "0.0", "1681826411"], + ["12193", "0.0027739251040221915", "720", "0.0", "1681830011"], + ["12194", "0.0027739251040221915", "720", "0.0", "1681833623"], + ["12195", "0.0027739251040221915", "720", "0.0", "1681837223"], + ["12196", "0.0027739251040221915", "720", "0.0", "1681840823"], + ["12197", "0.0027739251040221915", "720", "0.0", "1681844423"], + ["12198", "0.0027739251040221915", "720", "0.0", "1681848059"], + ["12199", "0.0027739251040221915", "720", "0.0", "1681851635"], + ["12200", "0.0027739251040221915", "720", "0.0", "1681855211"], + ["12201", "0.0027739251040221915", "720", "0.0", "1681858811"], + ["12202", "0.0027739251040221915", "720", "0.0", "1681862411"], + ["12203", "0.0027739251040221915", "720", "0.0", "1681866011"], + ["12204", "0.0027739251040221915", "720", "0.0", "1681869611"], + ["12205", "0.0027739251040221915", "720", "0.0", "1681873211"], + ["12206", "0.0027739251040221915", "720", "0.0", "1681876811"], + ["12207", "0.0027739251040221915", "720", "0.0", "1681880411"], + ["12208", "0.0027739251040221915", "720", "0.0", "1681884011"], + ["12209", "0.0027739251040221915", "720", "0.0", "1681887623"], + ["12210", "0.0027739251040221915", "720", "0.0", "1681891283"], + ["12211", "0.0027739251040221915", "720", "0.0", "1681894811"], + ["12212", "0.0027739251040221915", "720", "0.0", "1681898411"], + ["12213", "0.0027739251040221915", "720", "0.0", "1681902011"], + ["12214", "0.0027739251040221915", "720", "0.0", "1681905611"], + ["12215", "0.0027739251040221915", "720", "0.0", "1681909211"], + ["12216", "0.0027739251040221915", "720", "0.0", "1681912811"], + ["12217", "0.0027739251040221915", "720", "0.0", "1681916411"], + ["12218", "0.0027739251040221915", "720", "0.0", "1681920023"], + ["12219", "0.0027739251040221915", "720", "0.0", "1681923647"], + ["12220", "0.0027739251040221915", "720", "0.0", "1681927211"], + ["12221", "0.0027739251040221915", "720", "0.0", "1681930835"], + ["12222", "0.0027739251040221915", "720", "0.0", "1681934435"], + ["12223", "0.0027739251040221915", "720", "0.0", "1681938047"], + ["12224", "0.0027739251040221915", "720", "0.0", "1681941659"], + ["12225", "0.0027739251040221915", "720", "0.0", "1681945235"], + ["12226", "0.0027739251040221915", "720", "0.0", "1681948835"], + ["12227", "0.0027739251040221915", "720", "0.0", "1681952411"], + ["12228", "0.0027739251040221915", "720", "0.0", "1681956011"], + ["12229", "0.0027739251040221915", "720", "0.0", "1681959623"], + ["12230", "0.0027739251040221915", "720", "0.0", "1681963223"], + ["12231", "0.0027739251040221915", "720", "0.0", "1681966823"], + ["12232", "0.0027739251040221915", "720", "0.0", "1681970411"], + ["12233", "0.0027739251040221915", "720", "0.0", "1681974023"], + ["12234", "0.0027739251040221915", "720", "0.0", "1681977611"], + ["12235", "0.0027739251040221915", "720", "0.0", "1681981211"], + ["12236", "0.0027739251040221915", "720", "0.0", "1681984811"], + ["12237", "0.0027739251040221915", "720", "0.0", "1681988423"], + ["12238", "0.0027739251040221915", "720", "0.0", "1681992023"], + ["12239", "0.0027739251040221915", "720", "0.0", "1681995623"], + ["12240", "0.0027739251040221915", "720", "0.0", "1681999235"], + ["12241", "0.0027739251040221915", "720", "0.0", "1682002895"], + ["12242", "0.0027739251040221915", "720", "0.0", "1682006507"], + ["12243", "0.0027739251040221915", "720", "0.0", "1682010059"], + ["12244", "0.0027739251040221915", "720", "0.0", "1682013611"], + ["12245", "0.0027739251040221915", "720", "0.0", "1682017235"], + ["12246", "0.0027739251040221915", "720", "0.0", "1682020811"], + ["12247", "0.0027739251040221915", "720", "0.0", "1682024423"], + ["12248", "0.0027739251040221915", "720", "0.0", "1682028023"], + ["12249", "0.0027739251040221915", "720", "0.0", "1682031611"], + ["12250", "0.0027739251040221915", "720", "0.0", "1682035211"], + ["12251", "0.0027739251040221915", "720", "0.0", "1682038811"], + ["12252", "0.0027739251040221915", "720", "0.0", "1682042411"], + ["12253", "0.0027739251040221915", "720", "0.0", "1682046011"], + ["12254", "0.0027739251040221915", "720", "0.0", "1682049611"], + ["12255", "0.0027739251040221915", "720", "0.0", "1682053211"], + ["12256", "0.0027739251040221915", "720", "0.0", "1682056823"], + ["12257", "0.0027739251040221915", "720", "0.0", "1682060411"], + ["12258", "0.0027739251040221915", "720", "0.0", "1682064011"], + ["12259", "0.0027739251040221915", "720", "0.0", "1682067611"], + ["12260", "0.0027739251040221915", "720", "0.0", "1682071211"], + ["12261", "0.0027739251040221915", "720", "0.0", "1682074811"], + ["12262", "0.0027739251040221915", "720", "0.0", "1682078411"], + ["12263", "0.0027739251040221915", "720", "0.0", "1682082011"], + ["12264", "0.0027739251040221915", "720", "0.0", "1682085611"], + ["12265", "0.0027739251040221915", "720", "0.0", "1682089211"], + ["12266", "0.0027739251040221915", "720", "0.0", "1682092811"], + ["12267", "0.0027739251040221915", "720", "0.0", "1682096411"], + ["12268", "0.0027739251040221915", "720", "0.0", "1682100011"], + ["12269", "0.0027739251040221915", "720", "0.0", "1682103611"], + ["12270", "0.0027739251040221915", "720", "0.0", "1682107223"], + ["12271", "0.0027739251040221915", "720", "0.0", "1682110823"], + ["12272", "0.0027739251040221915", "720", "0.0", "1682114411"], + ["12273", "0.0027739251040221915", "720", "0.0", "1682118011"], + ["12274", "0.0027739251040221915", "720", "0.0", "1682121635"], + ["12275", "0.0027739251040221915", "720", "0.0", "1682125211"], + ["12276", "0.0027739251040221915", "720", "0.0", "1682128811"], + ["12277", "0.0027739251040221915", "720", "0.0", "1682132411"], + ["12278", "0.0027739251040221915", "720", "0.0", "1682136011"], + ["12279", "0.0027739251040221915", "720", "0.0", "1682139611"], + ["12280", "0.0027739251040221915", "720", "0.0", "1682143211"], + ["12281", "0.0027739251040221915", "720", "0.0", "1682146823"], + ["12282", "0.0027739251040221915", "720", "0.0", "1682150411"], + ["12283", "0.0027739251040221915", "720", "0.0", "1682154011"], + ["12284", "0.0027739251040221915", "720", "0.0", "1682157611"], + ["12285", "0.0027739251040221915", "720", "0.0", "1682161211"], + ["12286", "0.0027739251040221915", "720", "0.0", "1682164811"], + ["12287", "0.0027739251040221915", "720", "0.0", "1682168411"], + ["12288", "0.0027739251040221915", "720", "0.0", "1682172011"], + ["12289", "0.0027739251040221915", "720", "0.0", "1682175611"], + ["12290", "0.0027739251040221915", "720", "0.0", "1682179211"], + ["12291", "0.0027739251040221915", "720", "0.0", "1682182811"], + ["12292", "0.0027739251040221915", "720", "0.0", "1682186411"], + ["12293", "0.0027739251040221915", "720", "0.0", "1682190011"], + ["12294", "0.0027739251040221915", "720", "0.0", "1682193611"], + ["12295", "0.0027739251040221915", "720", "0.0", "1682197211"], + ["12296", "0.0027739251040221915", "720", "0.0", "1682200811"], + ["12297", "0.0027739251040221915", "720", "0.0", "1682204411"], + ["12298", "0.0027739251040221915", "720", "0.0", "1682208011"], + ["12299", "0.0027739251040221915", "720", "0.0", "1682211611"], + ["12300", "0.0027739251040221915", "720", "0.0", "1682215211"], + ["12301", "0.0027739251040221915", "720", "0.0", "1682218811"], + ["12302", "0.0027739251040221915", "720", "0.0", "1682222411"], + ["12303", "0.0027739251040221915", "720", "0.0", "1682226011"], + ["12304", "0.0027739251040221915", "720", "0.0", "1682229611"], + ["12305", "0.0027739251040221915", "720", "0.0", "1682233223"], + ["12306", "0.0027739251040221915", "720", "0.0", "1682236811"], + ["12307", "0.0027739251040221915", "720", "0.0", "1682240411"], + ["12308", "0.0027739251040221915", "720", "0.0", "1682244011"], + ["12309", "0.0027739251040221915", "720", "0.0", "1682247623"], + ["12310", "0.0027739251040221915", "720", "0.0", "1682251211"], + ["12311", "0.0027739251040221915", "720", "0.0", "1682254811"], + ["12312", "0.0027739251040221915", "720", "0.0", "1682258411"], + ["12313", "0.0027739251040221915", "720", "0.0", "1682262011"], + ["12314", "0.0027739251040221915", "720", "0.0", "1682265611"], + ["12315", "0.0027739251040221915", "720", "0.0", "1682269211"], + ["12316", "0.0027739251040221915", "720", "0.0", "1682272811"], + ["12317", "0.0027739251040221915", "720", "0.0", "1682276411"], + ["12318", "0.0027739251040221915", "720", "0.0", "1682280011"], + ["12319", "0.0027739251040221915", "720", "0.0", "1682283611"], + ["12320", "0.0027739251040221915", "720", "0.0", "1682287211"], + ["12321", "0.0027739251040221915", "720", "0.0", "1682290811"], + ["12322", "0.0027739251040221915", "720", "0.0", "1682294411"], + ["12323", "0.0027739251040221915", "720", "0.0", "1682298011"], + ["12324", "0.0027739251040221915", "720", "0.0", "1682301611"], + ["12325", "0.0027739251040221915", "720", "0.0", "1682305211"], + ["12326", "0.0027739251040221915", "720", "0.0", "1682308811"], + ["12327", "0.0027739251040221915", "720", "0.0", "1682312411"], + ["12328", "0.0027739251040221915", "720", "0.0", "1682316011"], + ["12329", "0.0027739251040221915", "720", "0.0", "1682319611"], + ["12330", "0.0027739251040221915", "720", "0.0", "1682323211"], + ["12331", "0.0027739251040221915", "720", "0.0", "1682326811"], + ["12332", "0.0027739251040221915", "720", "0.0", "1682330411"], + ["12333", "0.0027739251040221915", "720", "0.0", "1682334011"], + ["12334", "0.0027739251040221915", "720", "0.0", "1682337611"], + ["12335", "0.0027739251040221915", "720", "0.0", "1682341223"], + ["12336", "0.0027739251040221915", "720", "0.0", "1682344811"], + ["12337", "0.0027739251040221915", "720", "0.0", "1682348411"], + ["12338", "0.0027739251040221915", "720", "0.0", "1682352011"], + ["12339", "0.0027739251040221915", "720", "0.0", "1682355611"], + ["12340", "0.0027739251040221915", "720", "0.0", "1682359211"], + ["12341", "0.0027739251040221915", "720", "0.0", "1682362823"], + ["12342", "0.0027739251040221915", "720", "0.0", "1682366423"], + ["12343", "0.0027739251040221915", "720", "0.0", "1682370011"], + ["12344", "0.0027739251040221915", "720", "0.0", "1682373611"], + ["12345", "0.0027739251040221915", "720", "0.0", "1682377211"], + ["12346", "0.0027739251040221915", "720", "0.0", "1682380811"], + ["12347", "0.0027739251040221915", "720", "0.0", "1682384411"], + ["12348", "0.0027739251040221915", "720", "0.0", "1682388011"], + ["12349", "0.0027739251040221915", "720", "0.0", "1682391611"], + ["12350", "0.0027739251040221915", "720", "0.0", "1682395211"], + ["12351", "0.0027739251040221915", "720", "0.0", "1682398811"], + ["12352", "0.0027739251040221915", "720", "0.0", "1682402411"], + ["12353", "0.0027739251040221915", "720", "0.0", "1682406011"], + ["12354", "0.0027739251040221915", "720", "0.0", "1682409611"], + ["12355", "0.0027739251040221915", "720", "0.0", "1682413211"], + ["12356", "0.0027739251040221915", "720", "0.0", "1682416811"], + ["12357", "0.0027739251040221915", "720", "0.0", "1682420411"], + ["12358", "0.0027739251040221915", "720", "0.0", "1682424011"], + ["12359", "0.0027739251040221915", "720", "0.0", "1682427611"], + ["12360", "0.0027739251040221915", "720", "0.0", "1682431211"], + ["12361", "0.0027739251040221915", "720", "0.0", "1682434811"], + ["12362", "0.0027739251040221915", "720", "0.0", "1682438435"], + ["12363", "0.0027739251040221915", "720", "0.0", "1682442011"], + ["12364", "0.0027739251040221915", "720", "0.0", "1682445623"], + ["12365", "0.0027739251040221915", "720", "0.0", "1682449211"], + ["12366", "0.0027739251040221915", "720", "0.0", "1682452811"], + ["12367", "0.0027739251040221915", "720", "0.0", "1682456411"], + ["12368", "0.0027739251040221915", "720", "0.0", "1682460035"], + ["12369", "0.0027739251040221915", "720", "0.0", "1682463611"], + ["12370", "0.0027739251040221915", "720", "0.0", "1682467211"], + ["12371", "0.0027739251040221915", "720", "0.0", "1682470811"], + ["12372", "0.0027739251040221915", "720", "0.0", "1682474411"], + ["12373", "0.0027739251040221915", "720", "0.0", "1682478011"], + ["12374", "0.0027739251040221915", "720", "0.0", "1682481611"], + ["12375", "0.0027739251040221915", "720", "0.0", "1682485211"], + ["12376", "0.0027739251040221915", "720", "0.0", "1682488811"], + ["12377", "0.0027739251040221915", "720", "0.0", "1682492411"], + ["12378", "0.0027739251040221915", "720", "0.0", "1682496011"], + ["12379", "0.0027739251040221915", "720", "0.0", "1682499611"], + ["12380", "0.0027739251040221915", "720", "0.0", "1682503211"], + ["12381", "0.0027739251040221915", "720", "0.0", "1682506823"], + ["12382", "0.0027739251040221915", "720", "0.0", "1682510411"], + ["12383", "0.0027739251040221915", "720", "0.0", "1682514047"], + ["12384", "0.0027739251040221915", "720", "0.0", "1682517731"], + ["12385", "0.0027739251040221915", "720", "0.0", "1682521211"], + ["12386", "0.0027739251040221915", "720", "0.0", "1682524811"], + ["12387", "0.0027739251040221915", "720", "0.0", "1682528411"], + ["12388", "0.0027739251040221915", "720", "0.0", "1682532011"], + ["12389", "0.0027739251040221915", "720", "0.0", "1682535611"], + ["12390", "0.0027739251040221915", "720", "0.0", "1682539259"], + ["12391", "0.0027739251040221915", "720", "0.0", "1682542811"], + ["12392", "0.0027739251040221915", "720", "0.0", "1682546411"], + ["12393", "0.0027739251040221915", "720", "0.0", "1682550011"], + ["12394", "0.0027739251040221915", "720", "0.0", "1682553611"], + ["12395", "0.0027739251040221915", "720", "0.0", "1682557211"], + ["12396", "0.0027739251040221915", "720", "0.0", "1682560811"], + ["12397", "0.0027739251040221915", "720", "0.0", "1682564411"], + ["12398", "0.0027739251040221915", "720", "0.0", "1682568011"], + ["12399", "0.0027739251040221915", "720", "0.0", "1682571611"], + ["12400", "0.0027739251040221915", "720", "0.0", "1682575211"], + ["12401", "0.0027739251040221915", "720", "0.0", "1682578811"], + ["12402", "0.0027739251040221915", "720", "0.0", "1682582411"], + ["12403", "0.0027739251040221915", "720", "0.0", "1682586023"], + ["12404", "0.0027739251040221915", "720", "0.0", "1682589611"], + ["12405", "0.0027739251040221915", "720", "0.0", "1682593211"], + ["12406", "0.0027739251040221915", "720", "0.0", "1682596811"], + ["12407", "0.0027739251040221915", "720", "0.0", "1682600423"], + ["12408", "0.0027739251040221915", "720", "0.0", "1682604011"], + ["12409", "0.0027739251040221915", "720", "0.0", "1682607671"], + ["12410", "0.0027739251040221915", "720", "0.0", "1682611223"], + ["12411", "0.0027739251040221915", "720", "0.0", "1682614811"], + ["12412", "0.0027739251040221915", "720", "0.0", "1682618411"], + ["12413", "0.0027739251040221915", "720", "0.0", "1682622011"], + ["12414", "0.0027739251040221915", "720", "0.0", "1682625611"], + ["12415", "0.0027739251040221915", "720", "0.0", "1682629223"], + ["12416", "0.0027739251040221915", "720", "0.0", "1682632811"], + ["12417", "0.0027739251040221915", "720", "0.0", "1682636423"], + ["12418", "0.0027739251040221915", "720", "0.0", "1682640023"], + ["12419", "0.0027739251040221915", "720", "0.0", "1682643611"], + ["12420", "0.0027739251040221915", "720", "0.0", "1682647211"], + ["12421", "0.0027739251040221915", "720", "0.0", "1682650811"], + ["12422", "0.0027739251040221915", "720", "0.0", "1682654411"], + ["12423", "0.0027739251040221915", "720", "0.0", "1682658011"], + ["12424", "0.0027739251040221915", "720", "0.0", "1682661611"], + ["12425", "0.0027739251040221915", "720", "0.0", "1682665211"], + ["12426", "0.0027739251040221915", "720", "0.0", "1682668811"], + ["12427", "0.0027739251040221915", "720", "0.0", "1682672411"], + ["12428", "0.0027739251040221915", "720", "0.0", "1682676011"], + ["12429", "0.0027739251040221915", "720", "0.0", "1682679611"], + ["12430", "0.0027739251040221915", "720", "0.0", "1682683211"], + ["12431", "0.0027739251040221915", "720", "0.0", "1682686823"], + ["12432", "0.0027739251040221915", "720", "0.0", "1682690411"], + ["12433", "0.0027739251040221915", "720", "0.0", "1682694011"], + ["12434", "0.0027739251040221915", "720", "0.0", "1682697611"], + ["12435", "0.0027739251040221915", "720", "0.0", "1682701211"], + ["12436", "0.0027739251040221915", "720", "0.0", "1682704823"], + ["12437", "0.0027739251040221915", "720", "0.0", "1682708411"], + ["12438", "0.0027739251040221915", "720", "0.0", "1682712011"], + ["12439", "0.0027739251040221915", "720", "0.0", "1682715611"], + ["12440", "0.0027739251040221915", "720", "0.0", "1682719211"], + ["12441", "0.0027739251040221915", "720", "0.0", "1682722811"], + ["12442", "0.0027739251040221915", "720", "0.0", "1682726411"], + ["12443", "0.0027739251040221915", "720", "0.0", "1682730011"], + ["12444", "0.0027739251040221915", "720", "0.0", "1682733611"], + ["12445", "0.0027739251040221915", "720", "0.0", "1682737211"], + ["12446", "0.0027739251040221915", "720", "0.0", "1682740811"], + ["12447", "0.0027739251040221915", "720", "0.0", "1682744411"], + ["12448", "0.0027739251040221915", "720", "0.0", "1682748011"], + ["12449", "0.0027739251040221915", "720", "0.0", "1682751611"], + ["12450", "0.0027739251040221915", "720", "0.0", "1682755211"], + ["12451", "0.0027739251040221915", "720", "0.0", "1682758811"], + ["12452", "0.0027739251040221915", "720", "0.0", "1682762411"], + ["12453", "0.0027739251040221915", "720", "0.0", "1682766011"], + ["12454", "0.0027739251040221915", "720", "0.0", "1682769611"], + ["12455", "0.0027739251040221915", "720", "0.0", "1682773211"], + ["12456", "0.0027739251040221915", "720", "0.0", "1682776811"], + ["12457", "0.0027739251040221915", "720", "0.0", "1682780411"], + ["12458", "0.0027739251040221915", "720", "0.0", "1682784011"], + ["12459", "0.0027739251040221915", "720", "0.0", "1682787611"], + ["12460", "0.0027739251040221915", "720", "0.0", "1682791211"], + ["12461", "0.0027739251040221915", "720", "0.0", "1682794811"], + ["12462", "0.0027739251040221915", "720", "0.0", "1682798411"], + ["12463", "0.0027739251040221915", "720", "0.0", "1682802011"], + ["12464", "0.0027739251040221915", "720", "0.0", "1682805611"], + ["12465", "0.0027739251040221915", "720", "0.0", "1682809211"], + ["12466", "0.0027739251040221915", "720", "0.0", "1682812811"], + ["12467", "0.0027739251040221915", "720", "0.0", "1682816411"], + ["12468", "0.0027739251040221915", "720", "0.0", "1682820011"], + ["12469", "0.0027739251040221915", "720", "0.0", "1682823611"], + ["12470", "0.0027739251040221915", "720", "0.0", "1682827211"], + ["12471", "0.0027739251040221915", "720", "0.0", "1682830811"], + ["12472", "0.0027739251040221915", "720", "0.0", "1682834411"], + ["12473", "0.0027739251040221915", "720", "0.0", "1682838011"], + ["12474", "0.0027739251040221915", "720", "0.0", "1682841611"], + ["12475", "0.0027739251040221915", "720", "0.0", "1682845211"], + ["12476", "0.0027739251040221915", "720", "0.0", "1682848811"], + ["12477", "0.0027739251040221915", "720", "0.0", "1682852411"], + ["12478", "0.0027739251040221915", "720", "0.0", "1682856011"], + ["12479", "0.0027739251040221915", "720", "0.0", "1682859611"], + ["12480", "0.0027739251040221915", "720", "0.0", "1682863211"], + ["12481", "0.0027739251040221915", "720", "0.0", "1682866811"], + ["12482", "0.0027739251040221915", "720", "0.0", "1682870423"], + ["12483", "0.0027739251040221915", "720", "0.0", "1682874011"], + ["12484", "0.0027739251040221915", "720", "0.0", "1682877623"], + ["12485", "0.0027739251040221915", "720", "0.0", "1682881211"], + ["12486", "0.0027739251040221915", "720", "0.0", "1682884811"], + ["12487", "0.0027739251040221915", "720", "0.0", "1682888411"], + ["12488", "0.0027739251040221915", "720", "0.0", "1682892011"], + ["12489", "0.0027739251040221915", "720", "0.0", "1682895635"], + ["12490", "0.0027739251040221915", "720", "0.0", "1682899235"], + ["12491", "0.0027739251040221915", "720", "0.0", "1682902811"], + ["12492", "0.0027739251040221915", "720", "0.0", "1682906411"], + ["12493", "0.0027739251040221915", "720", "0.0", "1682910011"], + ["12494", "0.0027739251040221915", "720", "0.0", "1682913611"], + ["12495", "0.0027739251040221915", "720", "0.0", "1682917211"], + ["12496", "0.0027739251040221915", "720", "0.0", "1682920811"], + ["12497", "0.0027739251040221915", "720", "0.0", "1682924411"], + ["12498", "0.0027739251040221915", "720", "0.0", "1682928011"], + ["12499", "0.0027739251040221915", "720", "0.0", "1682931611"], + ["12500", "0.0027739251040221915", "720", "0.0", "1682935211"], + ["12501", "0.0027739251040221915", "720", "0.0", "1682938823"], + ["12502", "0.0027739251040221915", "720", "0.0", "1682942411"], + ["12503", "0.0027739251040221915", "720", "0.0", "1682946011"], + ["12504", "0.0027739251040221915", "720", "0.0", "1682949659"], + ["12505", "0.0027739251040221915", "720", "0.0", "1682953271"], + ["12506", "0.0027739251040221915", "720", "0.0", "1682956835"], + ["12507", "0.0027739251040221915", "720", "0.0", "1682960411"], + ["12508", "0.0027739251040221915", "720", "0.0", "1682964023"], + ["12509", "0.0027739251040221915", "720", "0.0", "1682967635"], + ["12510", "0.0027739251040221915", "720", "0.0", "1682971235"], + ["12511", "0.0027739251040221915", "720", "0.0", "1682974823"], + ["12512", "0.0027739251040221915", "720", "0.0", "1682978435"], + ["12513", "0.0027739251040221915", "720", "0.0", "1682982023"], + ["12514", "0.0027739251040221915", "720", "0.0", "1682985611"], + ["12515", "0.0027739251040221915", "720", "0.0", "1682989235"], + ["12516", "0.0027739251040221915", "720", "0.0", "1682992811"], + ["12517", "0.0027739251040221915", "720", "0.0", "1682996411"], + ["12518", "0.0027739251040221915", "720", "0.0", "1683000035"], + ["12519", "0.0027739251040221915", "720", "0.0", "1683003659"], + ["12520", "0.0027739251040221915", "720", "0.0", "1683007223"], + ["12521", "0.0027739251040221915", "720", "0.0", "1683010811"], + ["12522", "0.0027739251040221915", "720", "0.0", "1683014411"], + ["12523", "0.0027739251040221915", "720", "0.0", "1683018011"], + ["12524", "0.0027739251040221915", "720", "0.0", "1683021635"], + ["12525", "0.0027739251040221915", "720", "0.0", "1683025211"], + ["12526", "0.0027739251040221915", "720", "0.0", "1683028811"], + ["12527", "0.0027739251040221915", "720", "0.0", "1683032435"], + ["12528", "0.0027739251040221915", "720", "0.0", "1683036071"], + ["12529", "0.0027739251040221915", "720", "0.0", "1683039635"], + ["12530", "0.0027739251040221915", "720", "0.0", "1683043259"], + ["12531", "0.0027739251040221915", "720", "0.0", "1683046907"], + ["12532", "0.0027739251040221915", "720", "0.0", "1683050507"], + ["12533", "0.0027739251040221915", "720", "0.0", "1683054155"], + ["12534", "0.0027739251040221915", "720", "0.0", "1683057647"], + ["12535", "0.0027739251040221915", "720", "0.0", "1683061391"], + ["12536", "0.0027739251040221915", "720", "0.0", "1683064859"], + ["12537", "0.0027739251040221915", "720", "0.0", "1683068471"], + ["12538", "0.0027739251040221915", "720", "0.0", "1683072155"], + ["12539", "0.0027739251040221915", "720", "0.0", "1683075659"], + ["12540", "0.0027739251040221915", "720", "0.0", "1683079331"], + ["12541", "0.0027739251040221915", "720", "0.0", "1683082979"], + ["12542", "0.0027739251040221915", "720", "0.0", "1683086459"], + ["12543", "0.0027739251040221915", "720", "0.0", "1683090131"], + ["12544", "0.0027739251040221915", "720", "0.0", "1683093611"], + ["12545", "0.0027739251040221915", "720", "0.0", "1683097211"], + ["12546", "0.0027739251040221915", "720", "0.0", "1683100811"], + ["12547", "0.0027739251040221915", "720", "0.0", "1683104411"], + ["12548", "0.0027739251040221915", "720", "0.0", "1683108023"], + ["12549", "0.0027739251040221915", "720", "0.0", "1683111611"], + ["12550", "0.0027739251040221915", "720", "0.0", "1683115223"], + ["12551", "0.0027739251040221915", "720", "0.0", "1683119027"], + ["12552", "0.0027739251040221915", "720", "0.0", "1683122435"], + ["12553", "0.0027739251040221915", "720", "0.0", "1683126059"], + ["12554", "0.0027739251040221915", "720", "0.0", "1683129647"], + ["12555", "0.0027739251040221915", "720", "0.0", "1683133235"], + ["12556", "0.0027739251040221915", "720", "0.0", "1683136859"], + ["12557", "0.0027739251040221915", "720", "0.0", "1683140435"], + ["12558", "0.0027739251040221915", "720", "0.0", "1683144011"], + ["12559", "0.0027739251040221915", "720", "0.0", "1683147611"], + ["12560", "0.0027739251040221915", "720", "0.0", "1683151247"], + ["12561", "0.0027739251040221915", "720", "0.0", "1683154811"], + ["12562", "0.0027739251040221915", "720", "0.0", "1683158411"], + ["12563", "0.0027739251040221915", "720", "0.0", "1683162071"], + ["12564", "0.0027739251040221915", "720", "0.0", "1683165647"], + ["12565", "0.0027739251040221915", "720", "0.0", "1683169235"], + ["12566", "0.0027739251040221915", "720", "0.0", "1683172811"], + ["12567", "0.0027739251040221915", "720", "0.0", "1683176411"], + ["12568", "0.0027739251040221915", "720", "0.0", "1683180011"], + ["12569", "0.0027739251040221915", "720", "0.0", "1683183611"], + ["12570", "0.0027739251040221915", "720", "0.0", "1683187235"], + ["12571", "0.0027739251040221915", "720", "0.0", "1683190811"], + ["12572", "0.0027739251040221915", "720", "0.0", "1683194423"], + ["12573", "0.0027739251040221915", "720", "0.0", "1683198047"], + ["12574", "0.0027739251040221915", "720", "0.0", "1683201611"], + ["12575", "0.0027739251040221915", "720", "0.0", "1683205235"], + ["12576", "0.0027739251040221915", "720", "0.0", "1683208871"], + ["12577", "0.0027739251040221915", "720", "0.0", "1683212447"], + ["12578", "0.0027739251040221915", "720", "0.0", "1683216263"], + ["12579", "0.0027739251040221915", "720", "0.0", "1683219947"], + ["12580", "0.0027739251040221915", "720", "0.0", "1683223511"], + ["12581", "0.0027739251040221915", "720", "0.0", "1683226835"], + ["12582", "0.0027739251040221915", "720", "0.0", "1683230411"], + ["12583", "0.0027739251040221915", "720", "0.0", "1683234023"], + ["12584", "0.0027739251040221915", "720", "0.0", "1683237683"], + ["12585", "0.0027739251040221915", "720", "0.0", "1683241235"], + ["12586", "0.0027739251040221915", "720", "0.0", "1683244919"], + ["12587", "0.0027739251040221915", "720", "0.0", "1683248519"], + ["12588", "0.0027739251040221915", "720", "0.0", "1683252011"], + ["12589", "0.0027739251040221915", "720", "0.0", "1683255611"], + ["12590", "0.0027739251040221915", "720", "0.0", "1683259211"], + ["12591", "0.0027739251040221915", "720", "0.0", "1683262811"], + ["12592", "0.0027739251040221915", "720", "0.0", "1683266411"], + ["12593", "0.0027739251040221915", "720", "0.0", "1683270011"], + ["12594", "0.0027739251040221915", "720", "0.0", "1683273611"], + ["12595", "0.0027739251040221915", "720", "0.0", "1683277211"], + ["12596", "0.0027739251040221915", "720", "0.0", "1683280811"], + ["12597", "0.0027739251040221915", "720", "0.0", "1683284411"], + ["12598", "0.0027739251040221915", "720", "0.0", "1683288011"], + ["12599", "0.0027739251040221915", "720", "0.0", "1683291611"], + ["12600", "0.0027739251040221915", "720", "0.0", "1683295211"], + ["12601", "0.0027739251040221915", "720", "0.0", "1683298835"], + ["12602", "0.0027739251040221915", "720", "0.0", "1683302423"], + ["12603", "0.0027739251040221915", "720", "0.0", "1683306047"], + ["12604", "0.0027739251040221915", "720", "0.0", "1683309659"], + ["12605", "0.0027739251040221915", "720", "0.0", "1683313247"], + ["12606", "0.0027739251040221915", "720", "0.0", "1683316811"], + ["12607", "0.0027739251040221915", "720", "0.0", "1683320411"], + ["12608", "0.0027739251040221915", "720", "0.0", "1683324023"], + ["12609", "0.0027739251040221915", "720", "0.0", "1683327635"], + ["12610", "0.0027739251040221915", "720", "0.0", "1683331211"], + ["12611", "0.0027739251040221915", "720", "0.0", "1683334811"], + ["12612", "0.0027739251040221915", "720", "0.0", "1683338411"], + ["12613", "0.0027739251040221915", "720", "0.0", "1683342023"], + ["12614", "0.0027739251040221915", "720", "0.0", "1683345611"], + ["12615", "0.0027739251040221915", "720", "0.0", "1683349211"], + ["12616", "0.0027739251040221915", "720", "0.0", "1683352811"], + ["12617", "0.0027739251040221915", "720", "0.0", "1683356411"], + ["12618", "0.0027739251040221915", "720", "0.0", "1683360011"], + ["12619", "0.0027739251040221915", "720", "0.0", "1683363611"], + ["12620", "0.0027739251040221915", "720", "0.0", "1683367223"], + ["12621", "0.0027739251040221915", "720", "0.0", "1683370811"], + ["12622", "0.0027739251040221915", "720", "0.0", "1683374411"], + ["12623", "0.0027739251040221915", "720", "0.0", "1683378011"], + ["12624", "0.0027739251040221915", "720", "0.0", "1683381611"], + ["12625", "0.0027739251040221915", "720", "0.0", "1683385223"], + ["12626", "0.0027739251040221915", "720", "0.0", "1683388823"], + ["12627", "0.0027739251040221915", "720", "0.0", "1683392699"], + ["12628", "0.0027739251040221915", "720", "0.0", "1683396311"], + ["12629", "0.0027739251040221915", "720", "0.0", "1683399635"], + ["12630", "0.0027739251040221915", "720", "0.0", "1683403247"], + ["12631", "0.0027739251040221915", "720", "0.0", "1683406835"], + ["12632", "0.0027739251040221915", "720", "0.0", "1683410423"], + ["12633", "0.0027739251040221915", "720", "0.0", "1683414011"], + ["12634", "0.0027739251040221915", "720", "0.0", "1683417611"], + ["12635", "0.0027739251040221915", "720", "0.0", "1683421211"], + ["12636", "0.0027739251040221915", "720", "0.0", "1683424811"], + ["12637", "0.0027739251040221915", "720", "0.0", "1683428411"], + ["12638", "0.0027739251040221915", "720", "0.0", "1683432011"], + ["12639", "0.0027739251040221915", "720", "0.0", "1683435611"], + ["12640", "0.0027739251040221915", "720", "0.0", "1683439211"], + ["12641", "0.0027739251040221915", "720", "0.0", "1683442811"], + ["12642", "0.0027739251040221915", "720", "0.0", "1683446411"], + ["12643", "0.0027739251040221915", "720", "0.0", "1683450011"], + ["12644", "0.0027739251040221915", "720", "0.0", "1683453611"], + ["12645", "0.0027739251040221915", "720", "0.0", "1683457211"], + ["12646", "0.0027739251040221915", "720", "0.0", "1683460823"], + ["12647", "0.0027739251040221915", "720", "0.0", "1683464411"], + ["12648", "0.0027739251040221915", "720", "0.0", "1683468011"], + ["12649", "0.0027739251040221915", "720", "0.0", "1683471611"], + ["12650", "0.0027739251040221915", "720", "0.0", "1683475211"], + ["12651", "0.0027739251040221915", "720", "0.0", "1683478811"], + ["12652", "0.0027739251040221915", "720", "0.0", "1683482435"], + ["12653", "0.0027739251040221915", "720", "0.0", "1683486011"], + ["12654", "0.0027739251040221915", "720", "0.0", "1683489611"], + ["12655", "0.0027739251040221915", "720", "0.0", "1683493223"], + ["12656", "0.0027739251040221915", "720", "0.0", "1683496811"], + ["12657", "0.0027739251040221915", "720", "0.0", "1683500435"], + ["12658", "0.0027739251040221915", "720", "0.0", "1683504023"], + ["12659", "0.0027739251040221915", "720", "0.0", "1683507611"], + ["12660", "0.0027739251040221915", "720", "0.0", "1683511211"], + ["12661", "0.0027739251040221915", "720", "0.0", "1683514811"], + ["12662", "0.0027739251040221915", "720", "0.0", "1683518411"], + ["12663", "0.0027739251040221915", "720", "0.0", "1683522011"], + ["12664", "0.0027739251040221915", "720", "0.0", "1683525611"], + ["12665", "0.0027739251040221915", "720", "0.0", "1683529211"], + ["12666", "0.0027739251040221915", "720", "0.0", "1683532811"], + ["12667", "0.0027739251040221915", "720", "0.0", "1683536447"], + ["12668", "0.0027739251040221915", "720", "0.0", "1683540011"], + ["12669", "0.0027739251040221915", "720", "0.0", "1683543611"], + ["12670", "0.0027739251040221915", "720", "0.0", "1683547211"], + ["12671", "0.0027739251040221915", "720", "0.0", "1683550823"], + ["12672", "0.0027739251040221915", "720", "0.0", "1683554423"], + ["12673", "0.0027739251040221915", "720", "0.0", "1683558011"], + ["12674", "0.0027739251040221915", "720", "0.0", "1683561611"], + ["12675", "0.0027739251040221915", "720", "0.0", "1683565211"], + ["12676", "0.0027739251040221915", "720", "0.0", "1683568823"], + ["12677", "0.0027739251040221915", "720", "0.0", "1683572411"], + ["12678", "0.0027739251040221915", "720", "0.0", "1683576011"], + ["12679", "0.0027739251040221915", "720", "0.0", "1683579611"], + ["12680", "0.0027739251040221915", "720", "0.0", "1683583223"], + ["12681", "0.0027739251040221915", "720", "0.0", "1683586811"], + ["12682", "0.0027739251040221915", "720", "0.0", "1683590411"], + ["12683", "0.0027739251040221915", "720", "0.0", "1683594011"], + ["12684", "0.0027739251040221915", "720", "0.0", "1683597611"], + ["12685", "0.0027739251040221915", "720", "0.0", "1683601211"], + ["12686", "0.0027739251040221915", "720", "0.0", "1683604811"], + ["12687", "0.0027739251040221915", "720", "0.0", "1683608411"], + ["12688", "0.0027739251040221915", "720", "0.0", "1683612023"], + ["12689", "0.0027739251040221915", "720", "0.0", "1683615611"], + ["12690", "0.0027739251040221915", "720", "0.0", "1683619211"], + ["12691", "0.0027739251040221915", "720", "0.0", "1683622811"], + ["12692", "0.0027739251040221915", "720", "0.0", "1683626411"], + ["12693", "0.0027739251040221915", "720", "0.0", "1683630011"], + ["12694", "0.0027739251040221915", "720", "0.0", "1683633623"], + ["12695", "0.0027739251040221915", "720", "0.0", "1683637211"], + ["12696", "0.0027739251040221915", "720", "0.0", "1683640811"], + ["12697", "0.0027739251040221915", "720", "0.0", "1683644411"], + ["12698", "0.0027739251040221915", "720", "0.0", "1683648011"], + ["12699", "0.0027739251040221915", "720", "0.0", "1683651623"], + ["12700", "0.0027739251040221915", "720", "0.0", "1683655211"], + ["12701", "0.0027739251040221915", "720", "0.0", "1683658811"], + ["12702", "0.0027739251040221915", "720", "0.0", "1683662411"], + ["12703", "0.0027739251040221915", "720", "0.0", "1683666011"], + ["12704", "0.0027739251040221915", "720", "0.0", "1683669623"], + ["12705", "0.0027739251040221915", "720", "0.0", "1683673211"], + ["12706", "0.0027739251040221915", "720", "0.0", "1683676811"], + ["12707", "0.0027739251040221915", "720", "0.0", "1683680411"], + ["12708", "0.0027739251040221915", "720", "0.0", "1683684011"], + ["12709", "0.0027739251040221915", "720", "0.0", "1683687611"], + ["12710", "0.0027739251040221915", "720", "0.0", "1683691211"], + ["12711", "0.0027739251040221915", "720", "0.0", "1683694811"], + ["12712", "0.0027739251040221915", "720", "0.0", "1683698411"], + ["12713", "0.0027739251040221915", "720", "0.0", "1683702011"], + ["12714", "0.0027739251040221915", "720", "0.0", "1683705611"], + ["12715", "0.0027739251040221915", "720", "0.0", "1683709211"], + ["12716", "0.0027739251040221915", "720", "0.0", "1683712811"], + ["12717", "0.0027739251040221915", "720", "0.0", "1683716411"], + ["12718", "0.0027739251040221915", "720", "0.0", "1683720011"], + ["12719", "0.0027739251040221915", "720", "0.0", "1683723611"], + ["12720", "0.0027739251040221915", "720", "0.0", "1683727211"], + ["12721", "0.0027739251040221915", "720", "0.0", "1683730811"], + ["12722", "0.0027739251040221915", "720", "0.0", "1683734447"], + ["12723", "0.0027739251040221915", "720", "0.0", "1683738023"], + ["12724", "0.0027739251040221915", "720", "0.0", "1683741623"], + ["12725", "0.0027739251040221915", "720", "0.0", "1683745211"], + ["12726", "0.0027739251040221915", "720", "0.0", "1683748835"], + ["12727", "0.0027739251040221915", "720", "0.0", "1683752411"], + ["12728", "0.0027739251040221915", "720", "0.0", "1683756011"], + ["12729", "0.0027739251040221915", "720", "0.0", "1683759611"], + ["12730", "0.0027739251040221915", "720", "0.0", "1683763211"], + ["12731", "0.0027739251040221915", "720", "0.0", "1683766811"], + ["12732", "0.0027739251040221915", "720", "0.0", "1683770411"], + ["12733", "0.0027739251040221915", "720", "0.0", "1683774011"], + ["12734", "0.0027739251040221915", "720", "0.0", "1683777611"], + ["12735", "0.0027739251040221915", "720", "0.0", "1683781211"], + ["12736", "0.0027739251040221915", "720", "0.0", "1683784811"], + ["12737", "0.0027739251040221915", "720", "0.0", "1683788411"], + ["12738", "0.0027739251040221915", "720", "0.0", "1683792011"], + ["12739", "0.0027739251040221915", "720", "0.0", "1683795611"], + ["12740", "0.0027739251040221915", "720", "0.0", "1683799211"], + ["12741", "0.0027739251040221915", "720", "0.0", "1683802811"], + ["12742", "0.0027739251040221915", "720", "0.0", "1683806411"], + ["12743", "0.0027739251040221915", "720", "0.0", "1683810011"], + ["12744", "0.0027739251040221915", "720", "0.0", "1683813611"], + ["12745", "0.0027739251040221915", "720", "0.0", "1683817211"], + ["12746", "0.0027739251040221915", "720", "0.0", "1683820811"], + ["12747", "0.0027739251040221915", "720", "0.0", "1683824423"], + ["12748", "0.0027739251040221915", "720", "0.0", "1683828011"], + ["12749", "0.0027739251040221915", "720", "0.0", "1683831611"], + ["12750", "0.0027739251040221915", "720", "0.0", "1683835211"], + ["12751", "0.0027739251040221915", "720", "0.0", "1683838811"], + ["12752", "0.0027739251040221915", "720", "0.0", "1683842423"], + ["12753", "0.0027739251040221915", "720", "0.0", "1683846011"], + ["12754", "0.0027739251040221915", "720", "0.0", "1683849611"], + ["12755", "0.0027739251040221915", "720", "0.0", "1683853223"], + ["12756", "0.0027739251040221915", "720", "0.0", "1683856811"], + ["12757", "0.0027739251040221915", "720", "0.0", "1683860411"], + ["12758", "0.0027739251040221915", "720", "0.0", "1683864023"], + ["12759", "0.0027739251040221915", "720", "0.0", "1683867611"], + ["12760", "0.0027739251040221915", "720", "0.0", "1683871223"], + ["12761", "0.0027739251040221915", "720", "0.0", "1683874811"], + ["12762", "0.0027739251040221915", "720", "0.0", "1683878411"], + ["12763", "0.0027739251040221915", "720", "0.0", "1683882011"], + ["12764", "0.0027739251040221915", "720", "0.0", "1683885611"], + ["12765", "0.0027739251040221915", "720", "0.0", "1683889211"], + ["12766", "0.0027739251040221915", "720", "0.0", "1683892823"], + ["12767", "0.0027739251040221915", "720", "0.0", "1683896411"], + ["12768", "0.0027739251040221915", "720", "0.0", "1683900011"], + ["12769", "0.0027739251040221915", "720", "0.0", "1683903611"], + ["12770", "0.0027739251040221915", "720", "0.0", "1683907211"], + ["12771", "0.0027739251040221915", "720", "0.0", "1683910823"], + ["12772", "0.0027739251040221915", "720", "0.0", "1683914627"], + ["12773", "0.0027739251040221915", "720", "0.0", "1683918011"], + ["12774", "0.0027739251040221915", "720", "0.0", "1683921635"], + ["12775", "0.0027739251040221915", "720", "0.0", "1683925211"], + ["12776", "0.0027739251040221915", "720", "0.0", "1683928811"], + ["12777", "0.0027739251040221915", "720", "0.0", "1683932411"], + ["12778", "0.0027739251040221915", "720", "0.0", "1683936011"], + ["12779", "0.0027739251040221915", "720", "0.0", "1683939611"], + ["12780", "0.0027739251040221915", "720", "0.0", "1683943211"], + ["12781", "0.0027739251040221915", "720", "0.0", "1683946811"], + ["12782", "0.0027739251040221915", "720", "0.0", "1683950411"], + ["12783", "0.0027739251040221915", "720", "0.0", "1683954011"], + ["12784", "0.0027739251040221915", "720", "0.0", "1683957611"], + ["12785", "0.0027739251040221915", "720", "0.0", "1683961211"], + ["12786", "0.0027739251040221915", "720", "0.0", "1683964811"], + ["12787", "0.0027739251040221915", "720", "0.0", "1683968411"], + ["12788", "0.0027739251040221915", "720", "0.0", "1683972011"], + ["12789", "0.0027739251040221915", "720", "0.0", "1683975611"], + ["12790", "0.0027739251040221915", "720", "0.0", "1683979211"], + ["12791", "0.0027739251040221915", "720", "0.0", "1683982823"], + ["12792", "0.0027739251040221915", "720", "0.0", "1683986411"], + ["12793", "0.0027739251040221915", "720", "0.0", "1683990011"], + ["12794", "0.0027739251040221915", "720", "0.0", "1683993611"], + ["12795", "0.0027739251040221915", "720", "0.0", "1683997211"], + ["12796", "0.0027739251040221915", "720", "0.0", "1684000811"], + ["12797", "0.0027739251040221915", "720", "0.0", "1684004411"], + ["12798", "0.0027739251040221915", "720", "0.0", "1684008011"], + ["12799", "0.0027739251040221915", "720", "0.0", "1684011611"], + ["12800", "0.0027739251040221915", "720", "0.0", "1684015235"], + ["12801", "0.0027739251040221915", "720", "0.0", "1684018811"], + ["12802", "0.0027739251040221915", "720", "0.0", "1684022411"], + ["12803", "0.0027739251040221915", "720", "0.0", "1684026011"], + ["12804", "0.0027739251040221915", "720", "0.0", "1684029611"], + ["12805", "0.0027739251040221915", "720", "0.0", "1684033211"], + ["12806", "0.0027739251040221915", "720", "0.0", "1684036811"], + ["12807", "0.0027739251040221915", "720", "0.0", "1684040411"], + ["12808", "0.0027739251040221915", "720", "0.0", "1684044011"], + ["12809", "0.0027739251040221915", "720", "0.0", "1684047611"], + ["12810", "0.0027739251040221915", "720", "0.0", "1684051223"], + ["12811", "0.0027739251040221915", "720", "0.0", "1684054811"], + ["12812", "0.0027739251040221915", "720", "0.0", "1684058411"], + ["12813", "0.0027739251040221915", "720", "0.0", "1684062011"], + ["12814", "0.0027739251040221915", "720", "0.0", "1684065611"], + ["12815", "0.0027739251040221915", "720", "0.0", "1684069223"], + ["12816", "0.0027739251040221915", "720", "0.0", "1684072811"], + ["12817", "0.0027739251040221915", "720", "0.0", "1684076411"], + ["12818", "0.0027739251040221915", "720", "0.0", "1684080011"], + ["12819", "0.0027739251040221915", "720", "0.0", "1684083611"], + ["12820", "0.0027739251040221915", "720", "0.0", "1684087211"], + ["12821", "0.0027739251040221915", "720", "0.0", "1684090811"], + ["12822", "0.0027739251040221915", "720", "0.0", "1684094411"], + ["12823", "0.0027739251040221915", "720", "0.0", "1684098011"], + ["12824", "0.0027739251040221915", "720", "0.0", "1684101611"], + ["12825", "0.0027739251040221915", "720", "0.0", "1684105211"], + ["12826", "0.0027739251040221915", "720", "0.0", "1684108811"], + ["12827", "0.0027739251040221915", "720", "0.0", "1684112411"], + ["12828", "0.0027739251040221915", "720", "0.0", "1684116011"], + ["12829", "0.0027739251040221915", "720", "0.0", "1684119611"], + ["12830", "0.0027739251040221915", "720", "0.0", "1684123211"], + ["12831", "0.0027739251040221915", "720", "0.0", "1684126823"], + ["12832", "0.0027739251040221915", "720", "0.0", "1684130411"], + ["12833", "0.0027739251040221915", "720", "0.0", "1684134011"], + ["12834", "0.0027739251040221915", "720", "0.0", "1684137611"], + ["12835", "0.0027739251040221915", "720", "0.0", "1684141211"], + ["12836", "0.0027739251040221915", "720", "0.0", "1684144811"], + ["12837", "0.0027739251040221915", "720", "0.0", "1684148411"], + ["12838", "0.0027739251040221915", "720", "0.0", "1684152011"], + ["12839", "0.0027739251040221915", "720", "0.0", "1684155611"], + ["12840", "0.0027739251040221915", "720", "0.0", "1684159223"], + ["12841", "0.0027739251040221915", "720", "0.0", "1684162811"], + ["12842", "0.0027739251040221915", "720", "0.0", "1684166411"], + ["12843", "0.0027739251040221915", "720", "0.0", "1684170023"], + ["12844", "0.0027739251040221915", "720", "0.0", "1684173623"], + ["12845", "0.0027739251040221915", "720", "0.0", "1684177211"], + ["12846", "0.0027739251040221915", "720", "0.0", "1684180823"], + ["12847", "0.0027739251040221915", "720", "0.0", "1684184423"], + ["12848", "0.0027739251040221915", "720", "0.0", "1684188011"], + ["12849", "0.0027739251040221915", "720", "0.0", "1684191611"], + ["12850", "0.0027739251040221915", "720", "0.0", "1684195211"], + ["12851", "0.0027739251040221915", "720", "0.0", "1684198811"], + ["12852", "0.0027739251040221915", "720", "0.0", "1684202423"], + ["12853", "0.0027739251040221915", "720", "0.0", "1684206011"], + ["12854", "0.0027739251040221915", "720", "0.0", "1684209611"], + ["12855", "0.0027739251040221915", "720", "0.0", "1684213211"], + ["12856", "0.0027739251040221915", "720", "0.0", "1684216811"], + ["12857", "0.0027739251040221915", "720", "0.0", "1684220411"], + ["12858", "0.0027739251040221915", "720", "0.0", "1684224011"], + ["12859", "0.0027739251040221915", "720", "0.0", "1684227611"], + ["12860", "0.0027739251040221915", "720", "0.0", "1684231211"], + ["12861", "0.0027739251040221915", "720", "0.0", "1684234823"], + ["12862", "0.0027739251040221915", "720", "0.0", "1684238411"], + ["12863", "0.0027739251040221915", "720", "0.0", "1684242011"], + ["12864", "0.0027739251040221915", "720", "0.0", "1684245611"], + ["12865", "0.0027739251040221915", "720", "0.0", "1684249211"], + ["12866", "0.0027739251040221915", "720", "0.0", "1684252811"], + ["12867", "0.0027739251040221915", "720", "0.0", "1684256411"], + ["12868", "0.0027739251040221915", "720", "0.0", "1684260011"], + ["12869", "0.0027739251040221915", "720", "0.0", "1684263611"], + ["12870", "0.0027739251040221915", "720", "0.0", "1684267211"], + ["12871", "0.0027739251040221915", "720", "0.0", "1684270811"], + ["12872", "0.0027739251040221915", "720", "0.0", "1684274423"], + ["12873", "0.0027739251040221915", "720", "0.0", "1684278011"], + ["12874", "0.0027739251040221915", "720", "0.0", "1684281623"], + ["12875", "0.0027739251040221915", "720", "0.0", "1684285211"], + ["12876", "0.0027739251040221915", "720", "0.0", "1684288811"], + ["12877", "0.0027739251040221915", "720", "0.0", "1684292411"], + ["12878", "0.0027739251040221915", "720", "0.0", "1684296011"], + ["12879", "0.0027739251040221915", "720", "0.0", "1684299611"], + ["12880", "0.0027739251040221915", "720", "0.0", "1684303211"], + ["12881", "0.0027739251040221915", "720", "0.0", "1684306811"], + ["12882", "0.0027739251040221915", "720", "0.0", "1684310411"], + ["12883", "0.0027739251040221915", "720", "0.0", "1684314011"], + ["12884", "0.0027739251040221915", "720", "0.0", "1684317611"], + ["12885", "0.0027739251040221915", "720", "0.0", "1684321211"], + ["12886", "0.0027739251040221915", "720", "0.0", "1684324811"], + ["12887", "0.0027739251040221915", "720", "0.0", "1684328411"], + ["12888", "0.0027739251040221915", "720", "0.0", "1684332023"], + ["12889", "0.0027739251040221915", "720", "0.0", "1684335611"], + ["12890", "0.0027739251040221915", "720", "0.0", "1684339211"], + ["12891", "0.0027739251040221915", "720", "0.0", "1684342811"], + ["12892", "0.0027739251040221915", "720", "0.0", "1684346423"], + ["12893", "0.0027739251040221915", "720", "0.0", "1684350011"], + ["12894", "0.0027739251040221915", "720", "0.0", "1684353611"], + ["12895", "0.0027739251040221915", "720", "0.0", "1684357211"], + ["12896", "0.0027739251040221915", "720", "0.0", "1684360823"], + ["12897", "0.0027739251040221915", "720", "0.0", "1684364411"], + ["12898", "0.0027739251040221915", "720", "0.0", "1684368023"], + ["12899", "0.0027739251040221915", "720", "0.0", "1684371611"], + ["12900", "0.0027739251040221915", "720", "0.0", "1684375211"], + ["12901", "0.0027739251040221915", "720", "0.0", "1684378811"], + ["12902", "0.0027739251040221915", "720", "0.0", "1684382411"], + ["12903", "0.0027739251040221915", "720", "0.0", "1684386011"], + ["12904", "0.0027739251040221915", "720", "0.0", "1684389611"], + ["12905", "0.0027739251040221915", "720", "0.0", "1684393211"], + ["12906", "0.0027739251040221915", "720", "0.0", "1684396811"], + ["12907", "0.0027739251040221915", "720", "0.0", "1684400423"], + ["12908", "0.0027739251040221915", "720", "0.0", "1684404011"], + ["12909", "0.0027739251040221915", "720", "0.0", "1684407635"], + ["12910", "0.0027739251040221915", "720", "0.0", "1684411211"], + ["12911", "0.0027739251040221915", "720", "0.0", "1684414811"], + ["12912", "0.0027739251040221915", "720", "0.0", "1684418411"], + ["12913", "0.0027739251040221915", "720", "0.0", "1684422011"], + ["12914", "0.0027739251040221915", "720", "0.0", "1684425623"], + ["12915", "0.0027739251040221915", "720", "0.0", "1684429211"], + ["12916", "0.0027739251040221915", "720", "0.0", "1684432811"], + ["12917", "0.0027739251040221915", "720", "0.0", "1684436411"], + ["12918", "0.0027739251040221915", "720", "0.0", "1684440011"], + ["12919", "0.0027739251040221915", "720", "0.0", "1684443611"], + ["12920", "0.0027739251040221915", "720", "0.0", "1684447211"], + ["12921", "0.0027739251040221915", "720", "0.0", "1684450811"], + ["12922", "0.0027739251040221915", "720", "0.0", "1684454411"], + ["12923", "0.0027739251040221915", "720", "0.0", "1684458011"], + ["12924", "0.0027739251040221915", "720", "0.0", "1684461611"], + ["12925", "0.0027739251040221915", "720", "0.0", "1684465211"], + ["12926", "0.0027739251040221915", "720", "0.0", "1684468811"], + ["12927", "0.0027739251040221915", "720", "0.0", "1684472411"], + ["12928", "0.0027739251040221915", "720", "0.0", "1684476011"], + ["12929", "0.0027739251040221915", "720", "0.0", "1684479611"], + ["12930", "0.0027739251040221915", "720", "0.0", "1684483211"], + ["12931", "0.0027739251040221915", "720", "0.0", "1684486811"], + ["12932", "0.0027739251040221915", "720", "0.0", "1684490411"], + ["12933", "0.0027739251040221915", "720", "0.0", "1684494011"], + ["12934", "0.0027739251040221915", "720", "0.0", "1684497611"], + ["12935", "0.0027739251040221915", "720", "0.0", "1684501211"], + ["12936", "0.0027739251040221915", "720", "0.0", "1684504811"], + ["12937", "0.0027739251040221915", "720", "0.0", "1684508411"], + ["12938", "0.0027739251040221915", "720", "0.0", "1684512011"], + ["12939", "0.0027739251040221915", "720", "0.0", "1684515611"], + ["12940", "0.0027739251040221915", "720", "0.0", "1684519211"], + ["12941", "0.0027739251040221915", "720", "0.0", "1684522811"], + ["12942", "0.0027739251040221915", "720", "0.0", "1684526411"], + ["12943", "0.0027739251040221915", "720", "0.0", "1684530011"], + ["12944", "0.0027739251040221915", "720", "0.0", "1684533611"], + ["12945", "0.0027739251040221915", "720", "0.0", "1684537211"], + ["12946", "0.0027739251040221915", "720", "0.0", "1684540811"], + ["12947", "0.0027739251040221915", "720", "0.0", "1684544411"], + ["12948", "0.0027739251040221915", "720", "0.0", "1684548011"], + ["12949", "0.0027739251040221915", "720", "0.0", "1684551611"], + ["12950", "0.0027739251040221915", "720", "0.0", "1684555211"], + ["12951", "0.0027739251040221915", "720", "0.0", "1684558811"], + ["12952", "0.0027739251040221915", "720", "0.0", "1684562411"], + ["12953", "0.0027739251040221915", "720", "0.0", "1684566011"], + ["12954", "0.0027739251040221915", "720", "0.0", "1684569611"], + ["12955", "0.0027739251040221915", "720", "0.0", "1684573211"], + ["12956", "0.0027739251040221915", "720", "0.0", "1684576811"], + ["12957", "0.0027739251040221915", "720", "0.0", "1684580411"], + ["12958", "0.0027739251040221915", "720", "0.0", "1684584011"], + ["12959", "0.0027739251040221915", "720", "0.0", "1684587623"], + ["12960", "0.0027739251040221915", "720", "0.0", "1684591211"], + ["12961", "0.0027739251040221915", "720", "0.0", "1684594811"], + ["12962", "0.0027739251040221915", "720", "0.0", "1684598411"], + ["12963", "0.0027739251040221915", "720", "0.0", "1684602011"], + ["12964", "0.0027739251040221915", "720", "0.0", "1684605611"], + ["12965", "0.0027739251040221915", "720", "0.0", "1684609211"], + ["12966", "0.0027739251040221915", "720", "0.0", "1684612811"], + ["12967", "0.0027739251040221915", "720", "0.0", "1684616411"], + ["12968", "0.0027739251040221915", "720", "0.0", "1684620011"], + ["12969", "0.0027739251040221915", "720", "0.0", "1684623611"], + ["12970", "0.0027739251040221915", "720", "0.0", "1684627211"], + ["12971", "0.0027739251040221915", "720", "0.0", "1684630811"], + ["12972", "0.0027739251040221915", "720", "0.0", "1684634411"], + ["12973", "0.0027739251040221915", "720", "0.0", "1684638011"], + ["12974", "0.0027739251040221915", "720", "0.0", "1684641611"], + ["12975", "0.0027739251040221915", "720", "0.0", "1684645211"], + ["12976", "0.0027739251040221915", "720", "0.0", "1684648811"], + ["12977", "0.0027739251040221915", "720", "0.0", "1684652423"], + ["12978", "0.0027739251040221915", "720", "0.0", "1684656023"], + ["12979", "0.0027739251040221915", "720", "0.0", "1684659623"], + ["12980", "0.0027739251040221915", "720", "0.0", "1684663211"], + ["12981", "0.0027739251040221915", "720", "0.0", "1684666811"], + ["12982", "0.0027739251040221915", "720", "0.0", "1684670411"], + ["12983", "0.0027739251040221915", "720", "0.0", "1684674011"], + ["12984", "0.0027739251040221915", "720", "0.0", "1684677611"], + ["12985", "0.0027739251040221915", "720", "0.0", "1684681211"], + ["12986", "0.0027739251040221915", "720", "0.0", "1684684811"], + ["12987", "0.0027739251040221915", "720", "0.0", "1684688411"], + ["12988", "0.0027739251040221915", "720", "0.0", "1684692011"], + ["12989", "0.0027739251040221915", "720", "0.0", "1684695611"], + ["12990", "0.0027739251040221915", "720", "0.0", "1684699211"], + ["12991", "0.0027739251040221915", "720", "0.0", "1684702811"], + ["12992", "0.0027739251040221915", "720", "0.0", "1684706411"], + ["12993", "0.0027739251040221915", "720", "0.0", "1684710011"], + ["12994", "0.0027739251040221915", "720", "0.0", "1684713611"], + ["12995", "0.0027739251040221915", "720", "0.0", "1684717211"], + ["12996", "0.0027739251040221915", "720", "0.0", "1684720811"], + ["12997", "0.0027739251040221915", "720", "0.0", "1684724411"], + ["12998", "0.0027739251040221915", "720", "0.0", "1684728011"], + ["12999", "0.0027739251040221915", "720", "0.0", "1684731611"], + ["13000", "0.0027739251040221915", "720", "0.0", "1684735211"], + ["13001", "0.0027739251040221915", "720", "0.0", "1684738811"], + ["13002", "0.0027739251040221915", "720", "0.0", "1684742411"], + ["13003", "0.0027739251040221915", "720", "0.0", "1684746011"], + ["13004", "0.0027739251040221915", "720", "0.0", "1684749611"], + ["13005", "0.0027739251040221915", "720", "0.0", "1684753211"], + ["13006", "0.0027739251040221915", "720", "0.0", "1684756811"], + ["13007", "0.0027739251040221915", "720", "0.0", "1684760411"], + ["13008", "0.0027739251040221915", "720", "0.0", "1684764011"], + ["13009", "0.0027739251040221915", "720", "0.0", "1684767635"], + ["13010", "0.0027739251040221915", "720", "0.0", "1684771223"], + ["13011", "0.0027739251040221915", "720", "0.0", "1684774823"], + ["13012", "0.0027739251040221915", "720", "0.0", "1684778411"], + ["13013", "0.0027739251040221915", "720", "0.0", "1684782023"], + ["13014", "0.0027739251040221915", "720", "0.0", "1684785611"], + ["13015", "0.0027739251040221915", "720", "0.0", "1684789211"], + ["13016", "0.0027739251040221915", "720", "0.0", "1684792811"], + ["13017", "0.0027739251040221915", "720", "0.0", "1684796423"], + ["13018", "0.0027739251040221915", "720", "0.0", "1684800011"], + ["13019", "0.0027739251040221915", "720", "0.0", "1684803623"], + ["13020", "0.0027739251040221915", "720", "0.0", "1684807211"], + ["13021", "0.0027739251040221915", "720", "0.0", "1684810811"], + ["13022", "0.0027739251040221915", "720", "0.0", "1684814411"], + ["13023", "0.0027739251040221915", "720", "0.0", "1684818023"], + ["13024", "0.0027739251040221915", "720", "0.0", "1684821611"], + ["13025", "0.0027739251040221915", "720", "0.0", "1684825211"], + ["13026", "0.0027739251040221915", "720", "0.0", "1684828811"], + ["13027", "0.0027739251040221915", "720", "0.0", "1684832411"], + ["13028", "0.0027739251040221915", "720", "0.0", "1684836011"], + ["13029", "0.0027739251040221915", "720", "0.0", "1684839611"], + ["13030", "0.0027739251040221915", "720", "0.0", "1684843211"], + ["13031", "0.0027739251040221915", "720", "0.0", "1684846823"], + ["13032", "0.0027739251040221915", "720", "0.0", "1684850411"], + ["13033", "0.0027739251040221915", "720", "0.0", "1684854023"], + ["13034", "0.0027739251040221915", "720", "0.0", "1684857611"], + ["13035", "0.0027739251040221915", "720", "0.0", "1684861211"], + ["13036", "0.0027739251040221915", "720", "0.0", "1684864811"], + ["13037", "0.0027739251040221915", "720", "0.0", "1684868411"], + ["13038", "0.0027739251040221915", "720", "0.0", "1684872011"], + ["13039", "0.0027739251040221915", "720", "0.0", "1684875611"], + ["13040", "0.0027739251040221915", "720", "0.0", "1684879211"], + ["13041", "0.0027739251040221915", "720", "0.0", "1684882811"], + ["13042", "0.0027739251040221915", "720", "0.0", "1684886411"], + ["13043", "0.0027739251040221915", "720", "0.0", "1684890011"], + ["13044", "0.0027739251040221915", "720", "0.0", "1684893611"], + ["13045", "0.0027739251040221915", "720", "0.0", "1684897211"], + ["13046", "0.0027739251040221915", "720", "0.0", "1684900811"], + ["13047", "0.0027739251040221915", "720", "0.0", "1684904411"], + ["13048", "0.0027739251040221915", "720", "0.0", "1684908011"], + ["13049", "0.0027739251040221915", "720", "0.0", "1684911611"], + ["13050", "0.0027739251040221915", "720", "0.0", "1684915211"], + ["13051", "0.0027739251040221915", "720", "0.0", "1684918811"], + ["13052", "0.0027739251040221915", "720", "0.0", "1684922423"], + ["13053", "0.0027739251040221915", "720", "0.0", "1684926011"], + ["13054", "0.0027739251040221915", "720", "0.0", "1684929611"], + ["13055", "0.0027739251040221915", "720", "0.0", "1684933211"], + ["13056", "0.0027739251040221915", "720", "0.0", "1684936811"], + ["13057", "0.0027739251040221915", "720", "0.0", "1684940423"], + ["13058", "0.0027739251040221915", "720", "0.0", "1684944011"], + ["13059", "0.0027739251040221915", "720", "0.0", "1684947611"], + ["13060", "0.0027739251040221915", "720", "0.0", "1684951211"], + ["13061", "0.0027739251040221915", "720", "0.0", "1684954811"], + ["13062", "0.0027739251040221915", "720", "0.0", "1684958411"], + ["13063", "0.0027739251040221915", "720", "0.0", "1684962011"], + ["13064", "0.0027739251040221915", "720", "0.0", "1684965611"], + ["13065", "0.0027739251040221915", "720", "0.0", "1684969211"], + ["13066", "0.0027739251040221915", "720", "0.0", "1684972823"], + ["13067", "0.0027739251040221915", "720", "0.0", "1684976411"], + ["13068", "0.0027739251040221915", "720", "0.0", "1684980011"], + ["13069", "0.0027739251040221915", "720", "0.0", "1684983611"], + ["13070", "0.0027739251040221915", "720", "0.0", "1684987211"], + ["13071", "0.0027739251040221915", "720", "0.0", "1684990811"], + ["13072", "0.0027739251040221915", "720", "0.0", "1684994411"], + ["13073", "0.0027739251040221915", "720", "0.0", "1684998011"], + ["13074", "0.0027739251040221915", "720", "0.0", "1685001611"], + ["13075", "0.0027739251040221915", "720", "0.0", "1685005211"], + ["13076", "0.0027739251040221915", "720", "0.0", "1685008811"], + ["13077", "0.0027739251040221915", "720", "0.0", "1685012411"], + ["13078", "0.0027739251040221915", "720", "0.0", "1685016035"], + ["13079", "0.0027739251040221915", "720", "0.0", "1685019611"], + ["13080", "0.0027739251040221915", "720", "0.0", "1685023223"], + ["13081", "0.0027739251040221915", "720", "0.0", "1685026823"], + ["13082", "0.0027739251040221915", "720", "0.0", "1685030411"], + ["13083", "0.0027739251040221915", "720", "0.0", "1685034011"], + ["13084", "0.0027739251040221915", "720", "0.0", "1685037611"], + ["13085", "0.0027739251040221915", "720", "0.0", "1685041211"], + ["13086", "0.0027739251040221915", "720", "0.0", "1685044811"], + ["13087", "0.0027739251040221915", "720", "0.0", "1685048411"], + ["13088", "0.0027739251040221915", "720", "0.0", "1685052011"], + ["13089", "0.0027739251040221915", "720", "0.0", "1685055611"], + ["13090", "0.0027739251040221915", "720", "0.0", "1685059211"], + ["13091", "0.0027739251040221915", "720", "0.0", "1685062811"], + ["13092", "0.0027739251040221915", "720", "0.0", "1685066411"], + ["13093", "0.0027739251040221915", "720", "0.0", "1685070011"], + ["13094", "0.0027739251040221915", "720", "0.0", "1685073611"], + ["13095", "0.0027739251040221915", "720", "0.0", "1685077211"], + ["13096", "0.0027739251040221915", "720", "0.0", "1685080811"], + ["13097", "0.0027739251040221915", "720", "0.0", "1685084411"], + ["13098", "0.0027739251040221915", "720", "0.0", "1685088011"], + ["13099", "0.0027739251040221915", "720", "0.0", "1685091611"], + ["13100", "0.0027739251040221915", "720", "0.0", "1685095211"], + ["13101", "0.0027739251040221915", "720", "0.0", "1685098811"], + ["13102", "0.0027739251040221915", "720", "0.0", "1685102411"], + ["13103", "0.0027739251040221915", "720", "0.0", "1685106011"], + ["13104", "0.0027739251040221915", "720", "0.0", "1685109611"], + ["13105", "0.0027739251040221915", "720", "0.0", "1685113211"], + ["13106", "0.0027739251040221915", "720", "0.0", "1685116811"], + ["13107", "0.0027739251040221915", "720", "0.0", "1685120423"], + ["13108", "0.0027739251040221915", "720", "0.0", "1685124011"], + ["13109", "0.0027739251040221915", "720", "0.0", "1685127611"], + ["13110", "0.0027739251040221915", "720", "0.0", "1685131211"], + ["13111", "0.0027739251040221915", "720", "0.0", "1685134811"], + ["13112", "0.0027739251040221915", "720", "0.0", "1685138411"], + ["13113", "0.0027739251040221915", "720", "0.0", "1685142035"], + ["13114", "0.0027739251040221915", "720", "0.0", "1685145611"], + ["13115", "0.0027739251040221915", "720", "0.0", "1685149211"], + ["13116", "0.0027739251040221915", "720", "0.0", "1685152811"], + ["13117", "0.0027739251040221915", "720", "0.0", "1685156423"], + ["13118", "0.0027739251040221915", "720", "0.0", "1685160011"], + ["13119", "0.0027739251040221915", "720", "0.0", "1685163611"], + ["13120", "0.0027739251040221915", "720", "0.0", "1685167211"], + ["13121", "0.0027739251040221915", "720", "0.0", "1685170811"], + ["13122", "0.0027739251040221915", "720", "0.0", "1685174411"], + ["13123", "0.0027739251040221915", "720", "0.0", "1685178011"], + ["13124", "0.0027739251040221915", "720", "0.0", "1685181611"], + ["13125", "0.0027739251040221915", "720", "0.0", "1685185211"], + ["13126", "0.0027739251040221915", "720", "0.0", "1685188811"], + ["13127", "0.0027739251040221915", "720", "0.0", "1685192411"], + ["13128", "0.0027739251040221915", "720", "0.0", "1685196011"], + ["13129", "0.0027739251040221915", "720", "0.0", "1685199611"], + ["13130", "0.0027739251040221915", "720", "0.0", "1685203211"], + ["13131", "0.0027739251040221915", "720", "0.0", "1685206811"], + ["13132", "0.0027739251040221915", "720", "0.0", "1685210411"], + ["13133", "0.0027739251040221915", "720", "0.0", "1685214011"], + ["13134", "0.0027739251040221915", "720", "0.0", "1685217611"], + ["13135", "0.0027739251040221915", "720", "0.0", "1685221211"], + ["13136", "0.0027739251040221915", "720", "0.0", "1685224811"], + ["13137", "0.0027739251040221915", "720", "0.0", "1685228411"], + ["13138", "0.0027739251040221915", "720", "0.0", "1685232023"], + ["13139", "0.0027739251040221915", "720", "0.0", "1685235611"], + ["13140", "0.0027739251040221915", "720", "0.0", "1685239211"], + ["13141", "0.0027739251040221915", "720", "0.0", "1685242811"], + ["13142", "0.0027739251040221915", "720", "0.0", "1685246411"], + ["13143", "0.0027739251040221915", "720", "0.0", "1685250011"], + ["13144", "0.0027739251040221915", "720", "0.0", "1685253611"], + ["13145", "0.0027739251040221915", "720", "0.0", "1685257211"], + ["13146", "0.0027739251040221915", "720", "0.0", "1685260811"], + ["13147", "0.0027739251040221915", "720", "0.0", "1685264411"], + ["13148", "0.0027739251040221915", "720", "0.0", "1685268011"], + ["13149", "0.0027739251040221915", "720", "0.0", "1685271611"], + ["13150", "0.0027739251040221915", "720", "0.0", "1685275211"], + ["13151", "0.0027739251040221915", "720", "0.0", "1685278811"], + ["13152", "0.0027739251040221915", "720", "0.0", "1685282411"], + ["13153", "0.0027739251040221915", "720", "0.0", "1685286011"], + ["13154", "0.0027739251040221915", "720", "0.0", "1685289611"], + ["13155", "0.0027739251040221915", "720", "0.0", "1685293211"], + ["13156", "0.0027739251040221915", "720", "0.0", "1685296811"], + ["13157", "0.0027739251040221915", "720", "0.0", "1685300411"], + ["13158", "0.0027739251040221915", "720", "0.0", "1685304011"], + ["13159", "0.0027739251040221915", "720", "0.0", "1685307611"], + ["13160", "0.0027739251040221915", "720", "0.0", "1685311211"], + ["13161", "0.0027739251040221915", "720", "0.0", "1685314811"], + ["13162", "0.0027739251040221915", "720", "0.0", "1685318411"], + ["13163", "0.0027739251040221915", "720", "0.0", "1685322023"], + ["13164", "0.0027739251040221915", "720", "0.0", "1685325623"], + ["13165", "0.0027739251040221915", "720", "0.0", "1685329211"], + ["13166", "0.0027739251040221915", "720", "0.0", "1685332811"], + ["13167", "0.0027739251040221915", "720", "0.0", "1685336423"], + ["13168", "0.0027739251040221915", "720", "0.0", "1685340011"], + ["13169", "0.0027739251040221915", "720", "0.0", "1685343611"], + ["13170", "0.0027739251040221915", "720", "0.0", "1685347211"], + ["13171", "0.0027739251040221915", "720", "0.0", "1685350811"], + ["13172", "0.0027739251040221915", "720", "0.0", "1685354423"], + ["13173", "0.0027739251040221915", "720", "0.0", "1685358011"], + ["13174", "0.0027739251040221915", "720", "0.0", "1685361611"], + ["13175", "0.0027739251040221915", "720", "0.0", "1685365223"], + ["13176", "0.0027739251040221915", "720", "0.0", "1685368811"], + ["13177", "0.0027739251040221915", "720", "0.0", "1685372435"], + ["13178", "0.0027739251040221915", "720", "0.0", "1685376047"], + ["13179", "0.0027739251040221915", "720", "0.0", "1685379611"], + ["13180", "0.0027739251040221915", "720", "0.0", "1685383211"], + ["13181", "0.0027739251040221915", "720", "0.0", "1685386811"], + ["13182", "0.0027739251040221915", "720", "0.0", "1685390411"], + ["13183", "0.0027739251040221915", "720", "0.0", "1685394011"], + ["13184", "0.0027739251040221915", "720", "0.0", "1685397611"], + ["13185", "0.0027739251040221915", "720", "0.0", "1685401211"], + ["13186", "0.0027739251040221915", "720", "0.0", "1685404811"], + ["13187", "0.0027739251040221915", "720", "0.0", "1685408411"], + ["13188", "0.0027739251040221915", "720", "0.0", "1685412011"], + ["13189", "0.0027739251040221915", "720", "0.0", "1685415611"], + ["13190", "0.0027739251040221915", "720", "0.0", "1685419211"], + ["13191", "0.0027739251040221915", "720", "0.0", "1685422823"], + ["13192", "0.0027739251040221915", "720", "0.0", "1685426411"], + ["13193", "0.0027739251040221915", "720", "0.0", "1685430011"], + ["13194", "0.0027739251040221915", "720", "0.0", "1685433611"], + ["13195", "0.0027739251040221915", "720", "0.0", "1685437211"], + ["13196", "0.0027739251040221915", "720", "0.0", "1685440811"], + ["13197", "0.0027739251040221915", "720", "0.0", "1685444411"], + ["13198", "0.0027739251040221915", "720", "0.0", "1685448011"], + ["13199", "0.0027739251040221915", "720", "0.0", "1685451611"], + ["13200", "0.0027739251040221915", "720", "0.0", "1685455211"], + ["13201", "0.0027739251040221915", "720", "0.0", "1685458811"], + ["13202", "0.0027739251040221915", "720", "0.0", "1685462411"], + ["13203", "0.0027739251040221915", "720", "0.0", "1685466011"], + ["13204", "0.0027739251040221915", "720", "0.0", "1685469611"], + ["13205", "0.0027739251040221915", "720", "0.0", "1685473211"], + ["13206", "0.0027739251040221915", "720", "0.0", "1685476811"], + ["13207", "0.0027739251040221915", "720", "0.0", "1685480411"], + ["13208", "0.0027739251040221915", "720", "0.0", "1685484011"], + ["13209", "0.0027739251040221915", "720", "0.0", "1685487611"], + ["13210", "0.0027739251040221915", "720", "0.0", "1685491211"], + ["13211", "0.0027739251040221915", "720", "0.0", "1685494811"], + ["13212", "0.0027739251040221915", "720", "0.0", "1685498411"], + ["13213", "0.0027739251040221915", "720", "0.0", "1685502011"], + ["13214", "0.0027739251040221915", "720", "0.0", "1685505611"], + ["13215", "0.0027739251040221915", "720", "0.0", "1685509211"], + ["13216", "0.0027739251040221915", "720", "0.0", "1685512811"], + ["13217", "0.0027739251040221915", "720", "0.0", "1685516411"], + ["13218", "0.0027739251040221915", "720", "0.0", "1685520011"], + ["13219", "0.0027739251040221915", "720", "0.0", "1685523611"], + ["13220", "0.0027739251040221915", "720", "0.0", "1685527211"], + ["13221", "0.0027739251040221915", "720", "0.0", "1685530811"], + ["13222", "0.0027739251040221915", "720", "0.0", "1685534411"], + ["13223", "0.0027739251040221915", "720", "0.0", "1685538011"], + ["13224", "0.0027739251040221915", "720", "0.0", "1685541611"], + ["13225", "0.0027739251040221915", "720", "0.0", "1685545211"], + ["13226", "0.0027739251040221915", "720", "0.0", "1685548811"], + ["13227", "0.0027739251040221915", "720", "0.0", "1685552411"], + ["13228", "0.0027739251040221915", "720", "0.0", "1685556011"], + ["13229", "0.0027739251040221915", "720", "0.0", "1685559611"], + ["13230", "0.0027739251040221915", "720", "0.0", "1685563211"], + ["13231", "0.0027739251040221915", "720", "0.0", "1685566811"], + ["13232", "0.0027739251040221915", "720", "0.0", "1685570411"], + ["13233", "0.0027739251040221915", "720", "0.0", "1685574011"], + ["13234", "0.0027739251040221915", "720", "0.0", "1685577611"], + ["13235", "0.0027739251040221915", "720", "0.0", "1685581211"], + ["13236", "0.0027739251040221915", "720", "0.0", "1685584811"], + ["13237", "0.0027739251040221915", "720", "0.0", "1685588423"], + ["13238", "0.0027739251040221915", "720", "0.0", "1685592011"], + ["13239", "0.0027739251040221915", "720", "0.0", "1685595611"], + ["13240", "0.0027739251040221915", "720", "0.0", "1685599211"], + ["13241", "0.0027739251040221915", "720", "0.0", "1685602811"], + ["13242", "0.0027739251040221915", "720", "0.0", "1685606411"], + ["13243", "0.0027739251040221915", "720", "0.0", "1685610011"], + ["13244", "0.0027739251040221915", "720", "0.0", "1685613611"], + ["13245", "0.0027739251040221915", "720", "0.0", "1685617211"], + ["13246", "0.0027739251040221915", "720", "0.0", "1685620823"], + ["13247", "0.0027739251040221915", "720", "0.0", "1685624411"], + ["13248", "0.0027739251040221915", "720", "0.0", "1685628011"], + ["13249", "0.0027739251040221915", "720", "0.0", "1685631611"], + ["13250", "0.0027739251040221915", "720", "0.0", "1685635211"], + ["13251", "0.0027739251040221915", "720", "0.0", "1685638811"], + ["13252", "0.0027739251040221915", "720", "0.0", "1685642411"], + ["13253", "0.0027739251040221915", "720", "0.0", "1685646011"], + ["13254", "0.0027739251040221915", "720", "0.0", "1685649611"], + ["13255", "0.0027739251040221915", "720", "0.0", "1685653211"], + ["13256", "0.0027739251040221915", "720", "0.0", "1685656811"], + ["13257", "0.0027739251040221915", "720", "0.0", "1685660411"], + ["13258", "0.0027739251040221915", "720", "0.0", "1685664011"], + ["13259", "0.0027739251040221915", "720", "0.0", "1685667611"], + ["13260", "0.0027739251040221915", "720", "0.0", "1685671211"], + ["13261", "0.0027739251040221915", "720", "0.0", "1685674811"], + ["13262", "0.0027739251040221915", "720", "0.0", "1685678411"], + ["13263", "0.0027739251040221915", "720", "0.0", "1685682011"], + ["13264", "0.0027739251040221915", "720", "0.0", "1685685611"], + ["13265", "0.0027739251040221915", "720", "0.0", "1685689211"], + ["13266", "0.0027739251040221915", "720", "0.0", "1685692811"], + ["13267", "0.0027739251040221915", "720", "0.0", "1685696411"], + ["13268", "0.0027739251040221915", "720", "0.0", "1685700011"], + ["13269", "0.0027739251040221915", "720", "0.0", "1685703611"], + ["13270", "0.0027739251040221915", "720", "0.0", "1685707211"], + ["13271", "0.0027739251040221915", "720", "0.0", "1685710811"], + ["13272", "0.0027739251040221915", "720", "0.0", "1685714411"], + ["13273", "0.0027739251040221915", "720", "0.0", "1685718011"], + ["13274", "0.0027739251040221915", "720", "0.0", "1685721611"], + ["13275", "0.0027739251040221915", "720", "0.0", "1685725211"], + ["13276", "0.0027739251040221915", "720", "0.0", "1685728811"], + ["13277", "0.0027739251040221915", "720", "0.0", "1685732423"], + ["13278", "0.0027739251040221915", "720", "0.0", "1685736011"], + ["13279", "0.0027739251040221915", "720", "0.0", "1685739611"], + ["13280", "0.0027739251040221915", "720", "0.0", "1685743211"], + ["13281", "0.0027739251040221915", "720", "0.0", "1685746811"], + ["13282", "0.0027739251040221915", "720", "0.0", "1685750411"], + ["13283", "0.0027739251040221915", "720", "0.0", "1685754011"], + ["13284", "0.0027739251040221915", "720", "0.0", "1685757611"], + ["13285", "0.0027739251040221915", "720", "0.0", "1685761211"], + ["13286", "0.0027739251040221915", "720", "0.0", "1685764811"], + ["13287", "0.0027739251040221915", "720", "0.0", "1685768423"], + ["13288", "0.0027739251040221915", "720", "0.0", "1685772011"], + ["13289", "0.0027739251040221915", "720", "0.0", "1685775623"], + ["13290", "0.0027739251040221915", "720", "0.0", "1685779211"], + ["13291", "0.0027739251040221915", "720", "0.0", "1685782811"], + ["13292", "0.0027739251040221915", "720", "0.0", "1685786411"], + ["13293", "0.0027739251040221915", "720", "0.0", "1685790011"], + ["13294", "0.0027739251040221915", "720", "0.0", "1685793611"], + ["13295", "0.0027739251040221915", "720", "0.0", "1685797211"], + ["13296", "0.0027739251040221915", "720", "0.0", "1685800811"], + ["13297", "0.0027739251040221915", "720", "0.0", "1685804411"], + ["13298", "0.0027739251040221915", "720", "0.0", "1685808011"], + ["13299", "0.0027739251040221915", "720", "0.0", "1685811611"], + ["13300", "0.0027739251040221915", "720", "0.0", "1685815211"], + ["13301", "0.0027739251040221915", "720", "0.0", "1685818811"], + ["13302", "0.0027739251040221915", "720", "0.0", "1685822411"], + ["13303", "0.0027739251040221915", "720", "0.0", "1685826011"], + ["13304", "0.0027739251040221915", "720", "0.0", "1685829611"], + ["13305", "0.0027739251040221915", "720", "0.0", "1685833211"], + ["13306", "0.0027739251040221915", "720", "0.0", "1685836823"], + ["13307", "0.0027739251040221915", "720", "0.0", "1685840411"], + ["13308", "0.0027739251040221915", "720", "0.0", "1685844011"], + ["13309", "0.0027739251040221915", "720", "0.0", "1685847611"], + ["13310", "0.0027739251040221915", "720", "0.0", "1685851211"], + ["13311", "0.0027739251040221915", "720", "0.0", "1685854811"], + ["13312", "0.0027739251040221915", "720", "0.0", "1685858411"], + ["13313", "0.0027739251040221915", "720", "0.0", "1685862011"], + ["13314", "0.0027739251040221915", "720", "0.0", "1685865611"], + ["13315", "0.0027739251040221915", "720", "0.0", "1685869211"], + ["13316", "0.0027739251040221915", "720", "0.0", "1685872811"], + ["13317", "0.0027739251040221915", "720", "0.0", "1685876411"], + ["13318", "0.0027739251040221915", "720", "0.0", "1685880011"], + ["13319", "0.0027739251040221915", "720", "0.0", "1685883611"], + ["13320", "0.0027739251040221915", "720", "0.0", "1685887211"], + ["13321", "0.0027739251040221915", "720", "0.0", "1685890811"], + ["13322", "0.0027739251040221915", "720", "0.0", "1685894411"], + ["13323", "0.0027739251040221915", "720", "0.0", "1685898011"], + ["13324", "0.0027739251040221915", "720", "0.0", "1685901611"], + ["13325", "0.0027739251040221915", "720", "0.0", "1685905211"], + ["13326", "0.0027739251040221915", "720", "0.0", "1685908811"], + ["13327", "0.0027739251040221915", "720", "0.0", "1685912411"], + ["13328", "0.0027739251040221915", "720", "0.0", "1685916011"], + ["13329", "0.0027739251040221915", "720", "0.0", "1685919611"], + ["13330", "0.0027739251040221915", "720", "0.0", "1685923211"], + ["13331", "0.0027739251040221915", "720", "0.0", "1685926811"], + ["13332", "0.0027739251040221915", "720", "0.0", "1685930411"], + ["13333", "0.0027739251040221915", "720", "0.0", "1685934011"], + ["13334", "0.0027739251040221915", "720", "0.0", "1685937611"], + ["13335", "0.0027739251040221915", "720", "0.0", "1685941211"], + ["13336", "0.0027739251040221915", "720", "0.0", "1685944811"], + ["13337", "0.0027739251040221915", "720", "0.0", "1685948411"], + ["13338", "0.0027739251040221915", "720", "0.0", "1685952011"], + ["13339", "0.0027739251040221915", "720", "0.0", "1685955611"], + ["13340", "0.0027739251040221915", "720", "0.0", "1685959223"], + ["13341", "0.0027739251040221915", "720", "0.0", "1685962811"], + ["13342", "0.0027739251040221915", "720", "0.0", "1685966411"], + ["13343", "0.0027739251040221915", "720", "0.0", "1685970011"], + ["13344", "0.0027739251040221915", "720", "0.0", "1685973611"], + ["13345", "0.0027739251040221915", "720", "0.0", "1685977211"], + ["13346", "0.0027739251040221915", "720", "0.0", "1685980811"], + ["13347", "0.0027739251040221915", "720", "0.0", "1685984411"], + ["13348", "0.0027739251040221915", "720", "0.0", "1685988011"], + ["13349", "0.0027739251040221915", "720", "0.0", "1685991611"], + ["13350", "0.0027739251040221915", "720", "0.0", "1685995211"], + ["13351", "0.0027739251040221915", "720", "0.0", "1685998811"], + ["13352", "0.0027739251040221915", "720", "0.0", "1686002423"], + ["13353", "0.0027739251040221915", "720", "0.0", "1686006011"], + ["13354", "0.0027739251040221915", "720", "0.0", "1686009611"], + ["13355", "0.0027739251040221915", "720", "0.0", "1686013211"], + ["13356", "0.0027739251040221915", "720", "0.0", "1686016811"], + ["13357", "0.0027739251040221915", "720", "0.0", "1686020423"], + ["13358", "0.0027739251040221915", "720", "0.0", "1686024011"], + ["13359", "0.0027739251040221915", "720", "0.0", "1686027611"], + ["13360", "0.0027739251040221915", "720", "0.0", "1686031211"], + ["13361", "0.0027739251040221915", "720", "0.0", "1686034811"], + ["13362", "0.0027739251040221915", "720", "0.0", "1686038411"], + ["13363", "0.0027739251040221915", "720", "0.0", "1686042011"], + ["13364", "0.0027739251040221915", "720", "0.0", "1686045611"], + ["13365", "0.0027739251040221915", "720", "0.0", "1686049211"], + ["13366", "0.0027739251040221915", "720", "0.0", "1686052811"], + ["13367", "0.0027739251040221915", "720", "0.0", "1686056411"], + ["13368", "0.0027739251040221915", "720", "0.0", "1686060011"], + ["13369", "0.0027739251040221915", "720", "0.0", "1686063611"], + ["13370", "0.0027739251040221915", "720", "0.0", "1686067211"], + ["13371", "0.0027739251040221915", "720", "0.0", "1686070811"], + ["13372", "0.0027739251040221915", "720", "0.0", "1686074411"], + ["13373", "0.0027739251040221915", "720", "0.0", "1686078011"], + ["13374", "0.0027739251040221915", "720", "0.0", "1686081623"], + ["13375", "0.0027739251040221915", "720", "0.0", "1686085211"], + ["13376", "0.0027739251040221915", "720", "0.0", "1686088811"], + ["13377", "0.0027739251040221915", "720", "0.0", "1686092411"], + ["13378", "0.0027739251040221915", "720", "0.0", "1686096023"], + ["13379", "0.0027739251040221915", "720", "0.0", "1686099611"], + ["13380", "0.0027739251040221915", "720", "0.0", "1686103211"], + ["13381", "0.0027739251040221915", "720", "0.0", "1686106811"], + ["13382", "0.0027739251040221915", "720", "0.0", "1686110411"], + ["13383", "0.0027739251040221915", "720", "0.0", "1686114011"], + ["13384", "0.0027739251040221915", "720", "0.0", "1686117611"], + ["13385", "0.0027739251040221915", "720", "0.0", "1686121211"], + ["13386", "0.0027739251040221915", "720", "0.0", "1686124811"], + ["13387", "0.0027739251040221915", "720", "0.0", "1686128411"], + ["13388", "0.0027739251040221915", "720", "0.0", "1686132011"], + ["13389", "0.0027739251040221915", "720", "0.0", "1686135623"], + ["13390", "0.0027739251040221915", "720", "0.0", "1686139211"], + ["13391", "0.0027739251040221915", "720", "0.0", "1686142811"], + ["13392", "0.0027739251040221915", "720", "0.0", "1686146411"], + ["13393", "0.0027739251040221915", "720", "0.0", "1686150011"], + ["13394", "0.0027739251040221915", "720", "0.0", "1686153611"], + ["13395", "0.0027739251040221915", "720", "0.0", "1686157211"], + ["13396", "0.0027739251040221915", "720", "0.0", "1686160823"], + ["13397", "0.0027739251040221915", "720", "0.0", "1686164411"], + ["13398", "0.0027739251040221915", "720", "0.0", "1686168011"], + ["13399", "0.0027739251040221915", "720", "0.0", "1686171611"], + ["13400", "0.0027739251040221915", "720", "0.0", "1686175211"], + ["13401", "0.0027739251040221915", "720", "0.0", "1686178811"], + ["13402", "0.0027739251040221915", "720", "0.0", "1686182411"], + ["13403", "0.0027739251040221915", "720", "0.0", "1686186011"], + ["13404", "0.0027739251040221915", "720", "0.0", "1686189611"], + ["13405", "0.0027739251040221915", "720", "0.0", "1686193223"], + ["13406", "0.0027739251040221915", "720", "0.0", "1686196811"], + ["13407", "0.0027739251040221915", "720", "0.0", "1686200411"], + ["13408", "0.0027739251040221915", "720", "0.0", "1686204011"], + ["13409", "0.0027739251040221915", "720", "0.0", "1686207611"], + ["13410", "0.0027739251040221915", "720", "0.0", "1686211211"], + ["13411", "0.0027739251040221915", "720", "0.0", "1686214811"], + ["13412", "0.0027739251040221915", "720", "0.0", "1686218411"], + ["13413", "0.0027739251040221915", "720", "0.0", "1686222011"], + ["13414", "0.0027739251040221915", "720", "0.0", "1686225611"], + ["13415", "0.0027739251040221915", "720", "0.0", "1686229211"], + ["13416", "0.0027739251040221915", "720", "0.0", "1686232811"], + ["13417", "0.0027739251040221915", "720", "0.0", "1686236411"], + ["13418", "0.0027739251040221915", "720", "0.0", "1686240011"], + ["13419", "0.0027739251040221915", "720", "0.0", "1686243611"], + ["13420", "0.0027739251040221915", "720", "0.0", "1686247211"], + ["13421", "0.0027739251040221915", "720", "0.0", "1686250811"], + ["13422", "0.0027739251040221915", "720", "0.0", "1686254411"], + ["13423", "0.0027739251040221915", "720", "0.0", "1686258011"], + ["13424", "0.0027739251040221915", "720", "0.0", "1686261611"], + ["13425", "0.0027739251040221915", "720", "0.0", "1686265211"], + ["13426", "0.0027739251040221915", "720", "0.0", "1686268811"], + ["13427", "0.0027739251040221915", "720", "0.0", "1686272411"], + ["13428", "0.0027739251040221915", "720", "0.0", "1686276011"], + ["13429", "0.0027739251040221915", "720", "0.0", "1686279611"], + ["13430", "0.0027739251040221915", "720", "0.0", "1686283211"], + ["13431", "0.0027739251040221915", "720", "0.0", "1686286811"], + ["13432", "0.0027739251040221915", "720", "0.0", "1686290411"], + ["13433", "0.0027739251040221915", "720", "0.0", "1686294011"], + ["13434", "0.0027739251040221915", "720", "0.0", "1686297611"], + ["13435", "0.0027739251040221915", "720", "0.0", "1686301211"], + ["13436", "0.0027739251040221915", "720", "0.0", "1686304811"], + ["13437", "0.0027739251040221915", "720", "0.0", "1686308411"], + ["13438", "0.0027739251040221915", "720", "0.0", "1686312011"], + ["13439", "0.0027739251040221915", "720", "0.0", "1686315611"], + ["13440", "0.0027739251040221915", "720", "0.0", "1686319223"], + ["13441", "0.0027739251040221915", "720", "0.0", "1686322835"], + ["13442", "0.0027739251040221915", "720", "0.0", "1686326411"], + ["13443", "0.0027739251040221915", "720", "0.0", "1686330011"], + ["13444", "0.0027739251040221915", "720", "0.0", "1686333611"], + ["13445", "0.0027739251040221915", "720", "0.0", "1686337211"], + ["13446", "0.0027739251040221915", "720", "0.0", "1686340811"], + ["13447", "0.0027739251040221915", "720", "0.0", "1686344411"], + ["13448", "0.0027739251040221915", "720", "0.0", "1686348011"], + ["13449", "0.0027739251040221915", "720", "0.0", "1686351611"], + ["13450", "0.0027739251040221915", "720", "0.0", "1686355211"], + ["13451", "0.0027739251040221915", "720", "0.0", "1686358823"], + ["13452", "0.0027739251040221915", "720", "0.0", "1686362411"], + ["13453", "0.0027739251040221915", "720", "0.0", "1686366011"], + ["13454", "0.0027739251040221915", "720", "0.0", "1686369611"], + ["13455", "0.0027739251040221915", "720", "0.0", "1686373211"], + ["13456", "0.0027739251040221915", "720", "0.0", "1686376811"], + ["13457", "0.0027739251040221915", "720", "0.0", "1686380411"], + ["13458", "0.0027739251040221915", "720", "0.0", "1686384011"], + ["13459", "0.0027739251040221915", "720", "0.0", "1686387611"], + ["13460", "0.0027739251040221915", "720", "0.0", "1686391211"], + ["13461", "0.0027739251040221915", "720", "0.0", "1686394811"], + ["13462", "0.0027739251040221915", "720", "0.0", "1686398411"], + ["13463", "0.0027739251040221915", "720", "0.0", "1686402011"], + ["13464", "0.0027739251040221915", "720", "0.0", "1686405611"], + ["13465", "0.0027739251040221915", "720", "0.0", "1686409211"], + ["13466", "0.0027739251040221915", "720", "0.0", "1686412811"], + ["13467", "0.0027739251040221915", "720", "0.0", "1686416411"], + ["13468", "0.0027739251040221915", "720", "0.0", "1686420011"], + ["13469", "0.0027739251040221915", "720", "0.0", "1686423611"], + ["13470", "0.0027739251040221915", "720", "0.0", "1686427211"], + ["13471", "0.0027739251040221915", "720", "0.0", "1686430811"], + ["13472", "0.0027739251040221915", "720", "0.0", "1686434411"], + ["13473", "0.0027739251040221915", "720", "0.0", "1686438011"], + ["13474", "0.0027739251040221915", "720", "0.0", "1686441611"], + ["13475", "0.0027739251040221915", "720", "0.0", "1686445211"], + ["13476", "0.0027739251040221915", "720", "0.0", "1686448811"], + ["13477", "0.0027739251040221915", "720", "0.0", "1686452411"], + ["13478", "0.0027739251040221915", "720", "0.0", "1686456011"], + ["13479", "0.0027739251040221915", "720", "0.0", "1686459623"], + ["13480", "0.0027739251040221915", "720", "0.0", "1686463211"], + ["13481", "0.0027739251040221915", "720", "0.0", "1686466811"], + ["13482", "0.0027739251040221915", "720", "0.0", "1686470411"], + ["13483", "0.0027739251040221915", "720", "0.0", "1686474011"], + ["13484", "0.0027739251040221915", "720", "0.0", "1686477611"], + ["13485", "0.0027739251040221915", "720", "0.0", "1686481211"], + ["13486", "0.0027739251040221915", "720", "0.0", "1686484811"], + ["13487", "0.0027739251040221915", "720", "0.0", "1686488423"], + ["13488", "0.0027739251040221915", "720", "0.0", "1686492011"], + ["13489", "0.0027739251040221915", "720", "0.0", "1686495611"], + ["13490", "0.0027739251040221915", "720", "0.0", "1686499211"], + ["13491", "0.0027739251040221915", "720", "0.0", "1686502811"], + ["13492", "0.0027739251040221915", "720", "0.0", "1686506411"], + ["13493", "0.0027739251040221915", "720", "0.0", "1686510011"], + ["13494", "0.0027739251040221915", "720", "0.0", "1686513611"], + ["13495", "0.0027739251040221915", "720", "0.0", "1686517211"], + ["13496", "0.0027739251040221915", "720", "0.0", "1686520811"], + ["13497", "0.0027739251040221915", "720", "0.0", "1686524411"], + ["13498", "0.0027739251040221915", "720", "0.0", "1686528011"], + ["13499", "0.0027739251040221915", "720", "0.0", "1686531611"], + ["13500", "0.0027739251040221915", "720", "0.0", "1686535211"], + ["13501", "0.0027739251040221915", "720", "0.0", "1686538811"], + ["13502", "0.0027739251040221915", "720", "0.0", "1686542411"], + ["13503", "0.0027739251040221915", "720", "0.0", "1686546011"], + ["13504", "0.0027739251040221915", "720", "0.0", "1686549611"], + ["13505", "0.0027739251040221915", "720", "0.0", "1686553211"], + ["13506", "0.0027739251040221915", "720", "0.0", "1686556823"], + ["13507", "0.0027739251040221915", "720", "0.0", "1686560411"], + ["13508", "0.0027739251040221915", "720", "0.0", "1686564035"], + ["13509", "0.0027739251040221915", "720", "0.0", "1686567611"], + ["13510", "0.0027739251040221915", "720", "0.0", "1686571211"], + ["13511", "0.0027739251040221915", "720", "0.0", "1686574811"], + ["13512", "0.0027739251040221915", "720", "0.0", "1686578411"], + ["13513", "0.0027739251040221915", "720", "0.0", "1686582011"], + ["13514", "0.0027739251040221915", "720", "0.0", "1686585611"], + ["13515", "0.0027739251040221915", "720", "0.0", "1686589211"], + ["13516", "0.0027739251040221915", "720", "0.0", "1686592811"], + ["13517", "0.0027739251040221915", "720", "0.0", "1686596411"], + ["13518", "0.0027739251040221915", "720", "0.0", "1686600011"], + ["13519", "0.0027739251040221915", "720", "0.0", "1686603611"], + ["13520", "0.0027739251040221915", "720", "0.0", "1686607211"], + ["13521", "0.0027739251040221915", "720", "0.0", "1686610811"], + ["13522", "0.0027739251040221915", "720", "0.0", "1686614411"], + ["13523", "0.0027739251040221915", "720", "0.0", "1686618011"], + ["13524", "0.0027739251040221915", "720", "0.0", "1686621611"], + ["13525", "0.0027739251040221915", "720", "0.0", "1686625211"], + ["13526", "0.0027739251040221915", "720", "0.0", "1686628811"], + ["13527", "0.0027739251040221915", "720", "0.0", "1686632411"], + ["13528", "0.0027739251040221915", "720", "0.0", "1686636011"], + ["13529", "0.0027739251040221915", "720", "0.0", "1686639611"], + ["13530", "0.0027739251040221915", "720", "0.0", "1686643211"], + ["13531", "0.0027739251040221915", "720", "0.0", "1686646811"], + ["13532", "0.0027739251040221915", "720", "0.0", "1686650411"], + ["13533", "0.0027739251040221915", "720", "0.0", "1686654011"], + ["13534", "0.0027739251040221915", "720", "0.0", "1686657611"], + ["13535", "0.0027739251040221915", "720", "0.0", "1686661211"], + ["13536", "0.0027739251040221915", "720", "0.0", "1686664811"], + ["13537", "0.0027739251040221915", "720", "0.0", "1686668411"], + ["13538", "0.0027739251040221915", "720", "0.0", "1686672011"], + ["13539", "0.0027739251040221915", "720", "0.0", "1686675611"], + ["13540", "0.0027739251040221915", "720", "0.0", "1686679211"], + ["13541", "0.0027739251040221915", "720", "0.0", "1686682811"], + ["13542", "0.0027739251040221915", "720", "0.0", "1686686411"], + ["13543", "0.0027739251040221915", "720", "0.0", "1686690011"], + ["13544", "0.0027739251040221915", "720", "0.0", "1686693611"], + ["13545", "0.0027739251040221915", "720", "0.0", "1686697211"], + ["13546", "0.0027739251040221915", "720", "0.0", "1686700811"], + ["13547", "0.0027739251040221915", "720", "0.0", "1686704411"], + ["13548", "0.0027739251040221915", "720", "0.0", "1686708011"], + ["13549", "0.0027739251040221915", "720", "0.0", "1686711611"], + ["13550", "0.0027739251040221915", "720", "0.0", "1686715211"], + ["13551", "0.0027739251040221915", "720", "0.0", "1686718811"], + ["13552", "0.0027739251040221915", "720", "0.0", "1686722411"], + ["13553", "0.0027739251040221915", "720", "0.0", "1686726011"], + ["13554", "0.0027739251040221915", "720", "0.0", "1686729611"], + ["13555", "0.0027739251040221915", "720", "0.0", "1686733211"], + ["13556", "0.0027739251040221915", "720", "0.0", "1686736811"], + ["13557", "0.0027739251040221915", "720", "0.0", "1686740411"], + ["13558", "0.0027739251040221915", "720", "0.0", "1686744011"], + ["13559", "0.0027739251040221915", "720", "0.0", "1686747611"], + ["13560", "0.0027739251040221915", "720", "0.0", "1686751211"], + ["13561", "0.0027739251040221915", "720", "0.0", "1686754811"], + ["13562", "0.0027739251040221915", "720", "0.0", "1686758411"], + ["13563", "0.0027739251040221915", "720", "0.0", "1686762011"], + ["13564", "0.0027739251040221915", "720", "0.0", "1686765611"], + ["13565", "0.0027739251040221915", "720", "0.0", "1686769211"], + ["13566", "0.0027739251040221915", "720", "0.0", "1686772811"], + ["13567", "0.0027739251040221915", "720", "0.0", "1686776411"], + ["13568", "0.0027739251040221915", "720", "0.0", "1686780011"], + ["13569", "0.0027739251040221915", "720", "0.0", "1686783611"], + ["13570", "0.0027739251040221915", "720", "0.0", "1686787211"], + ["13571", "0.0027739251040221915", "720", "0.0", "1686790811"], + ["13572", "0.0027739251040221915", "720", "0.0", "1686794411"], + ["13573", "0.0027739251040221915", "720", "0.0", "1686798011"], + ["13574", "0.0027739251040221915", "720", "0.0", "1686801611"], + ["13575", "0.0027739251040221915", "720", "0.0", "1686805211"], + ["13576", "0.0027739251040221915", "720", "0.0", "1686808811"], + ["13577", "0.0027739251040221915", "720", "0.0", "1686812411"], + ["13578", "0.0027739251040221915", "720", "0.0", "1686816035"], + ["13579", "0.0027739251040221915", "720", "0.0", "1686819611"], + ["13580", "0.0027739251040221915", "720", "0.0", "1686823211"], + ["13581", "0.0027739251040221915", "720", "0.0", "1686826835"], + ["13582", "0.0027739251040221915", "720", "0.0", "1686830411"], + ["13583", "0.0027739251040221915", "720", "0.0", "1686834023"], + ["13584", "0.0027739251040221915", "720", "0.0", "1686837611"], + ["13585", "0.0027739251040221915", "720", "0.0", "1686841211"], + ["13586", "0.0027739251040221915", "720", "0.0", "1686844811"], + ["13587", "0.0027739251040221915", "720", "0.0", "1686848411"], + ["13588", "0.0027739251040221915", "720", "0.0", "1686852011"], + ["13589", "0.0027739251040221915", "720", "0.0", "1686855611"], + ["13590", "0.0027739251040221915", "720", "0.0", "1686859211"], + ["13591", "0.0027739251040221915", "720", "0.0", "1686862811"], + ["13592", "0.0027739251040221915", "720", "0.0", "1686866411"], + ["13593", "0.0027739251040221915", "720", "0.0", "1686870011"], + ["13594", "0.0027739251040221915", "720", "0.0", "1686873611"], + ["13595", "0.0027739251040221915", "720", "0.0", "1686877211"], + ["13596", "0.0027739251040221915", "720", "0.0", "1686880811"], + ["13597", "0.0027739251040221915", "720", "0.0", "1686884411"], + ["13598", "0.0027739251040221915", "720", "0.0", "1686888011"], + ["13599", "0.0027739251040221915", "720", "0.0", "1686891611"], + ["13600", "0.0027739251040221915", "720", "0.0", "1686895211"], + ["13601", "0.0027739251040221915", "720", "0.0", "1686898811"], + ["13602", "0.0027739251040221915", "720", "0.0", "1686902411"], + ["13603", "0.0027739251040221915", "720", "0.0", "1686906011"], + ["13604", "0.0027739251040221915", "720", "0.0", "1686909611"], + ["13605", "0.0027739251040221915", "720", "0.0", "1686913223"], + ["13606", "0.0027739251040221915", "720", "0.0", "1686916811"], + ["13607", "0.0027739251040221915", "720", "0.0", "1686920411"], + ["13608", "0.0027739251040221915", "720", "0.0", "1686924011"], + ["13609", "0.0027739251040221915", "720", "0.0", "1686927611"], + ["13610", "0.0027739251040221915", "720", "0.0", "1686931211"], + ["13611", "0.0027739251040221915", "720", "0.0", "1686934811"], + ["13612", "0.0027739251040221915", "720", "0.0", "1686938411"], + ["13613", "0.0027739251040221915", "720", "0.0", "1686942023"], + ["13614", "0.0027739251040221915", "720", "0.0", "1686945623"], + ["13615", "0.0027739251040221915", "720", "0.0", "1686949211"], + ["13616", "0.0027739251040221915", "720", "0.0", "1686952811"], + ["13617", "0.0027739251040221915", "720", "0.0", "1686956411"], + ["13618", "0.0027739251040221915", "720", "0.0", "1686960011"], + ["13619", "0.0027739251040221915", "720", "0.0", "1686963611"], + ["13620", "0.0027739251040221915", "720", "0.0", "1686967211"], + ["13621", "0.0027739251040221915", "720", "0.0", "1686970811"], + ["13622", "0.0027739251040221915", "720", "0.0", "1686974411"], + ["13623", "0.0027739251040221915", "720", "0.0", "1686978011"], + ["13624", "0.0027739251040221915", "720", "0.0", "1686981623"], + ["13625", "0.0027739251040221915", "720", "0.0", "1686985211"], + ["13626", "0.0027739251040221915", "720", "0.0", "1686988811"], + ["13627", "0.0027739251040221915", "720", "0.0", "1686992411"], + ["13628", "0.0027739251040221915", "720", "0.0", "1686996011"], + ["13629", "0.0027739251040221915", "720", "0.0", "1686999611"], + ["13630", "0.0027739251040221915", "720", "0.0", "1687003211"], + ["13631", "0.0027739251040221915", "720", "0.0", "1687006811"], + ["13632", "0.0027739251040221915", "720", "0.0", "1687010411"], + ["13633", "0.0027739251040221915", "720", "0.0", "1687014011"], + ["13634", "0.0027739251040221915", "720", "0.0", "1687017611"], + ["13635", "0.0027739251040221915", "720", "0.0", "1687021211"], + ["13636", "0.0027739251040221915", "720", "0.0", "1687024811"], + ["13637", "0.0027739251040221915", "720", "0.0", "1687028411"], + ["13638", "0.0027739251040221915", "720", "0.0", "1687032011"], + ["13639", "0.0027739251040221915", "720", "0.0", "1687035611"], + ["13640", "0.0027739251040221915", "720", "0.0", "1687039211"], + ["13641", "0.0027739251040221915", "720", "0.0", "1687042811"], + ["13642", "0.0027739251040221915", "720", "0.0", "1687046411"], + ["13643", "0.0027739251040221915", "720", "0.0", "1687050011"], + ["13644", "0.0027739251040221915", "720", "0.0", "1687053611"], + ["13645", "0.0027739251040221915", "720", "0.0", "1687057211"], + ["13646", "0.0027739251040221915", "720", "0.0", "1687060811"], + ["13647", "0.0027739251040221915", "720", "0.0", "1687064423"], + ["13648", "0.0027739251040221915", "720", "0.0", "1687068011"], + ["13649", "0.0027739251040221915", "720", "0.0", "1687071611"], + ["13650", "0.0027739251040221915", "720", "0.0", "1687075211"], + ["13651", "0.0027739251040221915", "720", "0.0", "1687078811"], + ["13652", "0.0027739251040221915", "720", "0.0", "1687082411"], + ["13653", "0.0027739251040221915", "720", "0.0", "1687086011"], + ["13654", "0.0027739251040221915", "720", "0.0", "1687089611"], + ["13655", "0.0027739251040221915", "720", "0.0", "1687093211"], + ["13656", "0.0027739251040221915", "720", "0.0", "1687096811"], + ["13657", "0.0027739251040221915", "720", "0.0", "1687100423"], + ["13658", "0.0027739251040221915", "720", "0.0", "1687104011"], + ["13659", "0.0027739251040221915", "720", "0.0", "1687107611"], + ["13660", "0.0027739251040221915", "720", "0.0", "1687111223"], + ["13661", "0.0027739251040221915", "720", "0.0", "1687114811"], + ["13662", "0.0027739251040221915", "720", "0.0", "1687118411"], + ["13663", "0.0027739251040221915", "720", "0.0", "1687122011"], + ["13664", "0.0027739251040221915", "720", "0.0", "1687125611"], + ["13665", "0.0027739251040221915", "720", "0.0", "1687129211"], + ["13666", "0.0027739251040221915", "720", "0.0", "1687132811"], + ["13667", "0.0027739251040221915", "720", "0.0", "1687136411"], + ["13668", "0.0027739251040221915", "720", "0.0", "1687140011"], + ["13669", "0.0027739251040221915", "720", "0.0", "1687143611"], + ["13670", "0.0027739251040221915", "720", "0.0", "1687147211"], + ["13671", "0.0027739251040221915", "720", "0.0", "1687150811"], + ["13672", "0.0027739251040221915", "720", "0.0", "1687154411"], + ["13673", "0.0027739251040221915", "720", "0.0", "1687158011"], + ["13674", "0.0027739251040221915", "720", "0.0", "1687161611"], + ["13675", "0.0027739251040221915", "720", "0.0", "1687165211"], + ["13676", "0.0027739251040221915", "720", "0.0", "1687168811"], + ["13677", "0.0027739251040221915", "720", "0.0", "1687172411"], + ["13678", "0.0027739251040221915", "720", "0.0", "1687176011"], + ["13679", "0.0027739251040221915", "720", "0.0", "1687179611"], + ["13680", "0.0027739251040221915", "720", "0.0", "1687183211"], + ["13681", "0.0027739251040221915", "720", "0.0", "1687186811"], + ["13682", "0.0027739251040221915", "720", "0.0", "1687190411"], + ["13683", "0.0027739251040221915", "720", "0.0", "1687194011"], + ["13684", "0.0027739251040221915", "720", "0.0", "1687197611"], + ["13685", "0.0027739251040221915", "720", "0.0", "1687201211"], + ["13686", "0.0027739251040221915", "720", "0.0", "1687204811"], + ["13687", "0.0027739251040221915", "720", "0.0", "1687208411"], + ["13688", "0.0027739251040221915", "720", "0.0", "1687212011"], + ["13689", "0.0027739251040221915", "720", "0.0", "1687215611"], + ["13690", "0.0027739251040221915", "720", "0.0", "1687219211"], + ["13691", "0.0027739251040221915", "720", "0.0", "1687222811"], + ["13692", "0.0027739251040221915", "720", "0.0", "1687226411"], + ["13693", "0.0027739251040221915", "720", "0.0", "1687230011"], + ["13694", "0.0027739251040221915", "720", "0.0", "1687233611"], + ["13695", "0.0027739251040221915", "720", "0.0", "1687237211"], + ["13696", "0.0027739251040221915", "720", "0.0", "1687240811"], + ["13697", "0.0027739251040221915", "720", "0.0", "1687244411"], + ["13698", "0.0027739251040221915", "720", "0.0", "1687248011"], + ["13699", "0.0027739251040221915", "720", "0.0", "1687251611"], + ["13700", "0.0027739251040221915", "720", "0.0", "1687255211"], + ["13701", "0.0027739251040221915", "720", "0.0", "1687258811"], + ["13702", "0.0027739251040221915", "720", "0.0", "1687262411"], + ["13703", "0.0027739251040221915", "720", "0.0", "1687266011"], + ["13704", "0.0027739251040221915", "720", "0.0", "1687269611"], + ["13705", "0.0027739251040221915", "720", "0.0", "1687273223"], + ["13706", "0.0027739251040221915", "720", "0.0", "1687276811"], + ["13707", "0.0027739251040221915", "720", "0.0", "1687280411"], + ["13708", "0.0027739251040221915", "720", "0.0", "1687284011"], + ["13709", "0.0027739251040221915", "720", "0.0", "1687287623"], + ["13710", "0.0027739251040221915", "720", "0.0", "1687291211"], + ["13711", "0.0027739251040221915", "720", "0.0", "1687294811"], + ["13712", "0.0027739251040221915", "720", "0.0", "1687298411"], + ["13713", "0.0027739251040221915", "720", "0.0", "1687302011"], + ["13714", "0.0027739251040221915", "720", "0.0", "1687305611"], + ["13715", "0.0027739251040221915", "720", "0.0", "1687309211"], + ["13716", "0.0027739251040221915", "720", "0.0", "1687312811"], + ["13717", "0.0027739251040221915", "720", "0.0", "1687316411"], + ["13718", "0.0027739251040221915", "720", "0.0", "1687320011"], + ["13719", "0.0027739251040221915", "720", "0.0", "1687323611"], + ["13720", "0.0027739251040221915", "720", "0.0", "1687327211"], + ["13721", "0.0027739251040221915", "720", "0.0", "1687330811"], + ["13722", "0.0027739251040221915", "720", "0.0", "1687334411"], + ["13723", "0.0027739251040221915", "720", "0.0", "1687338011"], + ["13724", "0.0027739251040221915", "720", "0.0", "1687341611"], + ["13725", "0.0027739251040221915", "720", "0.0", "1687345211"], + ["13726", "0.0027739251040221915", "720", "0.0", "1687348823"], + ["13727", "0.0027739251040221915", "720", "0.0", "1687352411"], + ["13728", "0.0027739251040221915", "720", "0.0", "1687356011"], + ["13729", "0.0027739251040221915", "720", "0.0", "1687359611"], + ["13730", "0.0027739251040221915", "720", "0.0", "1687363211"], + ["13731", "0.0027739251040221915", "720", "0.0", "1687366811"], + ["13732", "0.0027739251040221915", "720", "0.0", "1687370411"], + ["13733", "0.0027739251040221915", "720", "0.0", "1687374011"], + ["13734", "0.0027739251040221915", "720", "0.0", "1687377623"], + ["13735", "0.0027739251040221915", "720", "0.0", "1687381211"], + ["13736", "0.0027739251040221915", "720", "0.0", "1687384811"], + ["13737", "0.0027739251040221915", "720", "0.0", "1687388411"], + ["13738", "0.0027739251040221915", "720", "0.0", "1687392011"], + ["13739", "0.0027739251040221915", "720", "0.0", "1687395611"], + ["13740", "0.0027739251040221915", "720", "0.0", "1687399223"], + ["13741", "0.0027739251040221915", "720", "0.0", "1687402811"], + ["13742", "0.0027739251040221915", "720", "0.0", "1687406411"], + ["13743", "0.0027739251040221915", "720", "0.0", "1687410011"], + ["13744", "0.0027739251040221915", "720", "0.0", "1687413611"], + ["13745", "0.0027739251040221915", "720", "0.0", "1687417211"], + ["13746", "0.0027739251040221915", "720", "0.0", "1687420811"], + ["13747", "0.0027739251040221915", "720", "0.0", "1687424411"], + ["13748", "0.0027739251040221915", "720", "0.0", "1687428011"], + ["13749", "0.0027739251040221915", "720", "0.0", "1687431611"], + ["13750", "0.0027739251040221915", "720", "0.0", "1687435211"], + ["13751", "0.0027739251040221915", "720", "0.0", "1687438811"], + ["13752", "0.0027739251040221915", "720", "0.0", "1687442411"], + ["13753", "0.0027739251040221915", "720", "0.0", "1687446011"], + ["13754", "0.0027739251040221915", "720", "0.0", "1687449611"], + ["13755", "0.0027739251040221915", "720", "0.0", "1687453211"], + ["13756", "0.0027739251040221915", "720", "0.0", "1687456811"], + ["13757", "0.0027739251040221915", "720", "0.0", "1687460411"], + ["13758", "0.0027739251040221915", "720", "0.0", "1687464011"], + ["13759", "0.0027739251040221915", "720", "0.0", "1687467611"], + ["13760", "0.0027739251040221915", "720", "0.0", "1687471211"], + ["13761", "0.0027739251040221915", "720", "0.0", "1687474811"], + ["13762", "0.0027739251040221915", "720", "0.0", "1687478411"], + ["13763", "0.0027739251040221915", "720", "0.0", "1687482011"], + ["13764", "0.0027739251040221915", "720", "0.0", "1687485611"], + ["13765", "0.0027739251040221915", "720", "0.0", "1687489211"], + ["13766", "0.0027739251040221915", "720", "0.0", "1687492811"], + ["13767", "0.0027739251040221915", "720", "0.0", "1687496411"], + ["13768", "0.0027739251040221915", "720", "0.0", "1687500011"], + ["13769", "0.0027739251040221915", "720", "0.0", "1687503611"], + ["13770", "0.0027739251040221915", "720", "0.0", "1687507211"], + ["13771", "0.0027739251040221915", "720", "0.0", "1687510811"], + ["13772", "0.0027739251040221915", "720", "0.0", "1687514411"], + ["13773", "0.0027739251040221915", "720", "0.0", "1687518011"], + ["13774", "0.0027739251040221915", "720", "0.0", "1687521611"], + ["13775", "0.0027739251040221915", "720", "0.0", "1687525211"], + ["13776", "0.0027739251040221915", "720", "0.0", "1687528811"], + ["13777", "0.0027739251040221915", "720", "0.0", "1687532435"], + ["13778", "0.0027739251040221915", "720", "0.0", "1687536011"], + ["13779", "0.0027739251040221915", "720", "0.0", "1687539611"], + ["13780", "0.0027739251040221915", "720", "0.0", "1687543211"], + ["13781", "0.0027739251040221915", "720", "0.0", "1687546811"], + ["13782", "0.0027739251040221915", "720", "0.0", "1687550411"], + ["13783", "0.0027739251040221915", "720", "0.0", "1687554011"], + ["13784", "0.0027739251040221915", "720", "0.0", "1687557611"], + ["13785", "0.0027739251040221915", "720", "0.0", "1687561211"], + ["13786", "0.0027739251040221915", "720", "0.0", "1687564823"], + ["13787", "0.0027739251040221915", "720", "0.0", "1687568411"], + ["13788", "0.0027739251040221915", "720", "0.0", "1687572011"], + ["13789", "0.0027739251040221915", "720", "0.0", "1687575611"], + ["13790", "0.0027739251040221915", "720", "0.0", "1687579211"], + ["13791", "0.0027739251040221915", "720", "0.0", "1687582811"], + ["13792", "0.0027739251040221915", "720", "0.0", "1687586411"], + ["13793", "0.0027739251040221915", "720", "0.0", "1687590023"], + ["13794", "0.0027739251040221915", "720", "0.0", "1687593611"], + ["13795", "0.0027739251040221915", "720", "0.0", "1687597211"], + ["13796", "0.0027739251040221915", "720", "0.0", "1687600811"], + ["13797", "0.0027739251040221915", "720", "0.0", "1687604411"], + ["13798", "0.0027739251040221915", "720", "0.0", "1687608011"], + ["13799", "0.0027739251040221915", "720", "0.0", "1687611611"], + ["13800", "0.0027739251040221915", "720", "0.0", "1687615211"], + ["13801", "0.0027739251040221915", "720", "0.0", "1687618811"], + ["13802", "0.0027739251040221915", "720", "0.0", "1687622411"], + ["13803", "0.0027739251040221915", "720", "0.0", "1687626011"], + ["13804", "0.0027739251040221915", "720", "0.0", "1687629611"], + ["13805", "0.0027739251040221915", "720", "0.0", "1687633211"], + ["13806", "0.0027739251040221915", "720", "0.0", "1687636811"], + ["13807", "0.0027739251040221915", "720", "0.0", "1687640411"], + ["13808", "0.0027739251040221915", "720", "0.0", "1687644011"], + ["13809", "0.0027739251040221915", "720", "0.0", "1687647635"], + ["13810", "0.0027739251040221915", "720", "0.0", "1687651211"], + ["13811", "0.0027739251040221915", "720", "0.0", "1687654811"], + ["13812", "0.0027739251040221915", "720", "0.0", "1687658411"], + ["13813", "0.0027739251040221915", "720", "0.0", "1687662011"], + ["13814", "0.0027739251040221915", "720", "0.0", "1687665611"], + ["13815", "0.0027739251040221915", "720", "0.0", "1687669211"], + ["13816", "0.0027739251040221915", "720", "0.0", "1687672811"], + ["13817", "0.0027739251040221915", "720", "0.0", "1687676411"], + ["13818", "0.0027739251040221915", "720", "0.0", "1687680011"], + ["13819", "0.0027739251040221915", "720", "0.0", "1687683611"], + ["13820", "0.0027739251040221915", "720", "0.0", "1687687211"], + ["13821", "0.0027739251040221915", "720", "0.0", "1687690811"], + ["13822", "0.0027739251040221915", "720", "0.0", "1687694411"], + ["13823", "0.0027739251040221915", "720", "0.0", "1687698011"], + ["13824", "0.0027739251040221915", "720", "0.0", "1687701623"], + ["13825", "0.0027739251040221915", "720", "0.0", "1687705211"], + ["13826", "0.0027739251040221915", "720", "0.0", "1687708811"], + ["13827", "0.0027739251040221915", "720", "0.0", "1687712411"], + ["13828", "0.0027739251040221915", "720", "0.0", "1687716011"], + ["13829", "0.0027739251040221915", "720", "0.0", "1687719611"], + ["13830", "0.0027739251040221915", "720", "0.0", "1687723211"], + ["13831", "0.0027739251040221915", "720", "0.0", "1687726811"], + ["13832", "0.0027739251040221915", "720", "0.0", "1687730411"], + ["13833", "0.0027739251040221915", "720", "0.0", "1687734011"], + ["13834", "0.0027739251040221915", "720", "0.0", "1687737611"], + ["13835", "0.0027739251040221915", "720", "0.0", "1687741211"], + ["13836", "0.0027739251040221915", "720", "0.0", "1687744811"], + ["13837", "0.0027739251040221915", "720", "0.0", "1687748411"], + ["13838", "0.0027739251040221915", "720", "0.0", "1687752011"], + ["13839", "0.0027739251040221915", "720", "0.0", "1687755611"], + ["13840", "0.0027739251040221915", "720", "0.0", "1687759211"], + ["13841", "0.0027739251040221915", "720", "0.0", "1687762835"], + ["13842", "0.0027739251040221915", "720", "0.0", "1687766411"], + ["13843", "0.0027739251040221915", "720", "0.0", "1687770011"], + ["13844", "0.0027739251040221915", "720", "0.0", "1687773611"], + ["13845", "0.0027739251040221915", "720", "0.0", "1687777211"], + ["13846", "0.0027739251040221915", "720", "0.0", "1687780811"], + ["13847", "0.0027739251040221915", "720", "0.0", "1687784411"], + ["13848", "0.0027739251040221915", "720", "0.0", "1687788023"], + ["13849", "0.0027739251040221915", "720", "0.0", "1687791611"], + ["13850", "0.0027739251040221915", "720", "0.0", "1687795211"], + ["13851", "0.0027739251040221915", "720", "0.0", "1687798823"], + ["13852", "0.0027739251040221915", "720", "0.0", "1687802411"], + ["13853", "0.0027739251040221915", "720", "0.0", "1687806011"], + ["13854", "0.0027739251040221915", "720", "0.0", "1687809611"], + ["13855", "0.0027739251040221915", "720", "0.0", "1687813211"], + ["13856", "0.0027739251040221915", "720", "0.0", "1687816811"], + ["13857", "0.0027739251040221915", "720", "0.0", "1687820411"], + ["13858", "0.0027739251040221915", "720", "0.0", "1687824011"], + ["13859", "0.0027739251040221915", "720", "0.0", "1687827611"], + ["13860", "0.0027739251040221915", "720", "0.0", "1687831211"], + ["13861", "0.0027739251040221915", "720", "0.0", "1687834811"], + ["13862", "0.0027739251040221915", "720", "0.0", "1687838411"], + ["13863", "0.0027739251040221915", "720", "0.0", "1687842023"], + ["13864", "0.0027739251040221915", "720", "0.0", "1687845611"], + ["13865", "0.0027739251040221915", "720", "0.0", "1687849211"], + ["13866", "0.0027739251040221915", "720", "0.0", "1687852811"], + ["13867", "0.0027739251040221915", "720", "0.0", "1687856411"], + ["13868", "0.0027739251040221915", "720", "0.0", "1687860011"], + ["13869", "0.0027739251040221915", "720", "0.0", "1687863611"], + ["13870", "0.0027739251040221915", "720", "0.0", "1687867211"], + ["13871", "0.0027739251040221915", "720", "0.0", "1687870811"], + ["13872", "0.0027739251040221915", "720", "0.0", "1687874411"], + ["13873", "0.0027739251040221915", "720", "0.0", "1687878011"], + ["13874", "0.0027739251040221915", "720", "0.0", "1687881611"], + ["13875", "0.0027739251040221915", "720", "0.0", "1687885211"], + ["13876", "0.0027739251040221915", "720", "0.0", "1687888811"], + ["13877", "0.0027739251040221915", "720", "0.0", "1687892411"], + ["13878", "0.0027739251040221915", "720", "0.0", "1687896011"], + ["13879", "0.0027739251040221915", "720", "0.0", "1687899611"], + ["13880", "0.0027739251040221915", "720", "0.0", "1687903211"], + ["13881", "0.0027739251040221915", "720", "0.0", "1687906811"], + ["13882", "0.0027739251040221915", "720", "0.0", "1687910411"], + ["13883", "0.0027739251040221915", "720", "0.0", "1687914035"], + ["13884", "0.0027739251040221915", "720", "0.0", "1687917611"], + ["13885", "0.0027739251040221915", "720", "0.0", "1687921223"], + ["13886", "0.0027739251040221915", "720", "0.0", "1687924811"], + ["13887", "0.0027739251040221915", "720", "0.0", "1687928411"], + ["13888", "0.0027739251040221915", "720", "0.0", "1687932011"], + ["13889", "0.0027739251040221915", "720", "0.0", "1687935611"], + ["13890", "0.0027739251040221915", "720", "0.0", "1687939211"], + ["13891", "0.0027739251040221915", "720", "0.0", "1687942811"], + ["13892", "0.0027739251040221915", "720", "0.0", "1687946411"], + ["13893", "0.0027739251040221915", "720", "0.0", "1687950011"], + ["13894", "0.0027739251040221915", "720", "0.0", "1687953611"], + ["13895", "0.0027739251040221915", "720", "0.0", "1687957223"], + ["13896", "0.0027739251040221915", "720", "0.0", "1687960811"], + ["13897", "0.0027739251040221915", "720", "0.0", "1687964423"], + ["13898", "0.0027739251040221915", "720", "0.0", "1687968011"], + ["13899", "0.0027739251040221915", "720", "0.0", "1687971611"], + ["13900", "0.0027739251040221915", "720", "0.0", "1687975211"], + ["13901", "0.0027739251040221915", "720", "0.0", "1687978811"], + ["13902", "0.0027739251040221915", "720", "0.0", "1687982411"], + ["13903", "0.0027739251040221915", "720", "0.0", "1687986011"], + ["13904", "0.0027739251040221915", "720", "0.0", "1687989611"], + ["13905", "0.0027739251040221915", "720", "0.0", "1687993211"], + ["13906", "0.0027739251040221915", "720", "0.0", "1687996811"], + ["13907", "0.0027739251040221915", "720", "0.0", "1688000411"], + ["13908", "0.0027739251040221915", "720", "0.0", "1688004011"], + ["13909", "0.0027739251040221915", "720", "0.0", "1688007611"], + ["13910", "0.0027739251040221915", "720", "0.0", "1688011211"], + ["13911", "0.0027739251040221915", "720", "0.0", "1688014811"], + ["13912", "0.0027739251040221915", "720", "0.0", "1688018411"], + ["13913", "0.0027739251040221915", "720", "0.0", "1688022011"], + ["13914", "0.0027739251040221915", "720", "0.0", "1688025611"], + ["13915", "0.0027739251040221915", "720", "0.0", "1688029211"], + ["13916", "0.0027739251040221915", "720", "0.0", "1688032811"], + ["13917", "0.0027739251040221915", "720", "0.0", "1688036411"], + ["13918", "0.0027739251040221915", "720", "0.0", "1688040011"], + ["13919", "0.0027739251040221915", "720", "0.0", "1688043611"], + ["13920", "0.0027739251040221915", "720", "0.0", "1688047211"], + ["13921", "0.0027739251040221915", "720", "0.0", "1688050811"], + ["13922", "0.0027739251040221915", "720", "0.0", "1688054411"], + ["13923", "0.0027739251040221915", "720", "0.0", "1688058011"], + ["13924", "0.0027739251040221915", "720", "0.0", "1688061623"], + ["13925", "0.0027739251040221915", "720", "0.0", "1688065211"], + ["13926", "0.0027739251040221915", "720", "0.0", "1688068811"], + ["13927", "0.0027739251040221915", "720", "0.0", "1688072411"], + ["13928", "0.0027739251040221915", "720", "0.0", "1688076011"], + ["13929", "0.0027739251040221915", "720", "0.0", "1688079611"], + ["13930", "0.0027739251040221915", "720", "0.0", "1688083211"], + ["13931", "0.0027739251040221915", "720", "0.0", "1688086811"], + ["13932", "0.0027739251040221915", "720", "0.0", "1688090411"], + ["13933", "0.0027739251040221915", "720", "0.0", "1688094011"], + ["13934", "0.0027739251040221915", "720", "0.0", "1688097611"], + ["13935", "0.0027739251040221915", "720", "0.0", "1688101211"], + ["13936", "0.0027739251040221915", "720", "0.0", "1688104811"], + ["13937", "0.0027739251040221915", "720", "0.0", "1688108411"], + ["13938", "0.0027739251040221915", "720", "0.0", "1688112011"], + ["13939", "0.0027739251040221915", "720", "0.0", "1688115611"], + ["13940", "0.0027739251040221915", "720", "0.0", "1688119211"], + ["13941", "0.0027739251040221915", "720", "0.0", "1688122811"], + ["13942", "0.0027739251040221915", "720", "0.0", "1688126411"], + ["13943", "0.0027739251040221915", "720", "0.0", "1688130011"], + ["13944", "0.0027739251040221915", "720", "0.0", "1688133611"], + ["13945", "0.0027739251040221915", "720", "0.0", "1688137211"], + ["13946", "0.0027739251040221915", "720", "0.0", "1688140811"], + ["13947", "0.0027739251040221915", "720", "0.0", "1688144411"], + ["13948", "0.0027739251040221915", "720", "0.0", "1688148011"], + ["13949", "0.0027739251040221915", "720", "0.0", "1688151611"], + ["13950", "0.0027739251040221915", "720", "0.0", "1688155211"], + ["13951", "0.0027739251040221915", "720", "0.0", "1688158811"], + ["13952", "0.0027739251040221915", "720", "0.0", "1688162411"], + ["13953", "0.0027739251040221915", "720", "0.0", "1688166011"], + ["13954", "0.0027739251040221915", "720", "0.0", "1688169611"], + ["13955", "0.0027739251040221915", "720", "0.0", "1688173211"], + ["13956", "0.0027739251040221915", "720", "0.0", "1688176811"], + ["13957", "0.0027739251040221915", "720", "0.0", "1688180411"], + ["13958", "0.0027739251040221915", "720", "0.0", "1688184011"], + ["13959", "0.0027739251040221915", "720", "0.0", "1688187611"], + ["13960", "0.0027739251040221915", "720", "0.0", "1688191211"], + ["13961", "0.0027739251040221915", "720", "0.0", "1688194811"], + ["13962", "0.0027739251040221915", "720", "0.0", "1688198411"], + ["13963", "0.0027739251040221915", "720", "0.0", "1688202011"], + ["13964", "0.0027739251040221915", "720", "0.0", "1688205611"], + ["13965", "0.0027739251040221915", "720", "0.0", "1688209211"], + ["13966", "0.0027739251040221915", "720", "0.0", "1688212811"], + ["13967", "0.0027739251040221915", "720", "0.0", "1688216411"], + ["13968", "0.0027739251040221915", "720", "0.0", "1688220011"], + ["13969", "0.0027739251040221915", "720", "0.0", "1688223611"], + ["13970", "0.0027739251040221915", "720", "0.0", "1688227211"], + ["13971", "0.0027739251040221915", "720", "0.0", "1688230811"], + ["13972", "0.0027739251040221915", "720", "0.0", "1688234411"], + ["13973", "0.0027739251040221915", "720", "0.0", "1688238011"], + ["13974", "0.0027739251040221915", "720", "0.0", "1688241611"], + ["13975", "0.0027739251040221915", "720", "0.0", "1688245211"], + ["13976", "0.0027739251040221915", "720", "0.0", "1688248811"], + ["13977", "0.0027739251040221915", "720", "0.0", "1688252411"], + ["13978", "0.0027739251040221915", "720", "0.0", "1688256011"], + ["13979", "0.0027739251040221915", "720", "0.0", "1688259611"], + ["13980", "0.0027739251040221915", "720", "0.0", "1688263211"], + ["13981", "0.0027739251040221915", "720", "0.0", "1688266811"], + ["13982", "0.0027739251040221915", "720", "0.0", "1688270411"], + ["13983", "0.0027739251040221915", "720", "0.0", "1688274011"], + ["13984", "0.0027739251040221915", "720", "0.0", "1688277611"], + ["13985", "0.0027739251040221915", "720", "0.0", "1688281211"], + ["13986", "0.0027739251040221915", "720", "0.0", "1688284811"], + ["13987", "0.0027739251040221915", "720", "0.0", "1688288411"], + ["13988", "0.0027739251040221915", "720", "0.0", "1688292011"], + ["13989", "0.0027739251040221915", "720", "0.0", "1688295611"], + ["13990", "0.0027739251040221915", "720", "0.0", "1688299211"], + ["13991", "0.0027739251040221915", "720", "0.0", "1688302823"], + ["13992", "0.0027739251040221915", "720", "0.0", "1688306411"], + ["13993", "0.0027739251040221915", "720", "0.0", "1688310011"], + ["13994", "0.0027739251040221915", "720", "0.0", "1688313611"], + ["13995", "0.0027739251040221915", "720", "0.0", "1688317211"], + ["13996", "0.0027739251040221915", "720", "0.0", "1688320811"], + ["13997", "0.0027739251040221915", "720", "0.0", "1688324423"], + ["13998", "0.0027739251040221915", "720", "0.0", "1688328011"], + ["13999", "0.0027739251040221915", "720", "0.0", "1688331611"], + ["14000", "0.0027739251040221915", "720", "0.0", "1688335211"] +]; diff --git a/projects/subgraph-beanstalk/src/utils/SiloEntities.ts b/projects/subgraph-beanstalk/src/utils/SiloEntities.ts index f417245378..14c680ed8a 100644 --- a/projects/subgraph-beanstalk/src/utils/SiloEntities.ts +++ b/projects/subgraph-beanstalk/src/utils/SiloEntities.ts @@ -265,19 +265,7 @@ export function loadSiloYield(season: i32): SiloYield { siloYield.beta = ZERO_BD; siloYield.u = 0; siloYield.beansPerSeasonEMA = ZERO_BD; - siloYield.zeroSeedBeanAPY = ZERO_BD; - siloYield.twoSeedBeanAPY = ZERO_BD; - siloYield.twoSeedStalkAPY = ZERO_BD; - siloYield.threeSeedBeanAPY = ZERO_BD; - siloYield.threeSeedStalkAPY = ZERO_BD; - siloYield.threePointTwoFiveSeedBeanAPY = ZERO_BD; - siloYield.threePointTwoFiveSeedStalkAPY = ZERO_BD; - siloYield.fourSeedBeanAPY = ZERO_BD; - siloYield.fourSeedStalkAPY = ZERO_BD; - siloYield.fourPointFiveSeedBeanAPY = ZERO_BD; - siloYield.fourPointFiveSeedStalkAPY = ZERO_BD; siloYield.whitelistedTokens = []; - siloYield.tokenAPYS = []; siloYield.createdAt = ZERO_BI; siloYield.save(); } @@ -291,6 +279,7 @@ export function loadTokenYield(token: Address, season: i32): TokenYield { tokenYield = new TokenYield(id); tokenYield.token = token; tokenYield.season = season; + tokenYield.siloYield = season.toString(); tokenYield.beanAPY = ZERO_BD; tokenYield.stalkAPY = ZERO_BD; tokenYield.createdAt = ZERO_BI; From 78b9c650633348d63bc2790ef45073fe4f9cbd2b Mon Sep 17 00:00:00 2001 From: Cujowolf Date: Wed, 20 Dec 2023 10:55:37 -0600 Subject: [PATCH 09/14] Move default stalk/seeds for unripe setters --- projects/subgraph-beanstalk/src/SiloHandler.ts | 14 ++------------ .../subgraph-beanstalk/src/utils/SiloEntities.ts | 13 ++++++++++++- 2 files changed, 14 insertions(+), 13 deletions(-) diff --git a/projects/subgraph-beanstalk/src/SiloHandler.ts b/projects/subgraph-beanstalk/src/SiloHandler.ts index c48415b819..478bdf6bb8 100644 --- a/projects/subgraph-beanstalk/src/SiloHandler.ts +++ b/projects/subgraph-beanstalk/src/SiloHandler.ts @@ -888,20 +888,10 @@ export function handleWhitelistToken(event: WhitelistToken): void { if (currentList.length == 0) { // Push unripe bean and unripe bean:3crv upon the initial whitelisting. currentList.push(UNRIPE_BEAN.toHexString()); - - let setting = loadWhitelistTokenSetting(UNRIPE_BEAN); - setting.selector = event.params.selector; - setting.stalkIssuedPerBdv = BigInt.fromString("10000000000"); - setting.stalkEarnedPerSeason = BigInt.fromI32(2000000); - setting.save(); + loadWhitelistTokenSetting(UNRIPE_BEAN); currentList.push(UNRIPE_BEAN_3CRV.toHexString()); - - setting = loadWhitelistTokenSetting(UNRIPE_BEAN_3CRV); - setting.selector = event.params.selector; - setting.stalkIssuedPerBdv = BigInt.fromString("10000000000"); - setting.stalkEarnedPerSeason = BigInt.fromI32(4000000); - setting.save(); + loadWhitelistTokenSetting(UNRIPE_BEAN_3CRV); } currentList.push(event.params.token.toHexString()); silo.whitelistedTokens = currentList; diff --git a/projects/subgraph-beanstalk/src/utils/SiloEntities.ts b/projects/subgraph-beanstalk/src/utils/SiloEntities.ts index 14c680ed8a..9a92968b27 100644 --- a/projects/subgraph-beanstalk/src/utils/SiloEntities.ts +++ b/projects/subgraph-beanstalk/src/utils/SiloEntities.ts @@ -12,7 +12,7 @@ import { WhitelistTokenSetting, TokenYield } from "../../generated/schema"; -import { BEANSTALK } from "../../../subgraph-core/utils/Constants"; +import { BEANSTALK, UNRIPE_BEAN, UNRIPE_BEAN_3CRV } from "../../../subgraph-core/utils/Constants"; import { dayFromTimestamp, hourFromTimestamp } from "./Dates"; import { ZERO_BD, ZERO_BI } from "../../../subgraph-core/utils/Decimals"; import { loadBeanstalk } from "./Beanstalk"; @@ -183,6 +183,17 @@ export function loadWhitelistTokenSetting(token: Address): WhitelistTokenSetting setting.milestoneSeason = 0; setting.updatedAt = ZERO_BI; setting.save(); + + // Check token addresses and set replant seeds/stalk for Unripe due to event timing. + if (token == UNRIPE_BEAN) { + setting.stalkIssuedPerBdv = BigInt.fromString("10000000000"); + setting.stalkEarnedPerSeason = BigInt.fromI32(2000000); + setting.save(); + } else if (token == UNRIPE_BEAN_3CRV) { + setting.stalkIssuedPerBdv = BigInt.fromString("10000000000"); + setting.stalkEarnedPerSeason = BigInt.fromI32(4000000); + setting.save(); + } } return setting as WhitelistTokenSetting; } From 499d0c1e47634b206198366f615427daaa3761aa Mon Sep 17 00:00:00 2001 From: Cujowolf Date: Wed, 20 Dec 2023 10:56:11 -0600 Subject: [PATCH 10/14] fix bigint math --- projects/subgraph-beanstalk/src/SiloHandler.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/projects/subgraph-beanstalk/src/SiloHandler.ts b/projects/subgraph-beanstalk/src/SiloHandler.ts index 478bdf6bb8..3952499873 100644 --- a/projects/subgraph-beanstalk/src/SiloHandler.ts +++ b/projects/subgraph-beanstalk/src/SiloHandler.ts @@ -675,7 +675,7 @@ export function addDepositToSiloAsset( let assetDaily = loadSiloAssetDailySnapshot(account, token, timestamp); let tokenSettings = loadWhitelistTokenSetting(token); - let newGrownStalk = bdv.div(BigInt.fromI32(1000000)).times(tokenSettings.stalkEarnedPerSeason); + let newGrownStalk = bdv.times(tokenSettings.stalkEarnedPerSeason).div(BigInt.fromI32(1000000)); asset.depositedBDV = asset.depositedBDV.plus(bdv); asset.depositedAmount = asset.depositedAmount.plus(amount); @@ -713,7 +713,7 @@ function removeDepositFromSiloAsset( let assetDaily = loadSiloAssetDailySnapshot(account, token, timestamp); let tokenSettings = loadWhitelistTokenSetting(token); - let removedGrownStalk = bdv.div(BigInt.fromI32(1000000)).times(tokenSettings.stalkEarnedPerSeason); + let removedGrownStalk = bdv.times(tokenSettings.stalkEarnedPerSeason).div(BigInt.fromI32(1000000)); asset.depositedBDV = asset.depositedBDV.minus(bdv); asset.depositedAmount = asset.depositedAmount.minus(amount); @@ -937,7 +937,7 @@ export function handleUpdatedStalkPerBdvPerSeason(event: UpdatedStalkPerBdvPerSe let asset = loadSiloAsset(BEANSTALK, Address.fromString(beanstalkSilo.whitelistedTokens[i])); newGrownStalkAmount = newGrownStalkAmount.plus( - asset.depositedBDV.div(BigInt.fromI32(1000000)).times(siloSettings.stalkEarnedPerSeason) + asset.depositedBDV.times(siloSettings.stalkEarnedPerSeason).div(BigInt.fromI32(1000000)) ); } @@ -956,7 +956,7 @@ export function handleUpdatedStalkPerBdvPerSeason(event: UpdatedStalkPerBdvPerSe let asset = loadSiloAsset(account, Address.fromString(beanstalkSilo.whitelistedTokens[i])); newGrownStalkAmount = newGrownStalkAmount.plus( - asset.depositedBDV.div(BigInt.fromI32(1000000)).times(siloSettings.stalkEarnedPerSeason) + asset.depositedBDV.times(siloSettings.stalkEarnedPerSeason).div(BigInt.fromI32(1000000)) ); } From d79e0e7bae35882e948dcab137e1d23fc2925f5a Mon Sep 17 00:00:00 2001 From: Cujowolf Date: Wed, 20 Dec 2023 11:45:35 -0600 Subject: [PATCH 11/14] Use grown stalk for BDV when displaying seeds --- .../subgraph-beanstalk/src/SiloHandler.ts | 2 +- .../components/Analytics/Silo/Seeds.graphql | 14 +- .../src/components/Analytics/Silo/Seeds.tsx | 2 +- .../components/Silo/FarmerSiloRewards.graphql | 20 +- projects/ui/src/graph/graphql.schema.json | 9796 +++++++---------- projects/ui/src/util/Interpolate.ts | 5 +- 6 files changed, 4284 insertions(+), 5555 deletions(-) diff --git a/projects/subgraph-beanstalk/src/SiloHandler.ts b/projects/subgraph-beanstalk/src/SiloHandler.ts index 3952499873..0816b83527 100644 --- a/projects/subgraph-beanstalk/src/SiloHandler.ts +++ b/projects/subgraph-beanstalk/src/SiloHandler.ts @@ -921,7 +921,7 @@ export function handleUpdatedStalkPerBdvPerSeason(event: UpdatedStalkPerBdvPerSe let siloSettings = loadWhitelistTokenSetting(event.params.token); siloSettings.milestoneSeason = event.params.season.toI32(); - siloSettings.stalkEarnedPerSeason; + siloSettings.stalkEarnedPerSeason = event.params.stalkEarnedPerSeason; siloSettings.updatedAt = event.block.timestamp; siloSettings.save(); diff --git a/projects/ui/src/components/Analytics/Silo/Seeds.graphql b/projects/ui/src/components/Analytics/Silo/Seeds.graphql index 9736104052..29049f2c5d 100644 --- a/projects/ui/src/components/Analytics/Silo/Seeds.graphql +++ b/projects/ui/src/components/Analytics/Silo/Seeds.graphql @@ -1,21 +1,17 @@ -query SeasonalSeeds( - $season_lte: Int, - $season_gt: Int, - $first: Int -) { +query SeasonalSeeds($season_lte: Int, $season_gt: Int, $first: Int) { seasons: siloHourlySnapshots( where: { - season_lte: $season_lte, - season_gt: $season_gt, + season_lte: $season_lte + season_gt: $season_gt silo: "0xc1e088fc1323b20bcbee9bd1b9fc9546db5624c5" } first: $first orderBy: season orderDirection: desc - ) { + ) { id season createdAt - seeds + grownStalkPerBdvPerSeason } } diff --git a/projects/ui/src/components/Analytics/Silo/Seeds.tsx b/projects/ui/src/components/Analytics/Silo/Seeds.tsx index 8c212dd257..9c8a258431 100644 --- a/projects/ui/src/components/Analytics/Silo/Seeds.tsx +++ b/projects/ui/src/components/Analytics/Silo/Seeds.tsx @@ -12,7 +12,7 @@ import { LineChartProps } from '~/components/Common/Charts/LineChart'; import { FC } from '~/types'; const getValue = (season: SnapshotData) => - toTokenUnitsBN(season.seeds, SEEDS.decimals).toNumber(); + toTokenUnitsBN(season.grownStalkPerBdvPerSeason, SEEDS.decimals).toNumber(); const formatValue = (value: number) => `${value.toLocaleString('en-US', { maximumFractionDigits: 0 })}`; const statProps = { diff --git a/projects/ui/src/components/Silo/FarmerSiloRewards.graphql b/projects/ui/src/components/Silo/FarmerSiloRewards.graphql index 99f9bc0e50..d5d9c070af 100644 --- a/projects/ui/src/components/Silo/FarmerSiloRewards.graphql +++ b/projects/ui/src/components/Silo/FarmerSiloRewards.graphql @@ -1,18 +1,16 @@ -query FarmerSiloRewards( - $account: String -) { +query FarmerSiloRewards($account: String) { snapshots: siloHourlySnapshots( - where: { silo: $account }, - orderBy: season, - orderDirection: asc, + where: { silo: $account } + orderBy: season + orderDirection: asc first: 1000 ) { id season createdAt - stalk # = totalStalk(previous siloHourlySnapshot) + hourlyStalkDelta - seeds # ... - deltaDepositedBDV # ... - depositedBDV # ... + stalk # = totalStalk(previous siloHourlySnapshot) + hourlyStalkDelta + grownStalkPerBdvPerSeason # ... + deltaDepositedBDV # ... + depositedBDV # ... } -} \ No newline at end of file +} diff --git a/projects/ui/src/graph/graphql.schema.json b/projects/ui/src/graph/graphql.schema.json index 3717eda735..31ab7bd458 100644 --- a/projects/ui/src/graph/graphql.schema.json +++ b/projects/ui/src/graph/graphql.schema.json @@ -133479,70 +133479,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "fourPointFiveSeedBeanAPY", - "description": "Bean APY for 4.5 seeds per BDV", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fourPointFiveSeedStalkAPY", - "description": "Stalk APY for 4.5 seeds per BDV", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fourSeedBeanAPY", - "description": "Bean APY for 4 seeds per BDV", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fourSeedStalkAPY", - "description": "Stalk APY for 4 seeds per BDV", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "id", "description": "Season of data points", @@ -133575,70 +133511,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "threePointTwoFiveSeedBeanAPY", - "description": "Bean APY for 3.25 seeds per BDV", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "threePointTwoFiveSeedStalkAPY", - "description": "Stalk APY for 3.25 seeds per BDV", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "threeSeedBeanAPY", - "description": "Bean APY for 3 seeds per BDV", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "threeSeedStalkAPY", - "description": "Stalk APY for 3 seeds per BDV", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "tokenAPYS", "description": "Current Bean (0) and Stalk (1) APY for each token.", @@ -133724,38 +133596,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "twoSeedBeanAPY", - "description": "Bean APY for 2 seeds per BDV", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "twoSeedStalkAPY", - "description": "Stalk APY for 2 seeds per BDV", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "u", "description": "u used for EMA", @@ -133795,22 +133635,6 @@ }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "zeroSeedBeanAPY", - "description": "Bean APY for 0 seeds per BDV", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null } ], "inputFields": null, @@ -134189,11 +134013,11 @@ "deprecationReason": null }, { - "name": "fourPointFiveSeedBeanAPY", + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -134201,11 +134025,11 @@ "deprecationReason": null }, { - "name": "fourPointFiveSeedBeanAPY_gt", + "name": "id_gt", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -134213,11 +134037,11 @@ "deprecationReason": null }, { - "name": "fourPointFiveSeedBeanAPY_gte", + "name": "id_gte", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -134225,7 +134049,7 @@ "deprecationReason": null }, { - "name": "fourPointFiveSeedBeanAPY_in", + "name": "id_in", "description": null, "type": { "kind": "LIST", @@ -134235,7 +134059,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "ID", "ofType": null } } @@ -134245,11 +134069,11 @@ "deprecationReason": null }, { - "name": "fourPointFiveSeedBeanAPY_lt", + "name": "id_lt", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -134257,11 +134081,11 @@ "deprecationReason": null }, { - "name": "fourPointFiveSeedBeanAPY_lte", + "name": "id_lte", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -134269,11 +134093,11 @@ "deprecationReason": null }, { - "name": "fourPointFiveSeedBeanAPY_not", + "name": "id_not", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -134281,7 +134105,7 @@ "deprecationReason": null }, { - "name": "fourPointFiveSeedBeanAPY_not_in", + "name": "id_not_in", "description": null, "type": { "kind": "LIST", @@ -134291,7 +134115,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "ID", "ofType": null } } @@ -134301,11 +134125,27 @@ "deprecationReason": null }, { - "name": "fourPointFiveSeedStalkAPY", + "name": "or", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SiloYield_filter", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "season", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -134313,11 +134153,11 @@ "deprecationReason": null }, { - "name": "fourPointFiveSeedStalkAPY_gt", + "name": "season_gt", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -134325,11 +134165,11 @@ "deprecationReason": null }, { - "name": "fourPointFiveSeedStalkAPY_gte", + "name": "season_gte", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -134337,7 +134177,7 @@ "deprecationReason": null }, { - "name": "fourPointFiveSeedStalkAPY_in", + "name": "season_in", "description": null, "type": { "kind": "LIST", @@ -134347,7 +134187,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "Int", "ofType": null } } @@ -134357,11 +134197,11 @@ "deprecationReason": null }, { - "name": "fourPointFiveSeedStalkAPY_lt", + "name": "season_lt", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -134369,11 +134209,11 @@ "deprecationReason": null }, { - "name": "fourPointFiveSeedStalkAPY_lte", + "name": "season_lte", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -134381,11 +134221,11 @@ "deprecationReason": null }, { - "name": "fourPointFiveSeedStalkAPY_not", + "name": "season_not", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -134393,7 +134233,7 @@ "deprecationReason": null }, { - "name": "fourPointFiveSeedStalkAPY_not_in", + "name": "season_not_in", "description": null, "type": { "kind": "LIST", @@ -134403,7 +134243,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "Int", "ofType": null } } @@ -134413,11 +134253,23 @@ "deprecationReason": null }, { - "name": "fourSeedBeanAPY", + "name": "tokenAPYS_", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TokenYield_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "u", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -134425,11 +134277,11 @@ "deprecationReason": null }, { - "name": "fourSeedBeanAPY_gt", + "name": "u_gt", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -134437,11 +134289,11 @@ "deprecationReason": null }, { - "name": "fourSeedBeanAPY_gte", + "name": "u_gte", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -134449,7 +134301,7 @@ "deprecationReason": null }, { - "name": "fourSeedBeanAPY_in", + "name": "u_in", "description": null, "type": { "kind": "LIST", @@ -134459,7 +134311,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "Int", "ofType": null } } @@ -134469,11 +134321,11 @@ "deprecationReason": null }, { - "name": "fourSeedBeanAPY_lt", + "name": "u_lt", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -134481,11 +134333,11 @@ "deprecationReason": null }, { - "name": "fourSeedBeanAPY_lte", + "name": "u_lte", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -134493,11 +134345,11 @@ "deprecationReason": null }, { - "name": "fourSeedBeanAPY_not", + "name": "u_not", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -134505,7 +134357,7 @@ "deprecationReason": null }, { - "name": "fourSeedBeanAPY_not_in", + "name": "u_not_in", "description": null, "type": { "kind": "LIST", @@ -134515,7 +134367,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "Int", "ofType": null } } @@ -134525,43 +134377,67 @@ "deprecationReason": null }, { - "name": "fourSeedStalkAPY", + "name": "whitelistedTokens", "description": null, "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "fourSeedStalkAPY_gt", + "name": "whitelistedTokens_contains", "description": null, "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "fourSeedStalkAPY_gte", + "name": "whitelistedTokens_contains_nocase", "description": null, "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "fourSeedStalkAPY_in", + "name": "whitelistedTokens_not", "description": null, "type": { "kind": "LIST", @@ -134571,7 +134447,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null } } @@ -134581,67 +134457,133 @@ "deprecationReason": null }, { - "name": "fourSeedStalkAPY_lt", + "name": "whitelistedTokens_not_contains", "description": null, "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "fourSeedStalkAPY_lte", + "name": "whitelistedTokens_not_contains_nocase", "description": null, "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "SiloYield_orderBy", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "beansPerSeasonEMA", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "beta", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "fourSeedStalkAPY_not", + "name": "createdAt", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "season", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenAPYS", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "u", "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "fourSeedStalkAPY_not_in", + "name": "whitelistedTokens", "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "Silo_filter", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "_change_block", + "description": "Filter for the block changed event.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "BlockChangedFilter", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "activeFarmers", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -134649,11 +134591,11 @@ "deprecationReason": null }, { - "name": "id_gt", + "name": "activeFarmers_gt", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -134661,11 +134603,11 @@ "deprecationReason": null }, { - "name": "id_gte", + "name": "activeFarmers_gte", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -134673,7 +134615,7 @@ "deprecationReason": null }, { - "name": "id_in", + "name": "activeFarmers_in", "description": null, "type": { "kind": "LIST", @@ -134683,7 +134625,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null } } @@ -134693,11 +134635,11 @@ "deprecationReason": null }, { - "name": "id_lt", + "name": "activeFarmers_lt", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -134705,11 +134647,11 @@ "deprecationReason": null }, { - "name": "id_lte", + "name": "activeFarmers_lte", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -134717,11 +134659,11 @@ "deprecationReason": null }, { - "name": "id_not", + "name": "activeFarmers_not", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -134729,7 +134671,7 @@ "deprecationReason": null }, { - "name": "id_not_in", + "name": "activeFarmers_not_in", "description": null, "type": { "kind": "LIST", @@ -134739,7 +134681,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null } } @@ -134749,14 +134691,14 @@ "deprecationReason": null }, { - "name": "or", + "name": "and", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "SiloYield_filter", + "name": "Silo_filter", "ofType": null } }, @@ -134765,11 +134707,23 @@ "deprecationReason": null }, { - "name": "season", + "name": "assets_", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SiloAsset_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "beanMints", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -134777,11 +134731,11 @@ "deprecationReason": null }, { - "name": "season_gt", + "name": "beanMints_gt", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -134789,11 +134743,11 @@ "deprecationReason": null }, { - "name": "season_gte", + "name": "beanMints_gte", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -134801,7 +134755,7 @@ "deprecationReason": null }, { - "name": "season_in", + "name": "beanMints_in", "description": null, "type": { "kind": "LIST", @@ -134811,7 +134765,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "BigInt", "ofType": null } } @@ -134821,11 +134775,11 @@ "deprecationReason": null }, { - "name": "season_lt", + "name": "beanMints_lt", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -134833,11 +134787,11 @@ "deprecationReason": null }, { - "name": "season_lte", + "name": "beanMints_lte", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -134845,11 +134799,11 @@ "deprecationReason": null }, { - "name": "season_not", + "name": "beanMints_not", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -134857,7 +134811,7 @@ "deprecationReason": null }, { - "name": "season_not_in", + "name": "beanMints_not_in", "description": null, "type": { "kind": "LIST", @@ -134867,7 +134821,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "BigInt", "ofType": null } } @@ -134877,11 +134831,11 @@ "deprecationReason": null }, { - "name": "threePointTwoFiveSeedBeanAPY", + "name": "beanstalk", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null }, "defaultValue": null, @@ -134889,11 +134843,11 @@ "deprecationReason": null }, { - "name": "threePointTwoFiveSeedBeanAPY_gt", + "name": "beanstalk_", "description": null, "type": { - "kind": "SCALAR", - "name": "BigDecimal", + "kind": "INPUT_OBJECT", + "name": "Beanstalk_filter", "ofType": null }, "defaultValue": null, @@ -134901,11 +134855,11 @@ "deprecationReason": null }, { - "name": "threePointTwoFiveSeedBeanAPY_gte", + "name": "beanstalk_contains", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null }, "defaultValue": null, @@ -134913,31 +134867,35 @@ "deprecationReason": null }, { - "name": "threePointTwoFiveSeedBeanAPY_in", + "name": "beanstalk_contains_nocase", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "threePointTwoFiveSeedBeanAPY_lt", + "name": "beanstalk_ends_with", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "beanstalk_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -134945,11 +134903,11 @@ "deprecationReason": null }, { - "name": "threePointTwoFiveSeedBeanAPY_lte", + "name": "beanstalk_gt", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null }, "defaultValue": null, @@ -134957,11 +134915,11 @@ "deprecationReason": null }, { - "name": "threePointTwoFiveSeedBeanAPY_not", + "name": "beanstalk_gte", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null }, "defaultValue": null, @@ -134969,7 +134927,7 @@ "deprecationReason": null }, { - "name": "threePointTwoFiveSeedBeanAPY_not_in", + "name": "beanstalk_in", "description": null, "type": { "kind": "LIST", @@ -134979,7 +134937,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null } } @@ -134989,11 +134947,11 @@ "deprecationReason": null }, { - "name": "threePointTwoFiveSeedStalkAPY", + "name": "beanstalk_lt", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null }, "defaultValue": null, @@ -135001,11 +134959,11 @@ "deprecationReason": null }, { - "name": "threePointTwoFiveSeedStalkAPY_gt", + "name": "beanstalk_lte", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null }, "defaultValue": null, @@ -135013,11 +134971,11 @@ "deprecationReason": null }, { - "name": "threePointTwoFiveSeedStalkAPY_gte", + "name": "beanstalk_not", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null }, "defaultValue": null, @@ -135025,31 +134983,23 @@ "deprecationReason": null }, { - "name": "threePointTwoFiveSeedStalkAPY_in", + "name": "beanstalk_not_contains", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "threePointTwoFiveSeedStalkAPY_lt", + "name": "beanstalk_not_contains_nocase", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null }, "defaultValue": null, @@ -135057,11 +135007,11 @@ "deprecationReason": null }, { - "name": "threePointTwoFiveSeedStalkAPY_lte", + "name": "beanstalk_not_ends_with", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null }, "defaultValue": null, @@ -135069,11 +135019,11 @@ "deprecationReason": null }, { - "name": "threePointTwoFiveSeedStalkAPY_not", + "name": "beanstalk_not_ends_with_nocase", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null }, "defaultValue": null, @@ -135081,7 +135031,7 @@ "deprecationReason": null }, { - "name": "threePointTwoFiveSeedStalkAPY_not_in", + "name": "beanstalk_not_in", "description": null, "type": { "kind": "LIST", @@ -135091,7 +135041,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null } } @@ -135101,11 +135051,11 @@ "deprecationReason": null }, { - "name": "threeSeedBeanAPY", + "name": "beanstalk_not_starts_with", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null }, "defaultValue": null, @@ -135113,11 +135063,11 @@ "deprecationReason": null }, { - "name": "threeSeedBeanAPY_gt", + "name": "beanstalk_not_starts_with_nocase", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null }, "defaultValue": null, @@ -135125,11 +135075,11 @@ "deprecationReason": null }, { - "name": "threeSeedBeanAPY_gte", + "name": "beanstalk_starts_with", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null }, "defaultValue": null, @@ -135137,31 +135087,35 @@ "deprecationReason": null }, { - "name": "threeSeedBeanAPY_in", + "name": "beanstalk_starts_with_nocase", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "threeSeedBeanAPY_lt", + "name": "dailySnapshots_", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SiloDailySnapshot_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "depositedBDV", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -135169,11 +135123,11 @@ "deprecationReason": null }, { - "name": "threeSeedBeanAPY_lte", + "name": "depositedBDV_gt", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -135181,11 +135135,11 @@ "deprecationReason": null }, { - "name": "threeSeedBeanAPY_not", + "name": "depositedBDV_gte", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -135193,7 +135147,7 @@ "deprecationReason": null }, { - "name": "threeSeedBeanAPY_not_in", + "name": "depositedBDV_in", "description": null, "type": { "kind": "LIST", @@ -135203,7 +135157,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "BigInt", "ofType": null } } @@ -135213,11 +135167,11 @@ "deprecationReason": null }, { - "name": "threeSeedStalkAPY", + "name": "depositedBDV_lt", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -135225,11 +135179,11 @@ "deprecationReason": null }, { - "name": "threeSeedStalkAPY_gt", + "name": "depositedBDV_lte", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -135237,11 +135191,11 @@ "deprecationReason": null }, { - "name": "threeSeedStalkAPY_gte", + "name": "depositedBDV_not", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -135249,7 +135203,7 @@ "deprecationReason": null }, { - "name": "threeSeedStalkAPY_in", + "name": "depositedBDV_not_in", "description": null, "type": { "kind": "LIST", @@ -135259,7 +135213,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "BigInt", "ofType": null } } @@ -135269,11 +135223,11 @@ "deprecationReason": null }, { - "name": "threeSeedStalkAPY_lt", + "name": "farmer", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null }, "defaultValue": null, @@ -135281,11 +135235,11 @@ "deprecationReason": null }, { - "name": "threeSeedStalkAPY_lte", + "name": "farmer_", "description": null, "type": { - "kind": "SCALAR", - "name": "BigDecimal", + "kind": "INPUT_OBJECT", + "name": "Farmer_filter", "ofType": null }, "defaultValue": null, @@ -135293,11 +135247,11 @@ "deprecationReason": null }, { - "name": "threeSeedStalkAPY_not", + "name": "farmer_contains", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null }, "defaultValue": null, @@ -135305,51 +135259,35 @@ "deprecationReason": null }, { - "name": "threeSeedStalkAPY_not_in", + "name": "farmer_contains_nocase", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "tokenAPYS", + "name": "farmer_ends_with", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "tokenAPYS_", + "name": "farmer_ends_with_nocase", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TokenYield_filter", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -135357,47 +135295,31 @@ "deprecationReason": null }, { - "name": "tokenAPYS_contains", + "name": "farmer_gt", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "tokenAPYS_contains_nocase", + "name": "farmer_gte", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "tokenAPYS_not", + "name": "farmer_in", "description": null, "type": { "kind": "LIST", @@ -135417,51 +135339,35 @@ "deprecationReason": null }, { - "name": "tokenAPYS_not_contains", + "name": "farmer_lt", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "tokenAPYS_not_contains_nocase", + "name": "farmer_lte", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "twoSeedBeanAPY", + "name": "farmer_not", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null }, "defaultValue": null, @@ -135469,11 +135375,11 @@ "deprecationReason": null }, { - "name": "twoSeedBeanAPY_gt", + "name": "farmer_not_contains", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null }, "defaultValue": null, @@ -135481,11 +135387,11 @@ "deprecationReason": null }, { - "name": "twoSeedBeanAPY_gte", + "name": "farmer_not_contains_nocase", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null }, "defaultValue": null, @@ -135493,17 +135399,41 @@ "deprecationReason": null }, { - "name": "twoSeedBeanAPY_in", + "name": "farmer_not_ends_with", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "farmer_not_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "farmer_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, "ofType": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null } } @@ -135513,11 +135443,11 @@ "deprecationReason": null }, { - "name": "twoSeedBeanAPY_lt", + "name": "farmer_not_starts_with", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null }, "defaultValue": null, @@ -135525,11 +135455,11 @@ "deprecationReason": null }, { - "name": "twoSeedBeanAPY_lte", + "name": "farmer_not_starts_with_nocase", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null }, "defaultValue": null, @@ -135537,11 +135467,11 @@ "deprecationReason": null }, { - "name": "twoSeedBeanAPY_not", + "name": "farmer_starts_with", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null }, "defaultValue": null, @@ -135549,31 +135479,23 @@ "deprecationReason": null }, { - "name": "twoSeedBeanAPY_not_in", + "name": "farmer_starts_with_nocase", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "twoSeedStalkAPY", + "name": "grownStalkPerBdvPerSeason", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -135581,11 +135503,11 @@ "deprecationReason": null }, { - "name": "twoSeedStalkAPY_gt", + "name": "grownStalkPerBdvPerSeason_gt", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -135593,11 +135515,11 @@ "deprecationReason": null }, { - "name": "twoSeedStalkAPY_gte", + "name": "grownStalkPerBdvPerSeason_gte", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -135605,7 +135527,7 @@ "deprecationReason": null }, { - "name": "twoSeedStalkAPY_in", + "name": "grownStalkPerBdvPerSeason_in", "description": null, "type": { "kind": "LIST", @@ -135615,7 +135537,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "BigInt", "ofType": null } } @@ -135625,11 +135547,11 @@ "deprecationReason": null }, { - "name": "twoSeedStalkAPY_lt", + "name": "grownStalkPerBdvPerSeason_lt", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -135637,11 +135559,11 @@ "deprecationReason": null }, { - "name": "twoSeedStalkAPY_lte", + "name": "grownStalkPerBdvPerSeason_lte", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -135649,11 +135571,11 @@ "deprecationReason": null }, { - "name": "twoSeedStalkAPY_not", + "name": "grownStalkPerBdvPerSeason_not", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -135661,7 +135583,7 @@ "deprecationReason": null }, { - "name": "twoSeedStalkAPY_not_in", + "name": "grownStalkPerBdvPerSeason_not_in", "description": null, "type": { "kind": "LIST", @@ -135671,7 +135593,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "BigInt", "ofType": null } } @@ -135681,11 +135603,23 @@ "deprecationReason": null }, { - "name": "u", + "name": "hourlySnapshots_", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SiloHourlySnapshot_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -135693,11 +135627,11 @@ "deprecationReason": null }, { - "name": "u_gt", + "name": "id_gt", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -135705,11 +135639,11 @@ "deprecationReason": null }, { - "name": "u_gte", + "name": "id_gte", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -135717,7 +135651,7 @@ "deprecationReason": null }, { - "name": "u_in", + "name": "id_in", "description": null, "type": { "kind": "LIST", @@ -135727,7 +135661,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null } } @@ -135737,11 +135671,11 @@ "deprecationReason": null }, { - "name": "u_lt", + "name": "id_lt", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -135749,11 +135683,11 @@ "deprecationReason": null }, { - "name": "u_lte", + "name": "id_lte", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -135761,11 +135695,11 @@ "deprecationReason": null }, { - "name": "u_not", + "name": "id_not", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -135773,7 +135707,7 @@ "deprecationReason": null }, { - "name": "u_not_in", + "name": "id_not_in", "description": null, "type": { "kind": "LIST", @@ -135783,7 +135717,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null } } @@ -135793,19 +135727,15 @@ "deprecationReason": null }, { - "name": "whitelistedTokens", + "name": "or", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "Silo_filter", + "ofType": null } }, "defaultValue": null, @@ -135813,67 +135743,43 @@ "deprecationReason": null }, { - "name": "whitelistedTokens_contains", + "name": "plantableStalk", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "BigInt", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "whitelistedTokens_contains_nocase", + "name": "plantableStalk_gt", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "BigInt", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "whitelistedTokens_not", + "name": "plantableStalk_gte", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "BigInt", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "whitelistedTokens_not_contains", + "name": "plantableStalk_in", "description": null, "type": { "kind": "LIST", @@ -135883,7 +135789,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null } } @@ -135893,7 +135799,43 @@ "deprecationReason": null }, { - "name": "whitelistedTokens_not_contains_nocase", + "name": "plantableStalk_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "plantableStalk_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "plantableStalk_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "plantableStalk_not_in", "description": null, "type": { "kind": "LIST", @@ -135903,7 +135845,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null } } @@ -135913,11 +135855,11 @@ "deprecationReason": null }, { - "name": "zeroSeedBeanAPY", + "name": "roots", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -135925,11 +135867,11 @@ "deprecationReason": null }, { - "name": "zeroSeedBeanAPY_gt", + "name": "roots_gt", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -135937,11 +135879,11 @@ "deprecationReason": null }, { - "name": "zeroSeedBeanAPY_gte", + "name": "roots_gte", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -135949,7 +135891,7 @@ "deprecationReason": null }, { - "name": "zeroSeedBeanAPY_in", + "name": "roots_in", "description": null, "type": { "kind": "LIST", @@ -135959,7 +135901,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "BigInt", "ofType": null } } @@ -135969,11 +135911,11 @@ "deprecationReason": null }, { - "name": "zeroSeedBeanAPY_lt", + "name": "roots_lt", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -135981,11 +135923,11 @@ "deprecationReason": null }, { - "name": "zeroSeedBeanAPY_lte", + "name": "roots_lte", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -135993,11 +135935,11 @@ "deprecationReason": null }, { - "name": "zeroSeedBeanAPY_not", + "name": "roots_not", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -136005,7 +135947,7 @@ "deprecationReason": null }, { - "name": "zeroSeedBeanAPY_not_in", + "name": "roots_not_in", "description": null, "type": { "kind": "LIST", @@ -136015,7 +135957,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "BigInt", "ofType": null } } @@ -136023,161 +135965,13 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "SiloYield_orderBy", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "beansPerSeasonEMA", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "beta", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fourPointFiveSeedBeanAPY", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fourPointFiveSeedStalkAPY", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fourSeedBeanAPY", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fourSeedStalkAPY", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "season", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "threePointTwoFiveSeedBeanAPY", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "threePointTwoFiveSeedStalkAPY", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "threeSeedBeanAPY", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "threeSeedStalkAPY", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenAPYS", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "twoSeedBeanAPY", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "twoSeedStalkAPY", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "u", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "whitelistedTokens", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "zeroSeedBeanAPY", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "Silo_filter", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "_change_block", - "description": "Filter for the block changed event.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BlockChangedFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "activeFarmers", + "name": "seeds", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -136185,11 +135979,11 @@ "deprecationReason": null }, { - "name": "activeFarmers_gt", + "name": "seeds_gt", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -136197,11 +135991,11 @@ "deprecationReason": null }, { - "name": "activeFarmers_gte", + "name": "seeds_gte", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -136209,7 +136003,7 @@ "deprecationReason": null }, { - "name": "activeFarmers_in", + "name": "seeds_in", "description": null, "type": { "kind": "LIST", @@ -136219,7 +136013,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "BigInt", "ofType": null } } @@ -136229,11 +136023,11 @@ "deprecationReason": null }, { - "name": "activeFarmers_lt", + "name": "seeds_lt", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -136241,11 +136035,11 @@ "deprecationReason": null }, { - "name": "activeFarmers_lte", + "name": "seeds_lte", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -136253,11 +136047,11 @@ "deprecationReason": null }, { - "name": "activeFarmers_not", + "name": "seeds_not", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -136265,7 +136059,7 @@ "deprecationReason": null }, { - "name": "activeFarmers_not_in", + "name": "seeds_not_in", "description": null, "type": { "kind": "LIST", @@ -136275,7 +136069,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "BigInt", "ofType": null } } @@ -136285,35 +136079,7 @@ "deprecationReason": null }, { - "name": "and", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Silo_filter", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "assets_", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SiloAsset_filter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "beanMints", + "name": "stalk", "description": null, "type": { "kind": "SCALAR", @@ -136325,7 +136091,7 @@ "deprecationReason": null }, { - "name": "beanMints_gt", + "name": "stalk_gt", "description": null, "type": { "kind": "SCALAR", @@ -136337,7 +136103,7 @@ "deprecationReason": null }, { - "name": "beanMints_gte", + "name": "stalk_gte", "description": null, "type": { "kind": "SCALAR", @@ -136349,7 +136115,7 @@ "deprecationReason": null }, { - "name": "beanMints_in", + "name": "stalk_in", "description": null, "type": { "kind": "LIST", @@ -136369,7 +136135,7 @@ "deprecationReason": null }, { - "name": "beanMints_lt", + "name": "stalk_lt", "description": null, "type": { "kind": "SCALAR", @@ -136381,7 +136147,7 @@ "deprecationReason": null }, { - "name": "beanMints_lte", + "name": "stalk_lte", "description": null, "type": { "kind": "SCALAR", @@ -136393,7 +136159,7 @@ "deprecationReason": null }, { - "name": "beanMints_not", + "name": "stalk_not", "description": null, "type": { "kind": "SCALAR", @@ -136405,7 +136171,7 @@ "deprecationReason": null }, { - "name": "beanMints_not_in", + "name": "stalk_not_in", "description": null, "type": { "kind": "LIST", @@ -136425,103 +136191,107 @@ "deprecationReason": null }, { - "name": "beanstalk", + "name": "whitelistedTokens", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "beanstalk_", + "name": "whitelistedTokens_contains", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "Beanstalk_filter", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "beanstalk_contains", + "name": "whitelistedTokens_contains_nocase", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "beanstalk_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "beanstalk_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "beanstalk_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "beanstalk_gt", + "name": "whitelistedTokens_not", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "beanstalk_gte", + "name": "whitelistedTokens_not_contains", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "beanstalk_in", + "name": "whitelistedTokens_not_contains_nocase", "description": null, "type": { "kind": "LIST", @@ -136539,1089 +136309,908 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "Silo_orderBy", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "beanstalk_lt", + "name": "activeFarmers", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "beanstalk_lte", + "name": "assets", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "beanstalk_not", + "name": "beanMints", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "beanstalk_not_contains", + "name": "beanstalk", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "beanstalk_not_contains_nocase", + "name": "beanstalk__id", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "beanstalk_not_ends_with", + "name": "beanstalk__lastSeason", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "beanstalk_not_ends_with_nocase", + "name": "beanstalk__lastUpgrade", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "beanstalk_not_in", + "name": "beanstalk__methodologyVersion", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "beanstalk_not_starts_with", + "name": "beanstalk__name", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "beanstalk_not_starts_with_nocase", + "name": "beanstalk__schemaVersion", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "beanstalk_starts_with", + "name": "beanstalk__slug", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "beanstalk_starts_with_nocase", + "name": "beanstalk__subgraphVersion", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dailySnapshots_", + "name": "dailySnapshots", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SiloDailySnapshot_filter", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "depositedBDV", "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "depositedBDV_gt", + "name": "farmer", "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "depositedBDV_gte", + "name": "farmer__id", "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "depositedBDV_in", + "name": "grownStalkPerBdvPerSeason", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "depositedBDV_lt", + "name": "hourlySnapshots", "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "depositedBDV_lte", + "name": "id", "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "depositedBDV_not", + "name": "plantableStalk", "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "depositedBDV_not_in", + "name": "roots", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "farmer", + "name": "seeds", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "farmer_", + "name": "stalk", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Farmer_filter", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "farmer_contains", + "name": "whitelistedTokens", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Space", + "description": null, + "fields": [ { - "name": "farmer_contains_nocase", + "name": "about", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "farmer_ends_with", + "name": "activeProposals", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "farmer_ends_with_nocase", + "name": "admins", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "farmer_gt", + "name": "avatar", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "farmer_gte", + "name": "categories", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "farmer_in", + "name": "children", "description": null, + "args": [], "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "OBJECT", + "name": "Space", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "farmer_lt", + "name": "coingecko", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "farmer_lte", + "name": "created", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "farmer_not", + "name": "delegationPortal", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "DelegationPortal", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "farmer_not_contains", + "name": "domain", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "farmer_not_contains_nocase", + "name": "email", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "farmer_not_ends_with", + "name": "filters", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "SpaceFilters", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "farmer_not_ends_with_nocase", + "name": "flagged", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "farmer_not_in", + "name": "followersCount", "description": null, + "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "farmer_not_starts_with", + "name": "followersCount7d", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "farmer_not_starts_with_nocase", + "name": "github", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "farmer_starts_with", + "name": "guidelines", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "farmer_starts_with_nocase", + "name": "hibernated", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "grownStalkPerBdvPerSeason", + "name": "id", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "grownStalkPerBdvPerSeason_gt", + "name": "location", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "grownStalkPerBdvPerSeason_gte", + "name": "members", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "grownStalkPerBdvPerSeason_in", + "name": "moderators", "description": null, + "args": [], "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "grownStalkPerBdvPerSeason_lt", + "name": "name", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "grownStalkPerBdvPerSeason_lte", + "name": "network", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "grownStalkPerBdvPerSeason_not", + "name": "parent", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Space", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "plugins", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "Any", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "grownStalkPerBdvPerSeason_not_in", + "name": "private", "description": null, + "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hourlySnapshots_", + "name": "proposalsCount", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "SiloHourlySnapshot_filter", + "kind": "SCALAR", + "name": "Int", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "proposalsCount7d", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id_gt", + "name": "rank", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "ID", + "name": "Float", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id_gte", + "name": "skin", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id_in", + "name": "strategies", "description": null, + "args": [], "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "OBJECT", + "name": "Strategy", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id_lt", + "name": "symbol", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id_lte", + "name": "template", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id_not", + "name": "terms", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id_not_in", + "name": "treasuries", "description": null, + "args": [], "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "OBJECT", + "name": "Treasury", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "or", + "name": "turbo", "description": null, + "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Silo_filter", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "plantableStalk", + "name": "twitter", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "plantableStalk_gt", + "name": "validation", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "BigInt", + "kind": "OBJECT", + "name": "Validation", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "plantableStalk_gte", + "name": "verified", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "Boolean", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "plantableStalk_in", + "name": "voteValidation", "description": null, + "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } + "kind": "OBJECT", + "name": "Validation", + "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "plantableStalk_lt", + "name": "votesCount", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "Int", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "plantableStalk_lte", + "name": "votesCount7d", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "Int", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "plantableStalk_not", + "name": "voting", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "BigInt", + "kind": "OBJECT", + "name": "SpaceVoting", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "plantableStalk_not_in", + "name": "website", "description": null, + "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SpaceFilters", + "description": null, + "fields": [ { - "name": "roots", + "name": "minScore", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "Float", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "roots_gt", + "name": "onlyMembers", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SpaceVoting", + "description": null, + "fields": [ + { + "name": "aliased", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "roots_gte", + "name": "blind", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "Boolean", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "roots_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "roots_lt", + "name": "delay", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "Int", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "roots_lte", + "name": "hideAbstain", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "Boolean", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "roots_not", + "name": "period", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "Int", "ofType": null }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "roots_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "seeds", + "name": "privacy", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "seeds_gt", + "name": "quorum", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "Float", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "seeds_gte", + "name": "type", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "seeds_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SpaceWhere", + "description": null, + "fields": null, + "inputFields": [ { - "name": "seeds_lt", + "name": "created", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -137629,11 +137218,11 @@ "deprecationReason": null }, { - "name": "seeds_lte", + "name": "created_gt", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -137641,11 +137230,11 @@ "deprecationReason": null }, { - "name": "seeds_not", + "name": "created_gte", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -137653,19 +137242,15 @@ "deprecationReason": null }, { - "name": "seeds_not_in", + "name": "created_in", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, "defaultValue": null, @@ -137673,11 +137258,11 @@ "deprecationReason": null }, { - "name": "stalk", + "name": "created_lt", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -137685,11 +137270,11 @@ "deprecationReason": null }, { - "name": "stalk_gt", + "name": "created_lte", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -137697,11 +137282,11 @@ "deprecationReason": null }, { - "name": "stalk_gte", + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, "defaultValue": null, @@ -137709,1098 +137294,1239 @@ "deprecationReason": null }, { - "name": "stalk_in", + "name": "id_in", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "StalkChange", + "description": null, + "fields": [ { - "name": "stalk_lt", - "description": null, + "name": "account", + "description": " Account removing deposit", + "args": [], "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "stalk_lte", - "description": null, + "name": "blockNumber", + "description": " Block number of this event ", + "args": [], "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "stalk_not", - "description": null, + "name": "createdAt", + "description": " Timestamp of this event ", + "args": [], "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "stalk_not_in", - "description": null, + "name": "delta", + "description": " Token removed", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } + "kind": "SCALAR", + "name": "BigInt", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "whitelistedTokens", - "description": null, + "name": "hash", + "description": " Transaction hash of the transaction that emitted this event ", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "whitelistedTokens_contains", - "description": null, + "name": "id", + "description": "stalkChange-{ Transaction hash }-{ Log index }", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "whitelistedTokens_contains_nocase", - "description": null, + "name": "logIndex", + "description": " Event log index. For transactions that don't emit event, create arbitrary index starting from 0 ", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "whitelistedTokens_not", - "description": null, + "name": "protocol", + "description": " The protocol this transaction belongs to ", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "OBJECT", + "name": "Beanstalk", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "whitelistedTokens_not_contains", - "description": null, + "name": "season", + "description": " Season when the change happened ", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [ { - "name": "whitelistedTokens_not_contains_nocase", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + "kind": "INTERFACE", + "name": "SiloEvent", + "ofType": null } ], - "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "ENUM", - "name": "Silo_orderBy", + "kind": "INPUT_OBJECT", + "name": "StalkChange_filter", "description": null, "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + "inputFields": [ { - "name": "activeFarmers", - "description": null, + "name": "_change_block", + "description": "Filter for the block changed event.", + "type": { + "kind": "INPUT_OBJECT", + "name": "BlockChangedFilter", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "assets", + "name": "account", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "beanMints", + "name": "account_contains", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "beanstalk", + "name": "account_contains_nocase", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "beanstalk__id", + "name": "account_ends_with", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "beanstalk__lastSeason", + "name": "account_ends_with_nocase", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "beanstalk__lastUpgrade", + "name": "account_gt", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "beanstalk__methodologyVersion", + "name": "account_gte", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "beanstalk__name", + "name": "account_in", "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "beanstalk__schemaVersion", + "name": "account_lt", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "beanstalk__slug", + "name": "account_lte", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "beanstalk__subgraphVersion", + "name": "account_not", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dailySnapshots", + "name": "account_not_contains", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "depositedBDV", + "name": "account_not_contains_nocase", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "farmer", + "name": "account_not_ends_with", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "farmer__id", + "name": "account_not_ends_with_nocase", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "grownStalkPerBdvPerSeason", + "name": "account_not_in", "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hourlySnapshots", + "name": "account_not_starts_with", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "account_not_starts_with_nocase", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "plantableStalk", + "name": "account_starts_with", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "roots", + "name": "account_starts_with_nocase", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "seeds", + "name": "and", "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "StalkChange_filter", + "ofType": null + } + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "stalk", + "name": "blockNumber", "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "whitelistedTokens", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Space", - "description": null, - "fields": [ - { - "name": "about", + "name": "blockNumber_gt", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "activeProposals", + "name": "blockNumber_gte", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "BigInt", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "admins", + "name": "blockNumber_in", "description": null, - "args": [], "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "avatar", + "name": "blockNumber_lt", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "categories", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "children", + "name": "blockNumber_lte", "description": null, - "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Space", - "ofType": null - } + "kind": "SCALAR", + "name": "BigInt", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "coingecko", + "name": "blockNumber_not", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "created", + "name": "blockNumber_not_in", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "delegationPortal", + "name": "createdAt", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "DelegationPortal", + "kind": "SCALAR", + "name": "BigInt", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "domain", + "name": "createdAt_gt", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "email", + "name": "createdAt_gte", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "filters", + "name": "createdAt_in", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "SpaceFilters", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "flagged", + "name": "createdAt_lt", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "BigInt", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "followersCount", + "name": "createdAt_lte", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "BigInt", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "followersCount7d", + "name": "createdAt_not", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "BigInt", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "github", + "name": "createdAt_not_in", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "guidelines", + "name": "delta", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hibernated", + "name": "delta_gt", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "BigInt", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "location", + "name": "delta_gte", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "members", + "name": "delta_in", "description": null, - "args": [], "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "moderators", + "name": "delta_lt", "description": null, - "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "BigInt", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", + "name": "delta_lte", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "network", + "name": "delta_not", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "parent", + "name": "delta_not_in", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "Space", + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hash", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "plugins", + "name": "hash_contains", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "Any", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "private", + "name": "hash_contains_nocase", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "proposalsCount", + "name": "hash_ends_with", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "proposalsCount7d", + "name": "hash_ends_with_nocase", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "rank", + "name": "hash_gt", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "skin", + "name": "hash_gte", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "strategies", + "name": "hash_in", "description": null, - "args": [], "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Strategy", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "symbol", + "name": "hash_lt", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "template", + "name": "hash_lte", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "terms", + "name": "hash_not", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "treasuries", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Treasury", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "turbo", + "name": "hash_not_contains", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "twitter", + "name": "hash_not_contains_nocase", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "validation", + "name": "hash_not_ends_with", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "Validation", + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "verified", + "name": "hash_not_ends_with_nocase", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "voteValidation", + "name": "hash_not_in", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "Validation", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "votesCount", + "name": "hash_not_starts_with", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "votesCount7d", + "name": "hash_not_starts_with_nocase", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "voting", + "name": "hash_starts_with", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "SpaceVoting", + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "website", + "name": "hash_starts_with_nocase", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SpaceFilters", - "description": null, - "fields": [ + }, { - "name": "minScore", + "name": "id", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "Float", + "name": "ID", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "onlyMembers", + "name": "id_gt", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SpaceVoting", - "description": null, - "fields": [ + }, { - "name": "aliased", + "name": "id_gte", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "blind", + "name": "id_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_lt", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "delay", + "name": "id_lte", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hideAbstain", + "name": "id_not", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "period", + "name": "id_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "logIndex", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "Int", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "privacy", + "name": "logIndex_gt", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "quorum", + "name": "logIndex_gte", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "type", + "name": "logIndex_in", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SpaceWhere", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "created", + "name": "logIndex_lt", "description": null, "type": { "kind": "SCALAR", @@ -138812,7 +138538,7 @@ "deprecationReason": null }, { - "name": "created_gt", + "name": "logIndex_lte", "description": null, "type": { "kind": "SCALAR", @@ -138824,7 +138550,7 @@ "deprecationReason": null }, { - "name": "created_gte", + "name": "logIndex_not", "description": null, "type": { "kind": "SCALAR", @@ -138836,14 +138562,34 @@ "deprecationReason": null }, { - "name": "created_in", + "name": "logIndex_not_in", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "or", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "StalkChange_filter", "ofType": null } }, @@ -138852,11 +138598,11 @@ "deprecationReason": null }, { - "name": "created_lt", + "name": "protocol", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -138864,11 +138610,11 @@ "deprecationReason": null }, { - "name": "created_lte", + "name": "protocol_", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "Beanstalk_filter", "ofType": null }, "defaultValue": null, @@ -138876,7 +138622,7 @@ "deprecationReason": null }, { - "name": "id", + "name": "protocol_contains", "description": null, "type": { "kind": "SCALAR", @@ -138888,207 +138634,87 @@ "deprecationReason": null }, { - "name": "id_in", + "name": "protocol_contains_nocase", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "StalkChange", - "description": null, - "fields": [ + }, { - "name": "account", - "description": " Account removing deposit", - "args": [], + "name": "protocol_ends_with", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "blockNumber", - "description": " Block number of this event ", - "args": [], + "name": "protocol_ends_with_nocase", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "createdAt", - "description": " Timestamp of this event ", - "args": [], + "name": "protocol_gt", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "delta", - "description": " Token removed", - "args": [], + "name": "protocol_gte", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hash", - "description": " Transaction hash of the transaction that emitted this event ", - "args": [], + "name": "protocol_in", + "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "stalkChange-{ Transaction hash }-{ Log index }", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "logIndex", - "description": " Event log index. For transactions that don't emit event, create arbitrary index starting from 0 ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "protocol", - "description": " The protocol this transaction belongs to ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Beanstalk", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "season", - "description": " Season when the change happened ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "SiloEvent", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "StalkChange_filter", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "_change_block", - "description": "Filter for the block changed event.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BlockChangedFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "account", + "name": "protocol_lt", "description": null, "type": { "kind": "SCALAR", @@ -139100,7 +138726,7 @@ "deprecationReason": null }, { - "name": "account_contains", + "name": "protocol_lte", "description": null, "type": { "kind": "SCALAR", @@ -139112,7 +138738,7 @@ "deprecationReason": null }, { - "name": "account_contains_nocase", + "name": "protocol_not", "description": null, "type": { "kind": "SCALAR", @@ -139124,7 +138750,7 @@ "deprecationReason": null }, { - "name": "account_ends_with", + "name": "protocol_not_contains", "description": null, "type": { "kind": "SCALAR", @@ -139136,7 +138762,7 @@ "deprecationReason": null }, { - "name": "account_ends_with_nocase", + "name": "protocol_not_contains_nocase", "description": null, "type": { "kind": "SCALAR", @@ -139148,7 +138774,7 @@ "deprecationReason": null }, { - "name": "account_gt", + "name": "protocol_not_ends_with", "description": null, "type": { "kind": "SCALAR", @@ -139160,7 +138786,7 @@ "deprecationReason": null }, { - "name": "account_gte", + "name": "protocol_not_ends_with_nocase", "description": null, "type": { "kind": "SCALAR", @@ -139172,7 +138798,7 @@ "deprecationReason": null }, { - "name": "account_in", + "name": "protocol_not_in", "description": null, "type": { "kind": "LIST", @@ -139192,7 +138818,7 @@ "deprecationReason": null }, { - "name": "account_lt", + "name": "protocol_not_starts_with", "description": null, "type": { "kind": "SCALAR", @@ -139204,7 +138830,7 @@ "deprecationReason": null }, { - "name": "account_lte", + "name": "protocol_not_starts_with_nocase", "description": null, "type": { "kind": "SCALAR", @@ -139216,7 +138842,7 @@ "deprecationReason": null }, { - "name": "account_not", + "name": "protocol_starts_with", "description": null, "type": { "kind": "SCALAR", @@ -139228,7 +138854,7 @@ "deprecationReason": null }, { - "name": "account_not_contains", + "name": "protocol_starts_with_nocase", "description": null, "type": { "kind": "SCALAR", @@ -139240,11 +138866,11 @@ "deprecationReason": null }, { - "name": "account_not_contains_nocase", + "name": "season", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -139252,11 +138878,11 @@ "deprecationReason": null }, { - "name": "account_not_ends_with", + "name": "season_gt", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -139264,11 +138890,11 @@ "deprecationReason": null }, { - "name": "account_not_ends_with_nocase", + "name": "season_gte", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -139276,7 +138902,7 @@ "deprecationReason": null }, { - "name": "account_not_in", + "name": "season_in", "description": null, "type": { "kind": "LIST", @@ -139286,7 +138912,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } } @@ -139296,23 +138922,11 @@ "deprecationReason": null }, { - "name": "account_not_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "account_not_starts_with_nocase", + "name": "season_lt", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -139320,11 +138934,11 @@ "deprecationReason": null }, { - "name": "account_starts_with", + "name": "season_lte", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -139332,11 +138946,11 @@ "deprecationReason": null }, { - "name": "account_starts_with_nocase", + "name": "season_not", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -139344,307 +138958,282 @@ "deprecationReason": null }, { - "name": "and", + "name": "season_not_in", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "StalkChange_filter", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "StalkChange_orderBy", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "account", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { "name": "blockNumber", "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "blockNumber_gt", + "name": "createdAt", "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "blockNumber_gte", + "name": "delta", "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "blockNumber_in", + "name": "hash", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "blockNumber_lt", + "name": "id", "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "blockNumber_lte", + "name": "logIndex", "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "blockNumber_not", + "name": "protocol", "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "blockNumber_not_in", + "name": "protocol__id", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "createdAt", + "name": "protocol__lastSeason", "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "createdAt_gt", + "name": "protocol__lastUpgrade", "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "createdAt_gte", + "name": "protocol__methodologyVersion", "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "createdAt_in", + "name": "protocol__name", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "createdAt_lt", + "name": "protocol__schemaVersion", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "protocol__slug", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "protocol__subgraphVersion", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "season", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Statement", + "description": null, + "fields": [ + { + "name": "about", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "createdAt_lte", + "name": "created", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "createdAt_not", + "name": "delegate", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "createdAt_not_in", + "name": "id", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "delta", + "name": "ipfs", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "delta_gt", + "name": "space", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "delta_gte", + "name": "statement", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "delta_in", + "name": "updated", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "StatementsWhere", + "description": null, + "fields": null, + "inputFields": [ { - "name": "delta_lt", + "name": "created", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -139652,11 +139241,11 @@ "deprecationReason": null }, { - "name": "delta_lte", + "name": "created_gt", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -139664,11 +139253,11 @@ "deprecationReason": null }, { - "name": "delta_not", + "name": "created_gte", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -139676,19 +139265,15 @@ "deprecationReason": null }, { - "name": "delta_not_in", + "name": "created_in", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, "defaultValue": null, @@ -139696,11 +139281,11 @@ "deprecationReason": null }, { - "name": "hash", + "name": "created_lt", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -139708,11 +139293,11 @@ "deprecationReason": null }, { - "name": "hash_contains", + "name": "created_lte", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -139720,7 +139305,7 @@ "deprecationReason": null }, { - "name": "hash_contains_nocase", + "name": "delegate", "description": null, "type": { "kind": "SCALAR", @@ -139732,19 +139317,23 @@ "deprecationReason": null }, { - "name": "hash_ends_with", + "name": "delegate_in", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hash_ends_with_nocase", + "name": "id", "description": null, "type": { "kind": "SCALAR", @@ -139756,19 +139345,23 @@ "deprecationReason": null }, { - "name": "hash_gt", + "name": "id_in", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hash_gte", + "name": "ipfs", "description": null, "type": { "kind": "SCALAR", @@ -139780,19 +139373,15 @@ "deprecationReason": null }, { - "name": "hash_in", + "name": "ipfs_in", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "defaultValue": null, @@ -139800,7 +139389,7 @@ "deprecationReason": null }, { - "name": "hash_lt", + "name": "space", "description": null, "type": { "kind": "SCALAR", @@ -139812,1462 +139401,692 @@ "deprecationReason": null }, { - "name": "hash_lte", + "name": "space_in", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Strategy", + "description": null, + "fields": [ { - "name": "hash_not", + "name": "name", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hash_not_contains", + "name": "network", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hash_not_contains_nocase", + "name": "params", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Any", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "StrategyItem", + "description": null, + "fields": [ { - "name": "hash_not_ends_with", + "name": "about", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hash_not_ends_with_nocase", + "name": "author", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hash_not_in", + "name": "examples", "description": null, + "args": [], "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Any", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hash_not_starts_with", + "name": "id", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hash_not_starts_with_nocase", + "name": "schema", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Any", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hash_starts_with", + "name": "spacesCount", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hash_starts_with_nocase", + "name": "version", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "String", + "description": "The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Subscription", + "description": null, + "fields": [ { - "name": "id_gt", - "description": null, + "name": "_meta", + "description": "Access to subgraph metadata", + "args": [ + { + "name": "block", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "OBJECT", + "name": "_Meta_", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id_gte", + "name": "addDeposit", "description": null, + "args": [ + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny", + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "OBJECT", + "name": "AddDeposit", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id_in", + "name": "addDeposits", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", + "args": [ + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null - } + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "AddDeposit_orderBy", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddDeposit_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "logIndex", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "logIndex_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "logIndex_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "logIndex_in", - "description": null, + ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AddDeposit", + "ofType": null + } } } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "logIndex_lt", + "name": "address", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "logIndex_lte", + "name": "beaNFTUser", "description": null, + "args": [ + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny", + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "BeaNFTUser", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "logIndex_not", + "name": "beaNFTUsers", "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "logIndex_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "args": [ + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { "kind": "SCALAR", "name": "Int", "ofType": null - } + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "BeaNFTUser_orderBy", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "BeaNFTUser_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "or", - "description": null, + ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "StalkChange_filter", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "BeaNFTUser", + "ofType": null + } + } } }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "protocol", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "protocol_", + "name": "bean", "description": null, + "args": [ + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny", + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "Beanstalk_filter", + "kind": "OBJECT", + "name": "Bean", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "protocol_contains", + "name": "beanCross", "description": null, + "args": [ + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny", + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "BeanCross", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "protocol_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "protocol_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "protocol_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "protocol_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "protocol_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "protocol_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "protocol_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "protocol_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "protocol_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "protocol_not_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "protocol_not_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "protocol_not_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "protocol_not_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "protocol_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "protocol_not_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "protocol_not_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "protocol_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "protocol_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "season", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "season_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "season_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "season_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "season_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "season_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "season_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "season_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "StalkChange_orderBy", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "account", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockNumber", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delta", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hash", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "logIndex", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "protocol", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "protocol__id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "protocol__lastSeason", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "protocol__lastUpgrade", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "protocol__methodologyVersion", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "protocol__name", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "protocol__schemaVersion", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "protocol__slug", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "protocol__subgraphVersion", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "season", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Statement", - "description": null, - "fields": [ - { - "name": "about", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delegate", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ipfs", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "space", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "statement", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "StatementsWhere", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "created", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delegate", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delegate_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ipfs", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ipfs_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "space", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "space_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Strategy", - "description": null, - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "network", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "params", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Any", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "StrategyItem", - "description": null, - "fields": [ - { - "name": "about", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "author", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "examples", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Any", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "schema", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Any", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "spacesCount", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "version", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "String", - "description": "The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Subscription", - "description": null, - "fields": [ - { - "name": "_meta", - "description": "Access to subgraph metadata", - "args": [ - { - "name": "block", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "_Meta_", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "addDeposit", - "description": null, - "args": [ - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "AddDeposit", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "addDeposits", + "name": "beanCrosses", "description": null, "args": [ { @@ -141299,7 +140118,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "AddDeposit_orderBy", + "name": "BeanCross_orderBy", "ofType": null }, "defaultValue": null, @@ -141351,7 +140170,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "AddDeposit_filter", + "name": "BeanCross_filter", "ofType": null }, "defaultValue": null, @@ -141370,7 +140189,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AddDeposit", + "name": "BeanCross", "ofType": null } } @@ -141380,23 +140199,7 @@ "deprecationReason": null }, { - "name": "address", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "beaNFTUser", + "name": "beanDailySnapshot", "description": null, "args": [ { @@ -141446,14 +140249,14 @@ ], "type": { "kind": "OBJECT", - "name": "BeaNFTUser", + "name": "BeanDailySnapshot", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "beaNFTUsers", + "name": "beanDailySnapshots", "description": null, "args": [ { @@ -141485,7 +140288,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "BeaNFTUser_orderBy", + "name": "BeanDailySnapshot_orderBy", "ofType": null }, "defaultValue": null, @@ -141537,7 +140340,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "BeaNFTUser_filter", + "name": "BeanDailySnapshot_filter", "ofType": null }, "defaultValue": null, @@ -141556,7 +140359,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "BeaNFTUser", + "name": "BeanDailySnapshot", "ofType": null } } @@ -141566,64 +140369,7 @@ "deprecationReason": null }, { - "name": "bean", - "description": null, - "args": [ - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Bean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "beanCross", + "name": "beanHourlySnapshot", "description": null, "args": [ { @@ -141673,14 +140419,14 @@ ], "type": { "kind": "OBJECT", - "name": "BeanCross", + "name": "BeanHourlySnapshot", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "beanCrosses", + "name": "beanHourlySnapshots", "description": null, "args": [ { @@ -141712,7 +140458,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "BeanCross_orderBy", + "name": "BeanHourlySnapshot_orderBy", "ofType": null }, "defaultValue": null, @@ -141764,7 +140510,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "BeanCross_filter", + "name": "BeanHourlySnapshot_filter", "ofType": null }, "defaultValue": null, @@ -141783,7 +140529,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "BeanCross", + "name": "BeanHourlySnapshot", "ofType": null } } @@ -141793,64 +140539,7 @@ "deprecationReason": null }, { - "name": "beanDailySnapshot", - "description": null, - "args": [ - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "BeanDailySnapshot", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "beanDailySnapshots", + "name": "beans", "description": null, "args": [ { @@ -141882,7 +140571,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "BeanDailySnapshot_orderBy", + "name": "Bean_orderBy", "ofType": null }, "defaultValue": null, @@ -141934,7 +140623,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "BeanDailySnapshot_filter", + "name": "Bean_filter", "ofType": null }, "defaultValue": null, @@ -141953,7 +140642,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "BeanDailySnapshot", + "name": "Bean", "ofType": null } } @@ -141963,7 +140652,7 @@ "deprecationReason": null }, { - "name": "beanHourlySnapshot", + "name": "beanstalk", "description": null, "args": [ { @@ -142013,14 +140702,14 @@ ], "type": { "kind": "OBJECT", - "name": "BeanHourlySnapshot", + "name": "Beanstalk", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "beanHourlySnapshots", + "name": "beanstalks", "description": null, "args": [ { @@ -142052,7 +140741,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "BeanHourlySnapshot_orderBy", + "name": "Beanstalk_orderBy", "ofType": null }, "defaultValue": null, @@ -142104,7 +140793,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "BeanHourlySnapshot_filter", + "name": "Beanstalk_filter", "ofType": null }, "defaultValue": null, @@ -142123,7 +140812,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "BeanHourlySnapshot", + "name": "Beanstalk", "ofType": null } } @@ -142133,7 +140822,64 @@ "deprecationReason": null }, { - "name": "beans", + "name": "block", + "description": null, + "args": [ + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny", + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Block", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "blocks", "description": null, "args": [ { @@ -142165,7 +140911,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "Bean_orderBy", + "name": "Block_orderBy", "ofType": null }, "defaultValue": null, @@ -142217,7 +140963,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "Bean_filter", + "name": "Block_filter", "ofType": null }, "defaultValue": null, @@ -142236,7 +140982,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Bean", + "name": "Block", "ofType": null } } @@ -142246,7 +140992,7 @@ "deprecationReason": null }, { - "name": "beanstalk", + "name": "chop", "description": null, "args": [ { @@ -142296,14 +141042,14 @@ ], "type": { "kind": "OBJECT", - "name": "Beanstalk", + "name": "Chop", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "beanstalks", + "name": "chops", "description": null, "args": [ { @@ -142335,7 +141081,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "Beanstalk_orderBy", + "name": "Chop_orderBy", "ofType": null }, "defaultValue": null, @@ -142387,7 +141133,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "Beanstalk_filter", + "name": "Chop_filter", "ofType": null }, "defaultValue": null, @@ -142406,7 +141152,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Beanstalk", + "name": "Chop", "ofType": null } } @@ -142416,7 +141162,7 @@ "deprecationReason": null }, { - "name": "block", + "name": "collectionData", "description": null, "args": [ { @@ -142466,14 +141212,14 @@ ], "type": { "kind": "OBJECT", - "name": "Block", + "name": "CollectionData", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "blocks", + "name": "collectionDatas", "description": null, "args": [ { @@ -142505,7 +141251,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "Block_orderBy", + "name": "CollectionData_orderBy", "ofType": null }, "defaultValue": null, @@ -142557,7 +141303,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "Block_filter", + "name": "CollectionData_filter", "ofType": null }, "defaultValue": null, @@ -142576,7 +141322,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Block", + "name": "CollectionData", "ofType": null } } @@ -142586,7 +141332,23 @@ "deprecationReason": null }, { - "name": "chop", + "name": "created", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "delegation", "description": null, "args": [ { @@ -142636,14 +141398,14 @@ ], "type": { "kind": "OBJECT", - "name": "Chop", + "name": "Delegation", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "chops", + "name": "delegations", "description": null, "args": [ { @@ -142675,7 +141437,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "Chop_orderBy", + "name": "Delegation_orderBy", "ofType": null }, "defaultValue": null, @@ -142727,7 +141489,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "Chop_filter", + "name": "Delegation_filter", "ofType": null }, "defaultValue": null, @@ -142746,7 +141508,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Chop", + "name": "Delegation", "ofType": null } } @@ -142756,7 +141518,7 @@ "deprecationReason": null }, { - "name": "collectionData", + "name": "dewhitelistToken", "description": null, "args": [ { @@ -142806,14 +141568,14 @@ ], "type": { "kind": "OBJECT", - "name": "CollectionData", + "name": "DewhitelistToken", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "collectionDatas", + "name": "dewhitelistTokens", "description": null, "args": [ { @@ -142845,7 +141607,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "CollectionData_orderBy", + "name": "DewhitelistToken_orderBy", "ofType": null }, "defaultValue": null, @@ -142897,7 +141659,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CollectionData_filter", + "name": "DewhitelistToken_filter", "ofType": null }, "defaultValue": null, @@ -142916,7 +141678,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CollectionData", + "name": "DewhitelistToken", "ofType": null } } @@ -142926,23 +141688,7 @@ "deprecationReason": null }, { - "name": "created", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delegation", + "name": "farmer", "description": null, "args": [ { @@ -142992,14 +141738,14 @@ ], "type": { "kind": "OBJECT", - "name": "Delegation", + "name": "Farmer", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "delegations", + "name": "farmers", "description": null, "args": [ { @@ -143031,7 +141777,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "Delegation_orderBy", + "name": "Farmer_orderBy", "ofType": null }, "defaultValue": null, @@ -143083,7 +141829,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "Delegation_filter", + "name": "Farmer_filter", "ofType": null }, "defaultValue": null, @@ -143102,7 +141848,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Delegation", + "name": "Farmer", "ofType": null } } @@ -143112,7 +141858,7 @@ "deprecationReason": null }, { - "name": "dewhitelistToken", + "name": "fertilizer", "description": null, "args": [ { @@ -143162,14 +141908,71 @@ ], "type": { "kind": "OBJECT", - "name": "DewhitelistToken", + "name": "Fertilizer", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dewhitelistTokens", + "name": "fertilizerBalance", + "description": null, + "args": [ + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny", + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "FertilizerBalance", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fertilizerBalances", "description": null, "args": [ { @@ -143201,7 +142004,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "DewhitelistToken_orderBy", + "name": "FertilizerBalance_orderBy", "ofType": null }, "defaultValue": null, @@ -143253,7 +142056,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "DewhitelistToken_filter", + "name": "FertilizerBalance_filter", "ofType": null }, "defaultValue": null, @@ -143272,7 +142075,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "DewhitelistToken", + "name": "FertilizerBalance", "ofType": null } } @@ -143282,7 +142085,7 @@ "deprecationReason": null }, { - "name": "farmer", + "name": "fertilizerToken", "description": null, "args": [ { @@ -143332,14 +142135,14 @@ ], "type": { "kind": "OBJECT", - "name": "Farmer", + "name": "FertilizerToken", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "farmers", + "name": "fertilizerTokens", "description": null, "args": [ { @@ -143371,7 +142174,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "Farmer_orderBy", + "name": "FertilizerToken_orderBy", "ofType": null }, "defaultValue": null, @@ -143423,7 +142226,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "Farmer_filter", + "name": "FertilizerToken_filter", "ofType": null }, "defaultValue": null, @@ -143442,7 +142245,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Farmer", + "name": "FertilizerToken", "ofType": null } } @@ -143452,7 +142255,7 @@ "deprecationReason": null }, { - "name": "fertilizer", + "name": "fertilizerYield", "description": null, "args": [ { @@ -143502,14 +142305,14 @@ ], "type": { "kind": "OBJECT", - "name": "Fertilizer", + "name": "FertilizerYield", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "fertilizerBalance", + "name": "fertilizerYields", "description": null, "args": [ { @@ -143525,21 +142328,53 @@ "deprecationReason": null }, { - "name": "id", + "name": "first", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "FertilizerYield_orderBy", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": null + }, { "name": "subgraphError", "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", @@ -143555,18 +142390,42 @@ "defaultValue": "deny", "isDeprecated": false, "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "FertilizerYield_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } ], "type": { - "kind": "OBJECT", - "name": "FertilizerBalance", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FertilizerYield", + "ofType": null + } + } + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "fertilizerBalances", + "name": "fertilizers", "description": null, "args": [ { @@ -143598,7 +142457,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "FertilizerBalance_orderBy", + "name": "Fertilizer_orderBy", "ofType": null }, "defaultValue": null, @@ -143650,7 +142509,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "FertilizerBalance_filter", + "name": "Fertilizer_filter", "ofType": null }, "defaultValue": null, @@ -143669,7 +142528,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FertilizerBalance", + "name": "Fertilizer", "ofType": null } } @@ -143679,7 +142538,7 @@ "deprecationReason": null }, { - "name": "fertilizerToken", + "name": "field", "description": null, "args": [ { @@ -143729,14 +142588,71 @@ ], "type": { "kind": "OBJECT", - "name": "FertilizerToken", + "name": "Field", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "fertilizerTokens", + "name": "fieldDailySnapshot", + "description": null, + "args": [ + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny", + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "FieldDailySnapshot", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fieldDailySnapshots", "description": null, "args": [ { @@ -143768,7 +142684,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "FertilizerToken_orderBy", + "name": "FieldDailySnapshot_orderBy", "ofType": null }, "defaultValue": null, @@ -143820,7 +142736,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "FertilizerToken_filter", + "name": "FieldDailySnapshot_filter", "ofType": null }, "defaultValue": null, @@ -143839,7 +142755,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FertilizerToken", + "name": "FieldDailySnapshot", "ofType": null } } @@ -143849,7 +142765,7 @@ "deprecationReason": null }, { - "name": "fertilizerYield", + "name": "fieldEvent", "description": null, "args": [ { @@ -143873,99 +142789,10 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "FertilizerYield", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fertilizerYields", - "description": null, - "args": [ - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "FertilizerYield_orderBy", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "ofType": null + } }, - "defaultValue": "0", + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, @@ -143984,42 +142811,18 @@ "defaultValue": "deny", "isDeprecated": false, "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "FertilizerYield_filter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "FertilizerYield", - "ofType": null - } - } - } + "kind": "INTERFACE", + "name": "FieldEvent", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "fertilizers", + "name": "fieldEvents", "description": null, "args": [ { @@ -144051,7 +142854,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "Fertilizer_orderBy", + "name": "FieldEvent_orderBy", "ofType": null }, "defaultValue": null, @@ -144103,7 +142906,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "Fertilizer_filter", + "name": "FieldEvent_filter", "ofType": null }, "defaultValue": null, @@ -144121,8 +142924,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Fertilizer", + "kind": "INTERFACE", + "name": "FieldEvent", "ofType": null } } @@ -144132,64 +142935,7 @@ "deprecationReason": null }, { - "name": "field", - "description": null, - "args": [ - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Field", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fieldDailySnapshot", + "name": "fieldHourlySnapshot", "description": null, "args": [ { @@ -144239,14 +142985,14 @@ ], "type": { "kind": "OBJECT", - "name": "FieldDailySnapshot", + "name": "FieldHourlySnapshot", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "fieldDailySnapshots", + "name": "fieldHourlySnapshots", "description": null, "args": [ { @@ -144278,7 +143024,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "FieldDailySnapshot_orderBy", + "name": "FieldHourlySnapshot_orderBy", "ofType": null }, "defaultValue": null, @@ -144330,7 +143076,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "FieldDailySnapshot_filter", + "name": "FieldHourlySnapshot_filter", "ofType": null }, "defaultValue": null, @@ -144349,7 +143095,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FieldDailySnapshot", + "name": "FieldHourlySnapshot", "ofType": null } } @@ -144359,64 +143105,7 @@ "deprecationReason": null }, { - "name": "fieldEvent", - "description": null, - "args": [ - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "INTERFACE", - "name": "FieldEvent", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fieldEvents", + "name": "fields", "description": null, "args": [ { @@ -144448,7 +143137,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "FieldEvent_orderBy", + "name": "Field_orderBy", "ofType": null }, "defaultValue": null, @@ -144500,7 +143189,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "FieldEvent_filter", + "name": "Field_filter", "ofType": null }, "defaultValue": null, @@ -144518,8 +143207,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INTERFACE", - "name": "FieldEvent", + "kind": "OBJECT", + "name": "Field", "ofType": null } } @@ -144529,7 +143218,7 @@ "deprecationReason": null }, { - "name": "fieldHourlySnapshot", + "name": "harvest", "description": null, "args": [ { @@ -144579,14 +143268,14 @@ ], "type": { "kind": "OBJECT", - "name": "FieldHourlySnapshot", + "name": "Harvest", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "fieldHourlySnapshots", + "name": "harvests", "description": null, "args": [ { @@ -144618,7 +143307,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "FieldHourlySnapshot_orderBy", + "name": "Harvest_orderBy", "ofType": null }, "defaultValue": null, @@ -144670,7 +143359,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "FieldHourlySnapshot_filter", + "name": "Harvest_filter", "ofType": null }, "defaultValue": null, @@ -144689,17 +143378,90 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FieldHourlySnapshot", + "name": "Harvest", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "incentive", + "description": null, + "args": [ + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", "ofType": null } - } + }, + "defaultValue": "deny", + "isDeprecated": false, + "deprecationReason": null } + ], + "type": { + "kind": "OBJECT", + "name": "Incentive", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "fields", + "name": "incentives", "description": null, "args": [ { @@ -144731,7 +143493,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "Field_orderBy", + "name": "Incentive_orderBy", "ofType": null }, "defaultValue": null, @@ -144783,7 +143545,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "Field_filter", + "name": "Incentive_filter", "ofType": null }, "defaultValue": null, @@ -144802,7 +143564,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Field", + "name": "Incentive", "ofType": null } } @@ -144812,7 +143574,19 @@ "deprecationReason": null }, { - "name": "harvest", + "name": "ipfs", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "marketplaceEvent", "description": null, "args": [ { @@ -144861,15 +143635,15 @@ } ], "type": { - "kind": "OBJECT", - "name": "Harvest", + "kind": "INTERFACE", + "name": "MarketplaceEvent", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "harvests", + "name": "marketplaceEvents", "description": null, "args": [ { @@ -144901,7 +143675,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "Harvest_orderBy", + "name": "MarketplaceEvent_orderBy", "ofType": null }, "defaultValue": null, @@ -144953,7 +143727,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "Harvest_filter", + "name": "MarketplaceEvent_filter", "ofType": null }, "defaultValue": null, @@ -144971,8 +143745,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Harvest", + "kind": "INTERFACE", + "name": "MarketplaceEvent", "ofType": null } } @@ -144982,23 +143756,7 @@ "deprecationReason": null }, { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "incentive", + "name": "metapoolOracle", "description": null, "args": [ { @@ -145048,14 +143806,14 @@ ], "type": { "kind": "OBJECT", - "name": "Incentive", + "name": "MetapoolOracle", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "incentives", + "name": "metapoolOracles", "description": null, "args": [ { @@ -145087,7 +143845,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "Incentive_orderBy", + "name": "MetapoolOracle_orderBy", "ofType": null }, "defaultValue": null, @@ -145139,7 +143897,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "Incentive_filter", + "name": "MetapoolOracle_filter", "ofType": null }, "defaultValue": null, @@ -145158,7 +143916,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Incentive", + "name": "MetapoolOracle", "ofType": null } } @@ -145168,19 +143926,7 @@ "deprecationReason": null }, { - "name": "ipfs", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "marketplaceEvent", + "name": "plot", "description": null, "args": [ { @@ -145229,15 +143975,15 @@ } ], "type": { - "kind": "INTERFACE", - "name": "MarketplaceEvent", + "kind": "OBJECT", + "name": "Plot", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "marketplaceEvents", + "name": "plots", "description": null, "args": [ { @@ -145269,7 +144015,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "MarketplaceEvent_orderBy", + "name": "Plot_orderBy", "ofType": null }, "defaultValue": null, @@ -145321,7 +144067,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "MarketplaceEvent_filter", + "name": "Plot_filter", "ofType": null }, "defaultValue": null, @@ -145339,8 +144085,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INTERFACE", - "name": "MarketplaceEvent", + "kind": "OBJECT", + "name": "Plot", "ofType": null } } @@ -145350,7 +144096,7 @@ "deprecationReason": null }, { - "name": "metapoolOracle", + "name": "podFill", "description": null, "args": [ { @@ -145400,14 +144146,14 @@ ], "type": { "kind": "OBJECT", - "name": "MetapoolOracle", + "name": "PodFill", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "metapoolOracles", + "name": "podFills", "description": null, "args": [ { @@ -145439,7 +144185,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "MetapoolOracle_orderBy", + "name": "PodFill_orderBy", "ofType": null }, "defaultValue": null, @@ -145491,7 +144237,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "MetapoolOracle_filter", + "name": "PodFill_filter", "ofType": null }, "defaultValue": null, @@ -145510,7 +144256,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "MetapoolOracle", + "name": "PodFill", "ofType": null } } @@ -145520,7 +144266,7 @@ "deprecationReason": null }, { - "name": "plot", + "name": "podListing", "description": null, "args": [ { @@ -145570,14 +144316,71 @@ ], "type": { "kind": "OBJECT", - "name": "Plot", + "name": "PodListing", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "plots", + "name": "podListingCancelled", + "description": null, + "args": [ + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny", + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "PodListingCancelled", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "podListingCancelleds", "description": null, "args": [ { @@ -145609,7 +144412,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "Plot_orderBy", + "name": "PodListingCancelled_orderBy", "ofType": null }, "defaultValue": null, @@ -145661,7 +144464,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "Plot_filter", + "name": "PodListingCancelled_filter", "ofType": null }, "defaultValue": null, @@ -145680,7 +144483,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Plot", + "name": "PodListingCancelled", "ofType": null } } @@ -145690,7 +144493,7 @@ "deprecationReason": null }, { - "name": "podFill", + "name": "podListingCreated", "description": null, "args": [ { @@ -145740,14 +144543,14 @@ ], "type": { "kind": "OBJECT", - "name": "PodFill", + "name": "PodListingCreated", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "podFills", + "name": "podListingCreateds", "description": null, "args": [ { @@ -145779,7 +144582,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "PodFill_orderBy", + "name": "PodListingCreated_orderBy", "ofType": null }, "defaultValue": null, @@ -145831,7 +144634,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PodFill_filter", + "name": "PodListingCreated_filter", "ofType": null }, "defaultValue": null, @@ -145850,7 +144653,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PodFill", + "name": "PodListingCreated", "ofType": null } } @@ -145860,7 +144663,7 @@ "deprecationReason": null }, { - "name": "podListing", + "name": "podListingFilled", "description": null, "args": [ { @@ -145910,14 +144713,14 @@ ], "type": { "kind": "OBJECT", - "name": "PodListing", + "name": "PodListingFilled", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "podListingCancelled", + "name": "podListingFilleds", "description": null, "args": [ { @@ -145933,21 +144736,53 @@ "deprecationReason": null }, { - "name": "id", + "name": "first", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "PodListingFilled_orderBy", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": null + }, { "name": "subgraphError", "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", @@ -145960,21 +144795,45 @@ "ofType": null } }, - "defaultValue": "deny", + "defaultValue": "deny", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PodListingFilled_filter", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], "type": { - "kind": "OBJECT", - "name": "PodListingCancelled", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PodListingFilled", + "ofType": null + } + } + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "podListingCancelleds", + "name": "podListings", "description": null, "args": [ { @@ -146006,7 +144865,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "PodListingCancelled_orderBy", + "name": "PodListing_orderBy", "ofType": null }, "defaultValue": null, @@ -146058,7 +144917,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PodListingCancelled_filter", + "name": "PodListing_filter", "ofType": null }, "defaultValue": null, @@ -146077,7 +144936,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PodListingCancelled", + "name": "PodListing", "ofType": null } } @@ -146087,7 +144946,7 @@ "deprecationReason": null }, { - "name": "podListingCreated", + "name": "podMarketplace", "description": null, "args": [ { @@ -146137,14 +144996,71 @@ ], "type": { "kind": "OBJECT", - "name": "PodListingCreated", + "name": "PodMarketplace", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "podListingCreateds", + "name": "podMarketplaceDailySnapshot", + "description": null, + "args": [ + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny", + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "PodMarketplaceDailySnapshot", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "podMarketplaceDailySnapshots", "description": null, "args": [ { @@ -146176,7 +145092,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "PodListingCreated_orderBy", + "name": "PodMarketplaceDailySnapshot_orderBy", "ofType": null }, "defaultValue": null, @@ -146228,7 +145144,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PodListingCreated_filter", + "name": "PodMarketplaceDailySnapshot_filter", "ofType": null }, "defaultValue": null, @@ -146247,7 +145163,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PodListingCreated", + "name": "PodMarketplaceDailySnapshot", "ofType": null } } @@ -146257,7 +145173,7 @@ "deprecationReason": null }, { - "name": "podListingFilled", + "name": "podMarketplaceHourlySnapshot", "description": null, "args": [ { @@ -146307,14 +145223,14 @@ ], "type": { "kind": "OBJECT", - "name": "PodListingFilled", + "name": "PodMarketplaceHourlySnapshot", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "podListingFilleds", + "name": "podMarketplaceHourlySnapshots", "description": null, "args": [ { @@ -146346,7 +145262,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "PodListingFilled_orderBy", + "name": "PodMarketplaceHourlySnapshot_orderBy", "ofType": null }, "defaultValue": null, @@ -146398,7 +145314,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PodListingFilled_filter", + "name": "PodMarketplaceHourlySnapshot_filter", "ofType": null }, "defaultValue": null, @@ -146417,7 +145333,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PodListingFilled", + "name": "PodMarketplaceHourlySnapshot", "ofType": null } } @@ -146427,7 +145343,7 @@ "deprecationReason": null }, { - "name": "podListings", + "name": "podMarketplaces", "description": null, "args": [ { @@ -146459,7 +145375,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "PodListing_orderBy", + "name": "PodMarketplace_orderBy", "ofType": null }, "defaultValue": null, @@ -146511,7 +145427,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PodListing_filter", + "name": "PodMarketplace_filter", "ofType": null }, "defaultValue": null, @@ -146530,7 +145446,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PodListing", + "name": "PodMarketplace", "ofType": null } } @@ -146540,7 +145456,7 @@ "deprecationReason": null }, { - "name": "podMarketplace", + "name": "podOrder", "description": null, "args": [ { @@ -146590,14 +145506,14 @@ ], "type": { "kind": "OBJECT", - "name": "PodMarketplace", + "name": "PodOrder", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "podMarketplaceDailySnapshot", + "name": "podOrderCancelled", "description": null, "args": [ { @@ -146647,14 +145563,14 @@ ], "type": { "kind": "OBJECT", - "name": "PodMarketplaceDailySnapshot", + "name": "PodOrderCancelled", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "podMarketplaceDailySnapshots", + "name": "podOrderCancelleds", "description": null, "args": [ { @@ -146686,7 +145602,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "PodMarketplaceDailySnapshot_orderBy", + "name": "PodOrderCancelled_orderBy", "ofType": null }, "defaultValue": null, @@ -146738,7 +145654,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PodMarketplaceDailySnapshot_filter", + "name": "PodOrderCancelled_filter", "ofType": null }, "defaultValue": null, @@ -146757,7 +145673,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PodMarketplaceDailySnapshot", + "name": "PodOrderCancelled", "ofType": null } } @@ -146767,7 +145683,7 @@ "deprecationReason": null }, { - "name": "podMarketplaceHourlySnapshot", + "name": "podOrderCreated", "description": null, "args": [ { @@ -146817,127 +145733,14 @@ ], "type": { "kind": "OBJECT", - "name": "PodMarketplaceHourlySnapshot", + "name": "PodOrderCreated", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "podMarketplaceHourlySnapshots", - "description": null, - "args": [ - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "PodMarketplaceHourlySnapshot_orderBy", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PodMarketplaceHourlySnapshot_filter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PodMarketplaceHourlySnapshot", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "podMarketplaces", + "name": "podOrderCreateds", "description": null, "args": [ { @@ -146969,7 +145772,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "PodMarketplace_orderBy", + "name": "PodOrderCreated_orderBy", "ofType": null }, "defaultValue": null, @@ -147021,7 +145824,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PodMarketplace_filter", + "name": "PodOrderCreated_filter", "ofType": null }, "defaultValue": null, @@ -147040,7 +145843,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PodMarketplace", + "name": "PodOrderCreated", "ofType": null } } @@ -147050,7 +145853,7 @@ "deprecationReason": null }, { - "name": "podOrder", + "name": "podOrderFilled", "description": null, "args": [ { @@ -147100,14 +145903,14 @@ ], "type": { "kind": "OBJECT", - "name": "PodOrder", + "name": "PodOrderFilled", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "podOrderCancelled", + "name": "podOrderFilleds", "description": null, "args": [ { @@ -147123,21 +145926,53 @@ "deprecationReason": null }, { - "name": "id", + "name": "first", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "PodOrderFilled_orderBy", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": null + }, { "name": "subgraphError", "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", @@ -147153,18 +145988,42 @@ "defaultValue": "deny", "isDeprecated": false, "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PodOrderFilled_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } ], "type": { - "kind": "OBJECT", - "name": "PodOrderCancelled", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PodOrderFilled", + "ofType": null + } + } + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "podOrderCancelleds", + "name": "podOrders", "description": null, "args": [ { @@ -147196,7 +146055,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "PodOrderCancelled_orderBy", + "name": "PodOrder_orderBy", "ofType": null }, "defaultValue": null, @@ -147248,7 +146107,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PodOrderCancelled_filter", + "name": "PodOrder_filter", "ofType": null }, "defaultValue": null, @@ -147267,7 +146126,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PodOrderCancelled", + "name": "PodOrder", "ofType": null } } @@ -147277,7 +146136,7 @@ "deprecationReason": null }, { - "name": "podOrderCreated", + "name": "podTransfer", "description": null, "args": [ { @@ -147327,14 +146186,14 @@ ], "type": { "kind": "OBJECT", - "name": "PodOrderCreated", + "name": "PodTransfer", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "podOrderCreateds", + "name": "podTransfers", "description": null, "args": [ { @@ -147366,7 +146225,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "PodOrderCreated_orderBy", + "name": "PodTransfer_orderBy", "ofType": null }, "defaultValue": null, @@ -147418,7 +146277,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PodOrderCreated_filter", + "name": "PodTransfer_filter", "ofType": null }, "defaultValue": null, @@ -147437,7 +146296,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PodOrderCreated", + "name": "PodTransfer", "ofType": null } } @@ -147447,7 +146306,7 @@ "deprecationReason": null }, { - "name": "podOrderFilled", + "name": "pool", "description": null, "args": [ { @@ -147497,14 +146356,14 @@ ], "type": { "kind": "OBJECT", - "name": "PodOrderFilled", + "name": "Pool", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "podOrderFilleds", + "name": "poolCross", "description": null, "args": [ { @@ -147520,53 +146379,21 @@ "deprecationReason": null }, { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "PodOrderFilled_orderBy", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderDirection", + "name": "id", "description": null, "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": null - }, { "name": "subgraphError", "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", @@ -147582,42 +146409,18 @@ "defaultValue": "deny", "isDeprecated": false, "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PodOrderFilled_filter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PodOrderFilled", - "ofType": null - } - } - } + "kind": "OBJECT", + "name": "PoolCross", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "podOrders", + "name": "poolCrosses", "description": null, "args": [ { @@ -147649,7 +146452,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "PodOrder_orderBy", + "name": "PoolCross_orderBy", "ofType": null }, "defaultValue": null, @@ -147701,7 +146504,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PodOrder_filter", + "name": "PoolCross_filter", "ofType": null }, "defaultValue": null, @@ -147720,7 +146523,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PodOrder", + "name": "PoolCross", "ofType": null } } @@ -147730,7 +146533,7 @@ "deprecationReason": null }, { - "name": "podTransfer", + "name": "poolDailySnapshot", "description": null, "args": [ { @@ -147780,14 +146583,14 @@ ], "type": { "kind": "OBJECT", - "name": "PodTransfer", + "name": "PoolDailySnapshot", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "podTransfers", + "name": "poolDailySnapshots", "description": null, "args": [ { @@ -147819,7 +146622,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "PodTransfer_orderBy", + "name": "PoolDailySnapshot_orderBy", "ofType": null }, "defaultValue": null, @@ -147871,7 +146674,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PodTransfer_filter", + "name": "PoolDailySnapshot_filter", "ofType": null }, "defaultValue": null, @@ -147890,7 +146693,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PodTransfer", + "name": "PoolDailySnapshot", "ofType": null } } @@ -147900,7 +146703,7 @@ "deprecationReason": null }, { - "name": "pool", + "name": "poolHourlySnapshot", "description": null, "args": [ { @@ -147950,22 +146753,58 @@ ], "type": { "kind": "OBJECT", - "name": "Pool", + "name": "PoolHourlySnapshot", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "poolCross", + "name": "poolHourlySnapshots", "description": null, "args": [ { "name": "block", "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "PoolHourlySnapshot_orderBy", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", "ofType": null }, "defaultValue": null, @@ -147973,18 +146812,14 @@ "deprecationReason": null }, { - "name": "id", + "name": "skip", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - "defaultValue": null, + "defaultValue": "0", "isDeprecated": false, "deprecationReason": null }, @@ -148003,18 +146838,42 @@ "defaultValue": "deny", "isDeprecated": false, "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PoolHourlySnapshot_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } ], "type": { - "kind": "OBJECT", - "name": "PoolCross", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PoolHourlySnapshot", + "ofType": null + } + } + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "poolCrosses", + "name": "pools", "description": null, "args": [ { @@ -148046,7 +146905,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "PoolCross_orderBy", + "name": "Pool_orderBy", "ofType": null }, "defaultValue": null, @@ -148098,7 +146957,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PoolCross_filter", + "name": "Pool_filter", "ofType": null }, "defaultValue": null, @@ -148117,7 +146976,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PoolCross", + "name": "Pool", "ofType": null } } @@ -148127,7 +146986,7 @@ "deprecationReason": null }, { - "name": "poolDailySnapshot", + "name": "removeDeposit", "description": null, "args": [ { @@ -148177,14 +147036,14 @@ ], "type": { "kind": "OBJECT", - "name": "PoolDailySnapshot", + "name": "RemoveDeposit", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "poolDailySnapshots", + "name": "removeDeposits", "description": null, "args": [ { @@ -148216,7 +147075,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "PoolDailySnapshot_orderBy", + "name": "RemoveDeposit_orderBy", "ofType": null }, "defaultValue": null, @@ -148268,7 +147127,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PoolDailySnapshot_filter", + "name": "RemoveDeposit_filter", "ofType": null }, "defaultValue": null, @@ -148287,7 +147146,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PoolDailySnapshot", + "name": "RemoveDeposit", "ofType": null } } @@ -148297,7 +147156,7 @@ "deprecationReason": null }, { - "name": "poolHourlySnapshot", + "name": "reward", "description": null, "args": [ { @@ -148347,14 +147206,14 @@ ], "type": { "kind": "OBJECT", - "name": "PoolHourlySnapshot", + "name": "Reward", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "poolHourlySnapshots", + "name": "rewards", "description": null, "args": [ { @@ -148386,7 +147245,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "PoolHourlySnapshot_orderBy", + "name": "Reward_orderBy", "ofType": null }, "defaultValue": null, @@ -148438,7 +147297,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PoolHourlySnapshot_filter", + "name": "Reward_filter", "ofType": null }, "defaultValue": null, @@ -148457,7 +147316,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PoolHourlySnapshot", + "name": "Reward", "ofType": null } } @@ -148467,7 +147326,64 @@ "deprecationReason": null }, { - "name": "pools", + "name": "season", + "description": null, + "args": [ + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny", + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Season", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "seasons", "description": null, "args": [ { @@ -148499,7 +147415,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "Pool_orderBy", + "name": "Season_orderBy", "ofType": null }, "defaultValue": null, @@ -148551,7 +147467,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "Pool_filter", + "name": "Season_filter", "ofType": null }, "defaultValue": null, @@ -148570,7 +147486,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Pool", + "name": "Season", "ofType": null } } @@ -148580,7 +147496,7 @@ "deprecationReason": null }, { - "name": "removeDeposit", + "name": "seedChange", "description": null, "args": [ { @@ -148630,14 +147546,14 @@ ], "type": { "kind": "OBJECT", - "name": "RemoveDeposit", + "name": "SeedChange", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "removeDeposits", + "name": "seedChanges", "description": null, "args": [ { @@ -148669,7 +147585,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "RemoveDeposit_orderBy", + "name": "SeedChange_orderBy", "ofType": null }, "defaultValue": null, @@ -148721,7 +147637,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "RemoveDeposit_filter", + "name": "SeedChange_filter", "ofType": null }, "defaultValue": null, @@ -148740,7 +147656,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "RemoveDeposit", + "name": "SeedChange", "ofType": null } } @@ -148750,7 +147666,7 @@ "deprecationReason": null }, { - "name": "reward", + "name": "sig", "description": null, "args": [ { @@ -148800,14 +147716,14 @@ ], "type": { "kind": "OBJECT", - "name": "Reward", + "name": "Sig", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "rewards", + "name": "sigs", "description": null, "args": [ { @@ -148839,7 +147755,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "Reward_orderBy", + "name": "Sig_orderBy", "ofType": null }, "defaultValue": null, @@ -148891,7 +147807,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "Reward_filter", + "name": "Sig_filter", "ofType": null }, "defaultValue": null, @@ -148910,7 +147826,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Reward", + "name": "Sig", "ofType": null } } @@ -148920,7 +147836,7 @@ "deprecationReason": null }, { - "name": "season", + "name": "silo", "description": null, "args": [ { @@ -148970,14 +147886,14 @@ ], "type": { "kind": "OBJECT", - "name": "Season", + "name": "Silo", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "seasons", + "name": "siloAsset", "description": null, "args": [ { @@ -148993,104 +147909,48 @@ "deprecationReason": null }, { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "Season_orderBy", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", + "name": "id", "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, - "defaultValue": "deny", + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "where", - "description": null, + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", "type": { - "kind": "INPUT_OBJECT", - "name": "Season_filter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Season", + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", "ofType": null } - } + }, + "defaultValue": "deny", + "isDeprecated": false, + "deprecationReason": null } + ], + "type": { + "kind": "OBJECT", + "name": "SiloAsset", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "seedChange", + "name": "siloAssetDailySnapshot", "description": null, "args": [ { @@ -149140,14 +148000,14 @@ ], "type": { "kind": "OBJECT", - "name": "SeedChange", + "name": "SiloAssetDailySnapshot", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "seedChanges", + "name": "siloAssetDailySnapshots", "description": null, "args": [ { @@ -149179,7 +148039,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "SeedChange_orderBy", + "name": "SiloAssetDailySnapshot_orderBy", "ofType": null }, "defaultValue": null, @@ -149231,7 +148091,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SeedChange_filter", + "name": "SiloAssetDailySnapshot_filter", "ofType": null }, "defaultValue": null, @@ -149250,7 +148110,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SeedChange", + "name": "SiloAssetDailySnapshot", "ofType": null } } @@ -149260,7 +148120,7 @@ "deprecationReason": null }, { - "name": "sig", + "name": "siloAssetHourlySnapshot", "description": null, "args": [ { @@ -149310,14 +148170,14 @@ ], "type": { "kind": "OBJECT", - "name": "Sig", + "name": "SiloAssetHourlySnapshot", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "sigs", + "name": "siloAssetHourlySnapshots", "description": null, "args": [ { @@ -149349,7 +148209,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "Sig_orderBy", + "name": "SiloAssetHourlySnapshot_orderBy", "ofType": null }, "defaultValue": null, @@ -149401,7 +148261,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "Sig_filter", + "name": "SiloAssetHourlySnapshot_filter", "ofType": null }, "defaultValue": null, @@ -149420,7 +148280,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Sig", + "name": "SiloAssetHourlySnapshot", "ofType": null } } @@ -149430,7 +148290,7 @@ "deprecationReason": null }, { - "name": "silo", + "name": "siloAssets", "description": null, "args": [ { @@ -149446,56 +148306,35 @@ "deprecationReason": null }, { - "name": "id", + "name": "first", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - "defaultValue": null, + "defaultValue": "100", "isDeprecated": false, "deprecationReason": null }, { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "name": "orderBy", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } + "kind": "ENUM", + "name": "SiloAsset_orderBy", + "ofType": null }, - "defaultValue": "deny", + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Silo", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "siloAsset", - "description": null, - "args": [ + }, { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "name": "orderDirection", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", + "kind": "ENUM", + "name": "OrderDirection", "ofType": null }, "defaultValue": null, @@ -149503,18 +148342,14 @@ "deprecationReason": null }, { - "name": "id", + "name": "skip", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - "defaultValue": null, + "defaultValue": "0", "isDeprecated": false, "deprecationReason": null }, @@ -149533,18 +148368,42 @@ "defaultValue": "deny", "isDeprecated": false, "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SiloAsset_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } ], "type": { - "kind": "OBJECT", - "name": "SiloAsset", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SiloAsset", + "ofType": null + } + } + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "siloAssetDailySnapshot", + "name": "siloDailySnapshot", "description": null, "args": [ { @@ -149594,14 +148453,14 @@ ], "type": { "kind": "OBJECT", - "name": "SiloAssetDailySnapshot", + "name": "SiloDailySnapshot", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "siloAssetDailySnapshots", + "name": "siloDailySnapshots", "description": null, "args": [ { @@ -149633,7 +148492,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "SiloAssetDailySnapshot_orderBy", + "name": "SiloDailySnapshot_orderBy", "ofType": null }, "defaultValue": null, @@ -149685,7 +148544,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SiloAssetDailySnapshot_filter", + "name": "SiloDailySnapshot_filter", "ofType": null }, "defaultValue": null, @@ -149704,7 +148563,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SiloAssetDailySnapshot", + "name": "SiloDailySnapshot", "ofType": null } } @@ -149714,7 +148573,7 @@ "deprecationReason": null }, { - "name": "siloAssetHourlySnapshot", + "name": "siloDeposit", "description": null, "args": [ { @@ -149764,14 +148623,14 @@ ], "type": { "kind": "OBJECT", - "name": "SiloAssetHourlySnapshot", + "name": "SiloDeposit", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "siloAssetHourlySnapshots", + "name": "siloDeposits", "description": null, "args": [ { @@ -149803,7 +148662,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "SiloAssetHourlySnapshot_orderBy", + "name": "SiloDeposit_orderBy", "ofType": null }, "defaultValue": null, @@ -149855,7 +148714,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SiloAssetHourlySnapshot_filter", + "name": "SiloDeposit_filter", "ofType": null }, "defaultValue": null, @@ -149874,7 +148733,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SiloAssetHourlySnapshot", + "name": "SiloDeposit", "ofType": null } } @@ -149884,7 +148743,64 @@ "deprecationReason": null }, { - "name": "siloAssets", + "name": "siloEvent", + "description": null, + "args": [ + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny", + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "INTERFACE", + "name": "SiloEvent", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "siloEvents", "description": null, "args": [ { @@ -149916,7 +148832,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "SiloAsset_orderBy", + "name": "SiloEvent_orderBy", "ofType": null }, "defaultValue": null, @@ -149968,7 +148884,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SiloAsset_filter", + "name": "SiloEvent_filter", "ofType": null }, "defaultValue": null, @@ -149986,8 +148902,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "SiloAsset", + "kind": "INTERFACE", + "name": "SiloEvent", "ofType": null } } @@ -149997,7 +148913,7 @@ "deprecationReason": null }, { - "name": "siloDailySnapshot", + "name": "siloHourlySnapshot", "description": null, "args": [ { @@ -150047,14 +148963,14 @@ ], "type": { "kind": "OBJECT", - "name": "SiloDailySnapshot", + "name": "SiloHourlySnapshot", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "siloDailySnapshots", + "name": "siloHourlySnapshots", "description": null, "args": [ { @@ -150086,7 +149002,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "SiloDailySnapshot_orderBy", + "name": "SiloHourlySnapshot_orderBy", "ofType": null }, "defaultValue": null, @@ -150138,7 +149054,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SiloDailySnapshot_filter", + "name": "SiloHourlySnapshot_filter", "ofType": null }, "defaultValue": null, @@ -150157,7 +149073,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SiloDailySnapshot", + "name": "SiloHourlySnapshot", "ofType": null } } @@ -150167,7 +149083,7 @@ "deprecationReason": null }, { - "name": "siloDeposit", + "name": "siloWithdraw", "description": null, "args": [ { @@ -150217,14 +149133,14 @@ ], "type": { "kind": "OBJECT", - "name": "SiloDeposit", + "name": "SiloWithdraw", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "siloDeposits", + "name": "siloWithdraws", "description": null, "args": [ { @@ -150256,7 +149172,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "SiloDeposit_orderBy", + "name": "SiloWithdraw_orderBy", "ofType": null }, "defaultValue": null, @@ -150308,7 +149224,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SiloDeposit_filter", + "name": "SiloWithdraw_filter", "ofType": null }, "defaultValue": null, @@ -150327,7 +149243,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SiloDeposit", + "name": "SiloWithdraw", "ofType": null } } @@ -150337,7 +149253,7 @@ "deprecationReason": null }, { - "name": "siloEvent", + "name": "siloYield", "description": null, "args": [ { @@ -150386,15 +149302,15 @@ } ], "type": { - "kind": "INTERFACE", - "name": "SiloEvent", + "kind": "OBJECT", + "name": "SiloYield", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "siloEvents", + "name": "siloYields", "description": null, "args": [ { @@ -150426,7 +149342,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "SiloEvent_orderBy", + "name": "SiloYield_orderBy", "ofType": null }, "defaultValue": null, @@ -150478,7 +149394,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SiloEvent_filter", + "name": "SiloYield_filter", "ofType": null }, "defaultValue": null, @@ -150496,8 +149412,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INTERFACE", - "name": "SiloEvent", + "kind": "OBJECT", + "name": "SiloYield", "ofType": null } } @@ -150507,64 +149423,7 @@ "deprecationReason": null }, { - "name": "siloHourlySnapshot", - "description": null, - "args": [ - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SiloHourlySnapshot", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "siloHourlySnapshots", + "name": "silos", "description": null, "args": [ { @@ -150596,7 +149455,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "SiloHourlySnapshot_orderBy", + "name": "Silo_orderBy", "ofType": null }, "defaultValue": null, @@ -150648,7 +149507,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SiloHourlySnapshot_filter", + "name": "Silo_filter", "ofType": null }, "defaultValue": null, @@ -150667,7 +149526,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SiloHourlySnapshot", + "name": "Silo", "ofType": null } } @@ -150677,7 +149536,23 @@ "deprecationReason": null }, { - "name": "siloWithdraw", + "name": "space", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Space", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stalkChange", "description": null, "args": [ { @@ -150727,14 +149602,14 @@ ], "type": { "kind": "OBJECT", - "name": "SiloWithdraw", + "name": "StalkChange", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "siloWithdraws", + "name": "stalkChanges", "description": null, "args": [ { @@ -150766,7 +149641,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "SiloWithdraw_orderBy", + "name": "StalkChange_orderBy", "ofType": null }, "defaultValue": null, @@ -150818,7 +149693,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SiloWithdraw_filter", + "name": "StalkChange_filter", "ofType": null }, "defaultValue": null, @@ -150837,7 +149712,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SiloWithdraw", + "name": "StalkChange", "ofType": null } } @@ -150847,7 +149722,7 @@ "deprecationReason": null }, { - "name": "siloYield", + "name": "token", "description": null, "args": [ { @@ -150897,14 +149772,71 @@ ], "type": { "kind": "OBJECT", - "name": "SiloYield", + "name": "Token", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "siloYields", + "name": "tokenYield", + "description": null, + "args": [ + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny", + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "TokenYield", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenYields", "description": null, "args": [ { @@ -150936,7 +149868,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "SiloYield_orderBy", + "name": "TokenYield_orderBy", "ofType": null }, "defaultValue": null, @@ -150988,7 +149920,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SiloYield_filter", + "name": "TokenYield_filter", "ofType": null }, "defaultValue": null, @@ -151007,7 +149939,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SiloYield", + "name": "TokenYield", "ofType": null } } @@ -151017,7 +149949,7 @@ "deprecationReason": null }, { - "name": "silos", + "name": "tokens", "description": null, "args": [ { @@ -151049,7 +149981,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "Silo_orderBy", + "name": "Token_orderBy", "ofType": null }, "defaultValue": null, @@ -151101,7 +150033,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "Silo_filter", + "name": "Token_filter", "ofType": null }, "defaultValue": null, @@ -151120,7 +150052,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Silo", + "name": "Token", "ofType": null } } @@ -151130,23 +150062,7 @@ "deprecationReason": null }, { - "name": "space", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Space", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stalkChange", + "name": "wellOracle", "description": null, "args": [ { @@ -151196,14 +150112,14 @@ ], "type": { "kind": "OBJECT", - "name": "StalkChange", + "name": "WellOracle", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "stalkChanges", + "name": "wellOracles", "description": null, "args": [ { @@ -151235,7 +150151,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "StalkChange_orderBy", + "name": "WellOracle_orderBy", "ofType": null }, "defaultValue": null, @@ -151287,7 +150203,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "StalkChange_filter", + "name": "WellOracle_filter", "ofType": null }, "defaultValue": null, @@ -151306,7 +150222,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "StalkChange", + "name": "WellOracle", "ofType": null } } @@ -151316,7 +150232,64 @@ "deprecationReason": null }, { - "name": "token", + "name": "whitelistToken", + "description": null, + "args": [ + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny", + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "WhitelistToken", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "whitelistTokenSetting", "description": null, "args": [ { @@ -151366,14 +150339,14 @@ ], "type": { "kind": "OBJECT", - "name": "Token", + "name": "WhitelistTokenSetting", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "tokenYield", + "name": "whitelistTokenSettings", "description": null, "args": [ { @@ -151389,21 +150362,53 @@ "deprecationReason": null }, { - "name": "id", + "name": "first", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "WhitelistTokenSetting_orderBy", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": null + }, { "name": "subgraphError", "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", @@ -151419,18 +150424,42 @@ "defaultValue": "deny", "isDeprecated": false, "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "WhitelistTokenSetting_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } ], "type": { - "kind": "OBJECT", - "name": "TokenYield", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "WhitelistTokenSetting", + "ofType": null + } + } + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "tokenYields", + "name": "whitelistTokens", "description": null, "args": [ { @@ -151462,7 +150491,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "TokenYield_orderBy", + "name": "WhitelistToken_orderBy", "ofType": null }, "defaultValue": null, @@ -151514,652 +150543,410 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TokenYield_filter", + "name": "WhitelistToken_filter", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null } - ], + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "WhitelistToken", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SubscriptionWhere", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "address", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "address_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ipfs", + "description": null, "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ipfs_in", + "description": null, + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TokenYield", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "tokens", + "name": "space", "description": null, - "args": [ - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "Token_orderBy", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Token_filter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "space_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null } - ], + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Token", + "description": null, + "fields": [ + { + "name": "decimals", + "description": "Number of decimals", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Token", - "ofType": null - } - } + "kind": "SCALAR", + "name": "BigInt", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "wellOracle", - "description": null, - "args": [ - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny", - "isDeprecated": false, - "deprecationReason": null + "name": "id", + "description": "Smart contract address of the token", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null } - ], + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastPriceUSD", + "description": "Last USD price calculated", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TokenYield", + "description": null, + "fields": [ + { + "name": "beanAPY", + "description": "Bean APY for season", + "args": [], "type": { - "kind": "OBJECT", - "name": "WellOracle", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "wellOracles", - "description": null, - "args": [ - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "WellOracle_orderBy", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "WellOracle_filter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "createdAt", + "description": "Unix timestamp of update", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "WellOracle", - "ofType": null - } - } + "kind": "SCALAR", + "name": "BigInt", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "whitelistToken", - "description": null, - "args": [ - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny", - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "id", + "description": "Token address - season", + "args": [], "type": { - "kind": "OBJECT", - "name": "WhitelistToken", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "whitelistTokenSetting", - "description": null, - "args": [ - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny", - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "season", + "description": "Season for APY calculation", + "args": [], "type": { - "kind": "OBJECT", - "name": "WhitelistTokenSetting", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "whitelistTokenSettings", - "description": null, - "args": [ - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "WhitelistTokenSetting_orderBy", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "WhitelistTokenSetting_filter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "siloYield", + "description": "Related silo yield entity", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "WhitelistTokenSetting", - "ofType": null - } - } + "kind": "OBJECT", + "name": "SiloYield", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "whitelistTokens", - "description": null, - "args": [ - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "WhitelistToken_orderBy", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "WhitelistToken_filter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + "name": "stalkAPY", + "description": "Stalk APY for season", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null } - ], + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token", + "description": "Token being calculated", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "WhitelistToken", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Bytes", + "ofType": null } }, "isDeprecated": false, @@ -152173,16 +150960,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "SubscriptionWhere", + "name": "TokenYield_filter", "description": null, "fields": null, "inputFields": [ { - "name": "address", - "description": null, + "name": "_change_block", + "description": "Filter for the block changed event.", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "BlockChangedFilter", "ofType": null }, "defaultValue": null, @@ -152190,14 +150977,14 @@ "deprecationReason": null }, { - "name": "address_in", + "name": "and", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "TokenYield_filter", "ofType": null } }, @@ -152206,11 +150993,11 @@ "deprecationReason": null }, { - "name": "created", + "name": "beanAPY", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "BigDecimal", "ofType": null }, "defaultValue": null, @@ -152218,11 +151005,11 @@ "deprecationReason": null }, { - "name": "created_gt", + "name": "beanAPY_gt", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "BigDecimal", "ofType": null }, "defaultValue": null, @@ -152230,11 +151017,11 @@ "deprecationReason": null }, { - "name": "created_gte", + "name": "beanAPY_gte", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "BigDecimal", "ofType": null }, "defaultValue": null, @@ -152242,15 +151029,19 @@ "deprecationReason": null }, { - "name": "created_in", + "name": "beanAPY_in", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } } }, "defaultValue": null, @@ -152258,11 +151049,11 @@ "deprecationReason": null }, { - "name": "created_lt", + "name": "beanAPY_lt", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "BigDecimal", "ofType": null }, "defaultValue": null, @@ -152270,11 +151061,11 @@ "deprecationReason": null }, { - "name": "created_lte", + "name": "beanAPY_lte", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "BigDecimal", "ofType": null }, "defaultValue": null, @@ -152282,11 +151073,11 @@ "deprecationReason": null }, { - "name": "id", + "name": "beanAPY_not", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigDecimal", "ofType": null }, "defaultValue": null, @@ -152294,15 +151085,19 @@ "deprecationReason": null }, { - "name": "id_in", + "name": "beanAPY_not_in", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } } }, "defaultValue": null, @@ -152310,11 +151105,11 @@ "deprecationReason": null }, { - "name": "ipfs", + "name": "createdAt", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -152322,27 +151117,23 @@ "deprecationReason": null }, { - "name": "ipfs_in", + "name": "createdAt_gt", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "BigInt", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "space", + "name": "createdAt_gte", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -152350,204 +151141,123 @@ "deprecationReason": null }, { - "name": "space_in", + "name": "createdAt_in", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Token", - "description": null, - "fields": [ - { - "name": "decimals", - "description": "Number of decimals", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "id", - "description": "Smart contract address of the token", - "args": [], + "name": "createdAt_lt", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "BigInt", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "lastPriceUSD", - "description": "Last USD price calculated", - "args": [], + "name": "createdAt_lte", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } + "kind": "SCALAR", + "name": "BigInt", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TokenYield", - "description": null, - "fields": [ + }, { - "name": "beanAPY", - "description": "Bean APY for season", - "args": [], + "name": "createdAt_not", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } + "kind": "SCALAR", + "name": "BigInt", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "createdAt", - "description": "Unix timestamp of update", - "args": [], + "name": "createdAt_not_in", + "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "id", - "description": "Token address - season", - "args": [], + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } + "kind": "SCALAR", + "name": "Bytes", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "season", - "description": "Season for APY calculation", - "args": [], + "name": "id_contains", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "Bytes", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "stalkAPY", - "description": "Stalk APY for season", - "args": [], + "name": "id_gt", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } + "kind": "SCALAR", + "name": "Bytes", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, - { - "name": "token", - "description": "Token being calculated", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TokenYield_filter", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "_change_block", - "description": "Filter for the block changed event.", + { + "name": "id_gte", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "BlockChangedFilter", + "kind": "SCALAR", + "name": "Bytes", "ofType": null }, "defaultValue": null, @@ -152555,15 +151265,19 @@ "deprecationReason": null }, { - "name": "and", + "name": "id_in", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "TokenYield_filter", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + } } }, "defaultValue": null, @@ -152571,11 +151285,11 @@ "deprecationReason": null }, { - "name": "beanAPY", + "name": "id_lt", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "Bytes", "ofType": null }, "defaultValue": null, @@ -152583,11 +151297,11 @@ "deprecationReason": null }, { - "name": "beanAPY_gt", + "name": "id_lte", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "Bytes", "ofType": null }, "defaultValue": null, @@ -152595,11 +151309,11 @@ "deprecationReason": null }, { - "name": "beanAPY_gte", + "name": "id_not", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "Bytes", "ofType": null }, "defaultValue": null, @@ -152607,7 +151321,19 @@ "deprecationReason": null }, { - "name": "beanAPY_in", + "name": "id_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_not_in", "description": null, "type": { "kind": "LIST", @@ -152617,7 +151343,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "Bytes", "ofType": null } } @@ -152627,11 +151353,27 @@ "deprecationReason": null }, { - "name": "beanAPY_lt", + "name": "or", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TokenYield_filter", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "season", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -152639,11 +151381,11 @@ "deprecationReason": null }, { - "name": "beanAPY_lte", + "name": "season_gt", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -152651,11 +151393,11 @@ "deprecationReason": null }, { - "name": "beanAPY_not", + "name": "season_gte", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -152663,7 +151405,7 @@ "deprecationReason": null }, { - "name": "beanAPY_not_in", + "name": "season_in", "description": null, "type": { "kind": "LIST", @@ -152673,7 +151415,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "Int", "ofType": null } } @@ -152683,11 +151425,11 @@ "deprecationReason": null }, { - "name": "createdAt", + "name": "season_lt", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -152695,11 +151437,11 @@ "deprecationReason": null }, { - "name": "createdAt_gt", + "name": "season_lte", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -152707,11 +151449,11 @@ "deprecationReason": null }, { - "name": "createdAt_gte", + "name": "season_not", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -152719,7 +151461,7 @@ "deprecationReason": null }, { - "name": "createdAt_in", + "name": "season_not_in", "description": null, "type": { "kind": "LIST", @@ -152729,7 +151471,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigInt", + "name": "Int", "ofType": null } } @@ -152739,11 +151481,11 @@ "deprecationReason": null }, { - "name": "createdAt_lt", + "name": "siloYield", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, "defaultValue": null, @@ -152751,11 +151493,11 @@ "deprecationReason": null }, { - "name": "createdAt_lte", + "name": "siloYield_", "description": null, "type": { - "kind": "SCALAR", - "name": "BigInt", + "kind": "INPUT_OBJECT", + "name": "SiloYield_filter", "ofType": null }, "defaultValue": null, @@ -152763,11 +151505,11 @@ "deprecationReason": null }, { - "name": "createdAt_not", + "name": "siloYield_contains", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, "defaultValue": null, @@ -152775,31 +151517,23 @@ "deprecationReason": null }, { - "name": "createdAt_not_in", + "name": "siloYield_contains_nocase", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "siloYield_ends_with", "description": null, "type": { "kind": "SCALAR", - "name": "Bytes", + "name": "String", "ofType": null }, "defaultValue": null, @@ -152807,11 +151541,11 @@ "deprecationReason": null }, { - "name": "id_contains", + "name": "siloYield_ends_with_nocase", "description": null, "type": { "kind": "SCALAR", - "name": "Bytes", + "name": "String", "ofType": null }, "defaultValue": null, @@ -152819,11 +151553,11 @@ "deprecationReason": null }, { - "name": "id_gt", + "name": "siloYield_gt", "description": null, "type": { "kind": "SCALAR", - "name": "Bytes", + "name": "String", "ofType": null }, "defaultValue": null, @@ -152831,11 +151565,11 @@ "deprecationReason": null }, { - "name": "id_gte", + "name": "siloYield_gte", "description": null, "type": { "kind": "SCALAR", - "name": "Bytes", + "name": "String", "ofType": null }, "defaultValue": null, @@ -152843,7 +151577,7 @@ "deprecationReason": null }, { - "name": "id_in", + "name": "siloYield_in", "description": null, "type": { "kind": "LIST", @@ -152853,7 +151587,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Bytes", + "name": "String", "ofType": null } } @@ -152863,11 +151597,11 @@ "deprecationReason": null }, { - "name": "id_lt", + "name": "siloYield_lt", "description": null, "type": { "kind": "SCALAR", - "name": "Bytes", + "name": "String", "ofType": null }, "defaultValue": null, @@ -152875,11 +151609,11 @@ "deprecationReason": null }, { - "name": "id_lte", + "name": "siloYield_lte", "description": null, "type": { "kind": "SCALAR", - "name": "Bytes", + "name": "String", "ofType": null }, "defaultValue": null, @@ -152887,11 +151621,11 @@ "deprecationReason": null }, { - "name": "id_not", + "name": "siloYield_not", "description": null, "type": { "kind": "SCALAR", - "name": "Bytes", + "name": "String", "ofType": null }, "defaultValue": null, @@ -152899,11 +151633,11 @@ "deprecationReason": null }, { - "name": "id_not_contains", + "name": "siloYield_not_contains", "description": null, "type": { "kind": "SCALAR", - "name": "Bytes", + "name": "String", "ofType": null }, "defaultValue": null, @@ -152911,47 +151645,11 @@ "deprecationReason": null }, { - "name": "id_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TokenYield_filter", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "season", + "name": "siloYield_not_contains_nocase", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -152959,11 +151657,11 @@ "deprecationReason": null }, { - "name": "season_gt", + "name": "siloYield_not_ends_with", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -152971,11 +151669,11 @@ "deprecationReason": null }, { - "name": "season_gte", + "name": "siloYield_not_ends_with_nocase", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -152983,7 +151681,7 @@ "deprecationReason": null }, { - "name": "season_in", + "name": "siloYield_not_in", "description": null, "type": { "kind": "LIST", @@ -152993,7 +151691,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } } @@ -153003,11 +151701,11 @@ "deprecationReason": null }, { - "name": "season_lt", + "name": "siloYield_not_starts_with", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -153015,11 +151713,11 @@ "deprecationReason": null }, { - "name": "season_lte", + "name": "siloYield_not_starts_with_nocase", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -153027,11 +151725,11 @@ "deprecationReason": null }, { - "name": "season_not", + "name": "siloYield_starts_with", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -153039,20 +151737,12 @@ "deprecationReason": null }, { - "name": "season_not_in", + "name": "siloYield_starts_with_nocase", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -153343,6 +152033,48 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "siloYield", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "siloYield__beansPerSeasonEMA", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "siloYield__beta", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "siloYield__createdAt", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "siloYield__id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "siloYield__season", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "siloYield__u", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "stalkAPY", "description": null, diff --git a/projects/ui/src/util/Interpolate.ts b/projects/ui/src/util/Interpolate.ts index a4e088484a..aef2a5841b 100644 --- a/projects/ui/src/util/Interpolate.ts +++ b/projects/ui/src/util/Interpolate.ts @@ -95,7 +95,10 @@ export const interpolateFarmerStalk = ( // Reached a data point for which we have a snapshot. // Use the corresponding total stalk value. currStalk = toTokenUnitsBN(snapshots[j].stalk, STALK.decimals); - currSeeds = toTokenUnitsBN(snapshots[j].seeds, SEEDS.decimals); + currSeeds = toTokenUnitsBN( + snapshots[j].grownStalkPerBdvPerSeason, + SEEDS.decimals + ); currTimestamp = DateTime.fromJSDate( secondsToDate(snapshots[j].createdAt) ); From 62c70192e226c007441fe0a5343b3582f1d5a5f5 Mon Sep 17 00:00:00 2001 From: Cujowolf Date: Fri, 5 Jan 2024 09:45:46 -0600 Subject: [PATCH 12/14] Historical cache update --- .../src/utils/HistoricYield.ts | 69688 ---------------- 1 file changed, 69688 deletions(-) diff --git a/projects/subgraph-beanstalk/src/utils/HistoricYield.ts b/projects/subgraph-beanstalk/src/utils/HistoricYield.ts index 073b89d989..741aff0793 100644 --- a/projects/subgraph-beanstalk/src/utils/HistoricYield.ts +++ b/projects/subgraph-beanstalk/src/utils/HistoricYield.ts @@ -1,69691 +1,3 @@ -export const HISTORIC_VAPY_8_000 = [ - ["6075", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - [ - "6076", - "0.27424239112625226", - "2.2749383182289202", - "0.0", - "0.0", - "0.0", - "0.0", - "0.3811350103508757", - "4.209024053776117", - "0.0", - "0.0", - "0.16734977190162886" - ], - [ - "6077", - "0.5171022739728166", - "2.737045566152222", - "0.0", - "0.0", - "0.0", - "0.0", - "0.7106235607779896", - "4.819485905468503", - "0.0", - "0.0", - "0.3235809871676435" - ], - [ - "6078", - "0.7646693980433001", - "3.207347522260841", - "0.0", - "0.0", - "0.0", - "0.0", - "1.0401770561927184", - "5.430782096614851", - "0.0", - "0.0", - "0.48916173989388184" - ], - [ - "6079", - "1.0166468090366558", - "3.685422831691553", - "0.0", - "0.0", - "0.0", - "0.0", - "1.370081686301043", - "6.043371686186665", - "0.0", - "0.0", - "0.6632119317722683" - ], - [ - "6080", - "1.3480915942916019", - "4.313693434015722", - "0.0", - "0.0", - "0.0", - "0.0", - "1.7968186756498494", - "6.83678539748505", - "0.0", - "0.0", - "0.8993645129333543" - ], - [ - "6081", - "1.7043110374174266", - "4.98797423988805", - "0.0", - "0.0", - "0.0", - "0.0", - "2.2479430459068466", - "7.676126309824097", - "0.0", - "0.0", - "1.1606790289280067" - ], - [ - "6082", - "2.057575750559328", - "5.656010003736882", - "0.0", - "0.0", - "0.0", - "0.0", - "2.6888081956595578", - "8.497030712182685", - "0.0", - "0.0", - "1.4263433054590982" - ], - [ - "6083", - "2.403050854835827", - "6.308794139652817", - "0.0", - "0.0", - "0.0", - "0.0", - "3.114599889942562", - "9.29037694715371", - "0.0", - "0.0", - "1.6915018197290916" - ], - [ - "6084", - "2.73154670259935", - "6.929484008359138", - "0.0", - "0.0", - "0.0", - "0.0", - "3.5150149332096077", - "10.03731884133391", - "0.0", - "0.0", - "1.9480784719890922" - ], - [ - "6085", - "3.059974539093891", - "7.549356896938624", - "0.0", - "0.0", - "0.0", - "0.0", - "3.9118528282882425", - "10.777474980793578", - "0.0", - "0.0", - "2.208096249899539" - ], - [ - "6086", - "3.3806732580778656", - "8.15438960550353", - "0.0", - "0.0", - "0.0", - "0.0", - "4.296187050187646", - "11.494617716173789", - "0.0", - "0.0", - "2.465159465968085" - ], - [ - "6087", - "3.7182639935768775", - "8.791009713799857", - "0.0", - "0.0", - "0.0", - "0.0", - "4.69775425263644", - "12.244146763851111", - "0.0", - "0.0", - "2.738773734517314" - ], - [ - "6088", - "4.072244579788177", - "9.458317656096915", - "0.0", - "0.0", - "0.0", - "0.0", - "5.115801038119264", - "13.024722883084909", - "0.0", - "0.0", - "3.028688121457091" - ], - [ - "6089", - "4.422398732356199", - "10.118188941838442", - "0.0", - "0.0", - "0.0", - "0.0", - "5.526594733745346", - "13.791977353825157", - "0.0", - "0.0", - "3.3182027309670534" - ], - [ - "6090", - "4.660033980163443", - "10.566258302190146", - "0.0", - "0.0", - "0.0", - "0.0", - "5.803787215830424", - "14.310245730555446", - "0.0", - "0.0", - "3.5162807444964628" - ], - [ - "6091", - "4.909355491002567", - "11.036000771920472", - "0.0", - "0.0", - "0.0", - "0.0", - "6.093596442451045", - "14.851862016590081", - "0.0", - "0.0", - "3.7251145395540886" - ], - [ - "6092", - "5.124721134962777", - "11.442069221180775", - "0.0", - "0.0", - "0.0", - "0.0", - "6.342859692527212", - "15.31822127992331", - "0.0", - "0.0", - "3.9065825773983414" - ], - [ - "6093", - "6.200798392002116", - "13.47222768969977", - "0.0", - "0.0", - "0.0", - "0.0", - "7.576279438033836", - "17.629170698571773", - "0.0", - "0.0", - "4.8253173459703955" - ], - [ - "6094", - "7.765037520480549", - "16.41761451598825", - "0.0", - "0.0", - "0.0", - "0.0", - "9.344341139093864", - "20.93911157526735", - "0.0", - "0.0", - "6.185733901867234" - ], - [ - "6095", - "9.442160386324698", - "19.57182835848517", - "0.0", - "0.0", - "0.0", - "0.0", - "11.214004432204634", - "24.43874543531256", - "0.0", - "0.0", - "7.670316340444763" - ], - [ - "6096", - "10.963383556482732", - "22.431614756229614", - "0.0", - "0.0", - "0.0", - "0.0", - "12.89128416535479", - "27.579347973985367", - "0.0", - "0.0", - "9.035482947610676" - ], - [ - "6097", - "11.808552465523068", - "24.020972675181387", - "0.0", - "0.0", - "0.0", - "0.0", - "13.816441313709621", - "29.31303093393536", - "0.0", - "0.0", - "9.800663617336513" - ], - [ - "6098", - "11.987553022425706", - "24.358270556254432", - "0.0", - "0.0", - "0.0", - "0.0", - "14.011525207288765", - "29.67946145924244", - "0.0", - "0.0", - "9.963580837562647" - ], - [ - "6099", - "12.301947392182605", - "24.949119494296518", - "0.0", - "0.0", - "0.0", - "0.0", - "14.354505634610959", - "30.321906575803034", - "0.0", - "0.0", - "10.24938914975425" - ], - [ - "6100", - "12.586897301060262", - "25.48502222293112", - "0.0", - "0.0", - "0.0", - "0.0", - "14.664726584496815", - "30.903492513647976", - "0.0", - "0.0", - "10.509068017623706" - ], - [ - "6101", - "12.553691398740334", - "25.423126725543273", - "0.0", - "0.0", - "0.0", - "0.0", - "14.628331383887767", - "30.835900342333833", - "0.0", - "0.0", - "10.479051413592902" - ], - [ - "6102", - "12.258575187585473", - "24.86896411606075", - "0.0", - "0.0", - "0.0", - "0.0", - "14.306570042463452", - "30.233683623092357", - "0.0", - "0.0", - "10.210580332707496" - ], - [ - "6103", - "11.85889580582127", - "24.117972502302347", - "0.0", - "0.0", - "0.0", - "0.0", - "13.870296327218693", - "29.416670798477828", - "0.0", - "0.0", - "9.847495284423845" - ], - [ - "6104", - "11.37777638191188", - "23.213551959760434", - "0.0", - "0.0", - "0.0", - "0.0", - "13.344135828951321", - "28.43099789827127", - "0.0", - "0.0", - "9.411416934872442" - ], - [ - "6105", - "11.117581497261606", - "22.72373892597225", - "0.0", - "0.0", - "0.0", - "0.0", - "13.05935167042955", - "27.89676477032474", - "0.0", - "0.0", - "9.17581132409366" - ], - [ - "6106", - "10.693311580784384", - "21.926415644257293", - "0.0", - "0.0", - "0.0", - "0.0", - "12.5934326094241", - "27.024432389226472", - "0.0", - "0.0", - "8.793190552144665" - ], - [ - "6107", - "10.115596687499998", - "20.840214308373465", - "0.0", - "0.0", - "0.0", - "0.0", - "11.957361538053496", - "25.83316510171279", - "0.0", - "0.0", - "8.2738318369465" - ], - [ - "6108", - "9.428710692534588", - "19.54897643181873", - "0.0", - "0.0", - "0.0", - "0.0", - "11.19790873535026", - "24.411476440463815", - "0.0", - "0.0", - "7.6595126497189145" - ], - [ - "6109", - "8.759813377391575", - "18.290521920762014", - "0.0", - "0.0", - "0.0", - "0.0", - "10.455322622454199", - "23.020607017797655", - "0.0", - "0.0", - "7.0643041323289495" - ], - [ - "6110", - "8.146858017596369", - "17.13727676334364", - "0.0", - "0.0", - "0.0", - "0.0", - "9.771476665121225", - "21.74016626030392", - "0.0", - "0.0", - "6.522239370071514" - ], - [ - "6111", - "7.62190475254565", - "16.149761355507184", - "0.0", - "0.0", - "0.0", - "0.0", - "9.182892030333173", - "20.638674193470397", - "0.0", - "0.0", - "6.060917474758127" - ], - [ - "6112", - "7.152424327321423", - "15.266382331641791", - "0.0", - "0.0", - "0.0", - "0.0", - "8.654174978025308", - "19.649307676501316", - "0.0", - "0.0", - "5.650673676617539" - ], - [ - "6113", - "6.732988166849364", - "14.476920616152375", - "0.0", - "0.0", - "0.0", - "0.0", - "8.179818501871623", - "18.761676854084765", - "0.0", - "0.0", - "5.286157831827105" - ], - [ - "6114", - "6.357172049289699", - "13.769436049610512", - "0.0", - "0.0", - "0.0", - "0.0", - "7.753013241023476", - "17.96314926535523", - "0.0", - "0.0", - "4.961330857555921" - ], - [ - "6115", - "6.023149393494945", - "13.140553201183122", - "0.0", - "0.0", - "0.0", - "0.0", - "7.372133740735352", - "17.250693468279852", - "0.0", - "0.0", - "4.674165046254538" - ], - [ - "6116", - "5.705116719218581", - "12.541666873098807", - "0.0", - "0.0", - "0.0", - "0.0", - "7.00806098094048", - "16.569772853896225", - "0.0", - "0.0", - "4.402172457496682" - ], - [ - "6117", - "5.419445814586676", - "12.003111325128378", - "0.0", - "0.0", - "0.0", - "0.0", - "6.6800190156491706", - "15.955709717587052", - "0.0", - "0.0", - "4.158872613524182" - ], - [ - "6118", - "5.154644333782125", - "11.504271998203977", - "0.0", - "0.0", - "0.0", - "0.0", - "6.374568454544709", - "15.38457704208834", - "0.0", - "0.0", - "3.9347202130195407" - ], - [ - "6119", - "4.912503735880933", - "11.048045819385516", - "0.0", - "0.0", - "0.0", - "0.0", - "6.0942297753486026", - "14.860479398908215", - "0.0", - "0.0", - "3.7307776964132637" - ], - [ - "6120", - "4.664332185910726", - "10.579977568429415", - "0.0", - "0.0", - "0.0", - "0.0", - "5.806022368254175", - "14.321272820614464", - "0.0", - "0.0", - "3.5226420035672765" - ], - [ - "6121", - "4.440691324961162", - "10.158319027196315", - "0.0", - "0.0", - "0.0", - "0.0", - "5.545198379760828", - "13.833645820045762", - "0.0", - "0.0", - "3.3361842701614957" - ], - [ - "6122", - "4.255573236015083", - "9.80936596995957", - "0.0", - "0.0", - "0.0", - "0.0", - "5.328480970270222", - "13.428702485648165", - "0.0", - "0.0", - "3.1826655017599434" - ], - [ - "6123", - "4.073736985265742", - "9.46641888448366", - "0.0", - "0.0", - "0.0", - "0.0", - "5.114964449402182", - "13.02964493845697", - "0.0", - "0.0", - "3.032509521129303" - ], - [ - "6124", - "3.907589733779543", - "9.153193903960528", - "0.0", - "0.0", - "0.0", - "0.0", - "4.919141178144831", - "12.663934349307777", - "0.0", - "0.0", - "2.8960382894142547" - ], - [ - "6125", - "3.7699924119584027", - "8.893696689861791", - "0.0", - "0.0", - "0.0", - "0.0", - "4.7565110586940635", - "12.360185626567247", - "0.0", - "0.0", - "2.7834737652227415" - ], - [ - "6126", - "3.634135013702478", - "8.637441341645445", - "0.0", - "0.0", - "0.0", - "0.0", - "4.595490094694088", - "12.0594772410755", - "0.0", - "0.0", - "2.672779932710868" - ], - [ - "6127", - "3.5036883317459044", - "8.391355914783437", - "0.0", - "0.0", - "0.0", - "0.0", - "4.440445150428017", - "11.769967132257289", - "0.0", - "0.0", - "2.5669315130637917" - ], - [ - "6128", - "3.3788989577736452", - "8.155899997212822", - "0.0", - "0.0", - "0.0", - "0.0", - "4.291711537865106", - "11.492268206137071", - "0.0", - "0.0", - "2.4660863776821844" - ], - [ - "6129", - "3.2620594522915405", - "7.935403743627776", - "0.0", - "0.0", - "0.0", - "0.0", - "4.152073056997932", - "11.23157456313216", - "0.0", - "0.0", - "2.3720458475851487" - ], - [ - "6130", - "3.152844810278226", - "7.729267323488148", - "0.0", - "0.0", - "0.0", - "0.0", - "4.021198604456701", - "10.987273649612666", - "0.0", - "0.0", - "2.2844910160997505" - ], - [ - "6131", - "3.050450464759227", - "7.535943869704928", - "0.0", - "0.0", - "0.0", - "0.0", - "3.8981956853601187", - "10.75765414810388", - "0.0", - "0.0", - "2.2027052441583352" - ], - [ - "6132", - "2.952046724052301", - "7.350039806033262", - "0.0", - "0.0", - "0.0", - "0.0", - "3.7797298907504207", - "10.536420808037661", - "0.0", - "0.0", - "2.1243635573541817" - ], - [ - "6133", - "2.872184891034236", - "7.1992396405315695", - "0.0", - "0.0", - "0.0", - "0.0", - "3.683318160260804", - "10.35651036487982", - "0.0", - "0.0", - "2.0610516218076675" - ], - [ - "6134", - "2.7839168286909093", - "7.032540213047249", - "0.0", - "0.0", - "0.0", - "0.0", - "3.5765210711977953", - "10.157235856686711", - "0.0", - "0.0", - "1.9913125861840233" - ], - [ - "6135", - "2.7006581795381708", - "6.875248353443051", - "0.0", - "0.0", - "0.0", - "0.0", - "3.4755627846479498", - "9.968838121731018", - "0.0", - "0.0", - "1.9257535744283918" - ], - [ - "6136", - "2.6243987469252317", - "6.7311748903612125", - "0.0", - "0.0", - "0.0", - "0.0", - "3.38287647226618", - "9.79591363867083", - "0.0", - "0.0", - "1.8659210215842836" - ], - [ - "6137", - "2.5500088711130044", - "6.590610855274405", - "0.0", - "0.0", - "0.0", - "0.0", - "3.2922671504293364", - "9.62687657023789", - "0.0", - "0.0", - "1.8077505917966723" - ], - [ - "6138", - "2.4781928954270542", - "6.454924137992266", - "0.0", - "0.0", - "0.0", - "0.0", - "3.204587846549767", - "9.463362320688555", - "0.0", - "0.0", - "1.7517979443043414" - ], - [ - "6139", - "2.4096842451864986", - "6.325404053889475", - "0.0", - "0.0", - "0.0", - "0.0", - "3.120798503133121", - "9.307037129332318", - "0.0", - "0.0", - "1.6985699872398756" - ], - [ - "6140", - "2.3459712163088127", - "6.204979351695489", - "0.0", - "0.0", - "0.0", - "0.0", - "3.042692562131715", - "9.161385576918587", - "0.0", - "0.0", - "1.6492498704859104" - ], - [ - "6141", - "2.284335773839325", - "6.088479453455549", - "0.0", - "0.0", - "0.0", - "0.0", - "2.9669763384568055", - "9.02021984733141", - "0.0", - "0.0", - "1.6016952092218442" - ], - [ - "6142", - "2.2270625208744965", - "5.9801926114750215", - "0.0", - "0.0", - "0.0", - "0.0", - "2.8964910862088296", - "8.888795629337432", - "0.0", - "0.0", - "1.557633955540163" - ], - [ - "6143", - "2.236692584169603", - "5.997276007333169", - "0.0", - "0.0", - "0.0", - "0.0", - "2.9088808375818473", - "8.910484302222704", - "0.0", - "0.0", - "1.564504330757359" - ], - [ - "6144", - "2.1969234933196655", - "5.921338050199739", - "0.0", - "0.0", - "0.0", - "0.0", - "2.8602207861196742", - "8.818829781560334", - "0.0", - "0.0", - "1.5336262005196566" - ], - [ - "6145", - "2.151653939739252", - "5.835910598784561", - "0.0", - "0.0", - "0.0", - "0.0", - "2.804270688439616", - "8.714744387536642", - "0.0", - "0.0", - "1.499037191038888" - ], - [ - "6146", - "2.1060149601498472", - "5.749208747078242", - "0.0", - "0.0", - "0.0", - "0.0", - "2.7480420313050185", - "8.609434680437609", - "0.0", - "0.0", - "1.4639878889946765" - ], - [ - "6147", - "2.063888694298649", - "5.66966029375272", - "0.0", - "0.0", - "0.0", - "0.0", - "2.6958329303112576", - "8.512276977341303", - "0.0", - "0.0", - "1.4319444582860408" - ], - [ - "6148", - "2.018225577869845", - "5.583200324314921", - "0.0", - "0.0", - "0.0", - "0.0", - "2.6392566543070277", - "8.40671861335346", - "0.0", - "0.0", - "1.3971945014326628" - ], - [ - "6149", - "1.9738463716638406", - "5.499270831374981", - "0.0", - "0.0", - "0.0", - "0.0", - "2.5841309090436257", - "8.304011799877546", - "0.0", - "0.0", - "1.3635618342840554" - ], - [ - "6150", - "1.93283342135623", - "5.4215435769491505", - "0.0", - "0.0", - "0.0", - "0.0", - "2.5331787714530494", - "8.20889182764818", - "0.0", - "0.0", - "1.3324880712594105" - ], - [ - "6151", - "1.8916547988230759", - "5.343661517289458", - "0.0", - "0.0", - "0.0", - "0.0", - "2.4818643757743843", - "8.1133142465217", - "0.0", - "0.0", - "1.3014452218717671" - ], - [ - "6152", - "1.8520121518361323", - "5.268665973804176", - "0.0", - "0.0", - "0.0", - "0.0", - "2.43239303727441", - "8.021163062794905", - "0.0", - "0.0", - "1.271631266397855" - ], - [ - "6153", - "1.8141954014192054", - "5.197128061389346", - "0.0", - "0.0", - "0.0", - "0.0", - "2.3851246759548874", - "7.933135540906162", - "0.0", - "0.0", - "1.2432661268835232" - ], - [ - "6154", - "1.7784915043437497", - "5.1294601043909465", - "0.0", - "0.0", - "0.0", - "0.0", - "2.3404880975292564", - "7.849863186555433", - "0.0", - "0.0", - "1.2164949111582433" - ], - [ - "6155", - "1.743065705395803", - "5.062403973946014", - "0.0", - "0.0", - "0.0", - "0.0", - "2.2960942039628773", - "7.767165151594887", - "0.0", - "0.0", - "1.1900372068287284" - ], - [ - "6156", - "1.709421859996416", - "4.998708359485489", - "0.0", - "0.0", - "0.0", - "0.0", - "2.2538772719784776", - "7.688519985791404", - "0.0", - "0.0", - "1.1649664480143544" - ], - [ - "6157", - "1.6802562000372991", - "4.94350814341114", - "0.0", - "0.0", - "0.0", - "0.0", - "2.217222316942326", - "7.6202685981353415", - "0.0", - "0.0", - "1.1432900831322723" - ], - [ - "6158", - "1.6516225944234244", - "4.8893142657614055", - "0.0", - "0.0", - "0.0", - "0.0", - "2.181191001149976", - "7.553187476533927", - "0.0", - "0.0", - "1.1220541876968726" - ], - [ - "6159", - "1.6230116619796362", - "4.835160008392503", - "0.0", - "0.0", - "0.0", - "0.0", - "2.1451442314188216", - "7.486083354393813", - "0.0", - "0.0", - "1.1008790925404508" - ], - [ - "6160", - "1.595497884814758", - "4.783076843873133", - "0.0", - "0.0", - "0.0", - "0.0", - "2.1104388260532545", - "7.421478753350773", - "0.0", - "0.0", - "1.0805569435762616" - ], - [ - "6161", - "1.5712199863505845", - "4.7371074432869715", - "0.0", - "0.0", - "0.0", - "0.0", - "2.07978454776274", - "7.364408426454441", - "0.0", - "0.0", - "1.062655424938429" - ], - [ - "6162", - "1.5498996420801794", - "4.69673330724564", - "0.0", - "0.0", - "0.0", - "0.0", - "2.052838683279687", - "7.314242352227156", - "0.0", - "0.0", - "1.0469606008806718" - ], - [ - "6163", - "1.5292131923016685", - "4.657575750795867", - "0.0", - "0.0", - "0.0", - "0.0", - "2.026661269595089", - "7.265533088531233", - "0.0", - "0.0", - "1.0317651150082479" - ], - [ - "6164", - "1.5107665628955889", - "4.622658352969926", - "0.0", - "0.0", - "0.0", - "0.0", - "2.0032967613110495", - "7.2220631068650425", - "0.0", - "0.0", - "1.018236364480128" - ], - [ - "6165", - "1.488330739150196", - "4.580176695480863", - "0.0", - "0.0", - "0.0", - "0.0", - "1.9748581722978238", - "7.169142086348401", - "0.0", - "0.0", - "1.0018033060025684" - ], - [ - "6166", - "1.471329002971606", - "4.547970806225727", - "0.0", - "0.0", - "0.0", - "0.0", - "1.9532935118050827", - "7.128999970208047", - "0.0", - "0.0", - "0.9893644941381292" - ], - [ - "6167", - "1.4563528564699189", - "4.5195586278840505", - "0.0", - "0.0", - "0.0", - "0.0", - "1.9343030256706877", - "7.093597818599246", - "0.0", - "0.0", - "0.9784026872691499" - ], - [ - "6168", - "1.4379078315594367", - "4.484616941546291", - "0.0", - "0.0", - "0.0", - "0.0", - "1.9108717117861804", - "7.049986875870951", - "0.0", - "0.0", - "0.9649439513326928" - ], - [ - "6169", - "1.419919440330867", - "4.450556447332277", - "0.0", - "0.0", - "0.0", - "0.0", - "1.8879929559625601", - "7.007429469989241", - "0.0", - "0.0", - "0.951845924699174" - ], - [ - "6170", - "1.402053996160504", - "4.416720371438499", - "0.0", - "0.0", - "0.0", - "0.0", - "1.8652543656104033", - "6.965126623491731", - "0.0", - "0.0", - "0.9388536267106048" - ], - [ - "6171", - "1.3882325936506255", - "4.390542237768488", - "0.0", - "0.0", - "0.0", - "0.0", - "1.8476496843075474", - "6.932376435848011", - "0.0", - "0.0", - "0.9288155029937032" - ], - [ - "6172", - "1.3753501839260946", - "4.366141204839272", - "0.0", - "0.0", - "0.0", - "0.0", - "1.8312307359929547", - "6.901832788457856", - "0.0", - "0.0", - "0.9194696318592346" - ], - [ - "6173", - "1.361321025730094", - "4.339557940520178", - "0.0", - "0.0", - "0.0", - "0.0", - "1.8133427085830933", - "6.8685460853374884", - "0.0", - "0.0", - "0.9092993428770948" - ], - [ - "6174", - "1.3446413842735836", - "4.30793949282133", - "0.0", - "0.0", - "0.0", - "0.0", - "1.7920644250296032", - "6.828937982613185", - "0.0", - "0.0", - "0.8972183435175642" - ], - [ - "6175", - "1.3227533430770297", - "4.2664312843943", - "0.0", - "0.0", - "0.0", - "0.0", - "1.7641216991202637", - "6.776909600789825", - "0.0", - "0.0", - "0.8813849870337956" - ], - [ - "6176", - "1.3023804220417616", - "4.227830593083733", - "0.0", - "0.0", - "0.0", - "0.0", - "1.7380696404875375", - "6.728451718879269", - "0.0", - "0.0", - "0.8666912035959856" - ], - [ - "6177", - "1.2826383030100326", - "4.190424838495293", - "0.0", - "0.0", - "0.0", - "0.0", - "1.712798053654343", - "6.6814512336191125", - "0.0", - "0.0", - "0.8524785523657221" - ], - [ - "6178", - "1.2631110803018437", - "4.153401500816642", - "0.0", - "0.0", - "0.0", - "0.0", - "1.6877868171128496", - "6.634909276498851", - "0.0", - "0.0", - "0.8384353434908375" - ], - [ - "6179", - "1.2446520374295258", - "4.118421286439424", - "0.0", - "0.0", - "0.0", - "0.0", - "1.6641120322371343", - "6.590882514231302", - "0.0", - "0.0", - "0.8251920426219169" - ], - [ - "6180", - "1.226697955033824", - "4.084395516212926", - "0.0", - "0.0", - "0.0", - "0.0", - "1.6410635899722745", - "6.548022536206471", - "0.0", - "0.0", - "0.8123323200953732" - ], - [ - "6181", - "1.2090951746608027", - "4.051024289679879", - "0.0", - "0.0", - "0.0", - "0.0", - "1.6184494407386545", - "6.505960814014384", - "0.0", - "0.0", - "0.7997409085829509" - ], - [ - "6182", - "1.1915589772322628", - "4.017765439981402", - "0.0", - "0.0", - "0.0", - "0.0", - "1.5959054029253998", - "6.464016788235606", - "0.0", - "0.0", - "0.7872125515391257" - ], - [ - "6183", - "1.178913576970865", - "3.993713653984123", - "0.0", - "0.0", - "0.0", - "0.0", - "1.5796656536496925", - "6.433717413981169", - "0.0", - "0.0", - "0.7781615002920375" - ], - [ - "6184", - "1.1617160112800755", - "3.960879565037402", - "0.0", - "0.0", - "0.0", - "0.0", - "1.5576159870982642", - "6.3924236229694325", - "0.0", - "0.0", - "0.7658160354618866" - ], - [ - "6185", - "1.1458449774700024", - "3.9307910945019016", - "0.0", - "0.0", - "0.0", - "0.0", - "1.5371544593411952", - "6.354381974664264", - "0.0", - "0.0", - "0.7545354955988095" - ], - [ - "6186", - "1.1310950281722585", - "3.9028304611294358", - "0.0", - "0.0", - "0.0", - "0.0", - "1.5181208397688732", - "6.319002040264331", - "0.0", - "0.0", - "0.7440692165756435" - ], - [ - "6187", - "1.117403250791789", - "3.876874762366637", - "0.0", - "0.0", - "0.0", - "0.0", - "1.5004389227331068", - "6.286136734754947", - "0.0", - "0.0", - "0.7343675788504714" - ], - [ - "6188", - "1.1039977027540522", - "3.8514587799971296", - "0.0", - "0.0", - "0.0", - "0.0", - "1.4831145511363657", - "6.253935426912096", - "0.0", - "0.0", - "0.7248808543717388" - ], - [ - "6189", - "1.0906939859082567", - "3.8262317471385674", - "0.0", - "0.0", - "0.0", - "0.0", - "1.4659104006049677", - "6.221955403412264", - "0.0", - "0.0", - "0.7154775712115455" - ], - [ - "6190", - "1.0766831184199015", - "3.799662144391168", - "0.0", - "0.0", - "0.0", - "0.0", - "1.4477781840783448", - "6.188251500192683", - "0.0", - "0.0", - "0.7055880527614582" - ], - [ - "6191", - "1.0630650693391128", - "3.773840571974527", - "0.0", - "0.0", - "0.0", - "0.0", - "1.4301388020733479", - "6.155470987445436", - "0.0", - "0.0", - "0.6959913366048779" - ], - [ - "6192", - "1.0497270247559665", - "3.7485460401897663", - "0.0", - "0.0", - "0.0", - "0.0", - "1.4128501456672964", - "6.12334050180658", - "0.0", - "0.0", - "0.6866039038446368" - ], - [ - "6193", - "1.0403878817364476", - "3.7308337777343645", - "0.0", - "0.0", - "0.0", - "0.0", - "1.4007373056663024", - "6.100829342445608", - "0.0", - "0.0", - "0.6800384578065928" - ], - [ - "6194", - "1.0277464794826852", - "3.706798910089274", - "0.0", - "0.0", - "0.0", - "0.0", - "1.3843566547525779", - "6.070312749944018", - "0.0", - "0.0", - "0.6711363042127924" - ], - [ - "6195", - "1.0152637142071148", - "3.683126409095802", - "0.0", - "0.0", - "0.0", - "0.0", - "1.3681429837079626", - "6.040188105645969", - "0.0", - "0.0", - "0.6623844447062671" - ], - [ - "6196", - "1.0031207796661787", - "3.6600931823341636", - "0.0", - "0.0", - "0.0", - "0.0", - "1.3523612789464274", - "6.010862174813081", - "0.0", - "0.0", - "0.6538802803859298" - ], - [ - "6197", - "0.9912311250104671", - "3.637543457710688", - "0.0", - "0.0", - "0.0", - "0.0", - "1.336896175659673", - "5.982131173519864", - "0.0", - "0.0", - "0.6455660743612612" - ], - [ - "6198", - "0.9796311588930019", - "3.615540833541363", - "0.0", - "0.0", - "0.0", - "0.0", - "1.3217980786333037", - "5.95408159761654", - "0.0", - "0.0", - "0.6374642391527001" - ], - [ - "6199", - "0.9683141450167974", - "3.594072170467551", - "0.0", - "0.0", - "0.0", - "0.0", - "1.3070590913775602", - "5.926698144981508", - "0.0", - "0.0", - "0.6295691986560346" - ], - [ - "6200", - "0.9557813371784109", - "3.570198889818641", - "0.0", - "0.0", - "0.0", - "0.0", - "1.2907670074913289", - "5.896306076669055", - "0.0", - "0.0", - "0.6207956668654928" - ], - [ - "6201", - "0.9452192065901663", - "3.550157249530496", - "0.0", - "0.0", - "0.0", - "0.0", - "1.2769932634430197", - "5.8707142779024775", - "0.0", - "0.0", - "0.613445149737313" - ], - [ - "6202", - "0.934584019568501", - "3.5299774643715836", - "0.0", - "0.0", - "0.0", - "0.0", - "1.2631148467137012", - "5.844930819126874", - "0.0", - "0.0", - "0.6060531924233008" - ], - [ - "6203", - "0.9241798359786976", - "3.5102368483249244", - "0.0", - "0.0", - "0.0", - "0.0", - "1.2495285272780905", - "5.819693273924256", - "0.0", - "0.0", - "0.5988311446793048" - ], - [ - "6204", - "0.9140092754410314", - "3.490939813445816", - "0.0", - "0.0", - "0.0", - "0.0", - "1.2362385073499464", - "5.795008606803316", - "0.0", - "0.0", - "0.5917800435321163" - ], - [ - "6205", - "0.9040249482666907", - "3.471991875197065", - "0.0", - "0.0", - "0.0", - "0.0", - "1.2231852993556245", - "5.770760347877166", - "0.0", - "0.0", - "0.5848645971777567" - ], - [ - "6206", - "0.894126566682834", - "3.4531930118768592", - "0.0", - "0.0", - "0.0", - "0.0", - "1.2102422258215102", - "5.746700648298724", - "0.0", - "0.0", - "0.5780109075441577" - ], - [ - "6207", - "0.8846257782581246", - "3.4351661599567884", - "0.0", - "0.0", - "0.0", - "0.0", - "1.1978040404894092", - "5.723603089887517", - "0.0", - "0.0", - "0.5714475160268399" - ], - [ - "6208", - "0.8752627320439995", - "3.4173953265195425", - "0.0", - "0.0", - "0.0", - "0.0", - "1.1855409861762425", - "5.700825705475943", - "0.0", - "0.0", - "0.5649844779117567" - ], - [ - "6209", - "0.8673466888070037", - "3.4023701720569623", - "0.0", - "0.0", - "0.0", - "0.0", - "1.1751675854292951", - "5.68155867859183", - "0.0", - "0.0", - "0.5595257921847123" - ], - [ - "6210", - "0.8617759636760638", - "3.3917975675860097", - "0.0", - "0.0", - "0.0", - "0.0", - "1.1678639174282712", - "5.667995266258949", - "0.0", - "0.0", - "0.5556880099238564" - ], - [ - "6211", - "0.8561407444415672", - "3.3811027780947795", - "0.0", - "0.0", - "0.0", - "0.0", - "1.1604728867340965", - "5.654270554317504", - "0.0", - "0.0", - "0.5518086021490378" - ], - [ - "6212", - "0.8501080047694566", - "3.36965274772462", - "0.0", - "0.0", - "0.0", - "0.0", - "1.1525577859180602", - "5.6395723751091476", - "0.0", - "0.0", - "0.5476582236208528" - ], - [ - "6213", - "0.8437478014115338", - "3.3575687273496606", - "0.0", - "0.0", - "0.0", - "0.0", - "1.1442149407052826", - "5.624064683151463", - "0.0", - "0.0", - "0.5432806621177851" - ], - [ - "6214", - "0.8377791902621763", - "3.346235922409559", - "0.0", - "0.0", - "0.0", - "0.0", - "1.136379484421203", - "5.609510187178805", - "0.0", - "0.0", - "0.5391788961031496" - ], - [ - "6215", - "0.8316438381258714", - "3.334582778579506", - "0.0", - "0.0", - "0.0", - "0.0", - "1.128323482508361", - "5.594542002005648", - "0.0", - "0.0", - "0.5349641937433817" - ], - [ - "6216", - "0.8257543410886532", - "3.3234036940612386", - "0.0", - "0.0", - "0.0", - "0.0", - "1.1205841797582081", - "5.580172136908528", - "0.0", - "0.0", - "0.5309245024190982" - ], - [ - "6217", - "0.8184534935265353", - "3.309519057978", - "0.0", - "0.0", - "0.0", - "0.0", - "1.110997299636026", - "5.562338609383595", - "0.0", - "0.0", - "0.5259096874170447" - ], - [ - "6218", - "0.8103697602952291", - "3.2941751357555717", - "0.0", - "0.0", - "0.0", - "0.0", - "1.1003643344946348", - "5.542598617940162", - "0.0", - "0.0", - "0.5203751860958236" - ], - [ - "6219", - "0.8024615823401879", - "3.2791648011316017", - "0.0", - "0.0", - "0.0", - "0.0", - "1.0899565186259033", - "5.5232784550982865", - "0.0", - "0.0", - "0.5149666460544727" - ], - [ - "6220", - "0.794668426802932", - "3.264370806303482", - "0.0", - "0.0", - "0.0", - "0.0", - "1.0796954604673128", - "5.5042295098163585", - "0.0", - "0.0", - "0.5096413931385513" - ], - [ - "6221", - "0.7870318482642402", - "3.2498715687659914", - "0.0", - "0.0", - "0.0", - "0.0", - "1.0696363253805137", - "5.4855535299271505", - "0.0", - "0.0", - "0.5044273711479668" - ], - [ - "6222", - "0.7795144816146792", - "3.235600339323402", - "0.0", - "0.0", - "0.0", - "0.0", - "1.0597283791866459", - "5.467161657604058", - "0.0", - "0.0", - "0.4993005840427126" - ], - [ - "6223", - "0.7721531161316091", - "3.2216229291489142", - "0.0", - "0.0", - "0.0", - "0.0", - "1.050022068532025", - "5.449142287000797", - "0.0", - "0.0", - "0.49428416373119327" - ], - [ - "6224", - "0.7649327015339141", - "3.2079134375141165", - "0.0", - "0.0", - "0.0", - "0.0", - "1.040496692555072", - "5.431460366410674", - "0.0", - "0.0", - "0.489368710512756" - ], - [ - "6225", - "0.7578414476719517", - "3.194449654101043", - "0.0", - "0.0", - "0.0", - "0.0", - "1.0311368684356315", - "5.414087508872191", - "0.0", - "0.0", - "0.4845460269082721" - ], - [ - "6226", - "0.7508484735317595", - "3.181169371118232", - "0.0", - "0.0", - "0.0", - "0.0", - "1.0219035418725955", - "5.396946572903995", - "0.0", - "0.0", - "0.4797934051909237" - ], - [ - "6227", - "0.7440240015863735", - "3.1682117237209764", - "0.0", - "0.0", - "0.0", - "0.0", - "1.0128872372093847", - "5.380212992290676", - "0.0", - "0.0", - "0.47516076596336243" - ], - [ - "6228", - "0.7389589471083275", - "3.1585983322839133", - "0.0", - "0.0", - "0.0", - "0.0", - "1.0061911033123816", - "5.367790858728157", - "0.0", - "0.0", - "0.4717267909042736" - ], - [ - "6229", - "0.7350072460369272", - "3.151084470155939", - "0.0", - "0.0", - "0.0", - "0.0", - "1.0009709052656919", - "5.35808966157423", - "0.0", - "0.0", - "0.4690435868081626" - ], - [ - "6230", - "0.7291961348792814", - "3.1400374713432577", - "0.0", - "0.0", - "0.0", - "0.0", - "0.9932907658320134", - "5.3438206611294214", - "0.0", - "0.0", - "0.4651015039265494" - ], - [ - "6231", - "0.7232566927083607", - "3.1287504295762036", - "0.0", - "0.0", - "0.0", - "0.0", - "0.9854361004384208", - "5.32923327049485", - "0.0", - "0.0", - "0.4610772849783005" - ], - [ - "6232", - "0.7181622651205426", - "3.119075566437468", - "0.0", - "0.0", - "0.0", - "0.0", - "0.9786936224110367", - "5.316720239844778", - "0.0", - "0.0", - "0.4576309078300485" - ], - [ - "6233", - "0.7144422891658333", - "3.1120131692015947", - "0.0", - "0.0", - "0.0", - "0.0", - "0.9737677485423757", - "5.30758182013227", - "0.0", - "0.0", - "0.4551168297892909" - ], - [ - "6234", - "0.7116504661400268", - "3.1067061489762717", - "0.0", - "0.0", - "0.0", - "0.0", - "0.9700728619001237", - "5.300718657558334", - "0.0", - "0.0", - "0.45322807037993007" - ], - [ - "6235", - "0.7085326904735539", - "3.100746365477994", - "0.0", - "0.0", - "0.0", - "0.0", - "0.9659595856014476", - "5.293035804084773", - "0.0", - "0.0", - "0.4511057953456602" - ], - [ - "6236", - "0.7057881064118644", - "3.095531080881781", - "0.0", - "0.0", - "0.0", - "0.0", - "0.9623248655847346", - "5.286287279487088", - "0.0", - "0.0", - "0.44925134723899424" - ], - [ - "6237", - "0.7029823730407468", - "3.090202065779789", - "0.0", - "0.0", - "0.0", - "0.0", - "0.9586073907513173", - "5.279388470327021", - "0.0", - "0.0", - "0.4473573553301764" - ], - [ - "6238", - "0.6999968858118931", - "3.084521089349064", - "0.0", - "0.0", - "0.0", - "0.0", - "0.9546553342742125", - "5.272040934123343", - "0.0", - "0.0", - "0.4453384373495737" - ], - [ - "6239", - "0.6982363575708205", - "3.081174386821565", - "0.0", - "0.0", - "0.0", - "0.0", - "0.9523230265559613", - "5.2677091982185145", - "0.0", - "0.0", - "0.44414968858567955" - ], - [ - "6240", - "0.6941517672195582", - "3.073420882005945", - "0.0", - "0.0", - "0.0", - "0.0", - "0.946906049052539", - "5.2576630643937206", - "0.0", - "0.0", - "0.44139748538657747" - ], - [ - "6241", - "0.6881791171228119", - "3.0620681194578014", - "0.0", - "0.0", - "0.0", - "0.0", - "0.9389886259723742", - "5.2429607136396035", - "0.0", - "0.0", - "0.43736960827324944" - ], - [ - "6242", - "0.6835151009947579", - "3.053205873006413", - "0.0", - "0.0", - "0.0", - "0.0", - "0.9328022691089116", - "5.231477452957998", - "0.0", - "0.0", - "0.43422793288060413" - ], - [ - "6243", - "0.6803256717742762", - "3.047105578159587", - "0.0", - "0.0", - "0.0", - "0.0", - "0.9285872502235397", - "5.223602189692184", - "0.0", - "0.0", - "0.43206409332501255" - ], - [ - "6244", - "0.6759037859505433", - "3.0387064906183854", - "0.0", - "0.0", - "0.0", - "0.0", - "0.9227174509815894", - "5.21271132667827", - "0.0", - "0.0", - "0.42909012091949733" - ], - [ - "6245", - "0.6704882618291533", - "3.028401770331737", - "0.0", - "0.0", - "0.0", - "0.0", - "0.9155336742431343", - "5.199359566202231", - "0.0", - "0.0", - "0.42544284941517235" - ], - [ - "6246", - "0.6652287274197289", - "3.0184082257264806", - "0.0", - "0.0", - "0.0", - "0.0", - "0.9085481000856036", - "5.186395416311509", - "0.0", - "0.0", - "0.42190935475385416" - ], - [ - "6247", - "0.6597838842002832", - "3.0080660564001365", - "0.0", - "0.0", - "0.0", - "0.0", - "0.9013121039068837", - "5.172971725007724", - "0.0", - "0.0", - "0.41825566449368284" - ], - [ - "6248", - "0.6543238691211232", - "2.997691880525461", - "0.0", - "0.0", - "0.0", - "0.0", - "0.8940543443162723", - "5.159504279219584", - "0.0", - "0.0", - "0.41459339392597416" - ], - [ - "6249", - "0.649130499806385", - "2.9878204058596913", - "0.0", - "0.0", - "0.0", - "0.0", - "0.8871499277973994", - "5.146688103352015", - "0.0", - "0.0", - "0.41111107181537065" - ], - [ - "6250", - "0.6439904781748774", - "2.9780473686326046", - "0.0", - "0.0", - "0.0", - "0.0", - "0.8803150325453811", - "5.133997808310465", - "0.0", - "0.0", - "0.4076659238043738" - ], - [ - "6251", - "0.6388668347746012", - "2.9683096705245697", - "0.0", - "0.0", - "0.0", - "0.0", - "0.87349755925008", - "5.1213459413922955", - "0.0", - "0.0", - "0.40423611029912243" - ], - [ - "6252", - "0.6337779343433161", - "2.9586336151494357", - "0.0", - "0.0", - "0.0", - "0.0", - "0.8667255383255997", - "5.108773412019415", - "0.0", - "0.0", - "0.40083033036103244" - ], - [ - "6253", - "0.6288863918460402", - "2.9493293860310863", - "0.0", - "0.0", - "0.0", - "0.0", - "0.8602151228601025", - "5.096682748540069", - "0.0", - "0.0", - "0.3975576608319779" - ], - [ - "6254", - "0.623904665790081", - "2.9398534695296954", - "0.0", - "0.0", - "0.0", - "0.0", - "0.8535822628854615", - "5.0843651226897135", - "0.0", - "0.0", - "0.39422706869470064" - ], - [ - "6255", - "0.61912410968462", - "2.930769769748068", - "0.0", - "0.0", - "0.0", - "0.0", - "0.8472109392924946", - "5.072546141390025", - "0.0", - "0.0", - "0.3910372800767453" - ], - [ - "6256", - "0.6144026844546623", - "2.9217986064519623", - "0.0", - "0.0", - "0.0", - "0.0", - "0.840916080397529", - "5.060869809568675", - "0.0", - "0.0", - "0.3878892885117956" - ], - [ - "6257", - "0.6097523567174313", - "2.912962867470588", - "0.0", - "0.0", - "0.0", - "0.0", - "0.8347136648952844", - "5.049365938998225", - "0.0", - "0.0", - "0.3847910485395783" - ], - [ - "6258", - "0.6051668157571699", - "2.9042507644677378", - "0.0", - "0.0", - "0.0", - "0.0", - "0.8285952819447392", - "5.038019169128721", - "0.0", - "0.0", - "0.3817383495696005" - ], - [ - "6259", - "0.6006416022029497", - "2.895651056669924", - "0.0", - "0.0", - "0.0", - "0.0", - "0.8225562035470523", - "5.026817135785521", - "0.0", - "0.0", - "0.3787270008588471" - ], - [ - "6260", - "0.5961924651994445", - "2.8871975308266555", - "0.0", - "0.0", - "0.0", - "0.0", - "0.8166159454171688", - "5.015801000381637", - "0.0", - "0.0", - "0.37576898498172023" - ], - [ - "6261", - "0.591697105146603", - "2.8786509786913284", - "0.0", - "0.0", - "0.0", - "0.0", - "0.81061404728223", - "5.00466435830704", - "0.0", - "0.0", - "0.372780163010976" - ], - [ - "6262", - "0.5874534073503154", - "2.8705857940004345", - "0.0", - "0.0", - "0.0", - "0.0", - "0.8049450416432168", - "4.994149650530797", - "0.0", - "0.0", - "0.3699617730574138" - ], - [ - "6263", - "0.5832606438594704", - "2.8626154983031107", - "0.0", - "0.0", - "0.0", - "0.0", - "0.7993430339163501", - "4.983757201852171", - "0.0", - "0.0", - "0.36717825380259067" - ], - [ - "6264", - "0.5790163136456874", - "2.854545602834101", - "0.0", - "0.0", - "0.0", - "0.0", - "0.793670914905098", - "4.973233126302058", - "0.0", - "0.0", - "0.36436171238627685" - ], - [ - "6265", - "0.5748706509708191", - "2.84666506855227", - "0.0", - "0.0", - "0.0", - "0.0", - "0.7881281209818504", - "4.962951738971691", - "0.0", - "0.0", - "0.36161318095978795" - ], - [ - "6266", - "0.5708052935313617", - "2.8389401001099652", - "0.0", - "0.0", - "0.0", - "0.0", - "0.7826897586559777", - "4.9528682723878426", - "0.0", - "0.0", - "0.35892082840674566" - ], - [ - "6267", - "0.5657878068440244", - "2.8293545652482552", - "0.0", - "0.0", - "0.0", - "0.0", - "0.7759963581676916", - "4.940392035767188", - "0.0", - "0.0", - "0.35557925552035724" - ], - [ - "6268", - "0.5618179681604129", - "2.821807566791521", - "0.0", - "0.0", - "0.0", - "0.0", - "0.7706834501746198", - "4.930537561070417", - "0.0", - "0.0", - "0.352952486146206" - ], - [ - "6269", - "0.55793755274477", - "2.814423624869593", - "0.0", - "0.0", - "0.0", - "0.0", - "0.7654914563727223", - "4.9208987880394695", - "0.0", - "0.0", - "0.35038364911681763" - ], - [ - "6270", - "0.5540601099780065", - "2.807050134787626", - "0.0", - "0.0", - "0.0", - "0.0", - "0.7602998850777958", - "4.911267411920215", - "0.0", - "0.0", - "0.34782033487821706" - ], - [ - "6271", - "0.5502695396161478", - "2.7998466275347136", - "0.0", - "0.0", - "0.0", - "0.0", - "0.755221131740206", - "4.901851916772237", - "0.0", - "0.0", - "0.3453179474920895" - ], - [ - "6272", - "0.5779315801502026", - "2.8516089105492415", - "0.0", - "0.0", - "0.0", - "0.0", - "0.7925797478148896", - "4.970077838605861", - "0.0", - "0.0", - "0.36328341248551566" - ], - [ - "6273", - "0.5819288074533506", - "2.857419093010131", - "0.0", - "0.0", - "0.0", - "0.0", - "0.7986558979239755", - "4.979033499612163", - "0.0", - "0.0", - "0.3652017169827257" - ], - [ - "6274", - "0.5775889925830707", - "2.84915656801391", - "0.0", - "0.0", - "0.0", - "0.0", - "0.7928593381302276", - "4.968263936335894", - "0.0", - "0.0", - "0.36231864703591377" - ], - [ - "6275", - "0.5737241106399306", - "2.8418238895470713", - "0.0", - "0.0", - "0.0", - "0.0", - "0.7876849967821605", - "4.958684081951768", - "0.0", - "0.0", - "0.35976322449770054" - ], - [ - "6276", - "0.5697360085692315", - "2.834252387981668", - "0.0", - "0.0", - "0.0", - "0.0", - "0.7823461159491946", - "4.948793480780803", - "0.0", - "0.0", - "0.3571259011892683" - ], - [ - "6277", - "0.566044425028621", - "2.8272530912410954", - "0.0", - "0.0", - "0.0", - "0.0", - "0.7773989228589796", - "4.939640876779601", - "0.0", - "0.0", - "0.35468992719826226" - ], - [ - "6278", - "0.5623535811289834", - "2.8202534245861655", - "0.0", - "0.0", - "0.0", - "0.0", - "0.7724520195170383", - "4.930486876731446", - "0.0", - "0.0", - "0.3522551427409284" - ], - [ - "6279", - "0.5586658446796476", - "2.8132587108494462", - "0.0", - "0.0", - "0.0", - "0.0", - "0.7675082373897134", - "4.921337798049467", - "0.0", - "0.0", - "0.3498234519695819" - ], - [ - "6280", - "0.5550712604326077", - "2.806441465738073", - "0.0", - "0.0", - "0.0", - "0.0", - "0.7626876393739618", - "4.912418050743922", - "0.0", - "0.0", - "0.3474548814912536" - ], - [ - "6281", - "0.551467547799381", - "2.7995990166226687", - "0.0", - "0.0", - "0.0", - "0.0", - "0.7578566461884467", - "4.903469196453832", - "0.0", - "0.0", - "0.34507844941031524" - ], - [ - "6282", - "0.5481950564398458", - "2.793392414077599", - "0.0", - "0.0", - "0.0", - "0.0", - "0.7534656532860161", - "4.895344703209106", - "0.0", - "0.0", - "0.3429244595936756" - ], - [ - "6283", - "0.545048551815719", - "2.7874225628514764", - "0.0", - "0.0", - "0.0", - "0.0", - "0.7492435308786723", - "4.887530094842145", - "0.0", - "0.0", - "0.34085357275276545" - ], - [ - "6284", - "0.541826231247355", - "2.781311423394386", - "0.0", - "0.0", - "0.0", - "0.0", - "0.7449175443825218", - "4.8795268391871565", - "0.0", - "0.0", - "0.33873491811218803" - ], - [ - "6285", - "0.5393796081713559", - "2.77667154344111", - "0.0", - "0.0", - "0.0", - "0.0", - "0.7416321389261519", - "4.87344908115018", - "0.0", - "0.0", - "0.33712707741655995" - ], - [ - "6286", - "0.536948525749502", - "2.7720481111799753", - "0.0", - "0.0", - "0.0", - "0.0", - "0.7383722623643458", - "4.867401838842882", - "0.0", - "0.0", - "0.3355247891346581" - ], - [ - "6287", - "0.5346339229579236", - "2.767658167184663", - "0.0", - "0.0", - "0.0", - "0.0", - "0.7352631233649999", - "4.8616499029147935", - "0.0", - "0.0", - "0.33400472255084723" - ], - [ - "6288", - "0.531306002798927", - "2.761343300072121", - "0.0", - "0.0", - "0.0", - "0.0", - "0.7307930517598954", - "4.853376553225662", - "0.0", - "0.0", - "0.3318189538379587" - ], - [ - "6289", - "0.5280949943920334", - "2.7552496254014844", - "0.0", - "0.0", - "0.0", - "0.0", - "0.7264791536291682", - "4.845391697356531", - "0.0", - "0.0", - "0.32971083515489874" - ], - [ - "6290", - "0.525042874021419", - "2.749458549072464", - "0.0", - "0.0", - "0.0", - "0.0", - "0.7223772542040827", - "4.83780089265623", - "0.0", - "0.0", - "0.3277084938387554" - ], - [ - "6291", - "0.5220842358149419", - "2.7438457676040424", - "0.0", - "0.0", - "0.0", - "0.0", - "0.718399657196681", - "4.830441558212312", - "0.0", - "0.0", - "0.3257688144332029" - ], - [ - "6292", - "0.5192201702237071", - "2.73841195415714", - "0.0", - "0.0", - "0.0", - "0.0", - "0.7145484826686643", - "4.823315785641214", - "0.0", - "0.0", - "0.32389185777874996" - ], - [ - "6293", - "0.5163308622647981", - "2.7329311779747716", - "0.0", - "0.0", - "0.0", - "0.0", - "0.7106620898835065", - "4.816126283196211", - "0.0", - "0.0", - "0.32199963464608966" - ], - [ - "6294", - "0.5134886666602175", - "2.7275404187435766", - "0.0", - "0.0", - "0.0", - "0.0", - "0.7068379214362749", - "4.80905295830742", - "0.0", - "0.0", - "0.32013941188416006" - ], - [ - "6295", - "0.5106669030765341", - "2.7221872363735216", - "0.0", - "0.0", - "0.0", - "0.0", - "0.7030408517102846", - "4.802028454528433", - "0.0", - "0.0", - "0.31829295444278344" - ], - [ - "6296", - "0.5078853851252217", - "2.716911437775186", - "0.0", - "0.0", - "0.0", - "0.0", - "0.699296670886091", - "4.795103352279713", - "0.0", - "0.0", - "0.3164740993643525" - ], - [ - "6297", - "0.505132727018246", - "2.7116903494835025", - "0.0", - "0.0", - "0.0", - "0.0", - "0.6955905186286706", - "4.788248762202104", - "0.0", - "0.0", - "0.31467493540782127" - ], - [ - "6298", - "0.5023942273700968", - "2.706495908620064", - "0.0", - "0.0", - "0.0", - "0.0", - "0.691902690853838", - "4.781428005938627", - "0.0", - "0.0", - "0.3128857638863555" - ], - [ - "6299", - "0.49963991643664984", - "2.701270592042194", - "0.0", - "0.0", - "0.0", - "0.0", - "0.6881930989837991", - "4.774566062752917", - "0.0", - "0.0", - "0.3110867338895006" - ], - [ - "6300", - "0.49688808325697786", - "2.6960478104034458", - "0.0", - "0.0", - "0.0", - "0.0", - "0.6844868863322381", - "4.767707776418163", - "0.0", - "0.0", - "0.30928928018171764" - ], - [ - "6301", - "0.4942225802738322", - "2.690989079711823", - "0.0", - "0.0", - "0.0", - "0.0", - "0.6808960674351973", - "4.761063491841122", - "0.0", - "0.0", - "0.30754909311246714" - ], - [ - "6302", - "0.4915452586632532", - "2.6859075618175363", - "0.0", - "0.0", - "0.0", - "0.0", - "0.6772886817375116", - "4.754388292988068", - "0.0", - "0.0", - "0.3058018355889949" - ], - [ - "6303", - "0.4889114493753422", - "2.680907903317172", - "0.0", - "0.0", - "0.0", - "0.0", - "0.6737394431070849", - "4.747819948215229", - "0.0", - "0.0", - "0.30408345564359957" - ], - [ - "6304", - "0.4863273853694956", - "2.6759978717089195", - "0.0", - "0.0", - "0.0", - "0.0", - "0.6702584275701207", - "4.74137182150542", - "0.0", - "0.0", - "0.3023963431688706" - ], - [ - "6305", - "0.4837989597217994", - "2.6712013822849796", - "0.0", - "0.0", - "0.0", - "0.0", - "0.6668484924322065", - "4.735065702687739", - "0.0", - "0.0", - "0.30074942701139235" - ], - [ - "6306", - "0.48094028551925627", - "2.6657569043107556", - "0.0", - "0.0", - "0.0", - "0.0", - "0.6630009705012587", - "4.72792267524108", - "0.0", - "0.0", - "0.2988796005372538" - ], - [ - "6307", - "0.4783444740391789", - "2.6608320794051474", - "0.0", - "0.0", - "0.0", - "0.0", - "0.6594987894237405", - "4.721445712879486", - "0.0", - "0.0", - "0.29719015865461723" - ], - [ - "6308", - "0.47608594098368895", - "2.6565428678723726", - "0.0", - "0.0", - "0.0", - "0.0", - "0.6564527621145724", - "4.715806973622979", - "0.0", - "0.0", - "0.2957191198528056" - ], - [ - "6309", - "0.4736626787443295", - "2.6519273983117446", - "0.0", - "0.0", - "0.0", - "0.0", - "0.6531893283345901", - "4.709748522801439", - "0.0", - "0.0", - "0.294136029154069" - ], - [ - "6310", - "0.4714547469206266", - "2.647727688840129", - "0.0", - "0.0", - "0.0", - "0.0", - "0.650213041390745", - "4.704230620865348", - "0.0", - "0.0", - "0.2926964524505082" - ], - [ - "6311", - "0.4687559059881036", - "2.6425834096205656", - "0.0", - "0.0", - "0.0", - "0.0", - "0.6465786056520882", - "4.697478686626614", - "0.0", - "0.0", - "0.290933206324119" - ], - [ - "6312", - "0.46622763631857456", - "2.6377810938014794", - "0.0", - "0.0", - "0.0", - "0.0", - "0.6431663610307675", - "4.691161630022589", - "0.0", - "0.0", - "0.2892889116063816" - ], - [ - "6313", - "0.46366723533282367", - "2.6329192933954255", - "0.0", - "0.0", - "0.0", - "0.0", - "0.639709394259416", - "4.6847639792547575", - "0.0", - "0.0", - "0.28762507640623136" - ], - [ - "6314", - "0.46188204266808125", - "2.6295280704917006", - "0.0", - "0.0", - "0.0", - "0.0", - "0.637299219521343", - "4.68030184664513", - "0.0", - "0.0", - "0.28646486581481945" - ], - [ - "6315", - "0.4610395116930773", - "2.62792888801231", - "0.0", - "0.0", - "0.0", - "0.0", - "0.636161068933307", - "4.678196455639202", - "0.0", - "0.0", - "0.28591795445284757" - ], - [ - "6316", - "0.4587153432884678", - "2.623522523677472", - "0.0", - "0.0", - "0.0", - "0.0", - "0.63301896811938", - "4.6723907751148985", - "0.0", - "0.0", - "0.2844117184575557" - ], - [ - "6317", - "0.45632333524568486", - "2.618981022876443", - "0.0", - "0.0", - "0.0", - "0.0", - "0.6297871289842701", - "4.66641099141108", - "0.0", - "0.0", - "0.2828595415070996" - ], - [ - "6318", - "0.4538504800882171", - "2.6142867422364", - "0.0", - "0.0", - "0.0", - "0.0", - "0.6264450863358774", - "4.6602284103268765", - "0.0", - "0.0", - "0.2812558738405569" - ], - [ - "6319", - "0.45150067516061704", - "2.609827220904276", - "0.0", - "0.0", - "0.0", - "0.0", - "0.6232682315935626", - "4.654353103647002", - "0.0", - "0.0", - "0.2797331187276715" - ], - [ - "6320", - "0.4479495548738488", - "2.6029853876134896", - "0.0", - "0.0", - "0.0", - "0.0", - "0.6185070359667648", - "4.645415031362875", - "0.0", - "0.0", - "0.2773920737809328" - ], - [ - "6321", - "0.446477513224305", - "2.6001911335222707", - "0.0", - "0.0", - "0.0", - "0.0", - "0.6165161888767774", - "4.6417326258592855", - "0.0", - "0.0", - "0.2764388375718326" - ], - [ - "6322", - "0.4443661261861043", - "2.596177313986402", - "0.0", - "0.0", - "0.0", - "0.0", - "0.6136626120851155", - "4.636446843618541", - "0.0", - "0.0", - "0.2750696402870931" - ], - [ - "6323", - "0.44252495284122856", - "2.592684310014346", - "0.0", - "0.0", - "0.0", - "0.0", - "0.6111709650554453", - "4.6318408530452695", - "0.0", - "0.0", - "0.27387894062701185" - ], - [ - "6324", - "0.44028310943933874", - "2.5884319557509627", - "0.0", - "0.0", - "0.0", - "0.0", - "0.608136255437069", - "4.626232128321752", - "0.0", - "0.0", - "0.2724299634416086" - ], - [ - "6325", - "0.4384389587957868", - "2.5849333104018846", - "0.0", - "0.0", - "0.0", - "0.0", - "0.6056397124518573", - "4.621617321151734", - "0.0", - "0.0", - "0.27123820513971625" - ], - [ - "6326", - "0.436183596026775", - "2.5806481151264755", - "0.0", - "0.0", - "0.0", - "0.0", - "0.6025885159278744", - "4.615969056811091", - "0.0", - "0.0", - "0.26977867612567547" - ], - [ - "6327", - "0.4339881657036", - "2.5764773649035972", - "0.0", - "0.0", - "0.0", - "0.0", - "0.5996176062972778", - "4.610470308703584", - "0.0", - "0.0", - "0.2683587251099222" - ], - [ - "6328", - "0.43184181005714634", - "2.572403133814991", - "0.0", - "0.0", - "0.0", - "0.0", - "0.5967112537976362", - "4.605095462933729", - "0.0", - "0.0", - "0.26697236631665644" - ], - [ - "6329", - "0.42953871101431573", - "2.568010539599597", - "0.0", - "0.0", - "0.0", - "0.0", - "0.5936003722496458", - "4.599315466445999", - "0.0", - "0.0", - "0.2654770497789857" - ], - [ - "6330", - "0.4274293927986976", - "2.5640057549329627", - "0.0", - "0.0", - "0.0", - "0.0", - "0.5907434283898713", - "4.5940311597992105", - "0.0", - "0.0", - "0.264115357207524" - ], - [ - "6331", - "0.4253267241668336", - "2.560016762870735", - "0.0", - "0.0", - "0.0", - "0.0", - "0.5878937143674562", - "4.588764475537358", - "0.0", - "0.0", - "0.26275973396621105" - ], - [ - "6332", - "0.42328501582869266", - "2.5561412214039647", - "0.0", - "0.0", - "0.0", - "0.0", - "0.5851270031285227", - "4.583648466197547", - "0.0", - "0.0", - "0.2614430285288626" - ], - [ - "6333", - "0.4212841729328752", - "2.5523446850606777", - "0.0", - "0.0", - "0.0", - "0.0", - "0.5824146261452258", - "4.578634915186407", - "0.0", - "0.0", - "0.2601537197205246" - ], - [ - "6334", - "0.4192904662693501", - "2.548562245213408", - "0.0", - "0.0", - "0.0", - "0.0", - "0.5797112379585502", - "4.5736388220421915", - "0.0", - "0.0", - "0.2588696945801501" - ], - [ - "6335", - "0.417292525062989", - "2.544768805235874", - "0.0", - "0.0", - "0.0", - "0.0", - "0.5770028231201978", - "4.568629707485126", - "0.0", - "0.0", - "0.25758222700578015" - ], - [ - "6336", - "0.4153187877547597", - "2.541021502737979", - "0.0", - "0.0", - "0.0", - "0.0", - "0.5743266879096257", - "4.563680649525837", - "0.0", - "0.0", - "0.25631088759989373" - ], - [ - "6337", - "0.4133499994936842", - "2.537286192131711", - "0.0", - "0.0", - "0.0", - "0.0", - "0.5716557759134517", - "4.558744743251946", - "0.0", - "0.0", - "0.25504422307391666" - ], - [ - "6338", - "0.4113905691970982", - "2.533568373375291", - "0.0", - "0.0", - "0.0", - "0.0", - "0.5689972125566052", - "4.553831434192803", - "0.0", - "0.0", - "0.2537839258375912" - ], - [ - "6339", - "0.4093996295858722", - "2.529789287839898", - "0.0", - "0.0", - "0.0", - "0.0", - "0.5662960240758586", - "4.548837545837164", - "0.0", - "0.0", - "0.25250323509588596" - ], - [ - "6340", - "0.4075074404816142", - "2.5261940899692785", - "0.0", - "0.0", - "0.0", - "0.0", - "0.563729794065883", - "4.544088658757242", - "0.0", - "0.0", - "0.2512850868973454" - ], - [ - "6341", - "0.40565702744627224", - "2.5226874184703014", - "0.0", - "0.0", - "0.0", - "0.0", - "0.5612161790881037", - "4.539449143574694", - "0.0", - "0.0", - "0.25009787580444076" - ], - [ - "6342", - "0.40384453162268347", - "2.519242659186751", - "0.0", - "0.0", - "0.0", - "0.0", - "0.5587576279143783", - "4.534898453118846", - "0.0", - "0.0", - "0.2489314353309886" - ], - [ - "6343", - "0.40196548997006964", - "2.5156737096651853", - "0.0", - "0.0", - "0.0", - "0.0", - "0.5562074934637459", - "4.530181323822713", - "0.0", - "0.0", - "0.24772348647639333" - ], - [ - "6344", - "0.4001538789269705", - "2.5122367148925324", - "0.0", - "0.0", - "0.0", - "0.0", - "0.5537469366354698", - "4.525635040857262", - "0.0", - "0.0", - "0.24656082121847125" - ], - [ - "6345", - "0.398346920766794", - "2.508802117560047", - "0.0", - "0.0", - "0.0", - "0.0", - "0.5512948620719161", - "4.521096176398868", - "0.0", - "0.0", - "0.24539897946167194" - ], - [ - "6346", - "0.3965844843180998", - "2.505456456200504", - "0.0", - "0.0", - "0.0", - "0.0", - "0.5489011209567499", - "4.516670994706203", - "0.0", - "0.0", - "0.2442678476794496" - ], - [ - "6347", - "0.3946786339042293", - "2.501823295463754", - "0.0", - "0.0", - "0.0", - "0.0", - "0.5463182238896334", - "4.5118764096087745", - "0.0", - "0.0", - "0.24303904391882525" - ], - [ - "6348", - "0.3929407295627987", - "2.498523075421107", - "0.0", - "0.0", - "0.0", - "0.0", - "0.5439574914165876", - "4.507510979706683", - "0.0", - "0.0", - "0.2419239677090098" - ], - [ - "6349", - "0.39114673548854856", - "2.4951184709429715", - "0.0", - "0.0", - "0.0", - "0.0", - "0.5415193472263689", - "4.503005267518163", - "0.0", - "0.0", - "0.24077412375072824" - ], - [ - "6350", - "0.3893702492876739", - "2.4917418356173395", - "0.0", - "0.0", - "0.0", - "0.0", - "0.5391066998324026", - "4.498539939509199", - "0.0", - "0.0", - "0.23963379874294521" - ], - [ - "6351", - "0.387575612941313", - "2.4883270452862996", - "0.0", - "0.0", - "0.0", - "0.0", - "0.5366704652706498", - "4.494026300139931", - "0.0", - "0.0", - "0.23848076061197615" - ], - [ - "6352", - "0.3858216770277496", - "2.4849966058966535", - "0.0", - "0.0", - "0.0", - "0.0", - "0.5342863750755736", - "4.489618360042519", - "0.0", - "0.0", - "0.23735697897992553" - ], - [ - "6353", - "0.3841113565957082", - "2.4817510252700936", - "0.0", - "0.0", - "0.0", - "0.0", - "0.5319604085038676", - "4.485320630951904", - "0.0", - "0.0", - "0.23626230468754883" - ], - [ - "6354", - "0.38245396426496314", - "2.4786031551147576", - "0.0", - "0.0", - "0.0", - "0.0", - "0.5297071658301087", - "4.481153816210116", - "0.0", - "0.0", - "0.23520076269981754" - ], - [ - "6355", - "0.38084014864312005", - "2.4755359797947714", - "0.0", - "0.0", - "0.0", - "0.0", - "0.5275136665834587", - "4.4770948732180385", - "0.0", - "0.0", - "0.2341666307027815" - ], - [ - "6356", - "0.3791304289404108", - "2.4722907782258385", - "0.0", - "0.0", - "0.0", - "0.0", - "0.5251877939912943", - "4.472796596925503", - "0.0", - "0.0", - "0.23307306388952725" - ], - [ - "6357", - "0.3776419936167864", - "2.469465992369826", - "0.0", - "0.0", - "0.0", - "0.0", - "0.5231625088695431", - "4.469054407571017", - "0.0", - "0.0", - "0.23212147836402974" - ], - [ - "6358", - "0.3758280552014327", - "2.465995830767194", - "0.0", - "0.0", - "0.0", - "0.0", - "0.5207048644420618", - "4.4644775026345975", - "0.0", - "0.0", - "0.23095124596080369" - ], - [ - "6359", - "0.37426928127953335", - "2.4630377050333676", - "0.0", - "0.0", - "0.0", - "0.0", - "0.518583180752484", - "4.460557553518929", - "0.0", - "0.0", - "0.2299553818065827" - ], - [ - "6360", - "0.37271730513970674", - "2.460091525627478", - "0.0", - "0.0", - "0.0", - "0.0", - "0.5164708343345354", - "4.456653691892403", - "0.0", - "0.0", - "0.22896377594487805" - ], - [ - "6361", - "0.37116744997083473", - "2.4571491767421345", - "0.0", - "0.0", - "0.0", - "0.0", - "0.5143611608500723", - "4.45275459215883", - "0.0", - "0.0", - "0.22797373909159716" - ], - [ - "6362", - "0.36964972150855246", - "2.454269402591571", - "0.0", - "0.0", - "0.0", - "0.0", - "0.5122943118853961", - "4.4489367744401305", - "0.0", - "0.0", - "0.22700513113170878" - ], - [ - "6363", - "0.3680594907944105", - "2.4512520416049504", - "0.0", - "0.0", - "0.0", - "0.0", - "0.5101284370363846", - "4.444936093056196", - "0.0", - "0.0", - "0.22599054455243653" - ], - [ - "6364", - "0.36648505423521477", - "2.448264612179871", - "0.0", - "0.0", - "0.0", - "0.0", - "0.5079837857036232", - "4.440974646355561", - "0.0", - "0.0", - "0.22498632276680633" - ], - [ - "6365", - "0.36492426647082365", - "2.445303030062871", - "0.0", - "0.0", - "0.0", - "0.0", - "0.5058574489330546", - "4.437047041443394", - "0.0", - "0.0", - "0.22399108400859272" - ], - [ - "6366", - "0.3633401653756391", - "2.4422894437075184", - "0.0", - "0.0", - "0.0", - "0.0", - "0.5037021071347833", - "4.433055839216058", - "0.0", - "0.0", - "0.222978223616495" - ], - [ - "6367", - "0.3618226832293092", - "2.4394099210939886", - "0.0", - "0.0", - "0.0", - "0.0", - "0.5016342339402515", - "4.429236229176865", - "0.0", - "0.0", - "0.22201113251836688" - ], - [ - "6368", - "0.36033109508393224", - "2.436579798072959", - "0.0", - "0.0", - "0.0", - "0.0", - "0.49960126876923255", - "4.425481514073623", - "0.0", - "0.0", - "0.22106092139863195" - ], - [ - "6369", - "0.35890610234432113", - "2.433875835418583", - "0.0", - "0.0", - "0.0", - "0.0", - "0.49765889376968986", - "4.4218939221039495", - "0.0", - "0.0", - "0.22015331091895243" - ], - [ - "6370", - "0.3574660726297151", - "2.43113332986202", - "0.0", - "0.0", - "0.0", - "0.0", - "0.49569970754866177", - "4.418262326851665", - "0.0", - "0.0", - "0.21923243771076842" - ], - [ - "6371", - "0.35593811977135664", - "2.4282245987933573", - "0.0", - "0.0", - "0.0", - "0.0", - "0.4936201395642485", - "4.414409255926139", - "0.0", - "0.0", - "0.2182560999784648" - ], - [ - "6372", - "0.3544580892479017", - "2.4254158909883903", - "0.0", - "0.0", - "0.0", - "0.0", - "0.49160206226214087", - "4.410681648915278", - "0.0", - "0.0", - "0.21731411623366248" - ], - [ - "6373", - "0.3530390190933937", - "2.4227167242539243", - "0.0", - "0.0", - "0.0", - "0.0", - "0.4896692695619328", - "4.407103643813937", - "0.0", - "0.0", - "0.21640876862485459" - ], - [ - "6374", - "0.3516515100313862", - "2.4200828579729046", - "0.0", - "0.0", - "0.0", - "0.0", - "0.48777715262806476", - "4.403607864974949", - "0.0", - "0.0", - "0.21552586743470767" - ], - [ - "6375", - "0.35027175360221546", - "2.417462294817533", - "0.0", - "0.0", - "0.0", - "0.0", - "0.48589592798628317", - "4.400130433200972", - "0.0", - "0.0", - "0.21464757921814773" - ], - [ - "6376", - "0.3488883789997489", - "2.4148354216659937", - "0.0", - "0.0", - "0.0", - "0.0", - "0.48400931363046307", - "4.39664383241701", - "0.0", - "0.0", - "0.21376744436903472" - ], - [ - "6377", - "0.34746974425212435", - "2.4121400844590344", - "0.0", - "0.0", - "0.0", - "0.0", - "0.48207495930089894", - "4.39306710572697", - "0.0", - "0.0", - "0.21286452920334972" - ], - [ - "6378", - "0.34612712786917693", - "2.4095898235270976", - "0.0", - "0.0", - "0.0", - "0.0", - "0.4802437758634831", - "4.389682048182796", - "0.0", - "0.0", - "0.21201047987487076" - ], - [ - "6379", - "0.34481617010086973", - "2.4071021576789846", - "0.0", - "0.0", - "0.0", - "0.0", - "0.4784545905532749", - "4.386377886715561", - "0.0", - "0.0", - "0.2111777496484646" - ], - [ - "6380", - "0.3434979261987681", - "2.4046006240437134", - "0.0", - "0.0", - "0.0", - "0.0", - "0.47665526321408525", - "4.383054998069037", - "0.0", - "0.0", - "0.21034058918345094" - ], - [ - "6381", - "0.3421958915404985", - "2.4021295068187456", - "0.0", - "0.0", - "0.0", - "0.0", - "0.474877983762685", - "4.379772436187233", - "0.0", - "0.0", - "0.20951379931831207" - ], - [ - "6382", - "0.340908020070587", - "2.399685592281658", - "0.0", - "0.0", - "0.0", - "0.0", - "0.47311970388638375", - "4.37652544017713", - "0.0", - "0.0", - "0.20869633625479028" - ], - [ - "6383", - "0.3396466503877403", - "2.3972915352504027", - "0.0", - "0.0", - "0.0", - "0.0", - "0.4713975762396955", - "4.373344695114882", - "0.0", - "0.0", - "0.20789572453578506" - ], - [ - "6384", - "0.3379362312782224", - "2.394001275283942", - "0.0", - "0.0", - "0.0", - "0.0", - "0.46907925945734474", - "4.369005730189711", - "0.0", - "0.0", - "0.20679320309910004" - ], - [ - "6385", - "0.3366866780972141", - "2.391630164593798", - "0.0", - "0.0", - "0.0", - "0.0", - "0.46737259645816087", - "4.365854343656866", - "0.0", - "0.0", - "0.2060007597362673" - ], - [ - "6386", - "0.3354587379076357", - "2.3892991473546097", - "0.0", - "0.0", - "0.0", - "0.0", - "0.4656956233013305", - "4.362756634716509", - "0.0", - "0.0", - "0.20522185251394087" - ], - [ - "6387", - "0.33418837800500856", - "2.386884936028281", - "0.0", - "0.0", - "0.0", - "0.0", - "0.4639615650616639", - "4.359550057605163", - "0.0", - "0.0", - "0.20441519094835323" - ], - [ - "6388", - "0.33290774702265263", - "2.3844536030349595", - "0.0", - "0.0", - "0.0", - "0.0", - "0.4622123437923324", - "4.356318618518955", - "0.0", - "0.0", - "0.20360315025297282" - ], - [ - "6389", - "0.3316964835505372", - "2.3821541198489253", - "0.0", - "0.0", - "0.0", - "0.0", - "0.46055762366122105", - "4.3532620056449245", - "0.0", - "0.0", - "0.2028353434398534" - ], - [ - "6390", - "0.32790010584614193", - "2.3748431044822294", - "0.0", - "0.0", - "0.0", - "0.0", - "0.45541078266201956", - "4.34361974784875", - "0.0", - "0.0", - "0.20038942903026427" - ], - [ - "6391", - "0.32663624050565493", - "2.3724445083926082", - "0.0", - "0.0", - "0.0", - "0.0", - "0.45368310297865505", - "4.34042954382551", - "0.0", - "0.0", - "0.19958937803265478" - ], - [ - "6392", - "0.32545693379134794", - "2.3702069151369303", - "0.0", - "0.0", - "0.0", - "0.0", - "0.4520706272743368", - "4.33745279877193", - "0.0", - "0.0", - "0.19884324030835904" - ], - [ - "6393", - "0.32429156143859234", - "2.3679957448858735", - "0.0", - "0.0", - "0.0", - "0.0", - "0.4504770387587454", - "4.334510945839011", - "0.0", - "0.0", - "0.19810608411843933" - ], - [ - "6394", - "0.323075697536288", - "2.3656884639326536", - "0.0", - "0.0", - "0.0", - "0.0", - "0.4488143440428824", - "4.331441165943989", - "0.0", - "0.0", - "0.19733705102969362" - ], - [ - "6395", - "0.32183901785442304", - "2.363337083644529", - "0.0", - "0.0", - "0.0", - "0.0", - "0.4471247880925947", - "4.328315856991965", - "0.0", - "0.0", - "0.19655324761625137" - ], - [ - "6396", - "0.320919647366509", - "2.3615915335757727", - "0.0", - "0.0", - "0.0", - "0.0", - "0.44586763611462155", - "4.325993704806508", - "0.0", - "0.0", - "0.1959716586183965" - ], - [ - "6397", - "0.32016664401982053", - "2.360162058062998", - "0.0", - "0.0", - "0.0", - "0.0", - "0.4448378163922055", - "4.324091756763717", - "0.0", - "0.0", - "0.19549547164743555" - ], - [ - "6398", - "0.3191162875774918", - "2.358164549013917", - "0.0", - "0.0", - "0.0", - "0.0", - "0.44340259675590343", - "4.321436496255649", - "0.0", - "0.0", - "0.1948299783990801" - ], - [ - "6399", - "0.3179610182438071", - "2.3559723740812735", - "0.0", - "0.0", - "0.0", - "0.0", - "0.4418219686735094", - "4.318518586974115", - "0.0", - "0.0", - "0.1941000678141048" - ], - [ - "6400", - "0.31679397975980483", - "2.353756233744447", - "0.0", - "0.0", - "0.0", - "0.0", - "0.44022570377556125", - "4.315569730860686", - "0.0", - "0.0", - "0.19336225574404842" - ], - [ - "6401", - "0.31559852184628934", - "2.35148700200817", - "0.0", - "0.0", - "0.0", - "0.0", - "0.4385900467856682", - "4.312549291888789", - "0.0", - "0.0", - "0.19260699690691047" - ], - [ - "6402", - "0.31450606756881117", - "2.3494141680026446", - "0.0", - "0.0", - "0.0", - "0.0", - "0.43709482265495947", - "4.309789360992605", - "0.0", - "0.0", - "0.1919173124826628" - ], - [ - "6403", - "0.3134019721096491", - "2.347316760576699", - "0.0", - "0.0", - "0.0", - "0.0", - "0.43558448041149234", - "4.30699832943266", - "0.0", - "0.0", - "0.19121946380780577" - ], - [ - "6404", - "0.31232339401299214", - "2.345270170751491", - "0.0", - "0.0", - "0.0", - "0.0", - "0.43410798185540983", - "4.3042729321682955", - "0.0", - "0.0", - "0.19053880617057445" - ], - [ - "6405", - "0.3112342407807955", - "2.3432008332993184", - "0.0", - "0.0", - "0.0", - "0.0", - "0.4326179013982481", - "4.301519012986692", - "0.0", - "0.0", - "0.1898505801633428" - ], - [ - "6406", - "0.3100596864269379", - "2.3409705757142727", - "0.0", - "0.0", - "0.0", - "0.0", - "0.4310102924959898", - "4.29854966989772", - "0.0", - "0.0", - "0.18910908035788587" - ], - [ - "6407", - "0.3090164131243927", - "2.338990740156516", - "0.0", - "0.0", - "0.0", - "0.0", - "0.4295817747916772", - "4.295912647807028", - "0.0", - "0.0", - "0.1884510514571082" - ], - [ - "6408", - "0.3079786003355596", - "2.3370212480658226", - "0.0", - "0.0", - "0.0", - "0.0", - "0.42816060393872374", - "4.293289199731042", - "0.0", - "0.0", - "0.18779659673239557" - ], - [ - "6409", - "0.3066746064238338", - "2.3345006837189524", - "0.0", - "0.0", - "0.0", - "0.0", - "0.42639260694476067", - "4.289965748758413", - "0.0", - "0.0", - "0.186956605902907" - ], - [ - "6410", - "0.3056253475255019", - "2.3325072098529684", - "0.0", - "0.0", - "0.0", - "0.0", - "0.4249563233528454", - "4.287311541198889", - "0.0", - "0.0", - "0.18629437169815846" - ], - [ - "6411", - "0.3046008176867989", - "2.3305632500418443", - "0.0", - "0.0", - "0.0", - "0.0", - "0.4235527696192634", - "4.284721153192013", - "0.0", - "0.0", - "0.1856488657543344" - ], - [ - "6412", - "0.3035815183551064", - "2.3286289264727245", - "0.0", - "0.0", - "0.0", - "0.0", - "0.4221563604846932", - "4.282143611298041", - "0.0", - "0.0", - "0.1850066762255196" - ], - [ - "6413", - "0.3025030962686902", - "2.3265724952015048", - "0.0", - "0.0", - "0.0", - "0.0", - "0.42068266336891713", - "4.279410537929325", - "0.0", - "0.0", - "0.18432352916846326" - ], - [ - "6414", - "0.3014680769688327", - "2.32460722862943", - "0.0", - "0.0", - "0.0", - "0.0", - "0.419264870726972", - "4.276792152098145", - "0.0", - "0.0", - "0.18367128321069345" - ], - [ - "6415", - "0.30050693034646164", - "2.3227817287300327", - "0.0", - "0.0", - "0.0", - "0.0", - "0.4179483421240812", - "4.274360161473129", - "0.0", - "0.0", - "0.18306551856884212" - ], - [ - "6416", - "0.2994014261085227", - "2.3206786116866374", - "0.0", - "0.0", - "0.0", - "0.0", - "0.41643526961421623", - "4.2715606566282736", - "0.0", - "0.0", - "0.18236758260282915" - ], - [ - "6417", - "0.29834954898620636", - "2.3186785208885015", - "0.0", - "0.0", - "0.0", - "0.0", - "0.41499505793651764", - "4.268897310796018", - "0.0", - "0.0", - "0.18170404003589505" - ], - [ - "6418", - "0.2974050771794475", - "2.3168834373700635", - "0.0", - "0.0", - "0.0", - "0.0", - "0.41370147860611167", - "4.266506180038888", - "0.0", - "0.0", - "0.18110867575278328" - ], - [ - "6419", - "0.2965021411424546", - "2.3151648731101355", - "0.0", - "0.0", - "0.0", - "0.0", - "0.41246562181817265", - "4.26421861466961", - "0.0", - "0.0", - "0.18053866046673658" - ], - [ - "6420", - "0.29563471774431305", - "2.3135178946396575", - "0.0", - "0.0", - "0.0", - "0.0", - "0.41127672148197997", - "4.2620232041333", - "0.0", - "0.0", - "0.17999271400664607" - ], - [ - "6421", - "0.29467356165178926", - "2.311694022983062", - "0.0", - "0.0", - "0.0", - "0.0", - "0.4099588187355729", - "4.259591013262655", - "0.0", - "0.0", - "0.17938830456800564" - ], - [ - "6422", - "0.2936467232840078", - "2.3097409922643624", - "0.0", - "0.0", - "0.0", - "0.0", - "0.40855247792187216", - "4.256989754180336", - "0.0", - "0.0", - "0.17874096864614347" - ], - [ - "6423", - "0.29269186099604755", - "2.3079290961993073", - "0.0", - "0.0", - "0.0", - "0.0", - "0.4072429479107675", - "4.254573122742714", - "0.0", - "0.0", - "0.17814077408132756" - ], - [ - "6424", - "0.2917141205294489", - "2.306072819527356", - "0.0", - "0.0", - "0.0", - "0.0", - "0.4059022957014011", - "4.25209782897787", - "0.0", - "0.0", - "0.17752594535749677" - ], - [ - "6425", - "0.29073893020149205", - "2.304219989832604", - "0.0", - "0.0", - "0.0", - "0.0", - "0.40456555792502635", - "4.24962797803702", - "0.0", - "0.0", - "0.17691230247795778" - ], - [ - "6426", - "0.28975568681642705", - "2.302353001971085", - "0.0", - "0.0", - "0.0", - "0.0", - "0.4032172138134426", - "4.247138205202035", - "0.0", - "0.0", - "0.17629415981941152" - ], - [ - "6427", - "0.28880137529191074", - "2.3005417793929674", - "0.0", - "0.0", - "0.0", - "0.0", - "0.4019081034684735", - "4.244721992059143", - "0.0", - "0.0", - "0.17569464711534805" - ], - [ - "6428", - "0.2878266962220382", - "2.298688962906562", - "0.0", - "0.0", - "0.0", - "0.0", - "0.40057207001758277", - "4.242252291764747", - "0.0", - "0.0", - "0.17508132242649369" - ], - [ - "6429", - "0.28684640527328215", - "2.296827660782731", - "0.0", - "0.0", - "0.0", - "0.0", - "0.399227373986933", - "4.2397694579460845", - "0.0", - "0.0", - "0.17446543655963132" - ], - [ - "6430", - "0.28589640797602456", - "2.2950239616628254", - "0.0", - "0.0", - "0.0", - "0.0", - "0.39792408131125356", - "4.237363211845187", - "0.0", - "0.0", - "0.1738687346407956" - ], - [ - "6431", - "0.28495303259956234", - "2.2932389900220964", - "0.0", - "0.0", - "0.0", - "0.0", - "0.39662737338795917", - "4.23497717645925", - "0.0", - "0.0", - "0.17327869181116548" - ], - [ - "6432", - "0.2841412539218841", - "2.2916981343215137", - "0.0", - "0.0", - "0.0", - "0.0", - "0.39551334832977547", - "4.232920966440123", - "0.0", - "0.0", - "0.17276915951399274" - ], - [ - "6433", - "0.2832425550307893", - "2.289992286827419", - "0.0", - "0.0", - "0.0", - "0.0", - "0.3942799430506166", - "4.230644428775793", - "0.0", - "0.0", - "0.17220516701096203" - ], - [ - "6434", - "0.28231946630324956", - "2.2882404164955403", - "0.0", - "0.0", - "0.0", - "0.0", - "0.393012849590026", - "4.228306095799008", - "0.0", - "0.0", - "0.17162608301647306" - ], - [ - "6435", - "0.28135304863766686", - "2.2864037581000836", - "0.0", - "0.0", - "0.0", - "0.0", - "0.39168715069924726", - "4.225856310244465", - "0.0", - "0.0", - "0.17101894657608646" - ], - [ - "6436", - "0.28075894080337654", - "2.2852683068242428", - "0.0", - "0.0", - "0.0", - "0.0", - "0.39087457453018626", - "4.224346455108271", - "0.0", - "0.0", - "0.17064330707656683" - ], - [ - "6437", - "0.2800616847272798", - "2.283945224940109", - "0.0", - "0.0", - "0.0", - "0.0", - "0.38991718278382487", - "4.222579967029986", - "0.0", - "0.0", - "0.17020618667073475" - ], - [ - "6438", - "0.2791541172065823", - "2.2822177590145403", - "0.0", - "0.0", - "0.0", - "0.0", - "0.38867297334648176", - "4.220277380380433", - "0.0", - "0.0", - "0.16963526106668284" - ], - [ - "6439", - "0.2782900302804685", - "2.280576458918358", - "0.0", - "0.0", - "0.0", - "0.0", - "0.38748695532490285", - "4.218086956652673", - "0.0", - "0.0", - "0.1690931052360341" - ], - [ - "6440", - "0.27750125357386474", - "2.2790762506028313", - "0.0", - "0.0", - "0.0", - "0.0", - "0.386404977203029", - "4.216086152241096", - "0.0", - "0.0", - "0.16859752994470042" - ], - [ - "6441", - "0.27610546099168404", - "2.2763639767678665", - "0.0", - "0.0", - "0.0", - "0.0", - "0.384512391265565", - "4.212511308190005", - "0.0", - "0.0", - "0.16769853071780305" - ], - [ - "6442", - "0.27508538795462784", - "2.2744123273207353", - "0.0", - "0.0", - "0.0", - "0.0", - "0.38311728109295773", - "4.209916490691584", - "0.0", - "0.0", - "0.16705349481629794" - ], - [ - "6443", - "0.27416294934960894", - "2.272658640008884", - "0.0", - "0.0", - "0.0", - "0.0", - "0.38185126923574403", - "4.207576436485628", - "0.0", - "0.0", - "0.16647462946347388" - ], - [ - "6444", - "0.2733482636004942", - "2.2711104501716415", - "0.0", - "0.0", - "0.0", - "0.0", - "0.38073280229954676", - "4.205509964628519", - "0.0", - "0.0", - "0.1659637249014416" - ], - [ - "6445", - "0.27256836775108956", - "2.269616779061058", - "0.0", - "0.0", - "0.0", - "0.0", - "0.37966649310107764", - "4.203524754671242", - "0.0", - "0.0", - "0.16547024240110142" - ], - [ - "6446", - "0.2716403291575838", - "2.2678498657187074", - "0.0", - "0.0", - "0.0", - "0.0", - "0.3783934827222435", - "4.201168480396596", - "0.0", - "0.0", - "0.1648871755929241" - ], - [ - "6447", - "0.2705777263477578", - "2.2658269040589447", - "0.0", - "0.0", - "0.0", - "0.0", - "0.376935689325049", - "4.1984704179824055", - "0.0", - "0.0", - "0.16421976337046654" - ], - [ - "6448", - "0.26971162490834916", - "2.264183386442655", - "0.0", - "0.0", - "0.0", - "0.0", - "0.3757453032128469", - "4.196274284165671", - "0.0", - "0.0", - "0.16367794660385143" - ], - [ - "6449", - "0.26891198657961746", - "2.26266368142986", - "0.0", - "0.0", - "0.0", - "0.0", - "0.3746470682167661", - "4.194245173529044", - "0.0", - "0.0", - "0.16317690494246884" - ], - [ - "6450", - "0.26818789135250903", - "2.2612898932277194", - "0.0", - "0.0", - "0.0", - "0.0", - "0.3736516067172134", - "4.192409031445772", - "0.0", - "0.0", - "0.1627241759878046" - ], - [ - "6451", - "0.2674684307040072", - "2.2599248918331947", - "0.0", - "0.0", - "0.0", - "0.0", - "0.37266245074963994", - "4.190584530336307", - "0.0", - "0.0", - "0.16227441065837447" - ], - [ - "6452", - "0.2667539833425075", - "2.2585693958717026", - "0.0", - "0.0", - "0.0", - "0.0", - "0.37168012226662944", - "4.188772632744582", - "0.0", - "0.0", - "0.16182784441838557" - ], - [ - "6453", - "0.2660370891034965", - "2.2572084534764625", - "0.0", - "0.0", - "0.0", - "0.0", - "0.37069467191848565", - "4.186953946781586", - "0.0", - "0.0", - "0.16137950628850734" - ], - [ - "6454", - "0.2651947811096066", - "2.2556087316467126", - "0.0", - "0.0", - "0.0", - "0.0", - "0.36953700803411055", - "4.184816550269427", - "0.0", - "0.0", - "0.16085255418510258" - ], - [ - "6455", - "0.26435122728173627", - "2.2540077592342938", - "0.0", - "0.0", - "0.0", - "0.0", - "0.3683771079432839", - "4.182676505468416", - "0.0", - "0.0", - "0.16032534662018869" - ], - [ - "6456", - "0.2636166646475584", - "2.252614027911766", - "0.0", - "0.0", - "0.0", - "0.0", - "0.36736684652552054", - "4.180813074020985", - "0.0", - "0.0", - "0.15986648276959622" - ], - [ - "6457", - "0.2628873088105946", - "2.2512307752487906", - "0.0", - "0.0", - "0.0", - "0.0", - "0.36636344466748116", - "4.1789630956176165", - "0.0", - "0.0", - "0.15941117295370796" - ], - [ - "6458", - "0.26211288884235684", - "2.2497577944117406", - "0.0", - "0.0", - "0.0", - "0.0", - "0.36529961156031565", - "4.176996164366905", - "0.0", - "0.0", - "0.158926166124398" - ], - [ - "6459", - "0.26132118100893004", - "2.248253873462317", - "0.0", - "0.0", - "0.0", - "0.0", - "0.3642111993114225", - "4.1749863463427594", - "0.0", - "0.0", - "0.15843116270643762" - ], - [ - "6460", - "0.2605544621198511", - "2.2467975795206048", - "0.0", - "0.0", - "0.0", - "0.0", - "0.36315700079373214", - "4.173039933783469", - "0.0", - "0.0", - "0.15795192344597012" - ], - [ - "6461", - "0.2597924846956138", - "2.245350870864042", - "0.0", - "0.0", - "0.0", - "0.0", - "0.362109021149939", - "4.171105780138469", - "0.0", - "0.0", - "0.1574759482412886" - ], - [ - "6462", - "0.2590432380530339", - "2.243929310826594", - "0.0", - "0.0", - "0.0", - "0.0", - "0.3610780992070929", - "4.169204403674477", - "0.0", - "0.0", - "0.157008376898975" - ], - [ - "6463", - "0.2582970927012112", - "2.2425134048580944", - "0.0", - "0.0", - "0.0", - "0.0", - "0.3600514590906821", - "4.167310644268789", - "0.0", - "0.0", - "0.1565427263117404" - ], - [ - "6464", - "0.2575411447008086", - "2.2410769406406272", - "0.0", - "0.0", - "0.0", - "0.0", - "0.359012008893234", - "4.16539072403827", - "0.0", - "0.0", - "0.15607028050838312" - ], - [ - "6465", - "0.2568218822441081", - "2.239712773903269", - "0.0", - "0.0", - "0.0", - "0.0", - "0.35802193625435624", - "4.163565401994829", - "0.0", - "0.0", - "0.15562182823386" - ], - [ - "6466", - "0.2560274308174931", - "2.238204026794806", - "0.0", - "0.0", - "0.0", - "0.0", - "0.3569290454488044", - "4.161547967725261", - "0.0", - "0.0", - "0.15512581618618174" - ], - [ - "6467", - "0.2552318320949006", - "2.236694185576567", - "0.0", - "0.0", - "0.0", - "0.0", - "0.3558340748902401", - "4.159528132198474", - "0.0", - "0.0", - "0.15462958929956103" - ], - [ - "6468", - "0.2544605425979444", - "2.2352279341303807", - "0.0", - "0.0", - "0.0", - "0.0", - "0.3547734583285373", - "4.157568372958711", - "0.0", - "0.0", - "0.15414762686735148" - ], - [ - "6469", - "0.2538951798006434", - "2.2341552382809233", - "0.0", - "0.0", - "0.0", - "0.0", - "0.35399516525826763", - "4.156133008311864", - "0.0", - "0.0", - "0.15379519434301922" - ], - [ - "6470", - "0.25310943818960097", - "2.232662012555899", - "0.0", - "0.0", - "0.0", - "0.0", - "0.35291434210830896", - "4.154136602749371", - "0.0", - "0.0", - "0.15330453427089297" - ], - [ - "6471", - "0.2523464296972159", - "2.231213597847527", - "0.0", - "0.0", - "0.0", - "0.0", - "0.3518640919145245", - "4.152198790277451", - "0.0", - "0.0", - "0.1528287674799072" - ], - [ - "6472", - "0.25150738841937587", - "2.22960490646219", - "0.0", - "0.0", - "0.0", - "0.0", - "0.35071522360447366", - "4.150058243037065", - "0.0", - "0.0", - "0.15229955323427813" - ], - [ - "6473", - "0.25077833093866325", - "2.228221358453466", - "0.0", - "0.0", - "0.0", - "0.0", - "0.3497113898649638", - "4.148206659415321", - "0.0", - "0.0", - "0.15184527201236273" - ], - [ - "6474", - "0.25002511435963765", - "2.226788313359695", - "0.0", - "0.0", - "0.0", - "0.0", - "0.348675619309595", - "4.146291427333816", - "0.0", - "0.0", - "0.1513746094096803" - ], - [ - "6475", - "0.24930697232817559", - "2.2254257656767864", - "0.0", - "0.0", - "0.0", - "0.0", - "0.3476865633133469", - "4.144467512366245", - "0.0", - "0.0", - "0.1509273813430043" - ], - [ - "6476", - "0.24859006086999888", - "2.2240655466289665", - "0.0", - "0.0", - "0.0", - "0.0", - "0.34669913575536454", - "4.142646610881082", - "0.0", - "0.0", - "0.1504809859846332" - ], - [ - "6477", - "0.24787351289904447", - "2.2227050468946046", - "0.0", - "0.0", - "0.0", - "0.0", - "0.34571251279018084", - "4.1408259460505255", - "0.0", - "0.0", - "0.15003451300790813" - ], - [ - "6478", - "0.24716514481943305", - "2.2213609348707206", - "0.0", - "0.0", - "0.0", - "0.0", - "0.34473675628332934", - "4.139026469633407", - "0.0", - "0.0", - "0.14959353335553677" - ], - [ - "6479", - "0.24675946748120348", - "2.220582563003371", - "0.0", - "0.0", - "0.0", - "0.0", - "0.3441812219978991", - "4.137990740691436", - "0.0", - "0.0", - "0.14933771296450787" - ], - [ - "6480", - "0.24600849425939733", - "2.219152365366435", - "0.0", - "0.0", - "0.0", - "0.0", - "0.3431486759268478", - "4.136079724885308", - "0.0", - "0.0", - "0.14886831259194688" - ], - [ - "6481", - "0.2453374251748015", - "2.217878408078652", - "0.0", - "0.0", - "0.0", - "0.0", - "0.3422243686090511", - "4.134374367010151", - "0.0", - "0.0", - "0.14845048174055192" - ], - [ - "6482", - "0.24453325367168455", - "2.216341216578666", - "0.0", - "0.0", - "0.0", - "0.0", - "0.34112069983165233", - "4.1323243375622924", - "0.0", - "0.0", - "0.1479458075117168" - ], - [ - "6483", - "0.2438171776972164", - "2.2149821500432045", - "0.0", - "0.0", - "0.0", - "0.0", - "0.3401341296302287", - "4.130504575478462", - "0.0", - "0.0", - "0.1475002257642041" - ], - [ - "6484", - "0.24311535515370677", - "2.213650587264274", - "0.0", - "0.0", - "0.0", - "0.0", - "0.33916695696006116", - "4.128721200091652", - "0.0", - "0.0", - "0.1470637533473524" - ], - [ - "6485", - "0.24241416638506721", - "2.2123196742440308", - "0.0", - "0.0", - "0.0", - "0.0", - "0.33820080358550136", - "4.126939001038138", - "0.0", - "0.0", - "0.14662752918463307" - ], - [ - "6486", - "0.2417315440331181", - "2.21102324734899", - "0.0", - "0.0", - "0.0", - "0.0", - "0.33726045823592804", - "4.125203441119532", - "0.0", - "0.0", - "0.14620262983030818" - ], - [ - "6487", - "0.24130705600838903", - "2.2102169551313735", - "0.0", - "0.0", - "0.0", - "0.0", - "0.33667571610447955", - "4.1241240690260685", - "0.0", - "0.0", - "0.1459383959122985" - ], - [ - "6488", - "0.24053111712123706", - "2.208719393592368", - "0.0", - "0.0", - "0.0", - "0.0", - "0.3356158665630968", - "4.122136769981822", - "0.0", - "0.0", - "0.14544636767937738" - ], - [ - "6489", - "0.23985184636049575", - "2.2074231861709404", - "0.0", - "0.0", - "0.0", - "0.0", - "0.33468231966156375", - "4.120405781357119", - "0.0", - "0.0", - "0.14502137305942778" - ], - [ - "6490", - "0.2392624107058302", - "2.2063039789795025", - "0.0", - "0.0", - "0.0", - "0.0", - "0.333870049657025", - "4.1189069729459575", - "0.0", - "0.0", - "0.14465477175463543" - ], - [ - "6491", - "0.23868396835921415", - "2.2052060406632092", - "0.0", - "0.0", - "0.0", - "0.0", - "0.3330727320113662", - "4.1174362826753015", - "0.0", - "0.0", - "0.14429520470706209" - ], - [ - "6492", - "0.23810242167226292", - "2.204101959882297", - "0.0", - "0.0", - "0.0", - "0.0", - "0.3322711856891487", - "4.115957478287678", - "0.0", - "0.0", - "0.14393365765537713" - ], - [ - "6493", - "0.23744085650235383", - "2.2028454202921943", - "0.0", - "0.0", - "0.0", - "0.0", - "0.33135950176877105", - "4.1142747846666525", - "0.0", - "0.0", - "0.1435222112359366" - ], - [ - "6494", - "0.23681163436875413", - "2.2016497482364152", - "0.0", - "0.0", - "0.0", - "0.0", - "0.3304925495206037", - "4.112673932090443", - "0.0", - "0.0", - "0.14313071921690457" - ], - [ - "6495", - "0.23620794021408506", - "2.2005032001487193", - "0.0", - "0.0", - "0.0", - "0.0", - "0.3296604843180227", - "4.111138315792816", - "0.0", - "0.0", - "0.14275539611014737" - ], - [ - "6496", - "0.2356092521202784", - "2.1993664338106886", - "0.0", - "0.0", - "0.0", - "0.0", - "0.32883516522709805", - "4.109615520812661", - "0.0", - "0.0", - "0.1423833390134587" - ], - [ - "6497", - "0.23500119189835633", - "2.1982100461608414", - "0.0", - "0.0", - "0.0", - "0.0", - "0.32799757547756386", - "4.108067715379621", - "0.0", - "0.0", - "0.1420048083191488" - ], - [ - "6498", - "0.23437053574358294", - "2.197013324617595", - "0.0", - "0.0", - "0.0", - "0.0", - "0.32712779744822484", - "4.1064638893351875", - "0.0", - "0.0", - "0.141613274038941" - ], - [ - "6499", - "0.23381850863935863", - "2.195963472268186", - "0.0", - "0.0", - "0.0", - "0.0", - "0.3263673114658668", - "4.105058556090545", - "0.0", - "0.0", - "0.14126970581285048" - ], - [ - "6500", - "0.2332797412992096", - "2.1949402707489485", - "0.0", - "0.0", - "0.0", - "0.0", - "0.325624504044715", - "4.103687775066071", - "0.0", - "0.0", - "0.14093497855370418" - ], - [ - "6501", - "0.232745042335333", - "2.1939251988650215", - "0.0", - "0.0", - "0.0", - "0.0", - "0.32488711256149533", - "4.102327525515788", - "0.0", - "0.0", - "0.14060297210917067" - ], - [ - "6502", - "0.23220590957345488", - "2.1929018423579043", - "0.0", - "0.0", - "0.0", - "0.0", - "0.32414351657336704", - "4.1009560142105475", - "0.0", - "0.0", - "0.14026830257354272" - ], - [ - "6503", - "0.23160751102224536", - "2.191766441922322", - "0.0", - "0.0", - "0.0", - "0.0", - "0.32331795964714827", - "4.099433933551211", - "0.0", - "0.0", - "0.13989706239734243" - ], - [ - "6504", - "0.2309878605417444", - "2.1905871882170818", - "0.0", - "0.0", - "0.0", - "0.0", - "0.3224643821114982", - "4.0978555988488194", - "0.0", - "0.0", - "0.13951133897199058" - ], - [ - "6505", - "0.23042034506273767", - "2.1895102574390948", - "0.0", - "0.0", - "0.0", - "0.0", - "0.3216813879270852", - "4.096411849338444", - "0.0", - "0.0", - "0.1391593021983901" - ], - [ - "6506", - "0.22990417038155125", - "2.1885309514902884", - "0.0", - "0.0", - "0.0", - "0.0", - "0.3209691138313761", - "4.095098769773085", - "0.0", - "0.0", - "0.1388392269317264" - ], - [ - "6507", - "0.22939124103181785", - "2.187557740546544", - "0.0", - "0.0", - "0.0", - "0.0", - "0.3202613059253889", - "4.093793852223107", - "0.0", - "0.0", - "0.13852117613824685" - ], - [ - "6508", - "0.2288402162672769", - "2.186508909242112", - "0.0", - "0.0", - "0.0", - "0.0", - "0.3195021656699497", - "4.092389950718935", - "0.0", - "0.0", - "0.13817826686460408" - ], - [ - "6509", - "0.22829132451862635", - "2.1854675284477545", - "0.0", - "0.0", - "0.0", - "0.0", - "0.3187446268680759", - "4.090993454008607", - "0.0", - "0.0", - "0.1378380221691768" - ], - [ - "6510", - "0.22777693042739153", - "2.1844908158644576", - "0.0", - "0.0", - "0.0", - "0.0", - "0.3180349608591882", - "4.089684198449238", - "0.0", - "0.0", - "0.13751889999559486" - ], - [ - "6511", - "0.2272666458074265", - "2.1835219854753403", - "0.0", - "0.0", - "0.0", - "0.0", - "0.31733089841575374", - "4.0883853939991495", - "0.0", - "0.0", - "0.1372023931990993" - ], - [ - "6512", - "0.226744482797125", - "2.182530016522395", - "0.0", - "0.0", - "0.0", - "0.0", - "0.3166106340281849", - "4.087055946080418", - "0.0", - "0.0", - "0.1368783315660651" - ], - [ - "6513", - "0.22607974353698737", - "2.181265060177669", - "0.0", - "0.0", - "0.0", - "0.0", - "0.31569446207762103", - "4.085362128106197", - "0.0", - "0.0", - "0.1364650249963537" - ], - [ - "6514", - "0.22555196589898868", - "2.18026122709121", - "0.0", - "0.0", - "0.0", - "0.0", - "0.314966824580419", - "4.084017529922671", - "0.0", - "0.0", - "0.1361371072175583" - ], - [ - "6515", - "0.22499797275700012", - "2.179209196738098", - "0.0", - "0.0", - "0.0", - "0.0", - "0.31420236744206503", - "4.082607079294533", - "0.0", - "0.0", - "0.1357935780719352" - ], - [ - "6516", - "0.22437764238798705", - "2.1780282255308108", - "0.0", - "0.0", - "0.0", - "0.0", - "0.31334745437274114", - "4.08102587399045", - "0.0", - "0.0", - "0.13540783040323295" - ], - [ - "6517", - "0.22370771334042683", - "2.1767470632383272", - "0.0", - "0.0", - "0.0", - "0.0", - "0.3124263283625322", - "4.079314681321081", - "0.0", - "0.0", - "0.13498909831832148" - ], - [ - "6518", - "0.22321794093722414", - "2.1758169981991102", - "0.0", - "0.0", - "0.0", - "0.0", - "0.3117503638030074", - "4.078067548921698", - "0.0", - "0.0", - "0.13468551807144086" - ], - [ - "6519", - "0.22263244465207319", - "2.1746980643766127", - "0.0", - "0.0", - "0.0", - "0.0", - "0.3109449484062329", - "4.076572335435432", - "0.0", - "0.0", - "0.13431994089791352" - ], - [ - "6520", - "0.22215039628183647", - "2.1737832549879528", - "0.0", - "0.0", - "0.0", - "0.0", - "0.31027934889683406", - "4.075345112948254", - "0.0", - "0.0", - "0.1340214436668389" - ], - [ - "6521", - "0.22161450517035383", - "2.1727663420606866", - "0.0", - "0.0", - "0.0", - "0.0", - "0.3095393381792947", - "4.073980802486076", - "0.0", - "0.0", - "0.133689672161413" - ], - [ - "6522", - "0.22111407484241558", - "2.171815179723238", - "0.0", - "0.0", - "0.0", - "0.0", - "0.30884884730747875", - "4.072705787717732", - "0.0", - "0.0", - "0.1333793023773524" - ], - [ - "6523", - "0.22063516691225252", - "2.170905826667251", - "0.0", - "0.0", - "0.0", - "0.0", - "0.30818767664262003", - "4.071486100754674", - "0.0", - "0.0", - "0.13308265718188503" - ], - [ - "6524", - "0.22011273717444446", - "2.1699135249620576", - "0.0", - "0.0", - "0.0", - "0.0", - "0.30746650271451276", - "4.070155329430327", - "0.0", - "0.0", - "0.13275897163437614" - ], - [ - "6525", - "0.21964441318765995", - "2.1690245039398315", - "0.0", - "0.0", - "0.0", - "0.0", - "0.3068197903443445", - "4.068962638688268", - "0.0", - "0.0", - "0.13246903603097546" - ], - [ - "6526", - "0.2192914528384374", - "2.1683550048309934", - "0.0", - "0.0", - "0.0", - "0.0", - "0.3063321638051718", - "4.068064033000276", - "0.0", - "0.0", - "0.132250741871703" - ], - [ - "6527", - "0.21886627026015595", - "2.1675468529461597", - "0.0", - "0.0", - "0.0", - "0.0", - "0.30574537049601125", - "4.066980519776128", - "0.0", - "0.0", - "0.13198717002430066" - ], - [ - "6528", - "0.21838744426501552", - "2.1666358397420407", - "0.0", - "0.0", - "0.0", - "0.0", - "0.30508485753251297", - "4.065759715007975", - "0.0", - "0.0", - "0.13169003099751808" - ], - [ - "6529", - "0.21792514555452866", - "2.1657587051637535", - "0.0", - "0.0", - "0.0", - "0.0", - "0.30444618512081345", - "4.064582467232435", - "0.0", - "0.0", - "0.13140410598824384" - ], - [ - "6530", - "0.217420087945157", - "2.1647949548175567", - "0.0", - "0.0", - "0.0", - "0.0", - "0.3037504990335068", - "4.0632929729991165", - "0.0", - "0.0", - "0.13108967685680722" - ], - [ - "6531", - "0.2169488761561746", - "2.1639000510202546", - "0.0", - "0.0", - "0.0", - "0.0", - "0.30309977708463826", - "4.062092411364082", - "0.0", - "0.0", - "0.13079797522771097" - ], - [ - "6532", - "0.2164481754561221", - "2.162947714621135", - "0.0", - "0.0", - "0.0", - "0.0", - "0.30240884323900524", - "4.06081580324898", - "0.0", - "0.0", - "0.13048750767323894" - ], - [ - "6533", - "0.21583836124261166", - "2.1617861077117664", - "0.0", - "0.0", - "0.0", - "0.0", - "0.3015679545531071", - "4.059259873924255", - "0.0", - "0.0", - "0.1301087679321162" - ], - [ - "6534", - "0.21534320084291747", - "2.1608435434325", - "0.0", - "0.0", - "0.0", - "0.0", - "0.3008848817142064", - "4.057996810039406", - "0.0", - "0.0", - "0.12980151997162856" - ], - [ - "6535", - "0.21478312727154528", - "2.1597667646248975", - "0.0", - "0.0", - "0.0", - "0.0", - "0.30011627657628176", - "4.056561674179816", - "0.0", - "0.0", - "0.12944997796680882" - ], - [ - "6536", - "0.2141843333113626", - "2.1586244399314967", - "0.0", - "0.0", - "0.0", - "0.0", - "0.29929109657236447", - "4.05503261141691", - "0.0", - "0.0", - "0.1290775700503608" - ], - [ - "6537", - "0.21360418816690038", - "2.157518502563167", - "0.0", - "0.0", - "0.0", - "0.0", - "0.298491259457769", - "4.05355158365449", - "0.0", - "0.0", - "0.12871711687603177" - ], - [ - "6538", - "0.21313666070066895", - "2.156631573145737", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2978450063152867", - "4.05236060959252", - "0.0", - "0.0", - "0.1284283150860512" - ], - [ - "6539", - "0.21266987769370257", - "2.155745682961771", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2971998942191642", - "4.051171259472602", - "0.0", - "0.0", - "0.12813986116824091" - ], - [ - "6540", - "0.2121537224102959", - "2.1547641755411955", - "0.0", - "0.0", - "0.0", - "0.0", - "0.29648724186239145", - "4.0498548981682285", - "0.0", - "0.0", - "0.12782020295820032" - ], - [ - "6541", - "0.2116472564184287", - "2.153803369573691", - "0.0", - "0.0", - "0.0", - "0.0", - "0.29578706509154123", - "4.048564566492906", - "0.0", - "0.0", - "0.12750744774531617" - ], - [ - "6542", - "0.2111282280260284", - "2.152818849034995", - "0.0", - "0.0", - "0.0", - "0.0", - "0.29506943978367267", - "4.047242242604075", - "0.0", - "0.0", - "0.12718701626838413" - ], - [ - "6543", - "0.2106078148112302", - "2.1518312083437876", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2943500502073526", - "4.045916033862007", - "0.0", - "0.0", - "0.1268655794151078" - ], - [ - "6544", - "0.21018326308927232", - "2.1510259929550752", - "0.0", - "0.0", - "0.0", - "0.0", - "0.293762956432753", - "4.044834374513064", - "0.0", - "0.0", - "0.1266035697457916" - ], - [ - "6545", - "0.20975159122134662", - "2.1502065914369184", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2931662504425495", - "4.043734122417721", - "0.0", - "0.0", - "0.1263369320001437" - ], - [ - "6546", - "0.20927842316881792", - "2.1493060047633388", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2925130734729191", - "4.042526596312453", - "0.0", - "0.0", - "0.12604377286471674" - ], - [ - "6547", - "0.20887721718859395", - "2.148544780568052", - "0.0", - "0.0", - "0.0", - "0.0", - "0.29195829952706226", - "4.041504128080303", - "0.0", - "0.0", - "0.12579613485012564" - ], - [ - "6548", - "0.20844880102029256", - "2.147730797214241", - "0.0", - "0.0", - "0.0", - "0.0", - "0.29136630628043336", - "4.0404115916868415", - "0.0", - "0.0", - "0.12553129576015176" - ], - [ - "6549", - "0.208054949724412", - "2.1469836250819894", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2908216199628326", - "4.039407855121275", - "0.0", - "0.0", - "0.12528827948599133" - ], - [ - "6550", - "0.20766309752969603", - "2.1462402435641756", - "0.0", - "0.0", - "0.0", - "0.0", - "0.29027967777210234", - "4.038409178723437", - "0.0", - "0.0", - "0.12504651728728974" - ], - [ - "6551", - "0.20718925251518358", - "2.1453415720677502", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2896242106998052", - "4.037201646754604", - "0.0", - "0.0", - "0.12475429433056193" - ], - [ - "6552", - "0.20673848341604886", - "2.144486414058516", - "0.0", - "0.0", - "0.0", - "0.0", - "0.28900073107667373", - "4.03605272347198", - "0.0", - "0.0", - "0.12447623575542396" - ], - [ - "6553", - "0.2062900058720711", - "2.14363560093293", - "0.0", - "0.0", - "0.0", - "0.0", - "0.28838039402223126", - "4.034909595580567", - "0.0", - "0.0", - "0.12419961772191097" - ], - [ - "6554", - "0.20584466118888356", - "2.142790728786925", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2877643637136236", - "4.033774408293935", - "0.0", - "0.0", - "0.12392495866414345" - ], - [ - "6555", - "0.20539192972559606", - "2.1419302895508125", - "0.0", - "0.0", - "0.0", - "0.0", - "0.28713867774859986", - "4.032619407298735", - "0.0", - "0.0", - "0.12364518170259227" - ], - [ - "6556", - "0.2049095224508829", - "2.141012541298305", - "0.0", - "0.0", - "0.0", - "0.0", - "0.28647229295545945", - "4.031388098236982", - "0.0", - "0.0", - "0.12334675194630634" - ], - [ - "6557", - "0.20446388710977917", - "2.140166445264408", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2858560306598128", - "4.0302516284679015", - "0.0", - "0.0", - "0.12307174355974553" - ], - [ - "6558", - "0.20401623026429952", - "2.139316024079809", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2852371301105097", - "4.029109664698538", - "0.0", - "0.0", - "0.12279533041808934" - ], - [ - "6559", - "0.20356338876767943", - "2.1384559198262867", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2846109700451934", - "4.027954531069683", - "0.0", - "0.0", - "0.12251580749016541" - ], - [ - "6560", - "0.2030632894242823", - "2.137504223868662", - "0.0", - "0.0", - "0.0", - "0.0", - "0.28392012774166014", - "4.026677686906563", - "0.0", - "0.0", - "0.12220645110690445" - ], - [ - "6561", - "0.20261798675079515", - "2.13665923381035", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2833040308861027", - "4.025542172977035", - "0.0", - "0.0", - "0.12193194261548763" - ], - [ - "6562", - "0.2021646666054765", - "2.135795611938294", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2826781111848908", - "4.024384098343431", - "0.0", - "0.0", - "0.1216512220260622" - ], - [ - "6563", - "0.20173714319780658", - "2.1349845405962578", - "0.0", - "0.0", - "0.0", - "0.0", - "0.28208649085788423", - "4.023293947829305", - "0.0", - "0.0", - "0.12138779553772894" - ], - [ - "6564", - "0.20130921579213815", - "2.1341725154285713", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2814943571589303", - "4.0222026135671305", - "0.0", - "0.0", - "0.12112407442534595" - ], - [ - "6565", - "0.20088151370957494", - "2.1333608425517", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2809025383567453", - "4.021111768288163", - "0.0", - "0.0", - "0.1208604890624046" - ], - [ - "6566", - "0.2004557362575142", - "2.132553050811444", - "0.0", - "0.0", - "0.0", - "0.0", - "0.28031327059988026", - "4.0200259306641355", - "0.0", - "0.0", - "0.12059820191514811" - ], - [ - "6567", - "0.20002279855807054", - "2.131731659835507", - "0.0", - "0.0", - "0.0", - "0.0", - "0.27971407290177397", - "4.018921783081045", - "0.0", - "0.0", - "0.1203315242143671" - ], - [ - "6568", - "0.19893134944265115", - "2.129568487881824", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2782384225135745", - "4.016081903582207", - "0.0", - "0.0", - "0.11962427637172783" - ], - [ - "6569", - "0.1984468906300353", - "2.128648659336152", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2775680708935564", - "4.014845766611666", - "0.0", - "0.0", - "0.11932571036651415" - ], - [ - "6570", - "0.19802604631279255", - "2.1278493191657724", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2769858285702721", - "4.013771726418249", - "0.0", - "0.0", - "0.11906626405531298" - ], - [ - "6571", - "0.19761454674145085", - "2.1270687615562207", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2764160990118101", - "4.012722125349909", - "0.0", - "0.0", - "0.1188129944710916" - ], - [ - "6572", - "0.19718237066535932", - "2.126249049181213", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2758176920730415", - "4.011619785267992", - "0.0", - "0.0", - "0.11854704925767713" - ], - [ - "6573", - "0.19673242529957286", - "2.125394377742367", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2751951295160556", - "4.010471314644811", - "0.0", - "0.0", - "0.11826972108309013" - ], - [ - "6574", - "0.19629207157723175", - "2.124559135816258", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2745853521782175", - "4.009348018945091", - "0.0", - "0.0", - "0.11799879097624597" - ], - [ - "6575", - "0.19585834195881247", - "2.123735739281059", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2739849935249601", - "4.008241141957625", - "0.0", - "0.0", - "0.11773169039266487" - ], - [ - "6576", - "0.19543802151358833", - "2.1229380757420917", - "0.0", - "0.0", - "0.0", - "0.0", - "0.27340306548753307", - "4.007168614058381", - "0.0", - "0.0", - "0.11747297753964363" - ], - [ - "6577", - "0.19502243952470835", - "2.1221498316074707", - "0.0", - "0.0", - "0.0", - "0.0", - "0.27282751167909947", - "4.006108398772468", - "0.0", - "0.0", - "0.11721736737031722" - ], - [ - "6578", - "0.1946077352522752", - "2.121363067576815", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2722532193600769", - "4.005050272562063", - "0.0", - "0.0", - "0.1169622511444735" - ], - [ - "6579", - "0.19418117667546997", - "2.120553624501086", - "0.0", - "0.0", - "0.0", - "0.0", - "0.27166255758137936", - "4.003961745197794", - "0.0", - "0.0", - "0.11669979576956062" - ], - [ - "6580", - "0.19375413451624557", - "2.1197433298616706", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2710711756207608", - "4.0028719839176725", - "0.0", - "0.0", - "0.11643709341173035" - ], - [ - "6581", - "0.193326838278826", - "2.1189321596213553", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2704795652857098", - "4.001781294645798", - "0.0", - "0.0", - "0.11617411127194217" - ], - [ - "6582", - "0.19288052386755075", - "2.1180782843787385", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2698640961824209", - "4.000637999713987", - "0.0", - "0.0", - "0.11589695155268057" - ], - [ - "6583", - "0.19244133453903453", - "2.117245204302426", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2692557120094128", - "3.9995172736628337", - "0.0", - "0.0", - "0.11562695706865632" - ], - [ - "6584", - "0.1920547779608615", - "2.116512016479501", - "0.0", - "0.0", - "0.0", - "0.0", - "0.26872019368798267", - "3.9985308548010257", - "0.0", - "0.0", - "0.11538936223374036" - ], - [ - "6585", - "0.19167188485181566", - "2.115785665322737", - "0.0", - "0.0", - "0.0", - "0.0", - "0.26818977229511387", - "3.9975536838798873", - "0.0", - "0.0", - "0.1151539974085174" - ], - [ - "6586", - "0.19128901361188944", - "2.1150565455441868", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2676604244716081", - "3.996574825044522", - "0.0", - "0.0", - "0.11491760275217078" - ], - [ - "6587", - "0.190896750670074", - "2.114304855473002", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2671198438609836", - "3.995569067082404", - "0.0", - "0.0", - "0.11467365747916441" - ], - [ - "6588", - "0.1904946244611237", - "2.113542105175291", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2665626800116629", - "3.9945427601879713", - "0.0", - "0.0", - "0.11442656891058454" - ], - [ - "6589", - "0.1900522874842133", - "2.1126952764846054", - "0.0", - "0.0", - "0.0", - "0.0", - "0.26595273055019847", - "3.993409028868585", - "0.0", - "0.0", - "0.11415184441822808" - ], - [ - "6590", - "0.18960139440217605", - "2.111838209977651", - "0.0", - "0.0", - "0.0", - "0.0", - "0.26532862968861964", - "3.992257065542293", - "0.0", - "0.0", - "0.11387415911573245" - ], - [ - "6591", - "0.18916106015066145", - "2.111002409477198", - "0.0", - "0.0", - "0.0", - "0.0", - "0.26471866372369623", - "3.9911327636635847", - "0.0", - "0.0", - "0.11360345657762669" - ], - [ - "6592", - "0.18877935436742607", - "2.1102784472676355", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2641896797416963", - "3.9901584612700067", - "0.0", - "0.0", - "0.11336902899315579" - ], - [ - "6593", - "0.18834945731851943", - "2.1094571709982466", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2635961221110114", - "3.9890575073044428", - "0.0", - "0.0", - "0.11310279252602748" - ], - [ - "6594", - "0.18791076056825248", - "2.1086240608786033", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2629885050148701", - "3.9879370098621347", - "0.0", - "0.0", - "0.11283301612163488" - ], - [ - "6595", - "0.1874815226744556", - "2.1078097806591614", - "0.0", - "0.0", - "0.0", - "0.0", - "0.26239363475514577", - "3.986841159329762", - "0.0", - "0.0", - "0.11256941059376543" - ], - [ - "6596", - "0.18704970616733585", - "2.1069899336556315", - "0.0", - "0.0", - "0.0", - "0.0", - "0.26179541996110767", - "3.9857382726581716", - "0.0", - "0.0", - "0.112303992373564" - ], - [ - "6597", - "0.1866478298770997", - "2.106227755796974", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2612383472613776", - "3.984712321231805", - "0.0", - "0.0", - "0.11205731249282176" - ], - [ - "6598", - "0.1862464686116409", - "2.105462918282741", - "0.0", - "0.0", - "0.0", - "0.0", - "0.26068334059595755", - "3.983685429879998", - "0.0", - "0.0", - "0.11180959662732425" - ], - [ - "6599", - "0.18584484965332954", - "2.1046957848500387", - "0.0", - "0.0", - "0.0", - "0.0", - "0.26012863686474197", - "3.9826567412685336", - "0.0", - "0.0", - "0.1115610624419171" - ], - [ - "6600", - "0.18562794966493384", - "2.1042784440590134", - "0.0", - "0.0", - "0.0", - "0.0", - "0.25983020055912204", - "3.9820993126534074", - "0.0", - "0.0", - "0.11142569877074565" - ], - [ - "6601", - "0.18521036524247353", - "2.103486337482383", - "0.0", - "0.0", - "0.0", - "0.0", - "0.259251320899471", - "3.98103304279656", - "0.0", - "0.0", - "0.11116940958547605" - ], - [ - "6602", - "0.18468162506259328", - "2.1024459794882544", - "0.0", - "0.0", - "0.0", - "0.0", - "0.25853244841272316", - "3.9796600442041985", - "0.0", - "0.0", - "0.11083080171246339" - ], - [ - "6603", - "0.1842503492832348", - "2.1016236722143105", - "0.0", - "0.0", - "0.0", - "0.0", - "0.25793612753365824", - "3.9785561356312824", - "0.0", - "0.0", - "0.11056457103281138" - ], - [ - "6604", - "0.18370943278632904", - "2.100580112357963", - "0.0", - "0.0", - "0.0", - "0.0", - "0.25719277870617896", - "3.977164068640473", - "0.0", - "0.0", - "0.11022608686647913" - ], - [ - "6605", - "0.1832857833952309", - "2.099774733723255", - "0.0", - "0.0", - "0.0", - "0.0", - "0.25660604183269986", - "3.9760810463797136", - "0.0", - "0.0", - "0.10996552495776198" - ], - [ - "6606", - "0.18287824457358284", - "2.0990019237356843", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2560408601851477", - "3.975040358839396", - "0.0", - "0.0", - "0.109715628962018" - ], - [ - "6607", - "0.1824635284759664", - "2.098214033722398", - "0.0", - "0.0", - "0.0", - "0.0", - "0.25546625588517774", - "3.973980406785676", - "0.0", - "0.0", - "0.10946080106675503" - ], - [ - "6608", - "0.1820356270992408", - "2.097398777331058", - "0.0", - "0.0", - "0.0", - "0.0", - "0.254874231903778", - "3.97288529790378", - "0.0", - "0.0", - "0.10919702229470361" - ], - [ - "6609", - "0.18168476709352785", - "2.0967334511722795", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2543875909390951", - "3.9719892523867655", - "0.0", - "0.0", - "0.10898194324796061" - ], - [ - "6610", - "0.18127225271831818", - "2.0959456899306086", - "0.0", - "0.0", - "0.0", - "0.0", - "0.25381749758847266", - "3.9709323371558294", - "0.0", - "0.0", - "0.10872700784816369" - ], - [ - "6611", - "0.18078953914062196", - "2.095017229734647", - "0.0", - "0.0", - "0.0", - "0.0", - "0.25315286483374516", - "3.969691447481115", - "0.0", - "0.0", - "0.10842621344749874" - ], - [ - "6612", - "0.1803862893033421", - "2.0942514308177325", - "0.0", - "0.0", - "0.0", - "0.0", - "0.25259391164287737", - "3.9686608005449764", - "0.0", - "0.0", - "0.10817866696380686" - ], - [ - "6613", - "0.17813200136310897", - "2.089936194827239", - "0.0", - "0.0", - "0.0", - "0.0", - "0.24948166199751146", - "3.9628775536995278", - "0.0", - "0.0", - "0.1067823407287065" - ], - [ - "6614", - "0.17774386907859882", - "2.0892002966456227", - "0.0", - "0.0", - "0.0", - "0.0", - "0.24894306689226367", - "3.961886042813038", - "0.0", - "0.0", - "0.10654467126493397" - ], - [ - "6615", - "0.17735492832893948", - "2.0884624527117492", - "0.0", - "0.0", - "0.0", - "0.0", - "0.24840348414965013", - "3.9608921799104078", - "0.0", - "0.0", - "0.10630637250822886" - ], - [ - "6616", - "0.17693728727907532", - "2.0876655098211527", - "0.0", - "0.0", - "0.0", - "0.0", - "0.24782581497999304", - "3.9598220882894926", - "0.0", - "0.0", - "0.10604875957815757" - ], - [ - "6617", - "0.17653659974491698", - "2.086903187055952", - "0.0", - "0.0", - "0.0", - "0.0", - "0.24727071644285148", - "3.958796789915666", - "0.0", - "0.0", - "0.10580248304698246" - ], - [ - "6618", - "0.17617039042515664", - "2.0862083146973", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2467626639018685", - "3.95786082187019", - "0.0", - "0.0", - "0.10557811694844482" - ], - [ - "6619", - "0.17584345516738686", - "2.0855878301953803", - "0.0", - "0.0", - "0.0", - "0.0", - "0.246309131615835", - "3.957025124317925", - "0.0", - "0.0", - "0.10537777871893872" - ], - [ - "6620", - "0.17548895892888997", - "2.084915714201109", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2458170941876223", - "3.9561193643778076", - "0.0", - "0.0", - "0.10516082367015762" - ], - [ - "6621", - "0.1751310753136052", - "2.0842367222533458", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2453205078962606", - "3.955204642777017", - "0.0", - "0.0", - "0.10494164273094982" - ], - [ - "6622", - "0.174714573546884", - "2.083438206926743", - "0.0", - "0.0", - "0.0", - "0.0", - "0.24474569292549733", - "3.9541349613422803", - "0.0", - "0.0", - "0.10468345416827064" - ], - [ - "6623", - "0.1743888183024517", - "2.082820595337639", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2442934912757779", - "3.95330256245848", - "0.0", - "0.0", - "0.1044841453291255" - ], - [ - "6624", - "0.17406451671046652", - "2.082205738551545", - "0.0", - "0.0", - "0.0", - "0.0", - "0.24384329301380545", - "3.9524738538355995", - "0.0", - "0.0", - "0.10428574040712757" - ], - [ - "6625", - "0.17372851570006034", - "2.0815681083701327", - "0.0", - "0.0", - "0.0", - "0.0", - "0.24337706069439694", - "3.951614860748534", - "0.0", - "0.0", - "0.10407997070572372" - ], - [ - "6626", - "0.1733793609748111", - "2.08090610968465", - "0.0", - "0.0", - "0.0", - "0.0", - "0.24289233589207992", - "3.9507225775276282", - "0.0", - "0.0", - "0.10386638605754227" - ], - [ - "6627", - "0.1729974964400352", - "2.0801772905385407", - "0.0", - "0.0", - "0.0", - "0.0", - "0.24236398918324287", - "3.949743722059779", - "0.0", - "0.0", - "0.10363100369682755" - ], - [ - "6628", - "0.17255822007196644", - "2.0793331477736654", - "0.0", - "0.0", - "0.0", - "0.0", - "0.24175834567211854", - "3.9486141266640855", - "0.0", - "0.0", - "0.10335809447181435" - ], - [ - "6629", - "0.1721939695103028", - "2.0786425387454117", - "0.0", - "0.0", - "0.0", - "0.0", - "0.24125259770896565", - "3.947683175358777", - "0.0", - "0.0", - "0.10313534131163994" - ], - [ - "6630", - "0.17172667763739005", - "2.077754348422311", - "0.0", - "0.0", - "0.0", - "0.0", - "0.24060458792634443", - "3.9464874648757973", - "0.0", - "0.0", - "0.10284876734843565" - ], - [ - "6631", - "0.17136515102587702", - "2.0770685983393933", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2401026942453827", - "3.945563220450222", - "0.0", - "0.0", - "0.10262760780637138" - ], - [ - "6632", - "0.1709982018532581", - "2.076371423624099", - "0.0", - "0.0", - "0.0", - "0.0", - "0.23959368219744698", - "3.9446243831709897", - "0.0", - "0.0", - "0.10240272150906919" - ], - [ - "6633", - "0.1705923685830855", - "2.0755955549573724", - "0.0", - "0.0", - "0.0", - "0.0", - "0.23903252235560674", - "3.9435830641681755", - "0.0", - "0.0", - "0.10215221481056423" - ], - [ - "6634", - "0.16936790920664194", - "2.0732550876200424", - "0.0", - "0.0", - "0.0", - "0.0", - "0.23733910681672826", - "3.940441291265561", - "0.0", - "0.0", - "0.1013967115965556" - ], - [ - "6635", - "0.1690246902278136", - "2.072604381188238", - "0.0", - "0.0", - "0.0", - "0.0", - "0.23686239358162497", - "3.9395638633132783", - "0.0", - "0.0", - "0.10118698687400224" - ], - [ - "6636", - "0.168681895670355", - "2.0719541926949163", - "0.0", - "0.0", - "0.0", - "0.0", - "0.23638636087615775", - "3.9386873176288466", - "0.0", - "0.0", - "0.10097743046455221" - ], - [ - "6637", - "0.16834165728151115", - "2.071309120614368", - "0.0", - "0.0", - "0.0", - "0.0", - "0.23591376046575166", - "3.9378174471404166", - "0.0", - "0.0", - "0.10076955409727063" - ], - [ - "6638", - "0.16799207533409527", - "2.070646400237847", - "0.0", - "0.0", - "0.0", - "0.0", - "0.23542813934691634", - "3.9369237024035044", - "0.0", - "0.0", - "0.1005560113212742" - ], - [ - "6639", - "0.16769959991168", - "2.070091938530818", - "0.0", - "0.0", - "0.0", - "0.0", - "0.23502183464412016", - "3.936175935091295", - "0.0", - "0.0", - "0.10037736517923981" - ], - [ - "6640", - "0.16740564363560517", - "2.069534263524356", - "0.0", - "0.0", - "0.0", - "0.0", - "0.23461361304621192", - "3.9354241124734193", - "0.0", - "0.0", - "0.1001976742249984" - ], - [ - "6641", - "0.1671134254714477", - "2.0689802153523456", - "0.0", - "0.0", - "0.0", - "0.0", - "0.23420766909856164", - "3.9346769188281385", - "0.0", - "0.0", - "0.10001918184433378" - ], - [ - "6642", - "0.16680136575969143", - "2.0683854900466083", - "0.0", - "0.0", - "0.0", - "0.0", - "0.23377529736289984", - "3.933877087099169", - "0.0", - "0.0", - "0.09982743415648303" - ], - [ - "6643", - "0.16652834466696356", - "2.0678679396289406", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2333959607529648", - "3.933179004803514", - "0.0", - "0.0", - "0.09966072858096235" - ], - [ - "6644", - "0.1662582734808972", - "2.0673559518224183", - "0.0", - "0.0", - "0.0", - "0.0", - "0.23302072329610438", - "3.9324884305485837", - "0.0", - "0.0", - "0.09949582366569003" - ], - [ - "6645", - "0.16598708204767065", - "2.066841474828576", - "0.0", - "0.0", - "0.0", - "0.0", - "0.23264405620727113", - "3.9317947502385504", - "0.0", - "0.0", - "0.09933010788807015" - ], - [ - "6646", - "0.16567186225782138", - "2.0662438883689633", - "0.0", - "0.0", - "0.0", - "0.0", - "0.23220606679043546", - "3.930988685744354", - "0.0", - "0.0", - "0.0991376577252073" - ], - [ - "6647", - "0.1653864825544637", - "2.06570287716063", - "0.0", - "0.0", - "0.0", - "0.0", - "0.23180952518274944", - "3.9302589107628294", - "0.0", - "0.0", - "0.09896343992617795" - ], - [ - "6648", - "0.16508263457875436", - "2.065125305579241", - "0.0", - "0.0", - "0.0", - "0.0", - "0.23138789063937842", - "3.929480934102665", - "0.0", - "0.0", - "0.09877737851813027" - ], - [ - "6649", - "0.16480095919457136", - "2.064591317458105", - "0.0", - "0.0", - "0.0", - "0.0", - "0.23099647230459117", - "3.9287605949787348", - "0.0", - "0.0", - "0.09860544608455153" - ], - [ - "6650", - "0.16450173327800718", - "2.0639978372073076", - "0.0", - "0.0", - "0.0", - "0.0", - "0.23059050240483703", - "3.927979191810959", - "0.0", - "0.0", - "0.09841296415117733" - ], - [ - "6651", - "0.1641656962984573", - "2.0633601938750594", - "0.0", - "0.0", - "0.0", - "0.0", - "0.23012373757240367", - "3.927119414833066", - "0.0", - "0.0", - "0.09820765502451088" - ], - [ - "6652", - "0.1638291903281744", - "2.0627216450237773", - "0.0", - "0.0", - "0.0", - "0.0", - "0.22965631088992694", - "3.9262584027902987", - "0.0", - "0.0", - "0.09800206976642181" - ], - [ - "6653", - "0.1635454082521444", - "2.062183270705892", - "0.0", - "0.0", - "0.0", - "0.0", - "0.22926206068093677", - "3.9255323526010244", - "0.0", - "0.0", - "0.09782875582335204" - ], - [ - "6654", - "0.1632153965325929", - "2.0615576961094235", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2288033812361128", - "3.924688312813307", - "0.0", - "0.0", - "0.09762741182907299" - ], - [ - "6655", - "0.16298397050055946", - "2.061108487824642", - "0.0", - "0.0", - "0.0", - "0.0", - "0.22848566302195816", - "3.924089916039923", - "0.0", - "0.0", - "0.09748227797916074" - ], - [ - "6656", - "0.16259312083712557", - "2.06036614092654", - "0.0", - "0.0", - "0.0", - "0.0", - "0.22794293528668944", - "3.923089331126319", - "0.0", - "0.0", - "0.09724330638756168" - ], - [ - "6657", - "0.16226465173193452", - "2.059743365798514", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2274864015053105", - "3.9222490887162627", - "0.0", - "0.0", - "0.09704290195855857" - ], - [ - "6658", - "0.16194496325859456", - "2.0591373039527094", - "0.0", - "0.0", - "0.0", - "0.0", - "0.227042032397551", - "3.9214313246161954", - "0.0", - "0.0", - "0.09684789411963811" - ], - [ - "6659", - "0.1616224571579883", - "2.058525974173077", - "0.0", - "0.0", - "0.0", - "0.0", - "0.22659370423356778", - "3.9206063751965283", - "0.0", - "0.0", - "0.09665121008240878" - ], - [ - "6660", - "0.16128640284156243", - "2.057886154845121", - "0.0", - "0.0", - "0.0", - "0.0", - "0.22612758006934838", - "3.9197450120669064", - "0.0", - "0.0", - "0.09644522561377648" - ], - [ - "6661", - "0.16097083822294722", - "2.0572880837219816", - "0.0", - "0.0", - "0.0", - "0.0", - "0.22568883396973283", - "3.918937833945306", - "0.0", - "0.0", - "0.09625284247616163" - ], - [ - "6662", - "0.1606549919701365", - "2.0566886714827097", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2252499848967815", - "3.918129414527207", - "0.0", - "0.0", - "0.09605999904349152" - ], - [ - "6663", - "0.16033619787501704", - "2.0560841210060943", - "0.0", - "0.0", - "0.0", - "0.0", - "0.22480685424270128", - "3.9173137088109766", - "0.0", - "0.0", - "0.0958655415073328" - ], - [ - "6664", - "0.16001442412016012", - "2.055453945274444", - "0.0", - "0.0", - "0.0", - "0.0", - "0.22436705999524278", - "3.9164780184550594", - "0.0", - "0.0", - "0.09566178824507743" - ], - [ - "6665", - "0.15972749482535986", - "2.054910087985135", - "0.0", - "0.0", - "0.0", - "0.0", - "0.22396809603857357", - "3.915743968521028", - "0.0", - "0.0", - "0.09548689361214613" - ], - [ - "6666", - "0.1594370607291159", - "2.054358589474982", - "0.0", - "0.0", - "0.0", - "0.0", - "0.22356462105702726", - "3.9150003167135474", - "0.0", - "0.0", - "0.09530950040120453" - ], - [ - "6667", - "0.1591387994091149", - "2.053792058352555", - "0.0", - "0.0", - "0.0", - "0.0", - "0.22315032332953413", - "3.9142364986598666", - "0.0", - "0.0", - "0.09512727548869569" - ], - [ - "6668", - "0.15884275768572984", - "2.0532308163524386", - "0.0", - "0.0", - "0.0", - "0.0", - "0.22273869357650455", - "3.913479007972457", - "0.0", - "0.0", - "0.09494682179495514" - ], - [ - "6669", - "0.15856597738015937", - "2.0527061959748525", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2223537948135558", - "3.9127708493179445", - "0.0", - "0.0", - "0.09477815994676293" - ], - [ - "6670", - "0.15826935343345094", - "2.052143961827192", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2219412891597086", - "3.9120118995334456", - "0.0", - "0.0", - "0.09459741770719328" - ], - [ - "6671", - "0.15797389159575323", - "2.0515839297528617", - "0.0", - "0.0", - "0.0", - "0.0", - "0.22153038725226798", - "3.911255903025771", - "0.0", - "0.0", - "0.09441739593923851" - ], - [ - "6672", - "0.15769457680540508", - "2.0510544890239735", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2211419350888634", - "3.9105411947893582", - "0.0", - "0.0", - "0.09424721852194676" - ], - [ - "6673", - "0.15742671630710323", - "2.050546104070115", - "0.0", - "0.0", - "0.0", - "0.0", - "0.22076964805600421", - "3.9098553736756614", - "0.0", - "0.0", - "0.09408378455820222" - ], - [ - "6674", - "0.15717358196271244", - "2.0500663001432633", - "0.0", - "0.0", - "0.0", - "0.0", - "0.22041758195695832", - "3.9092076324866687", - "0.0", - "0.0", - "0.09392958196846654" - ], - [ - "6675", - "0.1568998062000832", - "2.0495473705744667", - "0.0", - "0.0", - "0.0", - "0.0", - "0.22003679712404486", - "3.908507055523764", - "0.0", - "0.0", - "0.09376281527612156" - ], - [ - "6676", - "0.15661389201760825", - "2.0490052131169088", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2196392003349624", - "3.9077752628516857", - "0.0", - "0.0", - "0.09358858370025412" - ], - [ - "6677", - "0.1563387392311218", - "2.0484831077977934", - "0.0", - "0.0", - "0.0", - "0.0", - "0.21925668998494915", - "3.907070777455025", - "0.0", - "0.0", - "0.09342078847729442" - ], - [ - "6678", - "0.15606017399826905", - "2.047954452743039", - "0.0", - "0.0", - "0.0", - "0.0", - "0.21886945252717482", - "3.906357491399297", - "0.0", - "0.0", - "0.09325089546936324" - ], - [ - "6679", - "0.15576734768635922", - "2.0473989640570514", - "0.0", - "0.0", - "0.0", - "0.0", - "0.21846229197240483", - "3.905607812591395", - "0.0", - "0.0", - "0.0930724034003136" - ], - [ - "6680", - "0.15549630213930893", - "2.0468831095396944", - "0.0", - "0.0", - "0.0", - "0.0", - "0.21808603628779263", - "3.9049128367135966", - "0.0", - "0.0", - "0.09290656799082525" - ], - [ - "6681", - "0.15524917133410693", - "2.046414594121446", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2177422852991289", - "3.904280293810109", - "0.0", - "0.0", - "0.09275605736908499" - ], - [ - "6682", - "0.1549532750969866", - "2.045853736972578", - "0.0", - "0.0", - "0.0", - "0.0", - "0.21733065082217243", - "3.9035229825982634", - "0.0", - "0.0", - "0.09257589937180073" - ], - [ - "6683", - "0.1546730844769753", - "2.0453225901029564", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2169408755575626", - "3.902805813296764", - "0.0", - "0.0", - "0.09240529339638803" - ], - [ - "6684", - "0.1544106840360183", - "2.0448247706289315", - "0.0", - "0.0", - "0.0", - "0.0", - "0.21657598667381112", - "3.9021339176225127", - "0.0", - "0.0", - "0.09224538139822545" - ], - [ - "6685", - "0.15414333377744202", - "2.0443177848596465", - "0.0", - "0.0", - "0.0", - "0.0", - "0.21620412037373787", - "3.9014494703861815", - "0.0", - "0.0", - "0.09208254718114615" - ], - [ - "6686", - "0.15388627970711272", - "2.0438300028445617", - "0.0", - "0.0", - "0.0", - "0.0", - "0.21584668594691753", - "3.9007911684037935", - "0.0", - "0.0", - "0.0919258734673079" - ], - [ - "6687", - "0.15363216343361638", - "2.0433470364416357", - "0.0", - "0.0", - "0.0", - "0.0", - "0.21549361139442158", - "3.9001399052254073", - "0.0", - "0.0", - "0.09177071547281117" - ], - [ - "6688", - "0.1533657051097249", - "2.042841763871943", - "0.0", - "0.0", - "0.0", - "0.0", - "0.21512294750058156", - "3.8994577078460964", - "0.0", - "0.0", - "0.0916084627188682" - ], - [ - "6689", - "0.15307505915843025", - "2.042290747805882", - "0.0", - "0.0", - "0.0", - "0.0", - "0.21471857921779353", - "3.898713641744091", - "0.0", - "0.0", - "0.091431539099067" - ], - [ - "6690", - "0.15280602320747716", - "2.041778099722848", - "0.0", - "0.0", - "0.0", - "0.0", - "0.21434523929827107", - "3.8980232703137387", - "0.0", - "0.0", - "0.09126680711668325" - ], - [ - "6691", - "0.15253746705958432", - "2.041269061338354", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2139715454853819", - "3.8973357828931743", - "0.0", - "0.0", - "0.09110338863378675" - ], - [ - "6692", - "0.1522487931726623", - "2.0407216570095947", - "0.0", - "0.0", - "0.0", - "0.0", - "0.21356993376019792", - "3.896596632414631", - "0.0", - "0.0", - "0.09092765258512664" - ], - [ - "6693", - "0.1519989065010013", - "2.0402480969018923", - "0.0", - "0.0", - "0.0", - "0.0", - "0.21322216449568634", - "3.8959569630250734", - "0.0", - "0.0", - "0.09077564850631628" - ], - [ - "6694", - "0.15171704452263293", - "2.039713036421754", - "0.0", - "0.0", - "0.0", - "0.0", - "0.21283022245634506", - "3.8952348649907607", - "0.0", - "0.0", - "0.09060386658892082" - ], - [ - "6695", - "0.15144850934002024", - "2.0392041841219504", - "0.0", - "0.0", - "0.0", - "0.0", - "0.21245646065974588", - "3.8945474555659945", - "0.0", - "0.0", - "0.09044055802029463" - ], - [ - "6696", - "0.15120504132752308", - "2.0387365813058445", - "0.0", - "0.0", - "0.0", - "0.0", - "0.21211991901669222", - "3.8939203267001714", - "0.0", - "0.0", - "0.09029016363835393" - ], - [ - "6697", - "0.15092660237240388", - "2.0381918647188373", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2117387493760968", - "3.8931969344005104", - "0.0", - "0.0", - "0.09011445536871093" - ], - [ - "6698", - "0.150733339820814", - "2.0378240397011385", - "0.0", - "0.0", - "0.0", - "0.0", - "0.21147033633178303", - "3.892701180585539", - "0.0", - "0.0", - "0.08999634330984495" - ], - [ - "6699", - "0.15048436978405283", - "2.03735107981301", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2111242128603847", - "3.8920630659115476", - "0.0", - "0.0", - "0.08984452670772095" - ], - [ - "6700", - "0.15009681663730512", - "2.0365922661960543", - "0.0", - "0.0", - "0.0", - "0.0", - "0.21059386097596935", - "3.8910557195499678", - "0.0", - "0.0", - "0.08959977229864087" - ], - [ - "6701", - "0.14986746336710516", - "2.0361571882747036", - "0.0", - "0.0", - "0.0", - "0.0", - "0.21027475700277598", - "3.890468231386319", - "0.0", - "0.0", - "0.08946016973143432" - ], - [ - "6702", - "0.14963269953269434", - "2.0357111140374484", - "0.0", - "0.0", - "0.0", - "0.0", - "0.20994839125735154", - "3.8898664171190886", - "0.0", - "0.0", - "0.08931700780803714" - ], - [ - "6703", - "0.14937861334722646", - "2.0352252585654544", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2095963016196254", - "3.889213152909888", - "0.0", - "0.0", - "0.08916092507482754" - ], - [ - "6704", - "0.14919246753340745", - "2.034873021759932", - "0.0", - "0.0", - "0.0", - "0.0", - "0.20933696598535614", - "3.8887368554605994", - "0.0", - "0.0", - "0.08904796908145877" - ], - [ - "6705", - "0.14894310789525578", - "2.0344002096792986", - "0.0", - "0.0", - "0.0", - "0.0", - "0.20898991216431234", - "3.8880982038115675", - "0.0", - "0.0", - "0.08889630362619917" - ], - [ - "6706", - "0.14867080902696958", - "2.0338800993655135", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2086123435303182", - "3.8873984242313795", - "0.0", - "0.0", - "0.08872927452362092" - ], - [ - "6707", - "0.14839570743111946", - "2.0333584443588166", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2082294535914345", - "3.886693788659458", - "0.0", - "0.0", - "0.08856196127080443" - ], - [ - "6708", - "0.14808911093273672", - "2.032769127769744", - "0.0", - "0.0", - "0.0", - "0.0", - "0.20780568375602496", - "3.8859035329371787", - "0.0", - "0.0", - "0.08837253810944846" - ], - [ - "6709", - "0.14788982918634183", - "2.0323903772073924", - "0.0", - "0.0", - "0.0", - "0.0", - "0.207528629074744", - "3.8853925361454418", - "0.0", - "0.0", - "0.0882510292979397" - ], - [ - "6710", - "0.14764511639972563", - "2.0319267526590856", - "0.0", - "0.0", - "0.0", - "0.0", - "0.20718785530720044", - "3.8847659466236135", - "0.0", - "0.0", - "0.08810237749225085" - ], - [ - "6711", - "0.14741848315483008", - "2.03149598107349", - "0.0", - "0.0", - "0.0", - "0.0", - "0.206872773569408", - "3.884184768353653", - "0.0", - "0.0", - "0.08796419274025213" - ], - [ - "6712", - "0.14721640751114196", - "2.0311121288138434", - "0.0", - "0.0", - "0.0", - "0.0", - "0.20659173691647598", - "3.8836667057145386", - "0.0", - "0.0", - "0.08784107810580795" - ], - [ - "6713", - "0.14701797692907415", - "2.030734323515699", - "0.0", - "0.0", - "0.0", - "0.0", - "0.20631609154581584", - "3.8831574340392345", - "0.0", - "0.0", - "0.08771986231233247" - ], - [ - "6714", - "0.14690744082943155", - "2.0305179723137643", - "0.0", - "0.0", - "0.0", - "0.0", - "0.20616474273446003", - "3.882870077693499", - "0.0", - "0.0", - "0.0876501389244031" - ], - [ - "6715", - "0.14663927567570362", - "2.0300096033551585", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2057913881611274", - "3.88218318288608", - "0.0", - "0.0", - "0.08748716319027984" - ], - [ - "6716", - "0.14636136202788838", - "2.0294825624230395", - "0.0", - "0.0", - "0.0", - "0.0", - "0.205404521666355", - "3.8814711814245366", - "0.0", - "0.0", - "0.08731820238942174" - ], - [ - "6717", - "0.14611704356529584", - "2.0290191148186274", - "0.0", - "0.0", - "0.0", - "0.0", - "0.20506445546353397", - "3.880845161798034", - "0.0", - "0.0", - "0.08716963166705771" - ], - [ - "6718", - "0.14585898981847092", - "2.0285283435575403", - "0.0", - "0.0", - "0.0", - "0.0", - "0.20470573581699986", - "3.880183144478655", - "0.0", - "0.0", - "0.08701224381994199" - ], - [ - "6719", - "0.14568255682809914", - "2.028193645741717", - "0.0", - "0.0", - "0.0", - "0.0", - "0.20446015540646445", - "3.8797310357769783", - "0.0", - "0.0", - "0.08690495824973382" - ], - [ - "6720", - "0.14543984485381925", - "2.027733021035459", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2041223850599396", - "3.879108955275146", - "0.0", - "0.0", - "0.08675730464769889" - ], - [ - "6721", - "0.14519381430017614", - "2.027247174961081", - "0.0", - "0.0", - "0.0", - "0.0", - "0.20378705480130466", - "3.878466589510206", - "0.0", - "0.0", - "0.0866005737990476" - ], - [ - "6722", - "0.1449800966127984", - "2.026841924687174", - "0.0", - "0.0", - "0.0", - "0.0", - "0.20348948906892003", - "3.8779190150138616", - "0.0", - "0.0", - "0.08647070415667675" - ], - [ - "6723", - "0.14477067383892744", - "2.026445101773784", - "0.0", - "0.0", - "0.0", - "0.0", - "0.20319779100171828", - "3.87738261080614", - "0.0", - "0.0", - "0.08634355667613659" - ], - [ - "6724", - "0.1445227523699059", - "2.025974098364394", - "0.0", - "0.0", - "0.0", - "0.0", - "0.20285292095618612", - "3.8767468191521957", - "0.0", - "0.0", - "0.08619258378362564" - ], - [ - "6725", - "0.14431100542864264", - "2.0255728139313582", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2025579929650229", - "3.876204403945296", - "0.0", - "0.0", - "0.08606401789226237" - ], - [ - "6726", - "0.14405345130120054", - "2.0250812065279438", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2022005659863617", - "3.8755424487282935", - "0.0", - "0.0", - "0.08590633661603937" - ], - [ - "6727", - "0.14384253816666018", - "2.024681229550811", - "0.0", - "0.0", - "0.0", - "0.0", - "0.20190688665857268", - "3.875001977035977", - "0.0", - "0.0", - "0.08577818967474768" - ], - [ - "6728", - "0.14363442534560697", - "2.024286887575193", - "0.0", - "0.0", - "0.0", - "0.0", - "0.201616979050157", - "3.8744688731607737", - "0.0", - "0.0", - "0.08565187164105692" - ], - [ - "6729", - "0.14342452200987613", - "2.0238890401928833", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2013246128513334", - "3.8739311025774583", - "0.0", - "0.0", - "0.08552443116841885" - ], - [ - "6730", - "0.14325052165100421", - "2.0235587056988606", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2010824500828355", - "3.8734849732904295", - "0.0", - "0.0", - "0.08541859321917292" - ], - [ - "6731", - "0.14308491194185774", - "2.0232447906913955", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2008517778571101", - "3.87306065580853", - "0.0", - "0.0", - "0.08531804602660539" - ], - [ - "6732", - "0.14283001678110674", - "2.0227611412921203", - "0.0", - "0.0", - "0.0", - "0.0", - "0.20049691901677574", - "3.8724072563069645", - "0.0", - "0.0", - "0.08516311454543773" - ], - [ - "6733", - "0.1426163138931864", - "2.022355880653202", - "0.0", - "0.0", - "0.0", - "0.0", - "0.2001993143732031", - "3.871859580159379", - "0.0", - "0.0", - "0.08503331341316972" - ], - [ - "6734", - "0.14241063864682088", - "2.021965941474249", - "0.0", - "0.0", - "0.0", - "0.0", - "0.19991284620326852", - "3.871332528353656", - "0.0", - "0.0", - "0.08490843109037326" - ], - [ - "6735", - "0.14225587441618456", - "2.0216733506499915", - "0.0", - "0.0", - "0.0", - "0.0", - "0.1996969754040128", - "3.8709364462625344", - "0.0", - "0.0", - "0.08481477342835635" - ], - [ - "6736", - "0.14193543863502572", - "2.021065923632581", - "0.0", - "0.0", - "0.0", - "0.0", - "0.19925061492977245", - "3.8701153387750606", - "0.0", - "0.0", - "0.08462026234027901" - ], - [ - "6737", - "0.14170773625149938", - "2.02062983496354", - "0.0", - "0.0", - "0.0", - "0.0", - "0.19893508118101105", - "3.869529073013853", - "0.0", - "0.0", - "0.08448039132198772" - ], - [ - "6738", - "0.14146048985947784", - "2.0201601999338923", - "0.0", - "0.0", - "0.0", - "0.0", - "0.1985910070366308", - "3.8688948917888863", - "0.0", - "0.0", - "0.08432997268232488" - ], - [ - "6739", - "0.14121282814833339", - "2.0196908903580155", - "0.0", - "0.0", - "0.0", - "0.0", - "0.1982459302286077", - "3.8682603251674488", - "0.0", - "0.0", - "0.08417972606805907" - ], - [ - "6740", - "0.1409620572691681", - "2.019215062074521", - "0.0", - "0.0", - "0.0", - "0.0", - "0.19789674601912058", - "3.867617387350229", - "0.0", - "0.0", - "0.08402736851921566" - ], - [ - "6741", - "0.14071611594873434", - "2.018749002248371", - "0.0", - "0.0", - "0.0", - "0.0", - "0.19755405224739117", - "3.8669871943300396", - "0.0", - "0.0", - "0.08387817965007748" - ], - [ - "6742", - "0.14046958452949035", - "2.0182815924070208", - "0.0", - "0.0", - "0.0", - "0.0", - "0.197210613800378", - "3.8663553309869414", - "0.0", - "0.0", - "0.0837285552586027" - ], - [ - "6743", - "0.14022478837473176", - "2.0178176050728682", - "0.0", - "0.0", - "0.0", - "0.0", - "0.19686953448168604", - "3.8657279839474343", - "0.0", - "0.0", - "0.0835800422677775" - ], - [ - "6744", - "0.13998417516489364", - "2.0173603128641915", - "0.0", - "0.0", - "0.0", - "0.0", - "0.19653473468754928", - "3.8651105749021037", - "0.0", - "0.0", - "0.08343361564223803" - ], - [ - "6745", - "0.13971190745418785", - "2.0168333536143432", - "0.0", - "0.0", - "0.0", - "0.0", - "0.19615942392717223", - "3.864406000191534", - "0.0", - "0.0", - "0.08326439098120346" - ], - [ - "6746", - "0.1394837730152415", - "2.0163959948094035", - "0.0", - "0.0", - "0.0", - "0.0", - "0.1958433807158316", - "3.8638182261536493", - "0.0", - "0.0", - "0.08312416531465139" - ], - [ - "6747", - "0.13939496047417946", - "2.016228249268195", - "0.0", - "0.0", - "0.0", - "0.0", - "0.1957194045346345", - "3.8635909723748596", - "0.0", - "0.0", - "0.08307051641372445" - ], - [ - "6748", - "0.13925111803195964", - "2.0159361009585743", - "0.0", - "0.0", - "0.0", - "0.0", - "0.19552623670239969", - "3.863210144851941", - "0.0", - "0.0", - "0.08297599936151956" - ], - [ - "6749", - "0.1390407265526825", - "2.015536149893132", - "0.0", - "0.0", - "0.0", - "0.0", - "0.19523349411363147", - "3.862670175847422", - "0.0", - "0.0", - "0.08284795899173351" - ], - [ - "6750", - "0.13884428011946956", - "2.015163982394072", - "0.0", - "0.0", - "0.0", - "0.0", - "0.19495967409742915", - "3.8621667822192487", - "0.0", - "0.0", - "0.08272888614150997" - ], - [ - "6751", - "0.13865191983051953", - "2.0147994880241766", - "0.0", - "0.0", - "0.0", - "0.0", - "0.19469156951239452", - "3.861673808317176", - "0.0", - "0.0", - "0.08261227014864457" - ], - [ - "6752", - "0.13844643160531891", - "2.0144102697763673", - "0.0", - "0.0", - "0.0", - "0.0", - "0.19440510520647888", - "3.8611472758379377", - "0.0", - "0.0", - "0.08248775800415899" - ], - [ - "6753", - "0.13819345618693263", - "2.013928389573367", - "0.0", - "0.0", - "0.0", - "0.0", - "0.19405344411342107", - "3.8604973571695385", - "0.0", - "0.0", - "0.08233346826044419" - ], - [ - "6754", - "0.1379910879587233", - "2.0135430138262183", - "0.0", - "0.0", - "0.0", - "0.0", - "0.19377208596042092", - "3.8599775082732366", - "0.0", - "0.0", - "0.0822100899570257" - ], - [ - "6755", - "0.1377550967950093", - "2.013095404248855", - "0.0", - "0.0", - "0.0", - "0.0", - "0.19344330430494586", - "3.859372395996562", - "0.0", - "0.0", - "0.08206688928507279" - ], - [ - "6756", - "0.13751970591617033", - "2.0126493142195736", - "0.0", - "0.0", - "0.0", - "0.0", - "0.19311520887008216", - "3.858769047901001", - "0.0", - "0.0", - "0.0819242029622585" - ], - [ - "6757", - "0.13728717197229318", - "2.012208635912469", - "0.0", - "0.0", - "0.0", - "0.0", - "0.19279108846245982", - "3.8581730086158594", - "0.0", - "0.0", - "0.08178325548212652" - ], - [ - "6758", - "0.13705858715779418", - "2.0117740787543825", - "0.0", - "0.0", - "0.0", - "0.0", - "0.1924729725826118", - "3.857586229183552", - "0.0", - "0.0", - "0.08164420173297653" - ], - [ - "6759", - "0.13682620083688526", - "2.0113337334765387", - "0.0", - "0.0", - "0.0", - "0.0", - "0.19214902234935483", - "3.856990576892322", - "0.0", - "0.0", - "0.08150337932441569" - ], - [ - "6760", - "0.13663157290438205", - "2.0109645704282766", - "0.0", - "0.0", - "0.0", - "0.0", - "0.19187783797956767", - "3.856491469128868", - "0.0", - "0.0", - "0.08138530782919645" - ], - [ - "6761", - "0.1364477549276414", - "2.0106157820638737", - "0.0", - "0.0", - "0.0", - "0.0", - "0.1916217586561411", - "3.8560199939448982", - "0.0", - "0.0", - "0.08127375119914176" - ], - [ - "6762", - "0.13623088090335028", - "2.010204519541773", - "0.0", - "0.0", - "0.0", - "0.0", - "0.19131952952662226", - "3.8554638783871025", - "0.0", - "0.0", - "0.08114223228007827" - ], - [ - "6763", - "0.13604686623518658", - "2.0098558950661065", - "0.0", - "0.0", - "0.0", - "0.0", - "0.19106296530132194", - "3.854992217051593", - "0.0", - "0.0", - "0.08103076716905125" - ], - [ - "6764", - "0.13577436468855006", - "2.009325683563345", - "0.0", - "0.0", - "0.0", - "0.0", - "0.19068821089552918", - "3.85428502635186", - "0.0", - "0.0", - "0.08086051848157093" - ], - [ - "6765", - "0.13559216655821557", - "2.008980517646028", - "0.0", - "0.0", - "0.0", - "0.0", - "0.1904341606258675", - "3.8538180121862395", - "0.0", - "0.0", - "0.08075017249056365" - ], - [ - "6766", - "0.13541103595078563", - "2.0086373737371237", - "0.0", - "0.0", - "0.0", - "0.0", - "0.19018159417552177", - "3.853353726541428", - "0.0", - "0.0", - "0.08064047772604947" - ], - [ - "6767", - "0.13519186795816096", - "2.008222255095295", - "0.0", - "0.0", - "0.0", - "0.0", - "0.18987595059127174", - "3.8527919843053184", - "0.0", - "0.0", - "0.08050778532505017" - ], - [ - "6768", - "0.13496585891880145", - "2.007794073553404", - "0.0", - "0.0", - "0.0", - "0.0", - "0.1895607986303874", - "3.852212630559835", - "0.0", - "0.0", - "0.08037091920721548" - ], - [ - "6769", - "0.13474076293270587", - "2.0073676374553546", - "0.0", - "0.0", - "0.0", - "0.0", - "0.18924690657288376", - "3.8516356154556597", - "0.0", - "0.0", - "0.08023461929252797" - ], - [ - "6770", - "0.1344863055776253", - "2.006880860819289", - "0.0", - "0.0", - "0.0", - "0.0", - "0.18889381731939162", - "3.8509803738338033", - "0.0", - "0.0", - "0.080078793835859" - ], - [ - "6771", - "0.1341745791763573", - "2.0062768889616103", - "0.0", - "0.0", - "0.0", - "0.0", - "0.18846409046354762", - "3.850172865075658", - "0.0", - "0.0", - "0.07988506788916698" - ], - [ - "6772", - "0.13395206449181832", - "2.005855369979526", - "0.0", - "0.0", - "0.0", - "0.0", - "0.18815376174445156", - "3.8496024425504407", - "0.0", - "0.0", - "0.07975036723918505" - ], - [ - "6773", - "0.13372501493782793", - "2.005424448898353", - "0.0", - "0.0", - "0.0", - "0.0", - "0.18783740297031168", - "3.8490198757172744", - "0.0", - "0.0", - "0.07961262690534421" - ], - [ - "6774", - "0.13350022730090272", - "2.004995858642918", - "0.0", - "0.0", - "0.0", - "0.0", - "0.18752491840719998", - "3.8484418740210407", - "0.0", - "0.0", - "0.0794755361946055" - ], - [ - "6775", - "0.13331954210684577", - "2.0046528364914336", - "0.0", - "0.0", - "0.0", - "0.0", - "0.18727318578434424", - "3.847978190987579", - "0.0", - "0.0", - "0.0793658984293473" - ], - [ - "6776", - "0.1331378853132237", - "2.0043077713168063", - "0.0", - "0.0", - "0.0", - "0.0", - "0.1870201684977933", - "3.847511882841277", - "0.0", - "0.0", - "0.07925560212865415" - ], - [ - "6777", - "0.13291687045501102", - "2.003888733315394", - "0.0", - "0.0", - "0.0", - "0.0", - "0.18671203173003037", - "3.8469450270447108", - "0.0", - "0.0", - "0.07912170917999167" - ], - [ - "6778", - "0.1327096648070712", - "2.003492322466448", - "0.0", - "0.0", - "0.0", - "0.0", - "0.18642446344740407", - "3.8464113553787227", - "0.0", - "0.0", - "0.07899486616673831" - ], - [ - "6779", - "0.132533385593999", - "2.003158285921514", - "0.0", - "0.0", - "0.0", - "0.0", - "0.18617861765460297", - "3.8459593353386103", - "0.0", - "0.0", - "0.07888815353339505" - ], - [ - "6780", - "0.13231961939008782", - "2.0027534492464043", - "0.0", - "0.0", - "0.0", - "0.0", - "0.18588039749019347", - "3.845411327554201", - "0.0", - "0.0", - "0.07875884128998216" - ], - [ - "6781", - "0.13210078124296548", - "2.0023385486822147", - "0.0", - "0.0", - "0.0", - "0.0", - "0.1855752651461521", - "3.844850019702248", - "0.0", - "0.0", - "0.07862629733977888" - ], - [ - "6782", - "0.13188864305175804", - "2.0019366038742854", - "0.0", - "0.0", - "0.0", - "0.0", - "0.1852793738500078", - "3.844306044702905", - "0.0", - "0.0", - "0.07849791225350826" - ], - [ - "6783", - "0.131715946798215", - "2.00160923347514", - "0.0", - "0.0", - "0.0", - "0.0", - "0.18503855000560132", - "3.843863102458514", - "0.0", - "0.0", - "0.07839334359082865" - ], - [ - "6784", - "0.1315426905964545", - "2.0012806385928563", - "0.0", - "0.0", - "0.0", - "0.0", - "0.18479700152012946", - "3.8434186151037064", - "0.0", - "0.0", - "0.07828837967277955" - ], - [ - "6785", - "0.13132892663210022", - "2.000875570962639", - "0.0", - "0.0", - "0.0", - "0.0", - "0.1844988407473412", - "3.8428704171382813", - "0.0", - "0.0", - "0.07815901251685925" - ], - [ - "6786", - "0.13114294894671416", - "2.000521988936729", - "0.0", - "0.0", - "0.0", - "0.0", - "0.18423986525954497", - "3.842392737954863", - "0.0", - "0.0", - "0.07804603263388335" - ], - [ - "6787", - "0.1309771471188895", - "2.0002078695059553", - "0.0", - "0.0", - "0.0", - "0.0", - "0.18400856994704", - "3.8419675641897264", - "0.0", - "0.0", - "0.077945724290739" - ], - [ - "6788", - "0.1307873475235821", - "1.9998475412844476", - "0.0", - "0.0", - "0.0", - "0.0", - "0.1837440690976415", - "3.8414803784002833", - "0.0", - "0.0", - "0.07783062594952266" - ], - [ - "6789", - "0.13063121290637042", - "1.999551413762431", - "0.0", - "0.0", - "0.0", - "0.0", - "0.18352637167884353", - "3.841079779866987", - "0.0", - "0.0", - "0.07773605413389728" - ], - [ - "6790", - "0.1304141031813158", - "1.9991392256410672", - "0.0", - "0.0", - "0.0", - "0.0", - "0.18322380507876931", - "3.8405224673024394", - "0.0", - "0.0", - "0.07760440128386228" - ], - [ - "6791", - "0.13023311111487393", - "1.998795631832869", - "0.0", - "0.0", - "0.0", - "0.0", - "0.1829715581764304", - "3.84005787411032", - "0.0", - "0.0", - "0.07749466405331744" - ], - [ - "6792", - "0.13002823074351716", - "1.9984073994364273", - "0.0", - "0.0", - "0.0", - "0.0", - "0.18268574830137957", - "3.8395323972381754", - "0.0", - "0.0", - "0.07737071318565476" - ], - [ - "6793", - "0.12981904931871033", - "1.9980097156816063", - "0.0", - "0.0", - "0.0", - "0.0", - "0.18239441568631726", - "3.838995064307706", - "0.0", - "0.0", - "0.0772436829511034" - ], - [ - "6794", - "0.12961903501579955", - "1.9976308329015162", - "0.0", - "0.0", - "0.0", - "0.0", - "0.18211533396804283", - "3.8384821295191704", - "0.0", - "0.0", - "0.07712273606355624" - ], - [ - "6795", - "0.12926638527540615", - "1.996962621407467", - "0.0", - "0.0", - "0.0", - "0.0", - "0.18162333665977923", - "3.8375776182000996", - "0.0", - "0.0", - "0.07690943389103308" - ], - [ - "6796", - "0.12880143751397835", - "1.9960684293501796", - "0.0", - "0.0", - "0.0", - "0.0", - "0.18097954232967903", - "3.8363767640830324", - "0.0", - "0.0", - "0.07662333269827766" - ], - [ - "6797", - "0.12823799716937337", - "1.9950001406033393", - "0.0", - "0.0", - "0.0", - "0.0", - "0.1801936311135167", - "3.8349310577044737", - "0.0", - "0.0", - "0.07628236322523003" - ], - [ - "6798", - "0.1275533896469379", - "1.993703342273332", - "0.0", - "0.0", - "0.0", - "0.0", - "0.1792381924788661", - "3.8331751225609394", - "0.0", - "0.0", - "0.07586858681500971" - ], - [ - "6799", - "0.1267057824545107", - "1.9920964650127948", - "0.0", - "0.0", - "0.0", - "0.0", - "0.178055666163782", - "3.8310001346373284", - "0.0", - "0.0", - "0.07535589874523939" - ], - [ - "6800", - "0.12562109858951295", - "1.990041491919752", - "0.0", - "0.0", - "0.0", - "0.0", - "0.1765417295691738", - "3.8282174037657426", - "0.0", - "0.0", - "0.07470046760985215" - ], - [ - "6801", - "0.12434263030671548", - "1.9876185873122278", - "0.0", - "0.0", - "0.0", - "0.0", - "0.17475739341532773", - "3.8249366720911255", - "0.0", - "0.0", - "0.07392786719810325" - ], - [ - "6802", - "0.12282817259662286", - "1.9847398481090652", - "0.0", - "0.0", - "0.0", - "0.0", - "0.1726465659644723", - "3.821044470046649", - "0.0", - "0.0", - "0.07300977922877341" - ], - [ - "6803", - "0.12121127765910206", - "1.9816768596875267", - "0.0", - "0.0", - "0.0", - "0.0", - "0.1703887026708881", - "3.8168949830194343", - "0.0", - "0.0", - "0.072033852647316" - ], - [ - "6804", - "0.11939983428742768", - "1.978245139079138", - "0.0", - "0.0", - "0.0", - "0.0", - "0.16785877565445226", - "3.812245382196651", - "0.0", - "0.0", - "0.07094089292040312" - ], - [ - "6805", - "0.11753208515767487", - "1.9747079071976932", - "0.0", - "0.0", - "0.0", - "0.0", - "0.16524926923562572", - "3.8074511856126776", - "0.0", - "0.0", - "0.06981490107972402" - ], - [ - "6806", - "0.1154457966066499", - "1.9707541260604273", - "0.0", - "0.0", - "0.0", - "0.0", - "0.1623348060110053", - "3.8020933954843943", - "0.0", - "0.0", - "0.06855678720229452" - ], - [ - "6807", - "0.11318483311760548", - "1.9664713869239063", - "0.0", - "0.0", - "0.0", - "0.0", - "0.15917482647051084", - "3.796287181190615", - "0.0", - "0.0", - "0.06719483976470013" - ], - [ - "6808", - "0.11071632259591299", - "1.9617931308484766", - "0.0", - "0.0", - "0.0", - "0.0", - "0.15572477980910396", - "3.789945116333428", - "0.0", - "0.0", - "0.06570786538272201" - ], - [ - "6809", - "0.10809527517327842", - "1.9568282275365312", - "0.0", - "0.0", - "0.0", - "0.0", - "0.1520596416094185", - "3.7832111288652066", - "0.0", - "0.0", - "0.06413090873713835" - ], - [ - "6810", - "0.10549839587319368", - "1.9519074947017852", - "0.0", - "0.0", - "0.0", - "0.0", - "0.148427874328969", - "3.776536627213189", - "0.0", - "0.0", - "0.06256891741741834" - ], - [ - "6811", - "0.10281476598992105", - "1.9468238532607147", - "0.0", - "0.0", - "0.0", - "0.0", - "0.14467317310348665", - "3.769638421378306", - "0.0", - "0.0", - "0.060956358876355435" - ], - [ - "6812", - "0.10010658459657695", - "1.9416936310785544", - "0.0", - "0.0", - "0.0", - "0.0", - "0.14088304481955433", - "3.7626753393632923", - "0.0", - "0.0", - "0.05933012437359956" - ], - [ - "6813", - "0.09381116430827001", - "1.929767381260753", - "0.0", - "0.0", - "0.0", - "0.0", - "0.13206844929052214", - "3.74648194032932", - "0.0", - "0.0", - "0.05555387932601787" - ], - [ - "6814", - "0.08555791851032332", - "1.914131207869571", - "0.0", - "0.0", - "0.0", - "0.0", - "0.12050378104500696", - "3.7252376423872517", - "0.0", - "0.0", - "0.05061205597563968" - ], - [ - "6815", - "0.07649823662844171", - "1.896967008321892", - "0.0", - "0.0", - "0.0", - "0.0", - "0.10779713806799476", - "3.701898636186779", - "0.0", - "0.0", - "0.045199335188888676" - ], - [ - "6816", - "0.06706579989629455", - "1.8790953256529523", - "0.0", - "0.0", - "0.0", - "0.0", - "0.09455464775410162", - "3.6775775071779457", - "0.0", - "0.0", - "0.03957695203848747" - ], - [ - "6817", - "0.058675895249351115", - "1.8631983122021845", - "0.0", - "0.0", - "0.0", - "0.0", - "0.08276435139361873", - "3.6559259227782075", - "0.0", - "0.0", - "0.034587439105083495" - ], - [ - "6818", - "0.052359381863436666", - "1.8512297084121545", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0738805502633038", - "3.6396135705024335", - "0.0", - "0.0", - "0.030838213463569544" - ], - [ - "6819", - "0.045789103219240394", - "1.8387792912507122", - "0.0", - "0.0", - "0.0", - "0.0", - "0.06463349240381093", - "3.6226348092214122", - "0.0", - "0.0", - "0.02694471403466987" - ], - [ - "6820", - "0.039078012013093896", - "1.826061799988527", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05518123752784911", - "3.6052809600353237", - "0.0", - "0.0", - "0.022974786498338683" - ], - [ - "6821", - "0.03297304780659001", - "1.814492709104825", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04657648561728873", - "3.589484573293276", - "0.0", - "0.0", - "0.019369609995891292" - ], - [ - "6822", - "0.028352014485625146", - "1.8057354256497733", - "0.0", - "0.0", - "0.0", - "0.0", - "0.040059394194133895", - "3.577521410255062", - "0.0", - "0.0", - "0.016644634777116397" - ], - [ - "6823", - "0.02436415239565182", - "1.7981772814278834", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03443277086413074", - "3.5671926055762655", - "0.0", - "0.0", - "0.014295533927172902" - ], - [ - "6824", - "0.020880002333663363", - "1.7915742047763188", - "0.0", - "0.0", - "0.0", - "0.0", - "0.02951459608982802", - "3.5581654086518246", - "0.0", - "0.0", - "0.012245408577498704" - ], - [ - "6825", - "0.017769905277862694", - "1.7856797758477343", - "0.0", - "0.0", - "0.0", - "0.0", - "0.025122845153431533", - "3.5501045967413196", - "0.0", - "0.0", - "0.010416965402293853" - ], - [ - "6826", - "0.015146421047531467", - "1.7807076097514396", - "0.0", - "0.0", - "0.0", - "0.0", - "0.021417003902606837", - "3.543303090523033", - "0.0", - "0.0", - "0.008875838192456098" - ], - [ - "6827", - "0.013967489322081021", - "1.7784732363093905", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0197513187532846", - "3.540246083877262", - "0.0", - "0.0", - "0.00818365989087744" - ], - [ - "6828", - "0.013411841830462994", - "1.7774200925061425", - "0.0", - "0.0", - "0.0", - "0.0", - "0.018966196714744588", - "3.5388051161776493", - "0.0", - "0.0", - "0.007857486946181403" - ], - [ - "6829", - "0.0133818252051171", - "1.7773632030888482", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01892378132195936", - "3.538727273036098", - "0.0", - "0.0", - "0.007839869088274842" - ], - [ - "6830", - "0.013342824707073512", - "1.7772892552566806", - "0.0", - "0.0", - "0.0", - "0.0", - "0.018868682299782023", - "3.5386261107476695", - "0.0", - "0.0", - "0.007816967114364998" - ], - [ - "6831", - "0.013289829722616137", - "1.7771885685666262", - "0.0", - "0.0", - "0.0", - "0.0", - "0.018793885281318434", - "3.5384885146723573", - "0.0", - "0.0", - "0.007785774163913839" - ], - [ - "6832", - "0.01325180196838458", - "1.7771164966834194", - "0.0", - "0.0", - "0.0", - "0.0", - "0.018740148602586014", - "3.538389895250016", - "0.0", - "0.0", - "0.007763455334183146" - ], - [ - "6833", - "0.013224793744092004", - "1.7770652211072253", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01870201518196675", - "3.538319795476357", - "0.0", - "0.0", - "0.007747572306217257" - ], - [ - "6834", - "0.013188100294606443", - "1.7769956782724425", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01865016353128815", - "3.5382246359149607", - "0.0", - "0.0", - "0.007726037057924737" - ], - [ - "6835", - "0.013160978491643213", - "1.776944271628197", - "0.0", - "0.0", - "0.0", - "0.0", - "0.018611839037046534", - "3.5381542960742283", - "0.0", - "0.0", - "0.007710117946239891" - ], - [ - "6836", - "0.01313473151901531", - "1.7768945273472077", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0185747490927457", - "3.538086227656229", - "0.0", - "0.0", - "0.00769471394528492" - ], - [ - "6837", - "0.013102607717635413", - "1.7768336450607354", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01852935437399196", - "3.5380029181312986", - "0.0", - "0.0", - "0.0076758610612788665" - ], - [ - "6838", - "0.013073308945033424", - "1.7767781168683157", - "0.0", - "0.0", - "0.0", - "0.0", - "0.018487951610021182", - "3.5379269347689934", - "0.0", - "0.0", - "0.0076586662800456635" - ], - [ - "6839", - "0.013041303936566072", - "1.776717289707872", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01844278560290489", - "3.5378438218931936", - "0.0", - "0.0", - "0.007639822270227256" - ], - [ - "6840", - "0.012984441685450479", - "1.7766094592681403", - "0.0", - "0.0", - "0.0", - "0.0", - "0.018362454167467523", - "3.53769631337382", - "0.0", - "0.0", - "0.007606429203433434" - ], - [ - "6841", - "0.012935810060708965", - "1.7765172895616521", - "0.0", - "0.0", - "0.0", - "0.0", - "0.018293731091455837", - "3.5375701899160363", - "0.0", - "0.0", - "0.007577889029962092" - ], - [ - "6842", - "0.012891079646390708", - "1.77643244500226", - "0.0", - "0.0", - "0.0", - "0.0", - "0.018230545315540563", - "3.537454138692494", - "0.0", - "0.0", - "0.007551613977240853" - ], - [ - "6843", - "0.012863009987258629", - "1.7763791861569702", - "0.0", - "0.0", - "0.0", - "0.0", - "0.018190900092159838", - "3.53738130216896", - "0.0", - "0.0", - "0.00753511988235742" - ], - [ - "6844", - "0.01281407469051753", - "1.7762864432738772", - "0.0", - "0.0", - "0.0", - "0.0", - "0.018121746057682894", - "3.537254391174765", - "0.0", - "0.0", - "0.0075064033233521645" - ], - [ - "6845", - "0.012661715571495482", - "1.7759976898755256", - "0.0", - "0.0", - "0.0", - "0.0", - "0.017906433827873717", - "3.536859252160155", - "0.0", - "0.0", - "0.0074169973151172455" - ], - [ - "6846", - "0.012573815204960934", - "1.7758286676554484", - "0.0", - "0.0", - "0.0", - "0.0", - "0.017783087016671875", - "3.5366296949313156", - "0.0", - "0.0", - "0.007364543393249996" - ], - [ - "6847", - "0.012577444418760467", - "1.7758355451066177", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01778821612833659", - "3.5366391068942624", - "0.0", - "0.0", - "0.0073666727091843435" - ], - [ - "6848", - "0.012551288701319453", - "1.7757854116168308", - "0.0", - "0.0", - "0.0", - "0.0", - "0.017751454789695708", - "3.536570904196452", - "0.0", - "0.0", - "0.007351122612943197" - ], - [ - "6849", - "0.012514415257059217", - "1.7757151798429367", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01769946976484284", - "3.5364750443726813", - "0.0", - "0.0", - "0.007329360749275593" - ], - [ - "6850", - "0.012480239008255142", - "1.775650383440627", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01765117990491701", - "3.536386390772489", - "0.0", - "0.0", - "0.007309298111593273" - ], - [ - "6851", - "0.012457646990141178", - "1.7756075107478424", - "0.0", - "0.0", - "0.0", - "0.0", - "0.017619272223394353", - "3.5363277609186126", - "0.0", - "0.0", - "0.0072960217568880026" - ], - [ - "6852", - "0.012442986874816223", - "1.7755797306291132", - "0.0", - "0.0", - "0.0", - "0.0", - "0.017598552585821468", - "3.5362897418273795", - "0.0", - "0.0", - "0.0072874211638109775" - ], - [ - "6853", - "0.012303491293960024", - "1.7753153864162021", - "0.0", - "0.0", - "0.0", - "0.0", - "0.017401399755732724", - "3.5359279705156776", - "0.0", - "0.0", - "0.0072055828321873246" - ], - [ - "6854", - "0.012268558302048297", - "1.7752491503309433", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0173520412038196", - "3.535837348803151", - "0.0", - "0.0", - "0.007185075400276993" - ], - [ - "6855", - "0.012243096954741465", - "1.7752008619934372", - "0.0", - "0.0", - "0.0", - "0.0", - "0.017316069557797853", - "3.535771290434313", - "0.0", - "0.0", - "0.007170124351685076" - ], - [ - "6856", - "0.01221346940414007", - "1.7751439437807655", - "0.0", - "0.0", - "0.0", - "0.0", - "0.017274473736407697", - "3.535693947023835", - "0.0", - "0.0", - "0.007152465071872441" - ], - [ - "6857", - "0.012188429562011755", - "1.7750964574148675", - "0.0", - "0.0", - "0.0", - "0.0", - "0.017239096436194094", - "3.5356289835522694", - "0.0", - "0.0", - "0.007137762687829418" - ], - [ - "6858", - "0.01216261330364862", - "1.7750473427489033", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01720267812000815", - "3.5355619037597266", - "0.0", - "0.0", - "0.0071225484872890895" - ], - [ - "6859", - "0.01213842978503988", - "1.775001518380627", - "0.0", - "0.0", - "0.0", - "0.0", - "0.017168496790660927", - "3.5354991864691803", - "0.0", - "0.0", - "0.007108362779418829" - ], - [ - "6860", - "0.012114863313040472", - "1.7749568534639095", - "0.0", - "0.0", - "0.0", - "0.0", - "0.017135191022040395", - "3.535438062898966", - "0.0", - "0.0", - "0.00709453560404055" - ], - [ - "6861", - "0.012091573985682398", - "1.774912723467675", - "0.0", - "0.0", - "0.0", - "0.0", - "0.017102273372172253", - "3.5353776643170276", - "0.0", - "0.0", - "0.007080874599192544" - ], - [ - "6862", - "0.01206377648345373", - "1.7748599448035156", - "0.0", - "0.0", - "0.0", - "0.0", - "0.017063021872893217", - "3.5353055046021145", - "0.0", - "0.0", - "0.007064531094014242" - ], - [ - "6863", - "0.012037324378924335", - "1.7748097677256083", - "0.0", - "0.0", - "0.0", - "0.0", - "0.017025653091459893", - "3.535236867996085", - "0.0", - "0.0", - "0.007048995666388779" - ], - [ - "6864", - "0.012011921528108286", - "1.7747616254466132", - "0.0", - "0.0", - "0.0", - "0.0", - "0.016989750491545094", - "3.53517098281921", - "0.0", - "0.0", - "0.00703409256467148" - ], - [ - "6865", - "0.011986057838139193", - "1.7747121450279877", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01695336355490863", - "3.5351035986108332", - "0.0", - "0.0", - "0.00701875212136976" - ], - [ - "6866", - "0.011956719794432646", - "1.7746544375275977", - "0.0", - "0.0", - "0.0", - "0.0", - "0.016912656512614317", - "3.5350261296293057", - "0.0", - "0.0", - "0.007000783076250974" - ], - [ - "6867", - "0.01199052771731234", - "1.7747184655844284", - "0.0", - "0.0", - "0.0", - "0.0", - "0.016960454040979803", - "3.5351137866015203", - "0.0", - "0.0", - "0.007020601393644877" - ], - [ - "6868", - "0.01202563016149661", - "1.7747849350690155", - "0.0", - "0.0", - "0.0", - "0.0", - "0.017010085239933803", - "3.5352047930021695", - "0.0", - "0.0", - "0.007041175083059415" - ], - [ - "6869", - "0.012060370927237643", - "1.7748506356992946", - "0.0", - "0.0", - "0.0", - "0.0", - "0.017059235051327448", - "3.5352948065213186", - "0.0", - "0.0", - "0.0070615068031478385" - ], - [ - "6870", - "0.012033906629376987", - "1.774800446039277", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01702184522544123", - "3.535226145110747", - "0.0", - "0.0", - "0.007045968033312742" - ], - [ - "6871", - "0.012044445812152279", - "1.774820413330204", - "0.0", - "0.0", - "0.0", - "0.0", - "0.017036742723650862", - "3.53525347568048", - "0.0", - "0.0", - "0.007052148900653698" - ], - [ - "6872", - "0.012054988537279957", - "1.7748403876929983", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01705164508120714", - "3.5352808156436724", - "0.0", - "0.0", - "0.007058331993352775" - ], - [ - "6873", - "0.012063358276741643", - "1.7748562450923406", - "0.0", - "0.0", - "0.0", - "0.0", - "0.017063475866413696", - "3.5353025204824635", - "0.0", - "0.0", - "0.0070632406870695915" - ], - [ - "6874", - "0.012033442792487244", - "1.7747995642579977", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01702119065628084", - "3.5352249403073843", - "0.0", - "0.0", - "0.007045694928693648" - ], - [ - "6875", - "0.012053883977285485", - "1.7748382895297217", - "0.0", - "0.0", - "0.0", - "0.0", - "0.017050085723477257", - "3.53527794767751", - "0.0", - "0.0", - "0.007057682231093713" - ], - [ - "6876", - "0.012060387850348015", - "1.7748505050546595", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01705931745487859", - "3.535294744070957", - "0.0", - "0.0", - "0.007061458245817442" - ], - [ - "6877", - "0.011976481673198659", - "1.7746913407321945", - "0.0", - "0.0", - "0.0", - "0.0", - "0.016940783924629936", - "3.535077026086218", - "0.0", - "0.0", - "0.007012179421767382" - ], - [ - "6878", - "0.011888254419943322", - "1.774524179572524", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01681607293066535", - "3.53484822460608", - "0.0", - "0.0", - "0.006960435909221292" - ], - [ - "6879", - "0.011809217721114644", - "1.7743739559622864", - "0.0", - "0.0", - "0.0", - "0.0", - "0.016704522765385223", - "3.534642944682207", - "0.0", - "0.0", - "0.0069139126768440655" - ], - [ - "6880", - "0.011740425983864244", - "1.7742436100887697", - "0.0", - "0.0", - "0.0", - "0.0", - "0.016607285539457322", - "3.534464537364615", - "0.0", - "0.0", - "0.006873566428271166" - ], - [ - "6881", - "0.011636466882899819", - "1.7740466075846526", - "0.0", - "0.0", - "0.0", - "0.0", - "0.016460345573815673", - "3.5341949089687974", - "0.0", - "0.0", - "0.006812588191983965" - ], - [ - "6882", - "0.011504644014086199", - "1.7737968408478646", - "0.0", - "0.0", - "0.0", - "0.0", - "0.016274005767304145", - "3.5338530337024268", - "0.0", - "0.0", - "0.006735282260868254" - ], - [ - "6883", - "0.011360034183460007", - "1.7735228711297704", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01606957864476374", - "3.533478007183602", - "0.0", - "0.0", - "0.006650489722156274" - ], - [ - "6884", - "0.01120257812230642", - "1.7732243858996992", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0158470514567893", - "3.533069543359356", - "0.0", - "0.0", - "0.006558104787823537" - ], - [ - "6885", - "0.011120498350300542", - "1.773068883172756", - "0.0", - "0.0", - "0.0", - "0.0", - "0.015731015677988198", - "3.5328566752927837", - "0.0", - "0.0", - "0.006509981022612884" - ], - [ - "6886", - "0.010944727199314993", - "1.7727358415679149", - "0.0", - "0.0", - "0.0", - "0.0", - "0.015482538624357898", - "3.5324007949091425", - "0.0", - "0.0", - "0.006406915774272087" - ], - [ - "6887", - "0.010812001907106458", - "1.772484333525892", - "0.0", - "0.0", - "0.0", - "0.0", - "0.015294919367737284", - "3.5320565352035596", - "0.0", - "0.0", - "0.006329084446475632" - ], - [ - "6888", - "0.010691611363048704", - "1.7722562399599844", - "0.0", - "0.0", - "0.0", - "0.0", - "0.015124719258773497", - "3.531744291810475", - "0.0", - "0.0", - "0.006258503467323911" - ], - [ - "6889", - "0.010578145596037352", - "1.7720412409539752", - "0.0", - "0.0", - "0.0", - "0.0", - "0.014964315811195634", - "3.531449988548741", - "0.0", - "0.0", - "0.006191975380879072" - ], - [ - "6890", - "0.010467719890287535", - "1.7718320365281903", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01480819570624841", - "3.5311635896679747", - "0.0", - "0.0", - "0.006127244074326659" - ], - [ - "6891", - "0.010293550306715785", - "1.7715016735265616", - "0.0", - "0.0", - "0.0", - "0.0", - "0.014562091849832624", - "3.53071160124817", - "0.0", - "0.0", - "0.006025008763598946" - ], - [ - "6892", - "0.010113722680541594", - "1.771160991495865", - "0.0", - "0.0", - "0.0", - "0.0", - "0.014307839475840687", - "3.530245191666156", - "0.0", - "0.0", - "0.005919605885242501" - ], - [ - "6893", - "0.009937695659525373", - "1.7708275093085575", - "0.0", - "0.0", - "0.0", - "0.0", - "0.014058955627176881", - "3.5297886312664715", - "0.0", - "0.0", - "0.005816435691873866" - ], - [ - "6894", - "0.00982124000280522", - "1.7706068610351509", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013894305178753964", - "3.5294865609579014", - "0.0", - "0.0", - "0.005748174826856474" - ], - [ - "6895", - "0.009810235299482384", - "1.770586003845469", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013878748470782262", - "3.529458011738449", - "0.0", - "0.0", - "0.005741722128182505" - ], - [ - "6896", - "0.00978798019889411", - "1.7705436025233987", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013847367139391198", - "3.529400131028064", - "0.0", - "0.0", - "0.005728593258397023" - ], - [ - "6897", - "0.009765827661577471", - "1.7705016317678002", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013816045894726063", - "3.5293426707953564", - "0.0", - "0.0", - "0.005715609428428881" - ], - [ - "6898", - "0.009740846185243004", - "1.7704542556094238", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013780741129727148", - "3.5292778427326295", - "0.0", - "0.0", - "0.005700951240758862" - ], - [ - "6899", - "0.009715185301614542", - "1.7704056419691137", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013744457785023902", - "3.529211284768287", - "0.0", - "0.0", - "0.00568591281820518" - ], - [ - "6900", - "0.00968487294235783", - "1.7703478511125623", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013701728453641388", - "3.5291324228698984", - "0.0", - "0.0", - "0.005668017431074272" - ], - [ - "6901", - "0.009663444387533074", - "1.7703071257443488", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013671475826252333", - "3.529076757327527", - "0.0", - "0.0", - "0.005655412948813814" - ], - [ - "6902", - "0.00966013138201547", - "1.7703008503851174", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013666790984130182", - "3.5290681648197917", - "0.0", - "0.0", - "0.005653471779900759" - ], - [ - "6903", - "0.009630649786011703", - "1.7702449574194676", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013625119685487972", - "3.528991669339678", - "0.0", - "0.0", - "0.005636179886535435" - ], - [ - "6904", - "0.00961161798724652", - "1.7702089033766855", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01359820886496154", - "3.528942305727779", - "0.0", - "0.0", - "0.005625027109531499" - ], - [ - "6905", - "0.009592612009209394", - "1.7701728982446747", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013571334496721682", - "3.5288930089930037", - "0.0", - "0.0", - "0.005613889521697105" - ], - [ - "6906", - "0.009558200880558332", - "1.770107709416471", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013522677166623844", - "3.5288037549235063", - "0.0", - "0.0", - "0.00559372459449282" - ], - [ - "6907", - "0.009514320178970994", - "1.7700245169261726", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013460652702300187", - "3.528689896509262", - "0.0", - "0.0", - "0.005567987655641802" - ], - [ - "6908", - "0.009468823617565852", - "1.7699383279914227", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013396319849281154", - "3.5285718887278996", - "0.0", - "0.0", - "0.005541327385850549" - ], - [ - "6909", - "0.009424007908686577", - "1.7698534173982106", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013332953517086688", - "3.5284556389000605", - "0.0", - "0.0", - "0.005515062300286465" - ], - [ - "6910", - "0.009408177415910286", - "1.7698234280311025", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013310568752699849", - "3.5284145778829665", - "0.0", - "0.0", - "0.005505786079120722" - ], - [ - "6911", - "0.009389126050762493", - "1.769787337022829", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013283629530358622", - "3.528365162502973", - "0.0", - "0.0", - "0.005494622571166364" - ], - [ - "6912", - "0.009370153353016808", - "1.769751395038222", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013256801488249528", - "3.528315951075227", - "0.0", - "0.0", - "0.005483505217784086" - ], - [ - "6913", - "0.009273749702417785", - "1.7695687633849309", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01312048396972865", - "3.528065894995171", - "0.0", - "0.0", - "0.005427015435106921" - ], - [ - "6914", - "0.009214929252876924", - "1.7694572780916842", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013037328463336346", - "3.5279132880106188", - "0.0", - "0.0", - "0.005392530042417503" - ], - [ - "6915", - "0.009196299180623842", - "1.7694218960080736", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013011016386316758", - "3.527864906090121", - "0.0", - "0.0", - "0.005381581974930926" - ], - [ - "6916", - "0.009178641038911303", - "1.7693883721171908", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012986072536775885", - "3.527819056227551", - "0.0", - "0.0", - "0.005371209541046721" - ], - [ - "6917", - "0.009167484216054051", - "1.7693667989600719", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012970453138973284", - "3.5277898305849997", - "0.0", - "0.0", - "0.005364515293134818" - ], - [ - "6918", - "0.009140498643195225", - "1.7693156160111512", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01293231562977867", - "3.5277197936328233", - "0.0", - "0.0", - "0.005348681656611778" - ], - [ - "6919", - "0.009119247333819632", - "1.7692751133204123", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012902352304992806", - "3.527664510775904", - "0.0", - "0.0", - "0.005336142362646458" - ], - [ - "6920", - "0.009101129487969364", - "1.7692407926229332", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012876731581458767", - "3.527617516623956", - "0.0", - "0.0", - "0.005325527394479961" - ], - [ - "6921", - "0.009083132710828825", - "1.7692067012624886", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01285128201084706", - "3.5275708364149585", - "0.0", - "0.0", - "0.005314983410810593" - ], - [ - "6922", - "0.009057932799006274", - "1.7691589649713695", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012815646268756812", - "3.5275054725043904", - "0.0", - "0.0", - "0.005300219329255738" - ], - [ - "6923", - "0.009040565788100759", - "1.769126029630485", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012791100403386137", - "3.5274604014076254", - "0.0", - "0.0", - "0.00529003117281538" - ], - [ - "6924", - "0.009015069734750879", - "1.7690775490731516", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012755111496439849", - "3.5273941490796994", - "0.0", - "0.0", - "0.005275027973061908" - ], - [ - "6925", - "0.008998739103880524", - "1.7690465560451891", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012732038591881526", - "3.527351752299159", - "0.0", - "0.0", - "0.005265439615879522" - ], - [ - "6926", - "0.008982742348531827", - "1.769016238702167", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012709422272776523", - "3.527310249769576", - "0.0", - "0.0", - "0.005256062424287131" - ], - [ - "6927", - "0.008965470105150874", - "1.7689834721729725", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012685014048645955", - "3.527265417136763", - "0.0", - "0.0", - "0.005245926161655794" - ], - [ - "6928", - "0.008945903836867034", - "1.7689461250555258", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012657446055176125", - "3.52721448019316", - "0.0", - "0.0", - "0.005234361618557942" - ], - [ - "6929", - "0.008890552557277177", - "1.768841163333721", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012579210547936816", - "3.527070835290311", - "0.0", - "0.0", - "0.00520189456661754" - ], - [ - "6930", - "0.008775261428866293", - "1.7686222098962974", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012416370252783205", - "3.5267714196021704", - "0.0", - "0.0", - "0.005134152604949379" - ], - [ - "6931", - "0.008670420624736825", - "1.7684236121218833", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01226810564932212", - "3.526499474271786", - "0.0", - "0.0", - "0.00507273560015153" - ], - [ - "6932", - "0.008577134403480352", - "1.7682467864331157", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012136221332522828", - "3.5262574222034258", - "0.0", - "0.0", - "0.005018047474437876" - ], - [ - "6933", - "0.00850445391579394", - "1.7681090513783657", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012033456058635188", - "3.5260688558215705", - "0.0", - "0.0", - "0.004975451772952689" - ], - [ - "6934", - "0.008414294193456804", - "1.7679382761932578", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011905944852424074", - "3.525834993695939", - "0.0", - "0.0", - "0.004922643534489533" - ], - [ - "6935", - "0.008327239525083355", - "1.7677733823264037", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011782823826084254", - "3.5256091836277466", - "0.0", - "0.0", - "0.0048716552240824565" - ], - [ - "6936", - "0.00824187270775995", - "1.767611655626644", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011662099421523032", - "3.5253877302100642", - "0.0", - "0.0", - "0.0048216459939968695" - ], - [ - "6937", - "0.00818216558153461", - "1.7674985254587716", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011577667405270825", - "3.525232830321476", - "0.0", - "0.0", - "0.004786663757798394" - ], - [ - "6938", - "0.008159404877395637", - "1.7674554035857957", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01154547983680538", - "3.525173783965976", - "0.0", - "0.0", - "0.004773329917985895" - ], - [ - "6939", - "0.008143096945745866", - "1.767424181042181", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011522534502045378", - "3.5251312639138432", - "0.0", - "0.0", - "0.004763659389446352" - ], - [ - "6940", - "0.008128858723903442", - "1.7673971915317674", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01150240418146115", - "3.525094317400314", - "0.0", - "0.0", - "0.004755313266345732" - ], - [ - "6941", - "0.00811248524878941", - "1.7673661076806573", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011479271750580002", - "3.5250517994101607", - "0.0", - "0.0", - "0.004745698746998819" - ], - [ - "6942", - "0.00809448378091159", - "1.7673320114005742", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011453811184518848", - "3.5250051050707527", - "0.0", - "0.0", - "0.0047351563773043335" - ], - [ - "6943", - "0.008078119549751937", - "1.7673009755936273", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011430680778549415", - "3.5249626309215136", - "0.0", - "0.0", - "0.0047255583209544596" - ], - [ - "6944", - "0.008064029466082812", - "1.7672740066758232", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011410853109172782", - "3.5249258980605833", - "0.0", - "0.0", - "0.00471720582299284" - ], - [ - "6945", - "0.008077863860473076", - "1.767300210935468", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011430419731518067", - "3.5249617839681036", - "0.0", - "0.0", - "0.004725307989428085" - ], - [ - "6946", - "0.008056844671771876", - "1.7672603835941145", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01140069636434036", - "3.5249072517198914", - "0.0", - "0.0", - "0.004712992979203394" - ], - [ - "6947", - "0.008042339076685234", - "1.767232891533647", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011380186283994408", - "3.52486961388091", - "0.0", - "0.0", - "0.004704491869376059" - ], - [ - "6948", - "0.007973581844087823", - "1.767102619997066", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011282951890845244", - "3.5246912355840356", - "0.0", - "0.0", - "0.004664211797330402" - ], - [ - "6949", - "0.007878197760652357", - "1.7669219175062596", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011148054913123808", - "3.524443788400845", - "0.0", - "0.0", - "0.004608340608180906" - ], - [ - "6950", - "0.007839601980547303", - "1.7668488158732976", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011093464290918564", - "3.5243436729801014", - "0.0", - "0.0", - "0.004585739670176043" - ], - [ - "6951", - "0.00780767645364185", - "1.7667879809989846", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011048439645447604", - "3.5242606190761636", - "0.0", - "0.0", - "0.004566913261836097" - ], - [ - "6952", - "0.007757090779066593", - "1.7666921724514562", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010976888808108116", - "3.524129403030479", - "0.0", - "0.0", - "0.00453729275002507" - ], - [ - "6953", - "0.007656520718713177", - "1.7665016475333948", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010834653107395552", - "3.523868498117076", - "0.0", - "0.0", - "0.0044783883300308" - ], - [ - "6954", - "0.0075345030619461874", - "1.766270491806707", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010662081733679198", - "3.523551949459549", - "0.0", - "0.0", - "0.004406924390213177" - ], - [ - "6955", - "0.007420353927980017", - "1.7660542015296197", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010500651419878732", - "3.523255783644217", - "0.0", - "0.0", - "0.004340056436081302" - ], - [ - "6956", - "0.0073071195992248875", - "1.765839738717688", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010340478954635302", - "3.522962049721267", - "0.0", - "0.0", - "0.004273760243814473" - ], - [ - "6957", - "0.007198357573551183", - "1.7656337304011658", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010186636381034599", - "3.522679903580076", - "0.0", - "0.0", - "0.004210078766067768" - ], - [ - "6958", - "0.007091353565853902", - "1.7654310526331558", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010035278362858363", - "3.522402315490378", - "0.0", - "0.0", - "0.00414742876884944" - ], - [ - "6959", - "0.0069428840495543345", - "1.7651498478521808", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009825259123741622", - "3.522017162155023", - "0.0", - "0.0", - "0.004060508975367047" - ], - [ - "6960", - "0.006867428088150507", - "1.7650068715806555", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009718542479551995", - "3.521821375401137", - "0.0", - "0.0", - "0.004016313696749018" - ], - [ - "6961", - "0.0068482884665461785", - "1.7649706220037482", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00969146733382402", - "3.5217717242893096", - "0.0", - "0.0", - "0.004005109599268337" - ], - [ - "6962", - "0.006795964692534683", - "1.764870352813279", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009617868820455334", - "3.5216352203507824", - "0.0", - "0.0", - "0.003974060564614033" - ], - [ - "6963", - "0.0066780970820305005", - "1.764647136984208", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009451122268888959", - "3.52132946320124", - "0.0", - "0.0", - "0.0039050718951720415" - ], - [ - "6964", - "0.006622693433693397", - "1.7645422020309767", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009372746734585805", - "3.5211857327501517", - "0.0", - "0.0", - "0.0038726401328009886" - ], - [ - "6965", - "0.006601441917655081", - "1.7645019562527398", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009342681909579561", - "3.5211306040985817", - "0.0", - "0.0", - "0.003860201925730601" - ], - [ - "6966", - "0.006583918133795098", - "1.7644687592291501", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009317894564011572", - "3.5210851384247595", - "0.0", - "0.0", - "0.003849941703578624" - ], - [ - "6967", - "0.0065754274455418925", - "1.7644525887272224", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009305915235628445", - "3.5210630529401814", - "0.0", - "0.0", - "0.0038449396554553397" - ], - [ - "6968", - "0.006557704516107814", - "1.7644190147675751", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009280846005962415", - "3.5210170706746515", - "0.0", - "0.0", - "0.0038345630262532123" - ], - [ - "6969", - "0.006539511918881175", - "1.7643845622180188", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009255108379779615", - "3.520969877076983", - "0.0", - "0.0", - "0.003823915457982735" - ], - [ - "6970", - "0.006523105652178275", - "1.7643534925599098", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009231897884564582", - "3.5209273173422986", - "0.0", - "0.0", - "0.0038143134197919674" - ], - [ - "6971", - "0.006511191930594268", - "1.764330931076202", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009215042994592642", - "3.5208964119623785", - "0.0", - "0.0", - "0.0038073408665958933" - ], - [ - "6972", - "0.006504380632969", - "1.764318018410847", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009205411690737818", - "3.5208787336800205", - "0.0", - "0.0", - "0.0038033495752001806" - ], - [ - "6973", - "0.00649483053133212", - "1.7642998977665156", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009191913328956193", - "3.520853936601967", - "0.0", - "0.0", - "0.0037977477337080446" - ], - [ - "6974", - "0.0064785496969864236", - "1.7642690657605749", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00916888012674479", - "3.520811702140724", - "0.0", - "0.0", - "0.0037882192672280576" - ], - [ - "6975", - "0.006466792575476559", - "1.764246724365738", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009152274114403405", - "3.5207811526908013", - "0.0", - "0.0", - "0.0037813110365497106" - ], - [ - "6976", - "0.006456166119767606", - "1.7642265984853862", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009137241049000837", - "3.5207535850490728", - "0.0", - "0.0", - "0.0037750911905343743" - ], - [ - "6977", - "0.006438128334386093", - "1.7641924185743605", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009111729500530269", - "3.520706779105173", - "0.0", - "0.0", - "0.0037645271682419166" - ], - [ - "6978", - "0.006428051778309621", - "1.764173158464112", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00909753731015425", - "3.5206805226772255", - "0.0", - "0.0", - "0.003758566246464992" - ], - [ - "6979", - "0.006419123084891461", - "1.7641562500310215", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009084905272167008", - "3.5206573606644924", - "0.0", - "0.0", - "0.0037533408976159126" - ], - [ - "6980", - "0.006410328240958074", - "1.7641395950703012", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009072462587720178", - "3.520634545851499", - "0.0", - "0.0", - "0.003748193894195969" - ], - [ - "6981", - "0.006391050213050634", - "1.7641025937023465", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009045365715254269", - "3.5205842121074333", - "0.0", - "0.0", - "0.0037367347108469987" - ], - [ - "6982", - "0.006370524149074683", - "1.7640637217284618", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009016326427705366", - "3.5205309641041893", - "0.0", - "0.0", - "0.0037247218704439993" - ], - [ - "6983", - "0.0063505911230153315", - "1.7640259757187402", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008988125043733343", - "3.5204792563243155", - "0.0", - "0.0", - "0.003713057202297321" - ], - [ - "6984", - "0.006331217102092828", - "1.763989324304074", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008960701563059979", - "3.5204290222006347", - "0.0", - "0.0", - "0.0037017326411256783" - ], - [ - "6985", - "0.006320865865636405", - "1.7639697227079925", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008946056525271707", - "3.5204021701763044", - "0.0", - "0.0", - "0.0036956752060011023" - ], - [ - "6986", - "0.006306617655823526", - "1.7639427324210633", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008925901275985899", - "3.520365202977936", - "0.0", - "0.0", - "0.0036873340356611524" - ], - [ - "6987", - "0.006297626519690246", - "1.7639255486473964", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008913237022492861", - "3.5203417756017794", - "0.0", - "0.0", - "0.0036820160168876325" - ], - [ - "6988", - "0.0062802262717086355", - "1.7638925677056965", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008888629973847775", - "3.5202966173046315", - "0.0", - "0.0", - "0.0036718225695694965" - ], - [ - "6989", - "0.006269738141726424", - "1.7638726724848575", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008873803497642139", - "3.5202693874530167", - "0.0", - "0.0", - "0.0036656727858107104" - ], - [ - "6990", - "0.006259756964098049", - "1.7638537718154932", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008859681862302451", - "3.520243495345563", - "0.0", - "0.0", - "0.003659832065893647" - ], - [ - "6991", - "0.006250358777099991", - "1.7638359752996273", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008846384976518339", - "3.520219115667895", - "0.0", - "0.0", - "0.003654332577681644" - ], - [ - "6992", - "0.006240936876069556", - "1.7638181244119284", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008833057917701033", - "3.5201946682379366", - "0.0", - "0.0", - "0.00364881583443808" - ], - [ - "6993", - "0.006224592686948406", - "1.763787174886497", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008809933516039379", - "3.5201522699740133", - "0.0", - "0.0", - "0.0036392518578574336" - ], - [ - "6994", - "0.006233860745521031", - "1.7638047281086118", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008823045213200993", - "3.52017631419618", - "0.0", - "0.0", - "0.003644676277841069" - ], - [ - "6995", - "0.0062171157559223035", - "1.7637730194192278", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008799353796267341", - "3.5201328760554675", - "0.0", - "0.0", - "0.0036348777155772657" - ], - [ - "6996", - "0.006207089866465021", - "1.7637538768708718", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008785225160861117", - "3.5201067646370428", - "0.0", - "0.0", - "0.0036289545720689254" - ], - [ - "6997", - "0.0061997290524644965", - "1.7637399112034968", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00877482048802039", - "3.520087652158927", - "0.0", - "0.0", - "0.003624637616908601" - ], - [ - "6998", - "0.0061941907147665225", - "1.7637293794243405", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008767000483643613", - "3.520073256077359", - "0.0", - "0.0", - "0.0036213809458894314" - ], - [ - "6999", - "0.006215729855802559", - "1.7637701345129413", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008797486351084455", - "3.520129109881699", - "0.0", - "0.0", - "0.003633973360520662" - ], - [ - "7000", - "0.006258929077138491", - "1.7638519352157174", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00885860691856717", - "3.5202411712386077", - "0.0", - "0.0", - "0.003659251235709813" - ], - [ - "7001", - "0.00624144425647", - "1.7638188068018499", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008833875557716619", - "3.5201958016966106", - "0.0", - "0.0", - "0.0036490129552233827" - ], - [ - "7002", - "0.006221289111616722", - "1.76378062854445", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008805363657172572", - "3.52014350941771", - "0.0", - "0.0", - "0.0036372145660608706" - ], - [ - "7003", - "0.006202519303311299", - "1.7637450867122098", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008778807016739148", - "3.520094819354313", - "0.0", - "0.0", - "0.00362623158988345" - ], - [ - "7004", - "0.006184549030891717", - "1.7637110588485436", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008753381554025995", - "3.5200482032503047", - "0.0", - "0.0", - "0.0036157165077574404" - ], - [ - "7005", - "0.0061395656186402124", - "1.7636258799558349", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008689735951513696", - "3.519931512924326", - "0.0", - "0.0", - "0.0035893952857667293" - ], - [ - "7006", - "0.0060907489784002514", - "1.76353344247155", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008620666506841684", - "3.519804878243759", - "0.0", - "0.0", - "0.0035608314499588184" - ], - [ - "7007", - "0.0060420932663820875", - "1.763441306259409", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008551825602369284", - "3.5196786581493074", - "0.0", - "0.0", - "0.003532360930394891" - ], - [ - "7008", - "0.006029266246747914", - "1.7634170365601143", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008533669960376945", - "3.519645396001618", - "0.0", - "0.0", - "0.003524862533118883" - ], - [ - "7009", - "0.006012673478794684", - "1.7633853991427875", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008510271110525075", - "3.5196022094254618", - "0.0", - "0.0", - "0.0035150758470642927" - ], - [ - "7010", - "0.00599798027292474", - "1.7633575505596049", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008489491126276574", - "3.519564076439499", - "0.0", - "0.0", - "0.0035064694195729067" - ], - [ - "7011", - "0.005981790226805858", - "1.7633267603683347", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008466631663160485", - "3.519521990001121", - "0.0", - "0.0", - "0.003496948790451231" - ], - [ - "7012", - "0.00596414692237735", - "1.763293352347885", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008441667917869003", - "3.519476221541202", - "0.0", - "0.0", - "0.0034866259268856972" - ], - [ - "7013", - "0.00594598091041144", - "1.7632589061385642", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008415981887741232", - "3.5194290652461295", - "0.0", - "0.0", - "0.003475979933081648" - ], - [ - "7014", - "0.005921823284549507", - "1.763213159763192", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008381801980308716", - "3.5193663955693246", - "0.0", - "0.0", - "0.0034618445887902986" - ], - [ - "7015", - "0.005897973557470557", - "1.763167997166795", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008348057356132841", - "3.5193045249709956", - "0.0", - "0.0", - "0.0034478897588082736" - ], - [ - "7016", - "0.005874448595280803", - "1.7631234343906999", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008314777579025651", - "3.5192434867729623", - "0.0", - "0.0", - "0.003434119611535955" - ], - [ - "7017", - "0.005852247233155523", - "1.7630811848540193", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008283439684137197", - "3.5191857552741337", - "0.0", - "0.0", - "0.0034210547821738498" - ], - [ - "7018", - "0.005829011311576662", - "1.7630371652937775", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008250570168015607", - "3.519125463923091", - "0.0", - "0.0", - "0.0034074524551377175" - ], - [ - "7019", - "0.005805787067992501", - "1.7629928957920447", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008217814565028363", - "3.5190650240690147", - "0.0", - "0.0", - "0.003393759570956639" - ], - [ - "7020", - "0.0057853200481657475", - "1.76295414305589", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008188854169102215", - "3.5190119310327432", - "0.0", - "0.0", - "0.00338178592722928" - ], - [ - "7021", - "0.005765050447512765", - "1.7629157448437183", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008160179954678895", - "3.5189593373531705", - "0.0", - "0.0", - "0.0033699209403466354" - ], - [ - "7022", - "0.00574377628832458", - "1.7628754356878806", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00813008741969941", - "3.5189041318142857", - "0.0", - "0.0", - "0.003357465156949752" - ], - [ - "7023", - "0.0057256630173672845", - "1.7628411400709414", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00810445717556116", - "3.5188571446151724", - "0.0", - "0.0", - "0.0033468688591734084" - ], - [ - "7024", - "0.005705743130472965", - "1.762803298055529", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008076315566944164", - "3.5188053882250645", - "0.0", - "0.0", - "0.003335170694001766" - ], - [ - "7025", - "0.005688287778835407", - "1.7627702484969068", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008051616041002234", - "3.518760107783147", - "0.0", - "0.0", - "0.00332495951666858" - ], - [ - "7026", - "0.0056772645857424055", - "1.762749377449816", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008036018064302743", - "3.518731512792051", - "0.0", - "0.0", - "0.0033185111071820693" - ], - [ - "7027", - "0.0056663378542159675", - "1.7627286890393725", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008020556562780126", - "3.518703167997909", - "0.0", - "0.0", - "0.0033121191456518097" - ], - [ - "7028", - "0.005633584158977595", - "1.7626666739732098", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007974209439918924", - "3.5186182021683603", - "0.0", - "0.0", - "0.0032929588780362656" - ], - [ - "7029", - "0.005604387135201816", - "1.76261135703343", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007932907821872844", - "3.518542438771316", - "0.0", - "0.0", - "0.003275866448530788" - ], - [ - "7030", - "0.005574904328298974", - "1.7625554383296231", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00789122340544099", - "3.518465893953503", - "0.0", - "0.0", - "0.0032585852511569577" - ], - [ - "7031", - "0.005556634576435417", - "1.7625208320597097", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007865376379636885", - "3.518418490598593", - "0.0", - "0.0", - "0.0032478927732339496" - ], - [ - "7032", - "0.005554341624933794", - "1.7625164884333784", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007862132562860098", - "3.5184125409852904", - "0.0", - "0.0", - "0.0032465506870074903" - ], - [ - "7033", - "0.005553071343028409", - "1.7625140684437097", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007860340395284411", - "3.518409235969734", - "0.0", - "0.0", - "0.0032458022907724073" - ], - [ - "7034", - "0.005519786317968022", - "1.7624510068767496", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007813255311976103", - "3.51832286425724", - "0.0", - "0.0", - "0.003226317323959942" - ], - [ - "7035", - "0.00543639837907396", - "1.7622931158977988", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007695259605204", - "3.518106541182193", - "0.0", - "0.0", - "0.003177537152943919" - ], - [ - "7036", - "0.005413986846942401", - "1.7622506630031307", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00766355297549687", - "3.5180483897324333", - "0.0", - "0.0", - "0.0031644207183879323" - ], - [ - "7037", - "0.005401882670730161", - "1.7622277277777654", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007646431100814019", - "3.5180169782599693", - "0.0", - "0.0", - "0.0031573342406463027" - ], - [ - "7038", - "0.0053864734585206756", - "1.762198491916523", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007624647756915462", - "3.517976964765608", - "0.0", - "0.0", - "0.0031482991601258893" - ], - [ - "7039", - "0.005377574016260489", - "1.7621816272791317", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007612059723143855", - "3.5179538686339797", - "0.0", - "0.0", - "0.003143088309377124" - ], - [ - "7040", - "0.0053327720836469725", - "1.762096681054335", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0075487046629843495", - "3.517837566894313", - "0.0", - "0.0", - "0.003116839504309596" - ], - [ - "7041", - "0.005285737230674813", - "1.7620073946248964", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0074822297857207185", - "3.5177153981600733", - "0.0", - "0.0", - "0.0030892446756289084" - ], - [ - "7042", - "0.005249999258874104", - "1.761939727368374", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00743165825020341", - "3.5176226861595166", - "0.0", - "0.0", - "0.0030683402675447994" - ], - [ - "7043", - "0.005243354900176315", - "1.7619271330974096", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007422260923442664", - "3.5176054402494064", - "0.0", - "0.0", - "0.003064448876909966" - ], - [ - "7044", - "0.00523140895355683", - "1.7619045146069165", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007405356473323724", - "3.5175744499884094", - "0.0", - "0.0", - "0.0030574614337899354" - ], - [ - "7045", - "0.005205433788965417", - "1.7618551755331446", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007368655954421346", - "3.5175069613275043", - "0.0", - "0.0", - "0.003042211623509489" - ], - [ - "7046", - "0.005224985565113789", - "1.7618920223454648", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00739638513168051", - "3.5175575693879133", - "0.0", - "0.0", - "0.0030535859985470672" - ], - [ - "7047", - "0.005207661431339958", - "1.7618591352583644", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007371900693857038", - "3.5175125706959904", - "0.0", - "0.0", - "0.0030434221688228785" - ], - [ - "7048", - "0.005188999069677362", - "1.761823628290539", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007345553324495018", - "3.5174640436945257", - "0.0", - "0.0", - "0.003032444814859706" - ], - [ - "7049", - "0.0051713217999817904", - "1.7617901381924927", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007320545562917156", - "3.5174181718497897", - "0.0", - "0.0", - "0.003022098037046425" - ], - [ - "7050", - "0.0051539271790591226", - "1.7617572065742813", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007295929375098212", - "3.5173730485024555", - "0.0", - "0.0", - "0.003011924983020033" - ], - [ - "7051", - "0.005138120602255879", - "1.7617272725796125", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00727356365943713", - "3.51733203879782", - "0.0", - "0.0", - "0.0030026775450746287" - ], - [ - "7052", - "0.005119888717596514", - "1.761692748909817", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007247764992044235", - "3.517284738789237", - "0.0", - "0.0", - "0.0029920124431487925" - ], - [ - "7053", - "0.005101155026677212", - "1.7616572714194336", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007221257487945285", - "3.517236134457038", - "0.0", - "0.0", - "0.0029810525654091397" - ], - [ - "7054", - "0.0050830337180323955", - "1.7616229056161037", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00719563362799277", - "3.51718908728706", - "0.0", - "0.0", - "0.002970433808072022" - ], - [ - "7055", - "0.005065281182041553", - "1.7615892980406533", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007170510082157621", - "3.5171430361550082", - "0.0", - "0.0", - "0.0029600522819254855" - ], - [ - "7056", - "0.005047378476585136", - "1.7615553813810705", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007145182842138385", - "3.517096579093645", - "0.0", - "0.0", - "0.002949574111031887" - ], - [ - "7057", - "0.0050308341925443", - "1.7615238363216303", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007121849644727566", - "3.517053514287995", - "0.0", - "0.0", - "0.0029398187403610323" - ], - [ - "7058", - "0.005016991377132448", - "1.7614968818884753", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007102527028664484", - "3.5170171129534182", - "0.0", - "0.0", - "0.0029314557256004117" - ], - [ - "7059", - "0.005009503523872078", - "1.7614826193140818", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007091961301539392", - "3.5169976315461833", - "0.0", - "0.0", - "0.0029270457462047643" - ], - [ - "7060", - "0.00499079472323714", - "1.7614472021476817", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007065483950073633", - "3.516949099925081", - "0.0", - "0.0", - "0.0029161054964006476" - ], - [ - "7061", - "0.004979156269334284", - "1.76142516081538", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00704901594581914", - "3.516918903283991", - "0.0", - "0.0", - "0.0029092965928494293" - ], - [ - "7062", - "0.004965808619690079", - "1.7613998951022773", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0070301249662655845", - "3.516884280250915", - "0.0", - "0.0", - "0.0029014922731145742" - ], - [ - "7063", - "0.004955833617191671", - "1.761380978002868", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0070160199820360255", - "3.5168583823223805", - "0.0", - "0.0", - "0.0028956472523473157" - ], - [ - "7064", - "0.004948031484008162", - "1.7613662209271146", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007004973431080168", - "3.516838151594552", - "0.0", - "0.0", - "0.0028910895369361547" - ], - [ - "7065", - "0.0049277190084578435", - "1.7613278443513047", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006976198916715626", - "3.516785509919791", - "0.0", - "0.0", - "0.0028792391002000605" - ], - [ - "7066", - "0.004910003700215618", - "1.761294048923855", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006951220082877622", - "3.516739384754519", - "0.0", - "0.0", - "0.002868787317553613" - ], - [ - "7067", - "0.004897832054025455", - "1.761271009781699", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006933993181670712", - "3.516707812333396", - "0.0", - "0.0", - "0.002861670926380198" - ], - [ - "7068", - "0.004885702932650409", - "1.761248051131175", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006916826443358809", - "3.516676350179958", - "0.0", - "0.0", - "0.0028545794219420094" - ], - [ - "7069", - "0.004875373315388166", - "1.7612284775328848", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006902214152311278", - "3.5166495418859083", - "0.0", - "0.0", - "0.002848532478465053" - ], - [ - "7070", - "0.004866130472349903", - "1.761210973231902", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006889135630083021", - "3.5166255606129484", - "0.0", - "0.0", - "0.0028431253146167846" - ], - [ - "7071", - "0.004854154663452917", - "1.7611882105695862", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006872219543179259", - "3.516594434079478", - "0.0", - "0.0", - "0.002836089783726576" - ], - [ - "7072", - "0.004840112938419438", - "1.761161494001949", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006852395002613845", - "3.5165579200601815", - "0.0", - "0.0", - "0.0028278308742250304" - ], - [ - "7073", - "0.0048247536308025085", - "1.7611323889005621", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0068306678460128886", - "3.5165180576100354", - "0.0", - "0.0", - "0.0028188394155921285" - ], - [ - "7074", - "0.0048119980050648666", - "1.7611082435447156", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006812614535787973", - "3.516484969562119", - "0.0", - "0.0", - "0.00281138147434176" - ], - [ - "7075", - "0.0047972962049464985", - "1.7610804008190712", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006791811534150061", - "3.5164468242645586", - "0.0", - "0.0", - "0.002802780875742937" - ], - [ - "7076", - "0.004789282401746141", - "1.7610652276503362", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00678047071632249", - "3.5164260340053413", - "0.0", - "0.0", - "0.002798094087169792" - ], - [ - "7077", - "0.004770148969903258", - "1.76102898029865", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006753401137484313", - "3.516376382466831", - "0.0", - "0.0", - "0.002786896802322203" - ], - [ - "7078", - "0.004754537015795963", - "1.7609992457215402", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00673137035887854", - "3.516335764877609", - "0.0", - "0.0", - "0.002777703672713386" - ], - [ - "7079", - "0.004738423547060189", - "1.7609687470442088", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006708563427264295", - "3.516293968141666", - "0.0", - "0.0", - "0.0027682836668560832" - ], - [ - "7080", - "0.004722437518433288", - "1.7609384850623113", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0066859384479150815", - "3.5162524989358603", - "0.0", - "0.0", - "0.0027589365889514935" - ], - [ - "7081", - "0.004708898583491733", - "1.760912852817423", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006666777758273521", - "3.516217375900174", - "0.0", - "0.0", - "0.002751019408709944" - ], - [ - "7082", - "0.004697114198420785", - "1.760890540508677", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006650100785089113", - "3.5161868033244077", - "0.0", - "0.0", - "0.0027441276117524563" - ], - [ - "7083", - "0.00468874137379579", - "1.7608746929199892", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006638249842418806", - "3.516165084953353", - "0.0", - "0.0", - "0.002739232905172774" - ], - [ - "7084", - "0.004676438747042488", - "1.7608514052532356", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006620837323716837", - "3.5161331716855697", - "0.0", - "0.0", - "0.002732040170368139" - ], - [ - "7085", - "0.0046635251324155386", - "1.7608269637652476", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006602559043436727", - "3.5160996752497704", - "0.0", - "0.0", - "0.002724491221394349" - ], - [ - "7086", - "0.004655164548090999", - "1.7608111258226296", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006590730219160158", - "3.516077979660892", - "0.0", - "0.0", - "0.0027195988770218394" - ], - [ - "7087", - "0.004647511760661217", - "1.7607966410988114", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006579898361065669", - "3.5160581289352852", - "0.0", - "0.0", - "0.002715125160256765" - ], - [ - "7088", - "0.004631640228441268", - "1.7607665951024458", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006557435461552865", - "3.5160169558745618", - "0.0", - "0.0", - "0.00270584499532967" - ], - [ - "7089", - "0.004621771792175518", - "1.7607479092923262", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006543470168172959", - "3.515991352971835", - "0.0", - "0.0", - "0.0027000734161780767" - ], - [ - "7090", - "0.004611423157994123", - "1.760728307748664", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006528827626774492", - "3.515964499940489", - "0.0", - "0.0", - "0.0026940186892137536" - ], - [ - "7091", - "0.004608745011990129", - "1.7607231011923563", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006525086147752529", - "3.5159574625255043", - "0.0", - "0.0", - "0.002692403876227729" - ], - [ - "7092", - "0.004610263806040415", - "1.7607258974202586", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006527263958267586", - "3.5159613505526566", - "0.0", - "0.0", - "0.0026932636538132436" - ], - [ - "7093", - "0.00460762448940134", - "1.7607208914141235", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006523531962918839", - "3.5159544974554837", - "0.0", - "0.0", - "0.0026917170158838417" - ], - [ - "7094", - "0.004589040212211022", - "1.7606854480515006", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006497323346773716", - "3.515906114572936", - "0.0", - "0.0", - "0.0026807570776483294" - ], - [ - "7095", - "0.00457777419802505", - "1.7606641235490152", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0064813774689915695", - "3.5158768906422604", - "0.0", - "0.0", - "0.0026741709270585302" - ], - [ - "7096", - "0.004560214000139016", - "1.760630848218123", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006456536057313342", - "3.515831315185974", - "0.0", - "0.0", - "0.0026638919429646914" - ], - [ - "7097", - "0.004548755652501308", - "1.7606091207041248", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00644033183908401", - "3.5158015666190883", - "0.0", - "0.0", - "0.0026571794659186044" - ], - [ - "7098", - "0.004532039254428586", - "1.7605774668736307", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006416675950172217", - "3.515758195870788", - "0.0", - "0.0", - "0.002647402558684954" - ], - [ - "7099", - "0.004521548737345957", - "1.760557598890011", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006401831673689082", - "3.5157309759463278", - "0.0", - "0.0", - "0.0026412658010028325" - ], - [ - "7100", - "0.004511971855735744", - "1.7605393853320326", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006388307356819823", - "3.515706076663095", - "0.0", - "0.0", - "0.0026356363546516637" - ], - [ - "7101", - "0.0045031476097082005", - "1.7605226847244897", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0063758166960128934", - "3.515683187848853", - "0.0", - "0.0", - "0.002630478523403507" - ], - [ - "7102", - "0.004494382558953138", - "1.7605060961480141", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006363409813277333", - "3.5156604525582833", - "0.0", - "0.0", - "0.0026253553046289425" - ], - [ - "7103", - "0.004485283253658477", - "1.7604888749665701", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006350529781903958", - "3.515636850237768", - "0.0", - "0.0", - "0.0026200367254129954" - ], - [ - "7104", - "0.004477671747077689", - "1.760474469403083", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006339755771707073", - "3.5156171069346116", - "0.0", - "0.0", - "0.0026155877224483043" - ], - [ - "7105", - "0.00446748614316085", - "1.760455192310895", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00632533806035529", - "3.5155906868619833", - "0.0", - "0.0", - "0.0026096342259664096" - ], - [ - "7106", - "0.004456641569845021", - "1.7604346680637573", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006309987560130313", - "3.5155625574822715", - "0.0", - "0.0", - "0.0026032955795597286" - ], - [ - "7107", - "0.004447622552239443", - "1.7604175938075401", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006297222917974894", - "3.5155391600217807", - "0.0", - "0.0", - "0.0025980221865039917" - ], - [ - "7108", - "0.004436104500321582", - "1.7603957947931719", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006280919124882585", - "3.515509283567565", - "0.0", - "0.0", - "0.002591289875760579" - ], - [ - "7109", - "0.004421849853096322", - "1.760368799489173", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006260747744041133", - "3.5154722974607373", - "0.0", - "0.0", - "0.0025829519621515112" - ], - [ - "7110", - "0.004411362887579842", - "1.7603488147632043", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00624595248341952", - "3.5154450051843233", - "0.0", - "0.0", - "0.002576773291740165" - ], - [ - "7111", - "0.004408581185889694", - "1.7603435046149123", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006242031257769379", - "3.5154377598004456", - "0.0", - "0.0", - "0.002575131114010009" - ], - [ - "7112", - "0.004395448403348166", - "1.7603186503455246", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0062234414499921144", - "3.5154036953042875", - "0.0", - "0.0", - "0.002567455356704219" - ], - [ - "7113", - "0.004378846530359912", - "1.7602872282435869", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006199941887940333", - "3.5153606308228524", - "0.0", - "0.0", - "0.0025577511727794904" - ], - [ - "7114", - "0.004377497516478897", - "1.760284642123904", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006198044147372126", - "3.5153571099084084", - "0.0", - "0.0", - "0.0025569508855856683" - ], - [ - "7115", - "0.004363560058604716", - "1.760258264691837", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0061783153294968345", - "3.515320957903157", - "0.0", - "0.0", - "0.0025488047877125983" - ], - [ - "7116", - "0.0043303701829753025", - "1.7601952324739571", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006131412284053365", - "3.515234723520934", - "0.0", - "0.0", - "0.0025293280818972407" - ], - [ - "7117", - "0.004291809883876782", - "1.7601222442944329", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006076832642626616", - "3.515134695395363", - "0.0", - "0.0", - "0.002506787125126948" - ], - [ - "7118", - "0.004268239973740272", - "1.7600776262404918", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006043472309491414", - "3.515073550461257", - "0.0", - "0.0", - "0.0024930076379891283" - ], - [ - "7119", - "0.004253423128304198", - "1.7600495326917887", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006022516970186662", - "3.515035082897134", - "0.0", - "0.0", - "0.0024843292864217335" - ], - [ - "7120", - "0.004238907497549342", - "1.7600220358626117", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006001978441549753", - "3.5149974141477487", - "0.0", - "0.0", - "0.0024758365535489314" - ], - [ - "7121", - "0.00422735948711429", - "1.760000130796266", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005985649500387938", - "3.5149674268710265", - "0.0", - "0.0", - "0.0024690694738406433" - ], - [ - "7122", - "0.004221572563071355", - "1.759988987057904", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005977526393327563", - "3.514952289905964", - "0.0", - "0.0", - "0.0024656187328151464" - ], - [ - "7123", - "0.004212219943387125", - "1.759971232569755", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005964306652567863", - "3.5149279943821488", - "0.0", - "0.0", - "0.0024601332342063867" - ], - [ - "7124", - "0.0041956007946754095", - "1.7599397787191935", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005940781793100153", - "3.5148848849301326", - "0.0", - "0.0", - "0.0024504197962506662" - ], - [ - "7125", - "0.0041783528165915745", - "1.7599070349845367", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005916402443076628", - "3.5148400785574307", - "0.0", - "0.0", - "0.002440303190106522" - ], - [ - "7126", - "0.0041664799332708944", - "1.7598845672301398", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005899594850412692", - "3.514809282742791", - "0.0", - "0.0", - "0.0024333650161290966" - ], - [ - "7127", - "0.004152154064460339", - "1.759856702658127", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005879584736248634", - "3.514771627105577", - "0.0", - "0.0", - "0.0024247233926720426" - ], - [ - "7128", - "0.004135008792825349", - "1.7598242591193618", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005855312792724074", - "3.5147271566369236", - "0.0", - "0.0", - "0.0024147047929266225" - ], - [ - "7129", - "0.004124245745668552", - "1.7598039099962162", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005840069649457156", - "3.5146992515261504", - "0.0", - "0.0", - "0.002408421841879949" - ], - [ - "7130", - "0.004108689777404539", - "1.7597742985209648", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005818110265096529", - "3.5146587876809448", - "0.0", - "0.0", - "0.002399269289712548" - ], - [ - "7131", - "0.004094131342968282", - "1.7597465265517769", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005797580220657866", - "3.514620879428271", - "0.0", - "0.0", - "0.0023906824652786983" - ], - [ - "7132", - "0.004098922530777017", - "1.7597542109286313", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005804857080950864", - "3.5146323957174603", - "0.0", - "0.0", - "0.0023929879806031695" - ], - [ - "7133", - "0.00408220835290551", - "1.7597225887432493", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00578119326670701", - "3.514589046856312", - "0.0", - "0.0", - "0.0023832234391040095" - ], - [ - "7134", - "0.004068384162592714", - "1.7596960814632179", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005761747153482802", - "3.5145529605916637", - "0.0", - "0.0", - "0.002375021171702626" - ], - [ - "7135", - "0.004051695181159036", - "1.759664461533797", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005738135161457906", - "3.5145096469936754", - "0.0", - "0.0", - "0.0023652552008601654" - ], - [ - "7136", - "0.004039876017104011", - "1.759642037390756", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005721424112111353", - "3.5144789518361788", - "0.0", - "0.0", - "0.0023583279220966693" - ], - [ - "7137", - "0.0040252896528170405", - "1.759614320461174", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005700815750594162", - "3.5144410418833973", - "0.0", - "0.0", - "0.0023497635550399185" - ], - [ - "7138", - "0.004006714789774403", - "1.7595791993063554", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005674509736609508", - "3.514392880976767", - "0.0", - "0.0", - "0.0023389198429392966" - ], - [ - "7139", - "0.003984748695014108", - "1.7595376621878744", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005643402312562254", - "3.5143359246252914", - "0.0", - "0.0", - "0.002326095077465961" - ], - [ - "7140", - "0.003962238288304096", - "1.7594950387806467", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005611544354269016", - "3.5142775191798274", - "0.0", - "0.0", - "0.0023129322223391768" - ], - [ - "7141", - "0.003943287880044019", - "1.7594588118975467", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005584847703500286", - "3.514228123238893", - "0.0", - "0.0", - "0.0023017280565877513" - ], - [ - "7142", - "0.003929951876187738", - "1.7594335763600577", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005565968004197801", - "3.514193532205879", - "0.0", - "0.0", - "0.0022939357481776756" - ], - [ - "7143", - "0.003913978624523973", - "1.7594032180928112", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005543402014101959", - "3.514152013303947", - "0.0", - "0.0", - "0.002284555234945986" - ], - [ - "7144", - "0.00390031185002938", - "1.759377322651366", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005524066125729826", - "3.5141165417822093", - "0.0", - "0.0", - "0.002276557574328934" - ], - [ - "7145", - "0.0038863990646879824", - "1.7593510047583838", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005504366535419271", - "3.51408046052507", - "0.0", - "0.0", - "0.0022684315939566937" - ], - [ - "7146", - "0.00387383083446164", - "1.7593272325808218", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005486569893936574", - "3.514047867703217", - "0.0", - "0.0", - "0.0022610917749867057" - ], - [ - "7147", - "0.00386004656609889", - "1.75930113690905", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005467059679162487", - "3.5140121058654965", - "0.0", - "0.0", - "0.0022530334530352935" - ], - [ - "7148", - "0.0038464557996944486", - "1.7592753898420512", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0054478296494174265", - "3.5139768343050592", - "0.0", - "0.0", - "0.0022450819499714707" - ], - [ - "7149", - "0.003833353312802826", - "1.7592506033072852", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005429277783667205", - "3.5139428533439068", - "0.0", - "0.0", - "0.002237428841938447" - ], - [ - "7150", - "0.0038205863865555037", - "1.759226449605319", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00541120171337365", - "3.5139097413139035", - "0.0", - "0.0", - "0.002229971059737357" - ], - [ - "7151", - "0.003798193698413274", - "1.7591840885870516", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005379495633143739", - "3.5138516664048405", - "0.0", - "0.0", - "0.002216891763682809" - ], - [ - "7152", - "0.0037774226227073734", - "1.759144798091137", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005350084516832929", - "3.513797798883672", - "0.0", - "0.0", - "0.002204760728581818" - ], - [ - "7153", - "0.0037623653713804556", - "1.7591162973062413", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00532877055660352", - "3.5137587372396064", - "0.0", - "0.0", - "0.0021959601861573906" - ], - [ - "7154", - "0.0037491490518364286", - "1.7590912878212308", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005310060049835213", - "3.513724455751041", - "0.0", - "0.0", - "0.0021882380538376443" - ], - [ - "7155", - "0.003740772114076634", - "1.7590750101802153", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005298352854291678", - "3.5137024459543156", - "0.0", - "0.0", - "0.0021831913738615894" - ], - [ - "7156", - "0.0037043902802186297", - "1.7590061123570437", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005246864951341223", - "3.513608041485363", - "0.0", - "0.0", - "0.002161915609096036" - ], - [ - "7157", - "0.0036780112322805036", - "1.7589562218288906", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005209509865581464", - "3.5135396349169867", - "0.0", - "0.0", - "0.0021465125989795428" - ], - [ - "7158", - "0.0036643921785735273", - "1.7589303326005916", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005190271043173757", - "3.5135042308236724", - "0.0", - "0.0", - "0.002138513313973298" - ], - [ - "7159", - "0.003650118963939425", - "1.7589033384438142", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00517005857281799", - "3.5134672176232833", - "0.0", - "0.0", - "0.0021301793550608603" - ], - [ - "7160", - "0.0036297282008377163", - "1.758864774495881", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0051411829116611765", - "3.513414340346363", - "0.0", - "0.0", - "0.002118273490014256" - ], - [ - "7161", - "0.0036186757614306004", - "1.7588438589936406", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0051255358692825605", - "3.5133856708106803", - "0.0", - "0.0", - "0.002111815653578641" - ], - [ - "7162", - "0.0036086105288998297", - "1.7588248217419815", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005111282808845861", - "3.513359568668231", - "0.0", - "0.0", - "0.0021059382489537976" - ], - [ - "7163", - "0.003598491157848575", - "1.7588056753315704", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005096955483495382", - "3.513333321638124", - "0.0", - "0.0", - "0.002100026832201768" - ], - [ - "7164", - "0.003582028502160962", - "1.7587745404942947", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005073642304961762", - "3.513290630572418", - "0.0", - "0.0", - "0.002090414699360161" - ], - [ - "7165", - "0.0035580502787581052", - "1.7587291907570552", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005039686475849866", - "3.5132284492007546", - "0.0", - "0.0", - "0.0020764140816663433" - ], - [ - "7166", - "0.003548177223716654", - "1.758710518437395", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005025704935255295", - "3.513202846236249", - "0.0", - "0.0", - "0.0020706495121780135" - ], - [ - "7167", - "0.0035384716065951127", - "1.7586921412670298", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005011968179902565", - "3.513177663244549", - "0.0", - "0.0", - "0.00206497503328766" - ], - [ - "7168", - "0.0035282463356991855", - "1.7586727937417157", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004997491066321621", - "3.5131511408610314", - "0.0", - "0.0", - "0.0020590016050767504" - ], - [ - "7169", - "0.0035126432968554415", - "1.7586432759866706", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00497539812660764", - "3.5131106729632284", - "0.0", - "0.0", - "0.002049888467103243" - ], - [ - "7170", - "0.0034934853689293677", - "1.7586070385007437", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0049482697022898885", - "3.5130609886123843", - "0.0", - "0.0", - "0.002038701035568847" - ], - [ - "7171", - "0.003473525400175771", - "1.758569150792879", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00492005305756563", - "3.513009136223493", - "0.0", - "0.0", - "0.002026997742785912" - ], - [ - "7172", - "0.0034544192509294836", - "1.758533017462312", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004892995610007233", - "3.512959590068139", - "0.0", - "0.0", - "0.0020158428918517343" - ], - [ - "7173", - "0.0034352411586313176", - "1.7584967192500445", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004865846515452844", - "3.512909838222672", - "0.0", - "0.0", - "0.0020046358018097924" - ], - [ - "7174", - "0.0034244114869676867", - "1.7584762383861676", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004850509828258127", - "3.512881754630541", - "0.0", - "0.0", - "0.001998313145677246" - ], - [ - "7175", - "0.003413652575856096", - "1.7584556885097657", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00483534578668545", - "3.5128537205581623", - "0.0", - "0.0", - "0.0019919593650267416" - ], - [ - "7176", - "0.0033972442433835024", - "1.7584246583612972", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004812108338537273", - "3.5128111708752483", - "0.0", - "0.0", - "0.001982380148229732" - ], - [ - "7177", - "0.0033778345025994574", - "1.7583879345075915", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004784626559007321", - "3.512760826250537", - "0.0", - "0.0", - "0.0019710424461915946" - ], - [ - "7178", - "0.0033633120342753714", - "1.7583603734005846", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004764094559505744", - "3.5127231025144425", - "0.0", - "0.0", - "0.0019625295090449986" - ], - [ - "7179", - "0.0033489299451234626", - "1.7583331423992525", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004743738244751259", - "3.512685785439556", - "0.0", - "0.0", - "0.0019541216454956665" - ], - [ - "7180", - "0.003335858129830267", - "1.7583083349182433", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004725256936536605", - "3.5126518301941494", - "0.0", - "0.0", - "0.0019464593231239286" - ], - [ - "7181", - "0.003322550226704483", - "1.758283154700575", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004706414913382824", - "3.512617311384927", - "0.0", - "0.0", - "0.0019386855400261417" - ], - [ - "7182", - "0.00330933378602875", - "1.7582581617814654", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004687697272418531", - "3.512583039177674", - "0.0", - "0.0", - "0.00193097029963897" - ], - [ - "7183", - "0.003296107506000462", - "1.7582331437278622", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004668967999230017", - "3.512548737098876", - "0.0", - "0.0", - "0.001923247012770907" - ], - [ - "7184", - "0.003282269093425655", - "1.7582068672573605", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004649407785355746", - "3.5125127810027172", - "0.0", - "0.0", - "0.0019151304014955633" - ], - [ - "7185", - "0.003269570205015025", - "1.7581828456836102", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0046314256705649775", - "3.512479845886603", - "0.0", - "0.0", - "0.0019077147394650725" - ], - [ - "7186", - "0.0032591521827476542", - "1.7581631133268656", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004616682377893955", - "3.5124528095289578", - "0.0", - "0.0", - "0.0019016219876013534" - ], - [ - "7187", - "0.00325000254224794", - "1.7581458047927572", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0046037263943592074", - "3.512429078950706", - "0.0", - "0.0", - "0.0018962786901366717" - ], - [ - "7188", - "0.0032389559223147076", - "1.758124914124309", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004588081959368295", - "3.5124004325611047", - "0.0", - "0.0", - "0.0018898298852611207" - ], - [ - "7189", - "0.003215220433552641", - "1.7580800303327244", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004554466071698754", - "3.5123388831080553", - "0.0", - "0.0", - "0.0018759747954065276" - ], - [ - "7190", - "0.003205412836235174", - "1.758061458026788", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004540585165518392", - "3.512313433316289", - "0.0", - "0.0", - "0.0018702405069519555" - ], - [ - "7191", - "0.003195701022758", - "1.758043093051919", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0045268305414156934", - "3.5122882491930154", - "0.0", - "0.0", - "0.0018645715041003066" - ], - [ - "7192", - "0.0031845794465309297", - "1.75802206224623", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004511079275187669", - "3.512259409337423", - "0.0", - "0.0", - "0.0018580796178741907" - ], - [ - "7193", - "0.0031734814011872546", - "1.7580010759360374", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00449536131535773", - "3.5122306304685154", - "0.0", - "0.0", - "0.001851601487016779" - ], - [ - "7194", - "0.0031625551890006793", - "1.7579803876053146", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004479896326495664", - "3.5122022793489998", - "0.0", - "0.0", - "0.0018452140515056938" - ], - [ - "7195", - "0.003151603892008672", - "1.7579596708356677", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00446438900647519", - "3.512173875700186", - "0.0", - "0.0", - "0.0018388187775421545" - ], - [ - "7196", - "0.0031405973053891655", - "1.7579388004102143", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00444882089653972", - "3.5121452962035704", - "0.0", - "0.0", - "0.0018323737142386105" - ], - [ - "7197", - "0.0031297049241207435", - "1.757918188629527", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004433399271167299", - "3.5121170410289015", - "0.0", - "0.0", - "0.0018260105770741882" - ], - [ - "7198", - "0.0031189067219545077", - "1.7578977680728465", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004418106321576914", - "3.512089038722137", - "0.0", - "0.0", - "0.0018197071223321013" - ], - [ - "7199", - "0.003108137869985589", - "1.7578774030716773", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004402854901755151", - "3.5120611125315278", - "0.0", - "0.0", - "0.0018134208382160277" - ], - [ - "7200", - "0.0030976481316693696", - "1.757857571638532", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0043879967108644054", - "3.5120339139099976", - "0.0", - "0.0", - "0.001807299552474334" - ], - [ - "7201", - "0.0030849064947304954", - "1.7578334762661798", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00436995115036413", - "3.5120008719895757", - "0.0", - "0.0", - "0.0017998618390968604" - ], - [ - "7202", - "0.0030763488181145345", - "1.7578172940552366", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004357830828263895", - "3.5119786806434234", - "0.0", - "0.0", - "0.001794866807965174" - ], - [ - "7203", - "0.0030652805618013685", - "1.7577959932360212", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004342287282374326", - "3.5119497336611123", - "0.0", - "0.0", - "0.0017882738412284113" - ], - [ - "7204", - "0.0030557331003568593", - "1.7577778818288095", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004328785636479891", - "3.5119249375656105", - "0.0", - "0.0", - "0.0017826805642338274" - ], - [ - "7205", - "0.0030467029873476634", - "1.7577608062555639", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004315996155430744", - "3.511901521048634", - "0.0", - "0.0", - "0.0017774098192645832" - ], - [ - "7206", - "0.003035255304877644", - "1.7577391081195946", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00429980083929666", - "3.5118718016272776", - "0.0", - "0.0", - "0.0017707097704586273" - ], - [ - "7207", - "0.0030061319369171532", - "1.7576840381213825", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004258552449353731", - "3.511796280606171", - "0.0", - "0.0", - "0.0017537114244805762" - ], - [ - "7208", - "0.0029881688648325504", - "1.757650073541523", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0042331099088727476", - "3.5117497011447494", - "0.0", - "0.0", - "0.0017432278207923538" - ], - [ - "7209", - "0.0029752055670165412", - "1.7576255625337995", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004214748917511406", - "3.5117160863838404", - "0.0", - "0.0", - "0.001735662216521676" - ], - [ - "7210", - "0.00295906054440805", - "1.7575950355175403", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0041918813480755195", - "3.5116742211208396", - "0.0", - "0.0", - "0.00172623974074058" - ], - [ - "7211", - "0.0029416896854900436", - "1.757562190686612", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004167277475311891", - "3.5116291770954837", - "0.0", - "0.0", - "0.0017161018956681961" - ], - [ - "7212", - "0.002925392805099777", - "1.7575313380044784", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0041442084840517986", - "3.5115868924441522", - "0.0", - "0.0", - "0.001706577126147756" - ], - [ - "7213", - "0.0029151610110130072", - "1.757511962760766", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0041297265847179574", - "3.5115603413623337", - "0.0", - "0.0", - "0.0017005954373080572" - ], - [ - "7214", - "0.002902689383055707", - "1.7574883806129253", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004112062118110344", - "3.5115280007826293", - "0.0", - "0.0", - "0.00169331664800107" - ], - [ - "7215", - "0.0028888880816486887", - "1.7574622816929821", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004092515216289973", - "3.5114922104580044", - "0.0", - "0.0", - "0.0016852609470074048" - ], - [ - "7216", - "0.0028749916465924136", - "1.7574359690804848", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0040728456078736215", - "3.5114561510417577", - "0.0", - "0.0", - "0.001677137685311206" - ], - [ - "7217", - "0.002861282621561297", - "1.7574100483032995", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004053428034347856", - "3.5114206023250927", - "0.0", - "0.0", - "0.0016691372087747384" - ], - [ - "7218", - "0.0028501570057406006", - "1.757388992674181", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004037676566920987", - "3.5113917396814585", - "0.0", - "0.0", - "0.0016626374445602142" - ], - [ - "7219", - "0.002832922919693376", - "1.757356407208185", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004013265838295125", - "3.5113470503382413", - "0.0", - "0.0", - "0.0016525800010916266" - ], - [ - "7220", - "0.0028156690942627216", - "1.7573237844169565", - "0.0", - "0.0", - "0.0", - "0.0", - "0.003988827102293621", - "3.5113023097313465", - "0.0", - "0.0", - "0.0016425110862318222" - ], - [ - "7221", - "0.0027983611279074473", - "1.757291056890051", - "0.0", - "0.0", - "0.0", - "0.0", - "0.003964312475918793", - "3.511257427090477", - "0.0", - "0.0", - "0.0016324097798961009" - ], - [ - "7222", - "0.0027819569002179825", - "1.7572600338685989", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00394107939918629", - "3.5112148850464955", - "0.0", - "0.0", - "0.0016228344012496748" - ], - [ - "7223", - "0.0027704535139972996", - "1.7572382749080806", - "0.0", - "0.0", - "0.0", - "0.0", - "0.003924788793505835", - "3.5111850498140353", - "0.0", - "0.0", - "0.0016161182344887636" - ], - [ - "7224", - "0.0027590073996828076", - "1.7572166329360128", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0039085761815608085", - "3.5111553688116968", - "0.0", - "0.0", - "0.0016094386178048062" - ], - [ - "7225", - "0.0027456511583161657", - "1.7571913796067973", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0038896578915588787", - "3.511120734770723", - "0.0", - "0.0", - "0.0016016444250734527" - ], - [ - "7226", - "0.002728340150474039", - "1.7571585955298386", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0038651568919986267", - "3.5110758103495057", - "0.0", - "0.0", - "0.0015915234089494516" - ], - [ - "7227", - "0.0027112901776432177", - "1.7571263526442273", - "0.0", - "0.0", - "0.0", - "0.0", - "0.003841008577738178", - "3.5110315942378776", - "0.0", - "0.0", - "0.0015815717775482573" - ], - [ - "7228", - "0.0026942717805937253", - "1.7570941649804608", - "0.0", - "0.0", - "0.0", - "0.0", - "0.003816906540231419", - "3.510987456969531", - "0.0", - "0.0", - "0.0015716370209560313" - ], - [ - "7229", - "0.0026805668977711587", - "1.7570682471884198", - "0.0", - "0.0", - "0.0", - "0.0", - "0.003797496154994685", - "3.5109519151563653", - "0.0", - "0.0", - "0.001563637640547632" - ], - [ - "7230", - "0.002663600791856165", - "1.7570361564140693", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0037734688058663046", - "3.510907912042271", - "0.0", - "0.0", - "0.0015537327778460258" - ], - [ - "7231", - "0.002647023794974828", - "1.7570048139589027", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0037499880630681996", - "3.510864926200484", - "0.0", - "0.0", - "0.0015440595268814555" - ], - [ - "7232", - "0.002631336148481007", - "1.75697515301364", - "0.0", - "0.0", - "0.0", - "0.0", - "0.003727767013423908", - "3.5108242464685935", - "0.0", - "0.0", - "0.0015349052835381062" - ], - [ - "7233", - "0.0026153037079580843", - "1.7569448209302376", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0037050643963610964", - "3.510782659870526", - "0.0", - "0.0", - "0.001525543019555072" - ], - [ - "7234", - "0.002599393970842008", - "1.756914737819507", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0036825294835300614", - "3.5107414026141233", - "0.0", - "0.0", - "0.0015162584581539548" - ], - [ - "7235", - "0.002586353584113005", - "1.7568900769977926", - "0.0", - "0.0", - "0.0", - "0.0", - "0.003664059914625527", - "3.5107075839792325", - "0.0", - "0.0", - "0.0015086472536004823" - ], - [ - "7236", - "0.0025779820194872126", - "1.7568742487954074", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00365220175314984", - "3.5106858755556916", - "0.0", - "0.0", - "0.0015037622858245848" - ], - [ - "7237", - "0.0025707492776036885", - "1.7568605737762233", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0036419567032245008", - "3.510667120214858", - "0.0", - "0.0", - "0.0014995418519828765" - ], - [ - "7238", - "0.0025541499868556956", - "1.7568291717078084", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0036184503605866383", - "3.510624064623201", - "0.0", - "0.0", - "0.001489849613124753" - ], - [ - "7239", - "0.002537731799464302", - "1.7567981297812019", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0035951941750533615", - "3.5105814903063797", - "0.0", - "0.0", - "0.0014802694238752426" - ], - [ - "7240", - "0.0025213627305335235", - "1.7567671786505383", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0035720082607809357", - "3.5105390419206546", - "0.0", - "0.0", - "0.001470717200286112" - ], - [ - "7241", - "0.0025096580105007193", - "1.7567450495281225", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0035554282229613462", - "3.510508690779383", - "0.0", - "0.0", - "0.0014638877980400926" - ], - [ - "7242", - "0.0024941980746519083", - "1.7567158193711954", - "0.0", - "0.0", - "0.0", - "0.0", - "0.003533529278069102", - "3.510468601149159", - "0.0", - "0.0", - "0.0014548668712347146" - ], - [ - "7243", - "0.002478050596617948", - "1.7566852892733147", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0035106563908224976", - "3.5104267285655415", - "0.0", - "0.0", - "0.001445444802413399" - ], - [ - "7244", - "0.00246538814272157", - "1.7566613483220246", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0034927200074528764", - "3.5103938930707512", - "0.0", - "0.0", - "0.0014380562779902637" - ], - [ - "7245", - "0.002448964027626652", - "1.756630295180852", - "0.0", - "0.0", - "0.0", - "0.0", - "0.003469455187196902", - "3.5103513030055016", - "0.0", - "0.0", - "0.001428472868056402" - ], - [ - "7246", - "0.0024228787784074867", - "1.7565809656245954", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0034325088371581947", - "3.5102836534460833", - "0.0", - "0.0", - "0.0014132487196567786" - ], - [ - "7247", - "0.002402750558753594", - "1.7565428931153546", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0034040027034786748", - "3.510231447301329", - "0.0", - "0.0", - "0.0014014984140285134" - ], - [ - "7248", - "0.0023866279766590333", - "1.756512395364232", - "0.0", - "0.0", - "0.0", - "0.0", - "0.003381170093417384", - "3.510189629163003", - "0.0", - "0.0", - "0.0013920858599006823" - ], - [ - "7249", - "0.002370487428062014", - "1.7564818550640013", - "0.0", - "0.0", - "0.0", - "0.0", - "0.003358315052856622", - "3.510147758694316", - "0.0", - "0.0", - "0.001382659803267406" - ], - [ - "7250", - "0.002354445259634732", - "1.7564515084596266", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0033355965825924865", - "3.5101061483589824", - "0.0", - "0.0", - "0.0013732939366769771" - ], - [ - "7251", - "0.0023392206119644795", - "1.7564227125634577", - "0.0", - "0.0", - "0.0", - "0.0", - "0.003314034315751576", - "3.510066661248577", - "0.0", - "0.0", - "0.0013644069081773832" - ], - [ - "7252", - "0.0023256563036509205", - "1.7563970302870986", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0032948330574862545", - "3.510031462707439", - "0.0", - "0.0", - "0.0013564795498155863" - ], - [ - "7253", - "0.0023191801791719088", - "1.7563847825715198", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0032856606297537003", - "3.5100146668031837", - "0.0", - "0.0", - "0.0013526997285901177" - ], - [ - "7254", - "0.00230235720287155", - "1.756352973760352", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0032618309643432618", - "3.5099710407847016", - "0.0", - "0.0", - "0.0013428834413998377" - ], - [ - "7255", - "0.002293373797951987", - "1.7563359856681318", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0032491068191874257", - "3.5099477431013235", - "0.0", - "0.0", - "0.001337640776716548" - ], - [ - "7256", - "0.0022866931742436345", - "1.756323354965983", - "0.0", - "0.0", - "0.0", - "0.0", - "0.003239643370602243", - "3.5099304192602387", - "0.0", - "0.0", - "0.0013337429778850257" - ], - [ - "7257", - "0.002279509806746183", - "1.7563097605368725", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0032294724680866425", - "3.5099117829774853", - "0.0", - "0.0", - "0.0013295471454057243" - ], - [ - "7258", - "0.0022662510751374917", - "1.7562846930284362", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0032106907256403685", - "3.509877401125107", - "0.0", - "0.0", - "0.0013218114246346154" - ], - [ - "7259", - "0.0022529902700254498", - "1.7562596215980713", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0031919060175226014", - "3.5098430138497827", - "0.0", - "0.0", - "0.0013140745225282986" - ], - [ - "7260", - "0.002242881156731101", - "1.7562405047770804", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0031775873132083876", - "3.509816796639845", - "0.0", - "0.0", - "0.001308175000253815" - ], - [ - "7261", - "0.0022335513968119664", - "1.7562228554919346", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0031643747159089105", - "3.509792596460409", - "0.0", - "0.0", - "0.001302728077715022" - ], - [ - "7262", - "0.0022251591646782337", - "1.756206978118096", - "0.0", - "0.0", - "0.0", - "0.0", - "0.003152490393176461", - "3.5097708270099086", - "0.0", - "0.0", - "0.0012978279361800064" - ], - [ - "7263", - "0.002217296679187777", - "1.7561921130603966", - "0.0", - "0.0", - "0.0", - "0.0", - "0.003141352641257059", - "3.509750438373548", - "0.0", - "0.0", - "0.001293240717118495" - ], - [ - "7264", - "0.0022016292334696413", - "1.756162491702278", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0031191585961011124", - "3.5097098102244293", - "0.0", - "0.0", - "0.0012840998708381706" - ], - [ - "7265", - "0.002186109298600145", - "1.7561331492304315", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0030971734713551085", - "3.5096695645307494", - "0.0", - "0.0", - "0.0012750451258451815" - ], - [ - "7266", - "0.002169242993368409", - "1.7561012612662759", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0030732810701814338", - "3.5096258274100993", - "0.0", - "0.0", - "0.0012652049165553841" - ], - [ - "7267", - "0.0021520400757827954", - "1.7560687368894832", - "0.0", - "0.0", - "0.0", - "0.0", - "0.003048911784669368", - "3.509581217321169", - "0.0", - "0.0", - "0.001255168366896223" - ], - [ - "7268", - "0.0021348652688698046", - "1.7560362656567978", - "0.0", - "0.0", - "0.0", - "0.0", - "0.003024582272386705", - "3.5095366800506795", - "0.0", - "0.0", - "0.001245148265352904" - ], - [ - "7269", - "0.002117723084334178", - "1.7560038560202091", - "0.0", - "0.0", - "0.0", - "0.0", - "0.003000298952618813", - "3.50949222724709", - "0.0", - "0.0", - "0.0012351472160495424" - ], - [ - "7270", - "0.0021005957008849705", - "1.7559714744428545", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0029760365243060175", - "3.5094478128005133", - "0.0", - "0.0", - "0.0012251548774639238" - ], - [ - "7271", - "0.002090474982530771", - "1.7559523338743286", - "0.0", - "0.0", - "0.0", - "0.0", - "0.002961701770608341", - "3.5094215639075386", - "0.0", - "0.0", - "0.0012192481944532003" - ], - [ - "7272", - "0.002078561419950859", - "1.7559297697109224", - "0.0", - "0.0", - "0.0", - "0.0", - "0.002944839400327793", - "3.509390643321115", - "0.0", - "0.0", - "0.0012122834395739245" - ], - [ - "7273", - "0.0020669129988582745", - "1.7559077470881774", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0029283382380787286", - "3.5093604368880227", - "0.0", - "0.0", - "0.0012054877596378204" - ], - [ - "7274", - "0.002055204823598248", - "1.7558856112648702", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0029117524870752092", - "3.50933007531548", - "0.0", - "0.0", - "0.0011986571601212863" - ], - [ - "7275", - "0.0020434806070443994", - "1.755863445341145", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0028951439080876005", - "3.5092996722602683", - "0.0", - "0.0", - "0.0011918173060011985" - ], - [ - "7276", - "0.00203215065886521", - "1.7558420092311844", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0028790993949149826", - "3.5092702812674315", - "0.0", - "0.0", - "0.0011852019228154372" - ], - [ - "7277", - "0.0020209321321706802", - "1.7558207994534694", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0028632071064070785", - "3.5092411895491344", - "0.0", - "0.0", - "0.001178657157934282" - ], - [ - "7278", - "0.0020095497174540742", - "1.755799274158158", - "0.0", - "0.0", - "0.0", - "0.0", - "0.002847084654645122", - "3.5092116690551154", - "0.0", - "0.0", - "0.0011720147802630266" - ], - [ - "7279", - "0.0019989802392291465", - "1.7557792897023845", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0028321124084191877", - "3.509184259208156", - "0.0", - "0.0", - "0.0011658480700391057" - ], - [ - "7280", - "0.0019921680349167274", - "1.7557664105533224", - "0.0", - "0.0", - "0.0", - "0.0", - "0.002822462121571136", - "3.5091665938617007", - "0.0", - "0.0", - "0.001161873948262319" - ], - [ - "7281", - "0.001981894414429669", - "1.7557469854592591", - "0.0", - "0.0", - "0.0", - "0.0", - "0.002807908958144899", - "3.5091399511931933", - "0.0", - "0.0", - "0.001155879870714439" - ], - [ - "7282", - "0.0019705306233757853", - "1.7557254985484003", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0027918116827665516", - "3.5091104809802607", - "0.0", - "0.0", - "0.0011492495639850188" - ], - [ - "7283", - "0.001959067485273596", - "1.7557038115042798", - "0.0", - "0.0", - "0.0", - "0.0", - "0.002775578040779689", - "3.509080744965958", - "0.0", - "0.0", - "0.0011425569297675033" - ], - [ - "7284", - "0.0019478102282106894", - "1.755682525197872", - "0.0", - "0.0", - "0.0", - "0.0", - "0.002759631929827778", - "3.5090515504159914", - "0.0", - "0.0", - "0.001135988526593601" - ], - [ - "7285", - "0.0019359372535224836", - "1.7556599977695098", - "0.0", - "0.0", - "0.0", - "0.0", - "0.002742841049038055", - "3.509020708181716", - "0.0", - "0.0", - "0.0011290334580069123" - ], - [ - "7286", - "0.0019248837628822691", - "1.7556391006275036", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0027271821562289546", - "3.5089920445694864", - "0.0", - "0.0", - "0.0011225853695355837" - ], - [ - "7287", - "0.0019129003868094796", - "1.7556163148453952", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0027102525391222844", - "3.5089608831294816", - "0.0", - "0.0", - "0.0011155482344966747" - ], - [ - "7288", - "0.001905038891437776", - "1.755601452855016", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0026991153575393746", - "3.508940497223479", - "0.0", - "0.0", - "0.0011109624253361776" - ], - [ - "7289", - "0.001899565660206003", - "1.755591103236352", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0026913624878003033", - "3.508926302681202", - "0.0", - "0.0", - "0.0011077688326117028" - ], - [ - "7290", - "0.0018885358702489103", - "1.755570251549708", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0026757368728359374", - "3.5088977008548956", - "0.0", - "0.0", - "0.0011013348676618836" - ], - [ - "7291", - "0.001877485296311287", - "1.7555493606869241", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0026600817523089616", - "3.508869045178144", - "0.0", - "0.0", - "0.0010948888403136123" - ], - [ - "7292", - "0.0018685268453868169", - "1.7555324240230001", - "0.0", - "0.0", - "0.0", - "0.0", - "0.002647390810288343", - "3.5088458140407055", - "0.0", - "0.0", - "0.0010896628804852907" - ], - [ - "7293", - "0.0018605867899689123", - "1.755517413528374", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0026361422722031244", - "3.508825224335742", - "0.0", - "0.0", - "0.0010850313077347008" - ], - [ - "7294", - "0.001852768631101551", - "1.7555026334758297", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0026250664128696782", - "3.5088049507099273", - "0.0", - "0.0", - "0.001080470849333424" - ], - [ - "7295", - "0.0018441418734337644", - "1.755486324784869", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0026128450132055082", - "3.50878258025096", - "0.0", - "0.0", - "0.0010754387336620204" - ], - [ - "7296", - "0.0018344608083825237", - "1.755467987753723", - "0.0", - "0.0", - "0.0", - "0.0", - "0.002599142534947034", - "3.508757452505389", - "0.0", - "0.0", - "0.001069779081818013" - ], - [ - "7297", - "0.0018251696502045852", - "1.7554504203189403", - "0.0", - "0.0", - "0.0", - "0.0", - "0.002585980827060659", - "3.5087333573202653", - "0.0", - "0.0", - "0.0010643584733485115" - ], - [ - "7298", - "0.0018157412008043914", - "1.755432596241021", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0025726235700364755", - "3.5087089080163087", - "0.0", - "0.0", - "0.0010588588315723073" - ], - [ - "7299", - "0.0018025398160398988", - "1.7554068758340866", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0025541936220837658", - "3.5086741693086534", - "0.0", - "0.0", - "0.0010508860099960318" - ], - [ - "7300", - "0.0017945283881974582", - "1.7553917274004969", - "0.0", - "0.0", - "0.0", - "0.0", - "0.002542844957413116", - "3.508653392392793", - "0.0", - "0.0", - "0.0010462118189818004" - ], - [ - "7301", - "0.0017849991171196866", - "1.7553734893050035", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00252942449005671", - "3.508628533577007", - "0.0", - "0.0", - "0.0010405737441826638" - ], - [ - "7302", - "0.0017768126079086835", - "1.755357729110571", - "0.0", - "0.0", - "0.0", - "0.0", - "0.002517927875480521", - "3.5086071165721684", - "0.0", - "0.0", - "0.0010356973403368459" - ], - [ - "7303", - "0.0017707329412743995", - "1.755346240117457", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0025093132283513834", - "3.5085913539455778", - "0.0", - "0.0", - "0.0010321526541974158" - ], - [ - "7304", - "0.0017599584479879259", - "1.7553258604836142", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0024940528267449317", - "3.508563406765225", - "0.0", - "0.0", - "0.00102586406923092" - ], - [ - "7305", - "0.001749070699138665", - "1.7553052463686394", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0024786392201283725", - "3.5085351523609156", - "0.0", - "0.0", - "0.0010195021781489576" - ], - [ - "7306", - "0.0017388614427323351", - "1.755285935288943", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0024641795575723524", - "3.508508670870144", - "0.0", - "0.0", - "0.0010135433278923177" - ], - [ - "7307", - "0.0017271949815223138", - "1.7552638892081458", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0024476483849264615", - "3.5084784236894024", - "0.0", - "0.0", - "0.0010067415781181658" - ], - [ - "7308", - "0.0017186652687851967", - "1.7552477706318461", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0024355619163782057", - "3.508456309012072", - "0.0", - "0.0", - "0.0010017686211921876" - ], - [ - "7309", - "0.0017090624821621966", - "1.7552296173742155", - "0.0", - "0.0", - "0.0", - "0.0", - "0.002421957363245991", - "3.5084314076220253", - "0.0", - "0.0", - "0.000996167601078402" - ], - [ - "7310", - "0.0017043161784277663", - "1.7552206479060315", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00241523205201742", - "3.508419101773927", - "0.0", - "0.0", - "0.0009934003048381124" - ], - [ - "7311", - "0.0016994233146123113", - "1.7552113763464194", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0024083080245472133", - "3.5084063992776313", - "0.0", - "0.0", - "0.0009905386046774093" - ], - [ - "7312", - "0.0016898163901473032", - "1.7551932220262207", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0023946951688279543", - "3.508381491590407", - "0.0", - "0.0", - "0.000984937611466652" - ], - [ - "7313", - "0.0016812353119798884", - "1.7551770065491574", - "0.0", - "0.0", - "0.0", - "0.0", - "0.002382535804687528", - "3.508359243766734", - "0.0", - "0.0", - "0.0009799348192722494" - ], - [ - "7314", - "0.0016765488568587625", - "1.7551681506564103", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0023758951056512385", - "3.5083470933708494", - "0.0", - "0.0", - "0.0009772026080662865" - ], - [ - "7315", - "0.0016718957590723055", - "1.7551593510474175", - "0.0", - "0.0", - "0.0", - "0.0", - "0.002369304076947908", - "3.508335024979218", - "0.0", - "0.0", - "0.000974487441196703" - ], - [ - "7316", - "0.0016669873419870552", - "1.755150073365489", - "0.0", - "0.0", - "0.0", - "0.0", - "0.002362349689153514", - "3.5083222975398187", - "0.0", - "0.0", - "0.0009716249948205966" - ], - [ - "7317", - "0.0016607889001298006", - "1.7551383516137113", - "0.0", - "0.0", - "0.0", - "0.0", - "0.002353569590138294", - "3.508306221288905", - "0.0", - "0.0", - "0.0009680082101213075" - ], - [ - "7318", - "0.001651991977028209", - "1.7551217283510685", - "0.0", - "0.0", - "0.0", - "0.0", - "0.002341104299247792", - "3.5082834138480306", - "0.0", - "0.0", - "0.0009628796548086259" - ], - [ - "7319", - "0.0016432021553600702", - "1.7551051184061257", - "0.0", - "0.0", - "0.0", - "0.0", - "0.002328649094612439", - "3.5082606247316637", - "0.0", - "0.0", - "0.0009577552161077017" - ], - [ - "7320", - "0.0016339847960229839", - "1.755087700657754", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0023155880163968547", - "3.508236727199628", - "0.0", - "0.0", - "0.000952381575649113" - ], - [ - "7321", - "0.0016294498530002712", - "1.7550791307859719", - "0.0", - "0.0", - "0.0", - "0.0", - "0.002309162077165403", - "3.5082249693778365", - "0.0", - "0.0", - "0.0009497376288351396" - ], - [ - "7322", - "0.0016249297848463103", - "1.755070589358593", - "0.0", - "0.0", - "0.0", - "0.0", - "0.002302757092670084", - "3.508213250339014", - "0.0", - "0.0", - "0.0009471024770225363" - ], - [ - "7323", - "0.0016192556960800478", - "1.7550598672153301", - "0.0", - "0.0", - "0.0", - "0.0", - "0.002294716844051897", - "3.508198539299621", - "0.0", - "0.0", - "0.0009437945481081986" - ], - [ - "7324", - "0.0016145255067558568", - "1.7550509075284375", - "0.0", - "0.0", - "0.0", - "0.0", - "0.002288021665068367", - "3.5081862614214345", - "0.0", - "0.0", - "0.0009410293484433467" - ], - [ - "7325", - "0.0016100200938375991", - "1.755042391904666", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0022816381098089865", - "3.5081745791088736", - "0.0", - "0.0", - "0.0009384020778662117" - ], - [ - "7326", - "0.0016055381107273475", - "1.7550339225088358", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0022752870552324314", - "3.508162958831788", - "0.0", - "0.0", - "0.0009357891662222635" - ], - [ - "7327", - "0.0016010125721707986", - "1.7550253702967988", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0022688744607402907", - "3.5081512252858076", - "0.0", - "0.0", - "0.0009331506836013067" - ], - [ - "7328", - "0.0015953881105265297", - "1.7550145710982754", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0022609654068644898", - "3.5081365296285276", - "0.0", - "0.0", - "0.0009298108141885695" - ], - [ - "7329", - "0.0015861509359223391", - "1.7549971052324829", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0022478799813957237", - "3.5081125735325043", - "0.0", - "0.0", - "0.0009244218904489547" - ], - [ - "7330", - "0.001579461277025602", - "1.7549844633962655", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0022384008295822885", - "3.5080952289878824", - "0.0", - "0.0", - "0.0009205217244689158" - ], - [ - "7331", - "0.001574772094856465", - "1.7549755982084358", - "0.0", - "0.0", - "0.0", - "0.0", - "0.002231757663717279", - "3.508083068653459", - "0.0", - "0.0", - "0.000917786525995651" - ], - [ - "7332", - "0.0015703036384525344", - "1.7549671549028567", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0022254255619350073", - "3.508071483757192", - "0.0", - "0.0", - "0.0009151817149700615" - ], - [ - "7333", - "0.0015658523335382128", - "1.754958744005445", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0022191177617484157", - "3.508059943322603", - "0.0", - "0.0", - "0.0009125869053280098" - ], - [ - "7334", - "0.0015613843610758804", - "1.7549503027587634", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0022127859312455096", - "3.5080483604296404", - "0.0", - "0.0", - "0.0009099827909062511" - ], - [ - "7335", - "0.0015569452314276929", - "1.754941914863343", - "0.0", - "0.0", - "0.0", - "0.0", - "0.002206495378991041", - "3.5080368515481117", - "0.0", - "0.0", - "0.0009073950838643448" - ], - [ - "7336", - "0.0015523201243358828", - "1.7549331441810363", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0021999524635335347", - "3.5080248396930704", - "0.0", - "0.0", - "0.0009046877851382311" - ], - [ - "7337", - "0.0015483012064853219", - "1.7549254472134288", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0021942941120948606", - "3.5080143518927107", - "0.0", - "0.0", - "0.000902308300875783" - ], - [ - "7338", - "0.0015420780705209251", - "1.7549136889131691", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0021854752934177784", - "3.507998218134078", - "0.0", - "0.0", - "0.0008986808476240721" - ], - [ - "7339", - "0.0015320550459621924", - "1.7548947509151247", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0021712716316803007", - "3.5079722329728753", - "0.0", - "0.0", - "0.0008928384602440843" - ], - [ - "7340", - "0.0015253508329731988", - "1.7548820834242738", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0021617711379107968", - "3.507954851826479", - "0.0", - "0.0", - "0.0008889305280356008" - ], - [ - "7341", - "0.001518863735486156", - "1.7548698263816997", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0021525782342541834", - "3.50793803369732", - "0.0", - "0.0", - "0.0008851492367181285" - ], - [ - "7342", - "0.0015125809412750266", - "1.7548579529467554", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0021436757033430195", - "3.5079217436242955", - "0.0", - "0.0", - "0.0008814861792070338" - ], - [ - "7343", - "0.001503520474830762", - "1.7548408336670287", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0021308360377749703", - "3.5078982538819714", - "0.0", - "0.0", - "0.0008762049118865535" - ], - [ - "7344", - "0.0014944407206466624", - "1.7548236752016324", - "0.0", - "0.0", - "0.0", - "0.0", - "0.002117970003190041", - "3.5078747122954406", - "0.0", - "0.0", - "0.0008709114381032837" - ], - [ - "7345", - "0.0014863238103981177", - "1.7548083363672071", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0021064682749246098", - "3.507853667174508", - "0.0", - "0.0", - "0.0008661793458716256" - ], - [ - "7346", - "0.001480081946858742", - "1.7547965321547718", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0020976266053260527", - "3.5078374777836476", - "0.0", - "0.0", - "0.0008625372883914314" - ], - [ - "7347", - "0.0014738745864104868", - "1.754784763192856", - "0.0", - "0.0", - "0.0", - "0.0", - "0.002088844494475235", - "3.507821357977122", - "0.0", - "0.0", - "0.0008589046783457384" - ], - [ - "7348", - "0.0014699862269711278", - "1.7547774164124195", - "0.0", - "0.0", - "0.0", - "0.0", - "0.002083334217623015", - "3.50781127721004", - "0.0", - "0.0", - "0.0008566382363192409" - ], - [ - "7349", - "0.0014657233530957212", - "1.754769358863062", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0020772943282320287", - "3.507800223401682", - "0.0", - "0.0", - "0.0008541523779594138" - ], - [ - "7350", - "0.001461411536360511", - "1.7547612120818807", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0020711839223400822", - "3.507789044852043", - "0.0", - "0.0", - "0.0008516391503809396" - ], - [ - "7351", - "0.001457078712693704", - "1.7547530256098702", - "0.0", - "0.0", - "0.0", - "0.0", - "0.002065043743858743", - "3.507777811836243", - "0.0", - "0.0", - "0.0008491136815286652" - ], - [ - "7352", - "0.0014527263526213062", - "1.7547448020874263", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0020588759258614612", - "3.5077665280750705", - "0.0", - "0.0", - "0.0008465767793811512" - ], - [ - "7353", - "0.001448158414865837", - "1.7547361219269517", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0020524201797724956", - "3.5077546527011103", - "0.0", - "0.0", - "0.0008438966499591781" - ], - [ - "7354", - "0.0014440589672424589", - "1.7547283725554907", - "0.0", - "0.0", - "0.0", - "0.0", - "0.002046612085929492", - "3.5077440221597898", - "0.0", - "0.0", - "0.000841505848555426" - ], - [ - "7355", - "0.0014386742174783177", - "1.7547181694139509", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0020389915628420104", - "3.507730042623517", - "0.0", - "0.0", - "0.0008383568721146253" - ], - [ - "7356", - "0.0014334745277897953", - "1.7547083453755967", - "0.0", - "0.0", - "0.0", - "0.0", - "0.002031622795824282", - "3.507716562389813", - "0.0", - "0.0", - "0.0008353262597553084" - ], - [ - "7357", - "0.0014281452651922293", - "1.7546982575140033", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0020240771750006177", - "3.5077027336176583", - "0.0", - "0.0", - "0.0008322133553838408" - ], - [ - "7358", - "0.0014241782613671327", - "1.7546907614624023", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0020184556611649923", - "3.5076924484647773", - "0.0", - "0.0", - "0.0008299008615692731" - ], - [ - "7359", - "0.0014144580021656422", - "1.7546723953211845", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0020046809325386097", - "3.507667247809811", - "0.0", - "0.0", - "0.0008242350717926747" - ], - [ - "7360", - "0.0014047654574278069", - "1.7546540828458486", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0019909449996590623", - "3.507642119845577", - "0.0", - "0.0", - "0.0008185859151965517" - ], - [ - "7361", - "0.0013950983724036346", - "1.7546358184716553", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0019772451322413206", - "3.5076170578613484", - "0.0", - "0.0", - "0.0008129516125659484" - ], - [ - "7362", - "0.001385429029535552", - "1.7546175485163973", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0019635425183284726", - "3.5075919891273517", - "0.0", - "0.0", - "0.0008073155407426314" - ], - [ - "7363", - "0.0013741691204186533", - "1.754596274770605", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0019475853137322448", - "3.5075627976836725", - "0.0", - "0.0", - "0.0008007529271050618" - ], - [ - "7364", - "0.0013627948645185996", - "1.7545747824104931", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0019314669565961573", - "3.507533308053778", - "0.0", - "0.0", - "0.0007941227724410418" - ], - [ - "7365", - "0.0013514103402881548", - "1.7545532695777049", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0019153344082045996", - "3.507503791058672", - "0.0", - "0.0", - "0.0007874862723717103" - ], - [ - "7366", - "0.0013450430396333233", - "1.7545412396382047", - "0.0", - "0.0", - "0.0", - "0.0", - "0.001906310818208843", - "3.5074872837255797", - "0.0", - "0.0", - "0.0007837752610578039" - ], - [ - "7367", - "0.0013356914813157678", - "1.754523571077168", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0018930581277649928", - "3.507463039390185", - "0.0", - "0.0", - "0.0007783248348665426" - ], - [ - "7368", - "0.0013262269805022454", - "1.7545056895021116", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0018796452305442249", - "3.5074385024731476", - "0.0", - "0.0", - "0.0007728087304602662" - ], - [ - "7369", - "0.0013164586717536438", - "1.7544872483623073", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0018657966259409866", - "3.5074131874751764", - "0.0", - "0.0", - "0.000767120717566301" - ], - [ - "7370", - "0.0013127988182340604", - "1.7544803323629987", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0018606104183963473", - "3.507403698334268", - "0.0", - "0.0", - "0.0007649872180717737" - ], - [ - "7371", - "0.0013091291441705759", - "1.7544733818184164", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0018554159891764064", - "3.5073941731221954", - "0.0", - "0.0", - "0.0007628422991647456" - ], - [ - "7372", - "0.0013046670778303856", - "1.7544648421292128", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0018491313914161258", - "3.507382532536593", - "0.0", - "0.0", - "0.0007602027642446453" - ], - [ - "7373", - "0.001300907941429471", - "1.7544577402023611", - "0.0", - "0.0", - "0.0", - "0.0", - "0.001843803886352687", - "3.5073727870858438", - "0.0", - "0.0", - "0.000758011996506255" - ], - [ - "7374", - "0.001297270985718948", - "1.7544508644746288", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0018386511850530059", - "3.507363355309565", - "0.0", - "0.0", - "0.0007558907863848902" - ], - [ - "7375", - "0.0012904659357230075", - "1.7544375180749439", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0018291815042285609", - "3.507345388169828", - "0.0", - "0.0", - "0.0007517503672174541" - ], - [ - "7376", - "0.001286838608573692", - "1.75443066169102", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0018240420308137315", - "3.507335982108137", - "0.0", - "0.0", - "0.0007496351863336528" - ], - [ - "7377", - "0.0012832231442259404", - "1.7544238325940986", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0018189176310561869", - "3.507326610034297", - "0.0", - "0.0", - "0.0007475286573956939" - ], - [ - "7378", - "0.0012795949036135473", - "1.7544169789381803", - "0.0", - "0.0", - "0.0", - "0.0", - "0.001813775272500719", - "3.5073172045550693", - "0.0", - "0.0", - "0.0007454145347263755" - ], - [ - "7379", - "0.0012759562526291088", - "1.7544101060459967", - "0.0", - "0.0", - "0.0", - "0.0", - "0.001808618004320893", - "3.5073077723703263", - "0.0", - "0.0", - "0.0007432945009373247" - ], - [ - "7380", - "0.0012724142012436148", - "1.7544034152081946", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0018035977956583902", - "3.507298590318552", - "0.0", - "0.0", - "0.0007412306068288394" - ], - [ - "7381", - "0.0012688249834883264", - "1.7543966339678225", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0017985112005460134", - "3.507289285126651", - "0.0", - "0.0", - "0.0007391387664306394" - ], - [ - "7382", - "0.0012653053030221913", - "1.7543899857995469", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0017935225478810956", - "3.5072801613337914", - "0.0", - "0.0", - "0.0007370880581632872" - ], - [ - "7383", - "0.0012616578263333156", - "1.7543830910469675", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0017883546103108694", - "3.5072707028114185", - "0.0", - "0.0", - "0.0007349610423557617" - ], - [ - "7384", - "0.001258158027660651", - "1.7543764804467257", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0017833941281072143", - "3.5072616305596167", - "0.0", - "0.0", - "0.0007329219272140878" - ], - [ - "7385", - "0.0012514564895870167", - "1.7543638021548043", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0017739027678085576", - "3.5072442453483172", - "0.0", - "0.0", - "0.0007290102113654757" - ], - [ - "7386", - "0.0012455207033197065", - "1.7543525879334103", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0017654904532800949", - "3.5072288568657504", - "0.0", - "0.0", - "0.0007255509533593182" - ], - [ - "7387", - "0.0012393671423122409", - "1.7543409257538587", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0017567825060293863", - "3.5072128795385553", - "0.0", - "0.0", - "0.0007219517785950955" - ], - [ - "7388", - "0.0012341089872256507", - "1.7543309941391156", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0017493296833388445", - "3.507199249379616", - "0.0", - "0.0", - "0.0007188882911124568" - ], - [ - "7389", - "0.001226978201486576", - "1.754317525495161", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0017392226175550495", - "3.50718076498692", - "0.0", - "0.0", - "0.0007147337854181024" - ], - [ - "7390", - "0.0012223215466137091", - "1.7543087343738968", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0017326207827798633", - "3.507168696926745", - "0.0", - "0.0", - "0.0007120223104475548" - ], - [ - "7391", - "0.0012174320478405445", - "1.754299491749057", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0017256930839372215", - "3.5071560175084375", - "0.0", - "0.0", - "0.0007091710117438677" - ], - [ - "7392", - "0.001211104241279066", - "1.7542875394060993", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0017167242624819459", - "3.507139614324425", - "0.0", - "0.0", - "0.0007054842200761857" - ], - [ - "7393", - "0.0012030619023527494", - "1.7542723490388916", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0017053251368719803", - "3.507118766972873", - "0.0", - "0.0", - "0.0007007986678335187" - ], - [ - "7394", - "0.0011939983719574966", - "1.7542552298449134", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0016924785727899813", - "3.50709527246853", - "0.0", - "0.0", - "0.000695518171125012" - ], - [ - "7395", - "0.001187316302485602", - "1.754242607911102", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0016830077607839261", - "3.50707795061966", - "0.0", - "0.0", - "0.0006916248441872775" - ], - [ - "7396", - "0.0011817821862551247", - "1.7542321277696091", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0016751734663817495", - "3.507063586917818", - "0.0", - "0.0", - "0.0006883909061284999" - ], - [ - "7397", - "0.001175556843810362", - "1.7542203694915068", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0016663496508105618", - "3.5070474496369934", - "0.0", - "0.0", - "0.0006847640368101622" - ], - [ - "7398", - "0.0011693455115017917", - "1.7542086376750925", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0016575456869868108", - "3.5070313486630678", - "0.0", - "0.0", - "0.0006811453360167724" - ], - [ - "7399", - "0.0011644828305624386", - "1.754199441757171", - "0.0", - "0.0", - "0.0", - "0.0", - "0.001650657362208908", - "3.507018736074633", - "0.0", - "0.0", - "0.0006783082989159691" - ], - [ - "7400", - "0.0011557088230571369", - "1.754182849228881", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0016382282975257996", - "3.506995978579821", - "0.0", - "0.0", - "0.0006731893485884741" - ], - [ - "7401", - "0.001146969469952438", - "1.754166346981168", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0016258394988643", - "3.506973327385316", - "0.0", - "0.0", - "0.000668099441040576" - ], - [ - "7402", - "0.001143460715224357", - "1.7541596860295774", - "0.0", - "0.0", - "0.0", - "0.0", - "0.001620878162207222", - "3.5069642096074154", - "0.0", - "0.0", - "0.000666043268241492" - ], - [ - "7403", - "0.0011383528040635994", - "1.754150038596567", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00161363806934159", - "3.5069509690511342", - "0.0", - "0.0", - "0.0006630675387856087" - ], - [ - "7404", - "0.0011312558818664766", - "1.754136634475677", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0016035786891491798", - "3.5069325726389673", - "0.0", - "0.0", - "0.0006589330745837734" - ], - [ - "7405", - "0.0011245315856448107", - "1.754123934141688", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0015940474721313216", - "3.5069151421237", - "0.0", - "0.0", - "0.0006550156991582998" - ], - [ - "7406", - "0.0011170020493107764", - "1.7541097132199306", - "0.0", - "0.0", - "0.0", - "0.0", - "0.001583374772523445", - "3.506895624467149", - "0.0", - "0.0", - "0.0006506293260981076" - ], - [ - "7407", - "0.001107900622825338", - "1.7540924668368663", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0015704941673715229", - "3.506871994588285", - "0.0", - "0.0", - "0.0006453070782791529" - ], - [ - "7408", - "0.0011018471984118633", - "1.7540810134019658", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0015619210305999028", - "3.506856289637048", - "0.0", - "0.0", - "0.0006417733662238239" - ], - [ - "7409", - "0.001098771846592923", - "1.7540752023042319", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0015575628508016925", - "3.5068483160487336", - "0.0", - "0.0", - "0.0006399808423841536" - ], - [ - "7410", - "0.0010914196780550968", - "1.7540613166184629", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0015471414420965839", - "3.5068292582693097", - "0.0", - "0.0", - "0.0006356979140136099" - ], - [ - "7411", - "0.0010861452830501594", - "1.7540513471669898", - "0.0", - "0.0", - "0.0", - "0.0", - "0.001539668022753332", - "3.5068155810556747", - "0.0", - "0.0", - "0.0006326225433469869" - ], - [ - "7412", - "0.0010831240727595744", - "1.7540456388017378", - "0.0", - "0.0", - "0.0", - "0.0", - "0.001535386408370738", - "3.5068077481146136", - "0.0", - "0.0", - "0.0006308617371484107" - ], - [ - "7413", - "0.0010759238490013205", - "1.7540320266429916", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0015251851435607192", - "3.5067890752358784", - "0.0", - "0.0", - "0.000626662554441922" - ], - [ - "7414", - "0.0010720531367897895", - "1.7540247170817507", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0015196982399477573", - "3.5067790423996845", - "0.0", - "0.0", - "0.0006244080336318216" - ], - [ - "7415", - "0.0010671731234337554", - "1.7540154958480487", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0015127826266904463", - "3.5067663896889303", - "0.0", - "0.0", - "0.0006215636201770644" - ], - [ - "7416", - "0.0010584907302715178", - "1.75399908081708", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0015004816886445553", - "3.506743872418484", - "0.0", - "0.0", - "0.0006164997718984801" - ], - [ - "7417", - "0.001055547666275756", - "1.7539935214780853", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0014963103192762238", - "3.506736242975637", - "0.0", - "0.0", - "0.0006147850132752882" - ], - [ - "7418", - "0.001040882860804735", - "1.7539658282412776", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0014755221862997464", - "3.506698232020118", - "0.0", - "0.0", - "0.0006062435353097233" - ], - [ - "7419", - "0.001032245687365696", - "1.753949513292652", - "0.0", - "0.0", - "0.0", - "0.0", - "0.001463280082223218", - "3.506675841659385", - "0.0", - "0.0", - "0.000601211292508174" - ], - [ - "7420", - "0.0010239799844912016", - "1.7539339098349263", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0014515609859019167", - "3.506654420772284", - "0.0", - "0.0", - "0.0005963989830804866" - ], - [ - "7421", - "0.0010152466089156911", - "1.7539173944227286", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0014391891769444456", - "3.5066317685321104", - "0.0", - "0.0", - "0.0005913040408869365" - ], - [ - "7422", - "0.0010066718891485777", - "1.7539012002452805", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0014270345595789535", - "3.506609541876619", - "0.0", - "0.0", - "0.0005863092187182018" - ], - [ - "7423", - "0.0009973305059942377", - "1.7538834341951022", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0014138373162592567", - "3.5065852455506206", - "0.0", - "0.0", - "0.0005808236957292185" - ], - [ - "7424", - "0.0009901534920537043", - "1.7538698494209282", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0014036747038801616", - "3.5065666217404994", - "0.0", - "0.0", - "0.000576632280227247" - ], - [ - "7425", - "0.000984161066229595", - "1.7538585173882282", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0013951857056331578", - "3.5065510788369783", - "0.0", - "0.0", - "0.0005731364268260325" - ], - [ - "7426", - "0.000978050965432553", - "1.7538469768182539", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0013865250193119752", - "3.5065352400040726", - "0.0", - "0.0", - "0.0005695769115531309" - ], - [ - "7427", - "0.0009753301978703541", - "1.753841838237605", - "0.0", - "0.0", - "0.0", - "0.0", - "0.001382668384870901", - "3.506528187338594", - "0.0", - "0.0", - "0.0005679920108698069" - ], - [ - "7428", - "0.0009705122122693617", - "1.7538327398506335", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0013758385881736755", - "3.5065156990789617", - "0.0", - "0.0", - "0.0005651858363650479" - ], - [ - "7429", - "0.0009584940297021505", - "1.7538100391743525", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0013588039248269507", - "3.5064845443100126", - "0.0", - "0.0", - "0.0005581841345773504" - ], - [ - "7430", - "0.0009526850971558992", - "1.7537990662787653", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0013505705151931162", - "3.506469485365982", - "0.0", - "0.0", - "0.0005547996791186822" - ], - [ - "7431", - "0.0009443340340812956", - "1.7537832954126455", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0013387325182920462", - "3.5064478389285227", - "0.0", - "0.0", - "0.0005499355498705449" - ], - [ - "7432", - "0.0009332521654947081", - "1.753762368178704", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0013230232110811133", - "3.5064191145369064", - "0.0", - "0.0", - "0.0005434811199083029" - ], - [ - "7433", - "0.0009212151942427948", - "1.7537396361367927", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0013059603747070426", - "3.5063879136884926", - "0.0", - "0.0", - "0.000536470013778547" - ], - [ - "7434", - "0.0009112624976633198", - "1.7537208278491128", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0012918564809251483", - "3.5063621071616833", - "0.0", - "0.0", - "0.0005306685144014911" - ], - [ - "7435", - "0.0009086380678033423", - "1.75371585759289", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0012881412237184312", - "3.5063552951181034", - "0.0", - "0.0", - "0.0005291349118882534" - ], - [ - "7436", - "0.0009060931755770087", - "1.7537110484173712", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0012845348431055606", - "3.5063486964686272", - "0.0", - "0.0", - "0.000527651508048457" - ], - [ - "7437", - "0.0009035797139508302", - "1.75370630205539", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0012809717853208295", - "3.506342181585994", - "0.0", - "0.0", - "0.0005261876425808307" - ], - [ - "7438", - "0.0009010726540842829", - "1.7537015677223438", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0012774178229238455", - "3.5063356832552093", - "0.0", - "0.0", - "0.0005247274852447202" - ], - [ - "7439", - "0.0008880773399447577", - "1.7536770265706463", - "0.0", - "0.0", - "0.0", - "0.0", - "0.001258996168439136", - "3.506301998683443", - "0.0", - "0.0", - "0.0005171585114503794" - ], - [ - "7440", - "0.0008840843267246709", - "1.7536694894813516", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0012533345536701488", - "3.5062916509324547", - "0.0", - "0.0", - "0.000514834099779193" - ], - [ - "7441", - "0.0008816228844556785", - "1.7536648400099908", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0012498457065751273", - "3.5062852699782368", - "0.0", - "0.0", - "0.0005134000623362295" - ], - [ - "7442", - "0.0008733710475454197", - "1.753649252797227", - "0.0", - "0.0", - "0.0", - "0.0", - "0.001238149599470517", - "3.506263878109203", - "0.0", - "0.0", - "0.0005085924956203223" - ], - [ - "7443", - "0.0008650696978281753", - "1.753633576517098", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0012263817146472304", - "3.506242360831142", - "0.0", - "0.0", - "0.0005037576810091204" - ], - [ - "7444", - "0.0008603292390215509", - "1.7536246166148592", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0012196645493267916", - "3.506230068124452", - "0.0", - "0.0", - "0.0005009939287163104" - ], - [ - "7445", - "0.0008523659437367338", - "1.7536095787036454", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0012083758739577838", - "3.506209427055658", - "0.0", - "0.0", - "0.000496356013515684" - ], - [ - "7446", - "0.0008499413035942467", - "1.7536050023621508", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0012049378913341995", - "3.5062031438885106", - "0.0", - "0.0", - "0.000494944715854294" - ], - [ - "7447", - "0.0008416288716415261", - "1.7535892758277751", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0011931647022980392", - "3.5061815783391244", - "0.0", - "0.0", - "0.0004900930409850128" - ], - [ - "7448", - "0.0008321315155723356", - "1.75357114113318", - "0.0", - "0.0", - "0.0", - "0.0", - "0.001179772453274523", - "3.506156827994165", - "0.0", - "0.0", - "0.0004844905778701481" - ], - [ - "7449", - "0.0008240434940445185", - "1.7535558702281482", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0011683060257446953", - "3.5061358652617223", - "0.0", - "0.0", - "0.00047978096234434177" - ], - [ - "7450", - "0.0008147686142236564", - "1.7535382968814806", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0011551788694958525", - "3.5061117854386765", - "0.0", - "0.0", - "0.0004743583589514605" - ], - [ - "7451", - "0.0008018568998533517", - "1.7535139193877902", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0011368734807290029", - "3.506078321122976", - "0.0", - "0.0", - "0.0004668403189777004" - ], - [ - "7452", - "0.0007993255256187189", - "1.753509140118388", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0011332846598311925", - "3.506071760354228", - "0.0", - "0.0", - "0.0004653663914062454" - ], - [ - "7453", - "0.0007920030751878928", - "1.7534952838529996", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0011229145148188996", - "3.506052761278434", - "0.0", - "0.0", - "0.00046109163555688604" - ], - [ - "7454", - "0.0007841149937629549", - "1.753480391358338", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0011117311690040828", - "3.506032317277547", - "0.0", - "0.0", - "0.00045649881852182693" - ], - [ - "7455", - "0.0007762241917111416", - "1.7534654948579806", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0011005435534478642", - "3.5060118669619285", - "0.0", - "0.0", - "0.000451904829974419" - ], - [ - "7456", - "0.0007740709192267133", - "1.7534614295308073", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010974907432650396", - "3.5060062861901478", - "0.0", - "0.0", - "0.00045065109518838684" - ], - [ - "7457", - "0.0007719236853776003", - "1.753457375605198", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010944464933475056", - "3.5060007210684105", - "0.0", - "0.0", - "0.00044940087740769476" - ], - [ - "7458", - "0.0007694430401392965", - "1.7534526922068994", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010909295470858007", - "3.505994291821803", - "0.0", - "0.0", - "0.0004479565331927922" - ], - [ - "7459", - "0.0007673086439077372", - "1.7534486625183243", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010879034961573002", - "3.5059887599695685", - "0.0", - "0.0", - "0.0004467137916581741" - ], - [ - "7460", - "0.0007651801684359654", - "1.7534446440079654", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010848858386807083", - "3.5059832434613694", - "0.0", - "0.0", - "0.0004454744981912226" - ], - [ - "7461", - "0.0007630575972996582", - "1.7534406366448139", - "0.0", - "0.0", - "0.0", - "0.0", - "0.001081876551376467", - "3.505977742254648", - "0.0", - "0.0", - "0.0004442386432228495" - ], - [ - "7462", - "0.0007609409141200557", - "1.7534366403979476", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010788756110295767", - "3.5059722563069644", - "0.0", - "0.0", - "0.0004430062172105346" - ], - [ - "7463", - "0.000760216041088487", - "1.7534351403804331", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010778946895958121", - "3.505970290117316", - "0.0", - "0.0", - "0.00044253739258116176" - ], - [ - "7464", - "0.0007581058585082647", - "1.7534311560443854", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010749030933094143", - "3.5059648207749974", - "0.0", - "0.0", - "0.00044130862370711515" - ], - [ - "7465", - "0.0007560029115816867", - "1.7534271860967725", - "0.0", - "0.0", - "0.0", - "0.0", - "0.001071921495835099", - "3.505959370668999", - "0.0", - "0.0", - "0.00044008432732827433" - ], - [ - "7466", - "0.0007482130042647648", - "1.7534124800704285", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010608768925565535", - "3.5059391817841554", - "0.0", - "0.0", - "0.00043554911597297615" - ], - [ - "7467", - "0.0007403281112944013", - "1.7533975948030252", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010496975805970277", - "3.505918746762355", - "0.0", - "0.0", - "0.0004309586419917748" - ], - [ - "7468", - "0.0007380499683360067", - "1.753393264420129", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010464781446447458", - "3.505912822831068", - "0.0", - "0.0", - "0.00042962179202726776" - ], - [ - "7469", - "0.0007310561985327934", - "1.7533800569513727", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010365638628069829", - "3.5058946943033313", - "0.0", - "0.0", - "0.00042554853425860387" - ], - [ - "7470", - "0.0007240744697983049", - "1.7533668771588289", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010266648860806072", - "3.5058766002610255", - "0.0", - "0.0", - "0.0004214840535160025" - ], - [ - "7471", - "0.0007163417542205458", - "1.753352276935694", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010157020992268913", - "3.50585655809437", - "0.0", - "0.0", - "0.0004169814092142004" - ], - [ - "7472", - "0.000710322700985883", - "1.7533408862029092", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010071780715597185", - "3.5058409401314785", - "0.0", - "0.0", - "0.0004134673304120476" - ], - [ - "7473", - "0.0007083107515138829", - "1.753337088222923", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010043254112475182", - "3.5058357259561492", - "0.0", - "0.0", - "0.00041229609178024767" - ], - [ - "7474", - "0.0007004840537372975", - "1.7533223136758864", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0009932282525054095", - "3.505815442248663", - "0.0", - "0.0", - "0.00040773985496918557" - ], - [ - "7475", - "0.0006984651944141822", - "1.7533185002889404", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0009903666322456184", - "3.5058102085875458", - "0.0", - "0.0", - "0.0004065637565827461" - ], - [ - "7476", - "0.0006965009944932137", - "1.7533147897434984", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0009875826315549467", - "3.505805116354935", - "0.0", - "0.0", - "0.0004054193574314806" - ], - [ - "7477", - "0.0006943406495116568", - "1.7533107116510929", - "0.0", - "0.0", - "0.0", - "0.0", - "0.000984519556908511", - "3.505799517599942", - "0.0", - "0.0", - "0.0004041617421148025" - ], - [ - "7478", - "0.0006902842343058985", - "1.7533030383314376", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0009787738044681185", - "3.505788994325374", - "0.0", - "0.0", - "0.00040179466414367844" - ], - [ - "7479", - "0.0006883809204915098", - "1.7532994447039283", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0009760754240946985", - "3.505784061201381", - "0.0", - "0.0", - "0.0004006864168883211" - ], - [ - "7480", - "0.0006815495404439121", - "1.7532865492443241", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0009663893879046461", - "3.5057663570732407", - "0.0", - "0.0", - "0.0003967096929831781" - ], - [ - "7481", - "0.0006733621777603088", - "1.753271093519703", - "0.0", - "0.0", - "0.0", - "0.0", - "0.000954780943766523", - "3.5057451383781166", - "0.0", - "0.0", - "0.00039194341175409475" - ], - [ - "7482", - "0.0006695071940075274", - "1.7532638145346076", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0009493157685513651", - "3.5057351464943776", - "0.0", - "0.0", - "0.0003896986194636898" - ], - [ - "7483", - "0.0006619618111854369", - "1.7532495712945557", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0009386173324103117", - "3.5057155919465552", - "0.0", - "0.0", - "0.0003853062899605622" - ], - [ - "7484", - "0.0006539704959255031", - "1.7532344138690972", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0009273123596606201", - "3.505694833496488", - "0.0", - "0.0", - "0.00038062863219038613" - ], - [ - "7485", - "0.0006463385579020708", - "1.753219996430482", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0009164950234300813", - "3.5056750474037486", - "0.0", - "0.0", - "0.00037618209237406025" - ], - [ - "7486", - "0.0006387508061946338", - "1.753205673465445", - "0.0", - "0.0", - "0.0", - "0.0", - "0.000905736394042227", - "3.5056553831770634", - "0.0", - "0.0", - "0.0003717652183470406" - ], - [ - "7487", - "0.0006357880101425318", - "1.7532000562302354", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0009015441846022961", - "3.5056476885263965", - "0.0", - "0.0", - "0.0003700318356827674" - ], - [ - "7488", - "0.0006340213502794748", - "1.753196721646295", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0008990391605994384", - "3.5056431102507073", - "0.0", - "0.0", - "0.00036900353995951115" - ], - [ - "7489", - "0.0006321678211979811", - "1.7531932042969989", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0008964176451715525", - "3.505638294333536", - "0.0", - "0.0", - "0.0003679179972244097" - ], - [ - "7490", - "0.0006304043702032647", - "1.7531898758222035", - "0.0", - "0.0", - "0.0", - "0.0", - "0.000893917151481918", - "3.5056337244068416", - "0.0", - "0.0", - "0.0003668915889246116" - ], - [ - "7491", - "0.0006286444168790259", - "1.7531865539491607", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0008914216168283812", - "3.505629163543444", - "0.0", - "0.0", - "0.00036586721692967065" - ], - [ - "7492", - "0.0006268673523678279", - "1.7531831977494432", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0008889025404897628", - "3.505624556984324", - "0.0", - "0.0", - "0.00036483216424589303" - ], - [ - "7493", - "0.000625143181115637", - "1.7531799431723074", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0008864578282437563", - "3.5056200886863356", - "0.0", - "0.0", - "0.0003638285339875178" - ], - [ - "7494", - "0.0006213650513632086", - "1.7531728114962155", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0008811007981596038", - "3.5056102974171126", - "0.0", - "0.0", - "0.0003616293045668135" - ], - [ - "7495", - "0.0006139418437133522", - "1.7531588003885794", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0008705749973798003", - "3.505591060408675", - "0.0", - "0.0", - "0.0003573086900469042" - ], - [ - "7496", - "0.0006065349317984904", - "1.753144820038298", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0008600722943785304", - "3.505571865615873", - "0.0", - "0.0", - "0.0003529975692184504" - ], - [ - "7497", - "0.000604607083118159", - "1.7531411784430475", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0008573396880127165", - "3.5055668677647085", - "0.0", - "0.0", - "0.0003518744782236015" - ], - [ - "7498", - "0.0005982666043269323", - "1.7531292109863446", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0008483491246607225", - "3.5055504366070487", - "0.0", - "0.0", - "0.00034818408399314206" - ], - [ - "7499", - "0.0005909079393975835", - "1.7531153217345647", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0008379148030282604", - "3.5055313668379497", - "0.0", - "0.0", - "0.00034390107576690666" - ], - [ - "7500", - "0.0005887382792680571", - "1.753111226568298", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0008348383014935857", - "3.505525744223274", - "0.0", - "0.0", - "0.0003426382570425285" - ], - [ - "7501", - "0.0005870967933359812", - "1.7531081283144396", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0008325107318341652", - "3.505521490356723", - "0.0", - "0.0", - "0.0003416828548377971" - ], - [ - "7502", - "0.0005843982488955003", - "1.7531029197970707", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0008287252115140459", - "3.5055144204741007", - "0.0", - "0.0", - "0.0003400712862769548" - ], - [ - "7503", - "0.0005770849772341762", - "1.7530891159074105", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0008183553515139247", - "3.505495468103469", - "0.0", - "0.0", - "0.00033581460295442763" - ], - [ - "7504", - "0.0005697852502444991", - "1.7530753391414808", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0008080041345327468", - "3.5054765518584525", - "0.0", - "0.0", - "0.0003315663659562515" - ], - [ - "7505", - "0.0005678989753327767", - "1.7530717792336263", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0008053293224499854", - "3.5054716638702192", - "0.0", - "0.0", - "0.000330468628215568" - ], - [ - "7506", - "0.0005616808157399661", - "1.7530600437077994", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0007965117896906976", - "3.5054555503451557", - "0.0", - "0.0", - "0.00032684984178923466" - ], - [ - "7507", - "0.0005537131623224081", - "1.753045006605812", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0007852133281479096", - "3.5054349033885512", - "0.0", - "0.0", - "0.00032221299649690664" - ], - [ - "7508", - "0.0005483331096500496", - "1.7530348530011552", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0007775841854901833", - "3.5054209617946595", - "0.0", - "0.0", - "0.00031908203380991596" - ], - [ - "7509", - "0.0005391847791207659", - "1.7530175848094824", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0007646124618492336", - "3.5053972533723123", - "0.0", - "0.0", - "0.0003137570963922983" - ], - [ - "7510", - "0.000537689112202265", - "1.7530147620919412", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0007624915369383487", - "3.505393377577756", - "0.0", - "0.0", - "0.0003128866874661812" - ], - [ - "7511", - "0.0005354509934172303", - "1.7530105376845584", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0007593179535561952", - "3.505387577505568", - "0.0", - "0.0", - "0.00031158403327826556" - ], - [ - "7512", - "0.000533198869389854", - "1.753006287335129", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0007561243352261223", - "3.5053817414658157", - "0.0", - "0.0", - "0.0003102734035535857" - ], - [ - "7513", - "0.0005304392555945701", - "1.7530010712024782", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0007522139211960196", - "3.5053745849991653", - "0.0", - "0.0", - "0.0003086645899931207" - ], - [ - "7514", - "0.0005278204915935495", - "1.7529961263465197", - "0.0", - "0.0", - "0.0", - "0.0", - "0.000748501298087399", - "3.505367797157454", - "0.0", - "0.0", - "0.00030713968509970006" - ], - [ - "7515", - "0.0005251636994233165", - "1.7529911104817728", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00074473447774821", - "3.505360911276301", - "0.0", - "0.0", - "0.000305592921098423" - ], - [ - "7516", - "0.0005235502919572026", - "1.7529880468015755", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0007424532546893934", - "3.50535671787078", - "0.0", - "0.0", - "0.0003046473292250117" - ], - [ - "7517", - "0.0005153335839009405", - "1.7529725402034695", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0007308013807454009", - "3.5053354258048834", - "0.0", - "0.0", - "0.0002998657870564801" - ], - [ - "7518", - "0.0005070064777481857", - "1.752956806990546", - "0.0", - "0.0", - "0.0", - "0.0", - "0.000718999437942589", - "3.5053138354686504", - "0.0", - "0.0", - "0.0002950135175537824" - ], - [ - "7519", - "0.0005014677209382971", - "1.7529462850629034", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0007111696593248347", - "3.505299436687488", - "0.0", - "0.0", - "0.0002917657825517596" - ], - [ - "7520", - "0.000499985387790166", - "1.7529434878571961", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0007090675095756556", - "3.505295595662729", - "0.0", - "0.0", - "0.00029090326600467636" - ], - [ - "7521", - "0.0004975219294148772", - "1.7529388392396519", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0007055739902007247", - "3.505289212342968", - "0.0", - "0.0", - "0.0002894698686290298" - ], - [ - "7522", - "0.0004958659414361663", - "1.752935714342187", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0007032255732321903", - "3.505284921341719", - "0.0", - "0.0", - "0.0002885063096401423" - ], - [ - "7523", - "0.0004944740104433019", - "1.75293308514893", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0007012525413599668", - "3.505281312845897", - "0.0", - "0.0", - "0.000287695479526637" - ], - [ - "7524", - "0.0004921170011666802", - "1.7529286365086831", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0006979102973582892", - "3.505275204757214", - "0.0", - "0.0", - "0.0002863237049750711" - ], - [ - "7525", - "0.0004867331163099132", - "1.7529184763839478", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0006902754126134324", - "3.5052612536229355", - "0.0", - "0.0", - "0.00028319082000639406" - ], - [ - "7526", - "0.0004853776012429043", - "1.7529159176576765", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00068835339982946", - "3.5052577406510803", - "0.0", - "0.0", - "0.00028240180265634866" - ], - [ - "7527", - "0.0004840311932105354", - "1.7529133769599927", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0006864440020493977", - "3.5052542518392023", - "0.0", - "0.0", - "0.00028161838437167313" - ], - [ - "7528", - "0.0004813241473521786", - "1.7529082687104283", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0006826050265372258", - "3.5052472373402805", - "0.0", - "0.0", - "0.00028004326816713135" - ], - [ - "7529", - "0.0004790709088509121", - "1.7529040164463427", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0006794097406488094", - "3.5052413985071342", - "0.0", - "0.0", - "0.00027873207705301486" - ], - [ - "7530", - "0.00047712397039720625", - "1.75290034163969", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0006766490219895082", - "3.5052363530000954", - "0.0", - "0.0", - "0.0002775989188049044" - ], - [ - "7531", - "0.000474943277342103", - "1.7528962265352939", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0006735565202052821", - "3.50523070232115", - "0.0", - "0.0", - "0.0002763300344789238" - ], - [ - "7532", - "0.0004727583494292232", - "1.7528921035406275", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0006704579761091274", - "3.5052250407349477", - "0.0", - "0.0", - "0.0002750587227493189" - ], - [ - "7533", - "0.0004705355421154083", - "1.7528879067204972", - "0.0", - "0.0", - "0.0", - "0.0", - "0.000667306546652098", - "3.505219279430058", - "0.0", - "0.0", - "0.00027376453757871854" - ], - [ - "7534", - "0.0004681866939044752", - "1.7528834742230255", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0006639756029752142", - "3.5052131929691352", - "0.0", - "0.0", - "0.00027239778483373626" - ], - [ - "7535", - "0.00046398930612243425", - "1.7528755537061411", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0006580230861000788", - "3.5052023167026736", - "0.0", - "0.0", - "0.0002699555261447897" - ], - [ - "7536", - "0.0004596100310093923", - "1.752867288341453", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0006518132003018093", - "3.5051909680422066", - "0.0", - "0.0", - "0.0002674068617169753" - ], - [ - "7537", - "0.00045642994953525983", - "1.7528612875038059", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0006473033661293009", - "3.5051827278195415", - "0.0", - "0.0", - "0.0002655565329412188" - ], - [ - "7538", - "0.000453255132187166", - "1.7528552965995312", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0006428009956451618", - "3.505174501234659", - "0.0", - "0.0", - "0.00026370926872917026" - ], - [ - "7539", - "0.0004500005835510215", - "1.7528491544237486", - "0.0", - "0.0", - "0.0", - "0.0", - "0.000638185843133276", - "3.505166067502111", - "0.0", - "0.0", - "0.000261815323968767" - ], - [ - "7540", - "0.00044694870064700506", - "1.752843389582698", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0006338599112114344", - "3.5051581555163525", - "0.0", - "0.0", - "0.00026003749008257567" - ], - [ - "7541", - "0.00044404304594963253", - "1.7528379066339428", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0006297392340605372", - "3.505150626407714", - "0.0", - "0.0", - "0.0002583468578387279" - ], - [ - "7542", - "0.00044113503790672474", - "1.752832419244381", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0006256152181242984", - "3.5051430911989168", - "0.0", - "0.0", - "0.0002566548576891511" - ], - [ - "7543", - "0.0004380142050780074", - "1.7528265298016301", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0006211895428781475", - "3.5051350042147678", - "0.0", - "0.0", - "0.00025483886727786727" - ], - [ - "7544", - "0.0004354637715669535", - "1.7528217164860342", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0006175728586732604", - "3.5051283951022585", - "0.0", - "0.0", - "0.00025335468446064654" - ], - [ - "7545", - "0.00043404287566255374", - "1.752819033778144", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0006155583302007713", - "3.505124712292523", - "0.0", - "0.0", - "0.0002525274211243361" - ], - [ - "7546", - "0.0004317236576615175", - "1.752814657360895", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0006122693330022142", - "3.505118702699625", - "0.0", - "0.0", - "0.00025117798232082093" - ], - [ - "7547", - "0.0004293651606479789", - "1.7528102035805544", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0006089257838039373", - "3.5051125891629207", - "0.0", - "0.0", - "0.00024980453749202046" - ], - [ - "7548", - "0.000427686400808885", - "1.7528070357964716", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0006065450243404933", - "3.5051082391824213", - "0.0", - "0.0", - "0.00024882777727727664" - ], - [ - "7549", - "0.0004255064422447265", - "1.7528029158019858", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0006034557768267336", - "3.5051025861946665", - "0.0", - "0.0", - "0.00024755710766271937" - ], - [ - "7550", - "0.0004243261139513026", - "1.752800688565504", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0006017818687802602", - "3.505099527754297", - "0.0", - "0.0", - "0.00024687035912234503" - ], - [ - "7551", - "0.00042299318117693086", - "1.7527981526055552", - "0.0", - "0.0", - "0.0", - "0.0", - "0.000599898920144223", - "3.505096060042532", - "0.0", - "0.0", - "0.00024608744220963873" - ], - [ - "7552", - "0.0004218198245667293", - "1.7527959385819558", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0005982348781947596", - "3.505093019704666", - "0.0", - "0.0", - "0.0002454047709386988" - ], - [ - "7553", - "0.0004192846181018624", - "1.7527911541352605", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0005946397334018877", - "3.505086450128262", - "0.0", - "0.0", - "0.00024392950280183707" - ], - [ - "7554", - "0.0004181215488595491", - "1.7527889595250354", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0005929902794724499", - "3.505083436446697", - "0.0", - "0.0", - "0.0002432528182466482" - ], - [ - "7555", - "0.0004157156598798599", - "1.7527844154645515", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0005895798180783673", - "3.5050771995313763", - "0.0", - "0.0", - "0.00024185150168135242" - ], - [ - "7556", - "0.00041318163036166205", - "1.7527796329133005", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0005859864554840763", - "3.5050706327837027", - "0.0", - "0.0", - "0.0002403768052392479" - ], - [ - "7557", - "0.0004114653828054979", - "1.752776394526258", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0005835524794709849", - "3.5050661857488343", - "0.0", - "0.0", - "0.00023937828614001074" - ], - [ - "7558", - "0.0004093879613716445", - "1.7527724743846627", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0005806063781860977", - "3.505060802690988", - "0.0", - "0.0", - "0.00023816954455719127" - ], - [ - "7559", - "0.0004073176880165826", - "1.7527685679876708", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0005776703222870871", - "3.505055438325027", - "0.0", - "0.0", - "0.0002369650537460781" - ], - [ - "7560", - "0.0004058373074903502", - "1.7527657746589256", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0005755708503270545", - "3.50505160245268", - "0.0", - "0.0", - "0.00023610376465364594" - ], - [ - "7561", - "0.0004034239517598849", - "1.752761220900034", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0005721482345042442", - "3.5050453491102815", - "0.0", - "0.0", - "0.0002346996690155255" - ], - [ - "7562", - "0.0004007221832117651", - "1.752756064974703", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0005683371860507465", - "3.5050383097911366", - "0.0", - "0.0", - "0.00023310718037278366" - ], - [ - "7563", - "0.00039443865377240003", - "1.7527441649021143", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0005594414117883718", - "3.5050219991312845", - "0.0", - "0.0", - "0.00022943589575642834" - ], - [ - "7564", - "0.0003932986791543563", - "1.7527413096249986", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0005580746694672508", - "3.5050185745609883", - "0.0", - "0.0", - "0.00022852268884146165" - ], - [ - "7565", - "0.0004445396554550187", - "1.752837882369963", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0006307847923026823", - "3.50515127086175", - "0.0", - "0.0", - "0.0002582945186073551" - ], - [ - "7566", - "0.0004428671842092955", - "1.7528347041037204", - "0.0", - "0.0", - "0.0", - "0.0", - "0.000628420878648577", - "3.5051469222108587", - "0.0", - "0.0", - "0.00025731348977001394" - ], - [ - "7567", - "0.0004333627169809718", - "1.7528167903525906", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0006149345377723176", - "3.505122308397701", - "0.0", - "0.0", - "0.00025179089618962593" - ], - [ - "7568", - "0.0004304397020841741", - "1.752811243194006", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0006108003835390529", - "3.5051147132196485", - "0.0", - "0.0", - "0.0002500790206292954" - ], - [ - "7569", - "0.0004292427314330489", - "1.7528089851609392", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0006091026583032275", - "3.505111612059552", - "0.0", - "0.0", - "0.00024938280456287024" - ], - [ - "7570", - "0.0004278833811442519", - "1.7528063977719732", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0006071827879695322", - "3.5051080747694776", - "0.0", - "0.0", - "0.00024858397431897156" - ], - [ - "7571", - "0.00042507158992001123", - "1.7528010978441588", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0006031931198639957", - "3.5051007928075335", - "0.0", - "0.0", - "0.00024695005997602676" - ], - [ - "7572", - "0.000421288095990887", - "1.7527939658612892", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0005978248714753339", - "3.505090993997871", - "0.0", - "0.0", - "0.00024475132050644005" - ], - [ - "7573", - "0.00041751318834079847", - "1.7527868516182215", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0005924682523636555", - "3.505081218463414", - "0.0", - "0.0", - "0.0002425581243179414" - ], - [ - "7574", - "0.0004163550340043647", - "1.7527846689445552", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0005908248231792639", - "3.5050782192959002", - "0.0", - "0.0", - "0.00024188524482946546" - ], - [ - "7575", - "0.0004140425218185716", - "1.7527803103451294", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0005875434956919643", - "3.5050722305186137", - "0.0", - "0.0", - "0.00024054154794517885" - ], - [ - "7576", - "0.00041203906220426697", - "1.7527765313607562", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0005847017185881185", - "3.5050670401701565", - "0.0", - "0.0", - "0.00023937640582041551" - ], - [ - "7577", - "0.0004147606167057991", - "1.752781660415969", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0005885636337416783", - "3.5050740879199993", - "0.0", - "0.0", - "0.00024095759966991984" - ], - [ - "7578", - "0.0004123882060767602", - "1.752777185637657", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0005851984769198836", - "3.505067941821704", - "0.0", - "0.0", - "0.00023957793523363686" - ], - [ - "7579", - "0.00040999734153316427", - "1.752772679823934", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0005818058058744859", - "3.505061750441166", - "0.0", - "0.0", - "0.00023818887719184262" - ], - [ - "7580", - "0.0004075143746945224", - "1.7527680003811223", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0005782824583175716", - "3.505055320515258", - "0.0", - "0.0", - "0.00023674629107147327" - ], - [ - "7581", - "0.0004050225123723346", - "1.7527633019262379", - "0.0", - "0.0", - "0.0", - "0.0", - "0.000574747283786559", - "3.5050488660462005", - "0.0", - "0.0", - "0.00023529774095811022" - ], - [ - "7582", - "0.0004030651363846676", - "1.7527596130746055", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0005719697329113123", - "3.50504379723124", - "0.0", - "0.0", - "0.00023416053985802286" - ], - [ - "7583", - "0.0004009244607549975", - "1.7527555784064766", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0005689322077151475", - "3.5050382534938884", - "0.0", - "0.0", - "0.00023291671379484753" - ], - [ - "7584", - "0.00039878374488108053", - "1.7527515432427625", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0005658947734683875", - "3.5050327093699494", - "0.0", - "0.0", - "0.00023167271629377358" - ], - [ - "7585", - "0.0003964420847533161", - "1.752747129329383", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0005625722132663607", - "3.5050266448449334", - "0.0", - "0.0", - "0.00023031195624027153" - ], - [ - "7586", - "0.0003953011391719726", - "1.7527449727327844", - "0.0", - "0.0", - "0.0", - "0.0", - "0.000560955452388963", - "3.505023685977731", - "0.0", - "0.0", - "0.00022964682595498213" - ], - [ - "7587", - "0.00038531065654344427", - "1.7527261441110915", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0005467789922166456", - "3.5049978141798173", - "0.0", - "0.0", - "0.00022384232087024295" - ], - [ - "7588", - "0.0003752980318948913", - "1.7527072746502859", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0005325707802966167", - "3.504971885613547", - "0.0", - "0.0", - "0.00021802528349316587" - ], - [ - "7589", - "0.00036530075227523146", - "1.7526884341076479", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0005183843272168505", - "3.5049459967588796", - "0.0", - "0.0", - "0.00021221717733361245" - ], - [ - "7590", - "0.00036333512379271995", - "1.7526847297491315", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0005155950368947189", - "3.504940906584128", - "0.0", - "0.0", - "0.00021107521069072097" - ], - [ - "7591", - "0.00035659528596077434", - "1.752672027555452", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0005060311680520899", - "3.504923452803147", - "0.0", - "0.0", - "0.00020715940386945868" - ], - [ - "7592", - "0.00034987396165358825", - "1.7526593607789944", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0004964933761739717", - "3.504906047306458", - "0.0", - "0.0", - "0.00020325454713320486" - ], - [ - "7593", - "0.0003434508137627688", - "1.75264725593531", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00048737870011093966", - "3.5048894139545888", - "0.0", - "0.0", - "0.0001995229274145979" - ], - [ - "7594", - "0.0003420309911727437", - "1.752644579950511", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0004853640039269225", - "3.50488573702956", - "0.0", - "0.0", - "0.00019869797841856498" - ], - [ - "7595", - "0.00033406111466695375", - "1.7526295602003648", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0004740544516856411", - "3.5048650982629983", - "0.0", - "0.0", - "0.00019406777764826642" - ], - [ - "7596", - "0.00032780680285042556", - "1.752617773543099", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00046517934256285804", - "3.5048489021058122", - "0.0", - "0.0", - "0.00019043426313799313" - ], - [ - "7597", - "0.00032611310636116407", - "1.752614578916892", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0004627768941107675", - "3.5048445142708093", - "0.0", - "0.0", - "0.00018944931861156065" - ], - [ - "7598", - "0.00032441987359273596", - "1.752611387923845", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0004603741250516191", - "3.5048401294846685", - "0.0", - "0.0", - "0.0001884656221338528" - ], - [ - "7599", - "0.00032258409377318984", - "1.7526079121429856", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0004577748002125442", - "3.5048353647373873", - "0.0", - "0.0", - "0.00018739338733383547" - ], - [ - "7600", - "0.000320822786907745", - "1.7526045929485805", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00045527539884887596", - "3.5048308037244036", - "0.0", - "0.0", - "0.00018637017496661397" - ], - [ - "7601", - "0.0003199328461793202", - "1.7526029158494014", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00045401251873942484", - "3.5048284991675827", - "0.0", - "0.0", - "0.00018585317361921542" - ], - [ - "7602", - "0.0003182817890353554", - "1.7525998044212996", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0004516695677285624", - "3.5048242236519656", - "0.0", - "0.0", - "0.00018489401034214848" - ], - [ - "7603", - "0.00031653686613700497", - "1.7525965161025465", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0004491934149942757", - "3.504819705064353", - "0.0", - "0.0", - "0.0001838803172797342" - ], - [ - "7604", - "0.0003147951410600156", - "1.7525932338100918", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00044672179967268085", - "3.5048151947569206", - "0.0", - "0.0", - "0.00018286848244735034" - ], - [ - "7605", - "0.000313040856553095", - "1.752589927849291", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00044423236124823946", - "3.504810651925261", - "0.0", - "0.0", - "0.00018184935185795053" - ], - [ - "7606", - "0.00031202670757800684", - "1.7525880139354506", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0004427941932589394", - "3.5048080238831085", - "0.0", - "0.0", - "0.00018125922189707425" - ], - [ - "7607", - "0.0003102915370705104", - "1.752584744010336", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0004403318726002833", - "3.504803530557361", - "0.0", - "0.0", - "0.00018025120154073745" - ], - [ - "7608", - "0.00030844627899562525", - "1.752581266625417", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00043771332993383075", - "3.5047987521525563", - "0.0", - "0.0", - "0.00017917922805741978" - ], - [ - "7609", - "0.00030660442711133483", - "1.7525777956594382", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00043509962032563997", - "3.5047939825674113", - "0.0", - "0.0", - "0.0001781092338970297" - ], - [ - "7610", - "0.00030475674034857573", - "1.752574313697624", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0004324776300865944", - "3.504789197871626", - "0.0", - "0.0", - "0.00017703585061055706" - ], - [ - "7611", - "0.00030302156581069414", - "1.7525710280817837", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0004300208608885697", - "3.5047846940223586", - "0.0", - "0.0", - "0.0001760222707328185" - ], - [ - "7612", - "0.00030092090365383274", - "1.7525670694970386", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0004270398419611954", - "3.5047792543024467", - "0.0", - "0.0", - "0.0001748019653464701" - ], - [ - "7613", - "0.0002988165657895383", - "1.7525631039855962", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0004240536061740258", - "3.5047738050630577", - "0.0", - "0.0", - "0.00017357952540505075" - ], - [ - "7614", - "0.00029798766899526564", - "1.7525615419741947", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00042287733038314895", - "3.504771658612246", - "0.0", - "0.0", - "0.00017309800760738236" - ], - [ - "7615", - "0.0002950406493002859", - "1.7525559884741433", - "0.0", - "0.0", - "0.0", - "0.0", - "0.000418695255251538", - "3.504764027223097", - "0.0", - "0.0", - "0.0001713860433490338" - ], - [ - "7616", - "0.0002933790560717299", - "1.7525528572910845", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0004163373105249214", - "3.5047597244804134", - "0.0", - "0.0", - "0.00017042080161853851" - ], - [ - "7617", - "0.00029190957902984753", - "1.7525500881406322", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00041425199493633094", - "3.504755919227441", - "0.0", - "0.0", - "0.0001695671631233641" - ], - [ - "7618", - "0.00029078480550132145", - "1.7525479685654035", - "0.0", - "0.0", - "0.0", - "0.0", - "0.000412655843344071", - "3.5047530065937345", - "0.0", - "0.0", - "0.00016891376765857186" - ], - [ - "7619", - "0.0002896553744027494", - "1.7525458402132275", - "0.0", - "0.0", - "0.0", - "0.0", - "0.000411053082047948", - "3.504750081898788", - "0.0", - "0.0", - "0.00016825766675755078" - ], - [ - "7620", - "0.0002888445952811807", - "1.7525443117950326", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00040990271002247963", - "3.5047479819946634", - "0.0", - "0.0", - "0.00016778648053988169" - ], - [ - "7621", - "0.00028716223390751693", - "1.7525411414657233", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00040751529525874064", - "3.5047436254630715", - "0.0", - "0.0", - "0.00016680917255629317" - ], - [ - "7622", - "0.00028330163328174753", - "1.7525338663788246", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00040203676026812166", - "3.5047336283246375", - "0.0", - "0.0", - "0.00016456650629537335" - ], - [ - "7623", - "0.0002815286042937855", - "1.7525305250244625", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0003995207377154666", - "3.50472903689225", - "0.0", - "0.0", - "0.00016353647087210434" - ], - [ - "7624", - "0.0002797439757808968", - "1.7525271619925034", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00039698818970177645", - "3.5047244155430857", - "0.0", - "0.0", - "0.00016249976186001713" - ], - [ - "7625", - "0.000277961669401375", - "1.7525238033364559", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0003944589364884672", - "3.504719800206339", - "0.0", - "0.0", - "0.00016146440231428282" - ], - [ - "7626", - "0.0002763503242953282", - "1.75252076684729", - "0.0", - "0.0", - "0.0", - "0.0", - "0.000392172292270633", - "3.5047156275783244", - "0.0", - "0.0", - "0.00016052835632002335" - ], - [ - "7627", - "0.00027445298582835006", - "1.7525171914197122", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00038947979710748026", - "3.504710714360797", - "0.0", - "0.0", - "0.00015942617454921986" - ], - [ - "7628", - "0.0002729039160339378", - "1.7525142722848361", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0003872815263074049", - "3.5047067029952452", - "0.0", - "0.0", - "0.00015852630576047066" - ], - [ - "7629", - "0.0002716374224604762", - "1.7525118825207902", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00038548536534972955", - "3.504703421272892", - "0.0", - "0.0", - "0.00015778947957122282" - ], - [ - "7630", - "0.0002695371412516255", - "1.7525079246831632", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0003825048658392568", - "3.5046979825423734", - "0.0", - "0.0", - "0.0001565694166639943" - ], - [ - "7631", - "0.0002678603538997299", - "1.7525047635621165", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0003801258150488871", - "3.504693639568313", - "0.0", - "0.0", - "0.00015559489275057274" - ], - [ - "7632", - "0.0002661934653411184", - "1.752501622431809", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00037776033718390996", - "3.504689323122878", - "0.0", - "0.0", - "0.00015462659349832692" - ], - [ - "7633", - "0.0002645003208208606", - "1.7524984318240346", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00037535759908076616", - "3.5046849386863093", - "0.0", - "0.0", - "0.00015364304256095494" - ], - [ - "7634", - "0.00026278370300015824", - "1.7524951969825158", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0003729215495881052", - "3.5046804934643387", - "0.0", - "0.0", - "0.0001526458564122113" - ], - [ - "7635", - "0.00026105392851610056", - "1.752491935585691", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00037046745373841254", - "3.504676012990854", - "0.0", - "0.0", - "0.00015164040329378861" - ], - [ - "7636", - "0.00025924665122905146", - "1.7524885299151625", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0003679027442000344", - "3.504671333010633", - "0.0", - "0.0", - "0.00015059055825806852" - ], - [ - "7637", - "0.00025645974916846094", - "1.7524832781004123", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0003639478890521185", - "3.504664116191254", - "0.0", - "0.0", - "0.0001489716092848034" - ], - [ - "7638", - "0.0002557483475479598", - "1.7524819375208665", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0003629383375075351", - "3.504662274002193", - "0.0", - "0.0", - "0.00014855835758838446" - ], - [ - "7639", - "0.00025410214510489563", - "1.7524788339457373", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0003606027175447293", - "3.5046580101629345", - "0.0", - "0.0", - "0.0001476015726650619" - ], - [ - "7640", - "0.0002524466367132193", - "1.752475712367877", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00035825405635491126", - "3.5046537219124163", - "0.0", - "0.0", - "0.00014663921707152726" - ], - [ - "7641", - "0.0002507987478736331", - "1.7524726070747247", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0003559155248859123", - "3.5046494546832534", - "0.0", - "0.0", - "0.00014568197086135384" - ], - [ - "7642", - "0.00025009703391411735", - "1.7524712838293675", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00035492004706653475", - "3.504647636961999", - "0.0", - "0.0", - "0.0001452740207616999" - ], - [ - "7643", - "0.0002483200148650695", - "1.7524679352222963", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00035239825817170984", - "3.504643035360793", - "0.0", - "0.0", - "0.00014424177155842918" - ], - [ - "7644", - "0.0002476457302032815", - "1.7524666418820785", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00035144942559138206", - "3.5046412740664032", - "0.0", - "0.0", - "0.000143842034815181" - ], - [ - "7645", - "0.0002456952076237192", - "1.75246294984774", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00034868725469414417", - "3.50463621212845", - "0.0", - "0.0", - "0.00014270316055329426" - ], - [ - "7646", - "0.00024382993313449365", - "1.75245943521575", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0003460401196958371", - "3.5046313821770325", - "0.0", - "0.0", - "0.00014161974657315023" - ], - [ - "7647", - "0.0002548278822510129", - "1.7524801541063915", - "0.0", - "0.0", - "0.0", - "0.0", - "0.000361649423796291", - "3.504659857677521", - "0.0", - "0.0", - "0.00014800634070573482" - ], - [ - "7648", - "0.0002690724436116809", - "1.7525069941126334", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00038186486569387096", - "3.504696742408401", - "0.0", - "0.0", - "0.0001562800215294908" - ], - [ - "7649", - "0.0002841980163018989", - "1.752535494144289", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00040333057563982517", - "3.50473590836467", - "0.0", - "0.0", - "0.00016506545696397262" - ], - [ - "7650", - "0.0002993802069804996", - "1.752564097223463", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00042487788593740085", - "3.5047752184323104", - "0.0", - "0.0", - "0.0001738825280235984" - ], - [ - "7651", - "0.00031217041149092485", - "1.7525881967311783", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00044302931357683594", - "3.504808337017704", - "0.0", - "0.0", - "0.0001813115094050138" - ], - [ - "7652", - "0.00031119821477283786", - "1.7525863551656666", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0004416530562081192", - "3.5048058131124846", - "0.0", - "0.0", - "0.0001807433733375565" - ], - [ - "7653", - "0.000308604161199449", - "1.7525814674896871", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0004379716356817869", - "3.504799096202392", - "0.0", - "0.0", - "0.00017923668671711114" - ], - [ - "7654", - "0.00030773878418479224", - "1.7525798367416165", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0004367435897351419", - "3.5047968552927333", - "0.0", - "0.0", - "0.0001787339786344426" - ], - [ - "7655", - "0.00030687420219663184", - "1.7525782077100875", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0004355165944962064", - "3.5047946165880397", - "0.0", - "0.0", - "0.0001782318098970573" - ], - [ - "7656", - "0.000305989578036988", - "1.7525765409154161", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00043426115573455765", - "3.504792325986967", - "0.0", - "0.0", - "0.00017771800033941843" - ], - [ - "7657", - "0.00030510448311965095", - "1.752574873233746", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00043300504875720046", - "3.504790034166737", - "0.0", - "0.0", - "0.0001772039174821014" - ], - [ - "7658", - "0.00030425814409178935", - "1.7525732785752985", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0004318039431555274", - "3.5047878426988683", - "0.0", - "0.0", - "0.00017671234502805136" - ], - [ - "7659", - "0.00031774628672233407", - "1.752598692717255", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0004509460025905013", - "3.5048227681976316", - "0.0", - "0.0", - "0.00018454657085416684" - ], - [ - "7660", - "0.00033571178168702857", - "1.7526325339523947", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0004764453817392246", - "3.504869280972886", - "0.0", - "0.0", - "0.00019497818163483253" - ], - [ - "7661", - "0.0003339154137015719", - "1.7526291493133646", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00047389600767740707", - "3.504864629594028", - "0.0", - "0.0", - "0.00019393481972573674" - ], - [ - "7662", - "0.00034571905213977695", - "1.752651389219167", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0004906475155621554", - "3.5048951930239682", - "0.0", - "0.0", - "0.00020079058871739851" - ], - [ - "7663", - "0.0003575325137613615", - "1.7526736431560916", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0005074145280452818", - "3.5049257788517414", - "0.0", - "0.0", - "0.00020765049947744124" - ], - [ - "7664", - "0.00036904007772283127", - "1.7526953250656307", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0005237458597269529", - "3.504955575483436", - "0.0", - "0.0", - "0.00021433429571870966" - ], - [ - "7665", - "0.0003774564265181067", - "1.7527111809887714", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0005356907790095321", - "3.504977366850453", - "0.0", - "0.0", - "0.00021922207402668122" - ], - [ - "7666", - "0.0003903094108836562", - "1.7527353738189557", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0005539399847236068", - "3.505010630998578", - "0.0", - "0.0", - "0.00022667883704370555" - ], - [ - "7667", - "0.00039216851011308093", - "1.7527388765070857", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0005565784205524705", - "3.505015444684268", - "0.0", - "0.0", - "0.00022775859967369142" - ], - [ - "7668", - "0.0004045597129176692", - "1.7527622218013794", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0005741642636213211", - "3.5050475282014415", - "0.0", - "0.0", - "0.00023495516221401725" - ], - [ - "7669", - "0.0004165941605811082", - "1.7527848936657233", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0005912442276204082", - "3.5050786870960113", - "0.0", - "0.0", - "0.0002419440935418082" - ], - [ - "7670", - "0.00042861901870278475", - "1.7528075486245387", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0006083101467266882", - "3.50510982190351", - "0.0", - "0.0", - "0.0002489278906788813" - ], - [ - "7671", - "0.00044053136721509213", - "1.7528299923198452", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0006252161164818297", - "3.505140665837994", - "0.0", - "0.0", - "0.00025584661794835465" - ], - [ - "7672", - "0.0004504823950007426", - "1.7528487408543576", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0006393385308968636", - "3.50516643148394", - "0.0", - "0.0", - "0.00026162625910462165" - ], - [ - "7673", - "0.00046066444083256956", - "1.7528679125339162", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0006537930789736889", - "3.505192787143563", - "0.0", - "0.0", - "0.00026753580269145026" - ], - [ - "7674", - "0.00047211014621991473", - "1.7528894767434968", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0006700368359308326", - "3.505222422535239", - "0.0", - "0.0", - "0.00027418345650899684" - ], - [ - "7675", - "0.0004825635552539793", - "1.7529091714227367", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0006848723063234415", - "3.5052494886290058", - "0.0", - "0.0", - "0.00028025480418451696" - ], - [ - "7676", - "0.0004886269009023346", - "1.7529205943092054", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0006934776494746606", - "3.5052651874206737", - "0.0", - "0.0", - "0.0002837761523300087" - ], - [ - "7677", - "0.0004987551201891838", - "1.7529396763009275", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0007078515892707538", - "3.5052914114767098", - "0.0", - "0.0", - "0.0002896586511076139" - ], - [ - "7678", - "0.0005088835746212667", - "1.7529587587351279", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0007222258461586941", - "3.505317636115289", - "0.0", - "0.0", - "0.00029554130308383935" - ], - [ - "7679", - "0.0005196869597429383", - "1.7529791068238463", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0007375600490582191", - "3.505345604272791", - "0.0", - "0.0", - "0.0003018138704276574" - ], - [ - "7680", - "0.0005171655401689682", - "1.7529743561183047", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0007339817546113398", - "3.505339075647174", - "0.0", - "0.0", - "0.00030034932572659673" - ], - [ - "7681", - "0.0005157357146356708", - "1.7529716621495302", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0007319525971904223", - "3.505335373462516", - "0.0", - "0.0", - "0.00029951883208091917" - ], - [ - "7682", - "0.000536830365819499", - "1.7530114113579056", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0007618878279935036", - "3.5053899957288173", - "0.0", - "0.0", - "0.00031177290364549446" - ], - [ - "7683", - "0.0005481063666744224", - "1.7530326247127566", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0007779016278080154", - "3.5054191706274214", - "0.0", - "0.0", - "0.00031831110554082944" - ], - [ - "7684", - "0.0005608979214833847", - "1.7530567238038013", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0007960554994009176", - "3.5054522899195635", - "0.0", - "0.0", - "0.0003257403435658518" - ], - [ - "7685", - "0.0005953697736159714", - "1.7531216636984435", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0008449796887076538", - "3.5055415395665506", - "0.0", - "0.0", - "0.00034575985852428894" - ], - [ - "7686", - "0.0006062229458731679", - "1.7531421108214689", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0008603825409603039", - "3.505569639905549", - "0.0", - "0.0", - "0.0003520633507860319" - ], - [ - "7687", - "0.0006173327663263774", - "1.753163031681328", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0008761530752194924", - "3.5055983981493886", - "0.0", - "0.0", - "0.00035851245743326245" - ], - [ - "7688", - "0.0006298635686974582", - "1.753186639220284", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0008939368488458772", - "3.5056308418945714", - "0.0", - "0.0", - "0.00036579028854903916" - ], - [ - "7689", - "0.0006419912620486022", - "1.753209417790156", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0009111731379682565", - "3.5056621952643807", - "0.0", - "0.0", - "0.00037280938612894787" - ], - [ - "7690", - "0.0006538702354868212", - "1.7532317960213075", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0009280322418756212", - "3.505692950409873", - "0.0", - "0.0", - "0.0003797082290980213" - ], - [ - "7691", - "0.0006725550516990724", - "1.7532669943174302", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0009545508203367046", - "3.5057413253239598", - "0.0", - "0.0", - "0.00039055928306144013" - ], - [ - "7692", - "0.0006840979223796156", - "1.7532887393593237", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0009709328641126932", - "3.5057712101828025", - "0.0", - "0.0", - "0.00039726298064653805" - ], - [ - "7693", - "0.0006968550645815327", - "1.7533127616353559", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0009890418581038883", - "3.505804231898814", - "0.0", - "0.0", - "0.0004046682710591772" - ], - [ - "7694", - "0.0007083288909876892", - "1.7533343748701637", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010053264819863724", - "3.505833936763511", - "0.0", - "0.0", - "0.00041133129998900604" - ], - [ - "7695", - "0.0007192363238992779", - "1.753354922655477", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010208066932093371", - "3.5058621762307487", - "0.0", - "0.0", - "0.0004176659545892186" - ], - [ - "7696", - "0.0007162821217062743", - "1.753349357431078", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010166139877807712", - "3.5058545277708495", - "0.0", - "0.0", - "0.00041595025563177736" - ], - [ - "7697", - "0.0007142680115012122", - "1.7533455589966231", - "0.0", - "0.0", - "0.0", - "0.0", - "0.001013756975715711", - "3.505849310408717", - "0.0", - "0.0", - "0.0004147790472867136" - ], - [ - "7698", - "0.0007111299418501248", - "1.753339647414895", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010093033101728017", - "3.505841185922343", - "0.0", - "0.0", - "0.0004129565735274477" - ], - [ - "7699", - "0.000707995198030751", - "1.753333742098409", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010048543631812434", - "3.5058330700440554", - "0.0", - "0.0", - "0.0004111360328802584" - ], - [ - "7700", - "0.0007048549136182816", - "1.7533278263443504", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010003975511739046", - "3.5058249398186017", - "0.0", - "0.0", - "0.0004093122760626586" - ], - [ - "7701", - "0.0007023275525152202", - "1.7533230652320257", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0009968106222605015", - "3.5058183964554437", - "0.0", - "0.0", - "0.00040784448276993886" - ], - [ - "7702", - "0.0007003417375524178", - "1.7533193242991845", - "0.0", - "0.0", - "0.0", - "0.0", - "0.000993992275909724", - "3.505813255159508", - "0.0", - "0.0", - "0.0004066911991951116" - ], - [ - "7703", - "0.0006983124000929264", - "1.7533155004136445", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0009911125015292868", - "3.5058080005357026", - "0.0", - "0.0", - "0.0004055122986565659" - ], - [ - "7704", - "0.0006963753235532619", - "1.753311851298218", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0009883633244571874", - "3.505802985423873", - "0.0", - "0.0", - "0.0004043873226493364" - ], - [ - "7705", - "0.000693501531280567", - "1.7533064375731693", - "0.0", - "0.0", - "0.0", - "0.0", - "0.000984284721555303", - "3.5057955451432457", - "0.0", - "0.0", - "0.00040271834100583104" - ], - [ - "7706", - "0.0006911301502601098", - "1.75330196861578", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0009809197580838583", - "3.505789404477084", - "0.0", - "0.0", - "0.0004013405424363613" - ], - [ - "7707", - "0.0006880071188159274", - "1.7532960845913985", - "0.0", - "0.0", - "0.0", - "0.0", - "0.000976487697008492", - "3.5057813183885185", - "0.0", - "0.0", - "0.00039952654062336285" - ], - [ - "7708", - "0.0006860501484794699", - "1.7532923946321581", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0009737114755476904", - "3.5057762495071056", - "0.0", - "0.0", - "0.0003983888214112496" - ], - [ - "7709", - "0.0006832134899923206", - "1.753287050884659", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0009696855611458059", - "3.505768905374949", - "0.0", - "0.0", - "0.0003967414188388353" - ], - [ - "7710", - "0.0006803172003436978", - "1.753281589782302", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0009655767928396145", - "3.5057614034866433", - "0.0", - "0.0", - "0.00039505760784778115" - ], - [ - "7711", - "0.000677328514141269", - "1.7532759416936212", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0009613414697057346", - "3.5057536537063636", - "0.0", - "0.0", - "0.0003933155585768035" - ], - [ - "7712", - "0.0006962969668349276", - "1.7533116741574462", - "0.0", - "0.0", - "0.0", - "0.0", - "0.000988262579398969", - "3.505802762744439", - "0.0", - "0.0", - "0.00040433135427088597" - ], - [ - "7713", - "0.0007148968764038279", - "1.7533467123639062", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010146605750602493", - "3.505850917540458", - "0.0", - "0.0", - "0.00041513317774740635" - ], - [ - "7714", - "0.0007301210434996803", - "1.7533753914003962", - "0.0", - "0.0", - "0.0", - "0.0", - "0.001036267493065323", - "3.505890332540414", - "0.0", - "0.0", - "0.00042397459393403783" - ], - [ - "7715", - "0.0007280162861284346", - "1.7533714260451514", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010332804744661197", - "3.505884883077578", - "0.0", - "0.0", - "0.0004227520977907494" - ], - [ - "7716", - "0.000724906325308482", - "1.753365564165703", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010288678603814247", - "3.5058768291953966", - "0.0", - "0.0", - "0.00042094479023553936" - ], - [ - "7717", - "0.0007215757310856852", - "1.7533592885107578", - "0.0", - "0.0", - "0.0", - "0.0", - "0.001024141455010545", - "3.5058682053375225", - "0.0", - "0.0", - "0.00041901000716082525" - ], - [ - "7718", - "0.000717649630672263", - "1.7533518298178992", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010185915665915435", - "3.505857998635685", - "0.0", - "0.0", - "0.00041670769475298235" - ], - [ - "7719", - "0.0007317494169469188", - "1.7533783894256338", - "0.0", - "0.0", - "0.0", - "0.0", - "0.001038603174973914", - "3.5058945017351246", - "0.0", - "0.0", - "0.0004248956589199237" - ], - [ - "7720", - "0.0007435009009400547", - "1.7534005261174141", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010552816529826902", - "3.5059249256214082", - "0.0", - "0.0", - "0.00043172014889741905" - ], - [ - "7721", - "0.0007414384737137787", - "1.7533966411452502", - "0.0", - "0.0", - "0.0", - "0.0", - "0.001052354488432758", - "3.505919586188104", - "0.0", - "0.0", - "0.00043052245899479944" - ], - [ - "7722", - "0.0007386010699877884", - "1.7533912963580858", - "0.0", - "0.0", - "0.0", - "0.0", - "0.001048327413044214", - "3.505912240410551", - "0.0", - "0.0", - "0.0004288747269313627" - ], - [ - "7723", - "0.0007356254964152962", - "1.7533856762452804", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010441095679049393", - "3.5059045268173494", - "0.0", - "0.0", - "0.00042714142492565306" - ], - [ - "7724", - "0.0007327722503415703", - "1.7533803016743554", - "0.0", - "0.0", - "0.0", - "0.0", - "0.001040059984382875", - "3.5058971400603345", - "0.0", - "0.0", - "0.00042548451630026557" - ], - [ - "7725", - "0.0007299368703007691", - "1.7533749607570803", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010360357566353022", - "3.5058897995545553", - "0.0", - "0.0", - "0.00042383798396623584" - ], - [ - "7726", - "0.0007272430988118146", - "1.7533698865833962", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010322125113429851", - "3.5058828256567693", - "0.0", - "0.0", - "0.00042227368628064405" - ], - [ - "7727", - "0.0007245492069910217", - "1.7533648121830099", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010283890940889111", - "3.5058758514456", - "0.0", - "0.0", - "0.00042070931989313207" - ], - [ - "7728", - "0.0007219631532081621", - "1.753359940913753", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010247187293188338", - "3.5058691564143643", - "0.0", - "0.0", - "0.0004192075770974905" - ], - [ - "7729", - "0.0007189350101936427", - "1.7533541852272532", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010204392112002489", - "3.505861282179444", - "0.0", - "0.0", - "0.0004174308091870365" - ], - [ - "7730", - "0.0007383310938672681", - "1.753390719329925", - "0.0", - "0.0", - "0.0", - "0.0", - "0.001047968497088855", - "3.505911495509055", - "0.0", - "0.0", - "0.0004286936906456812" - ], - [ - "7731", - "0.0007580420700883877", - "1.7534278468573217", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010759445478225513", - "3.5059625241479955", - "0.0", - "0.0", - "0.00044013959235422403" - ], - [ - "7732", - "0.0007779937153567861", - "1.7534654185801688", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0011042653517403136", - "3.5060141696148777", - "0.0", - "0.0", - "0.00045172207897325865" - ], - [ - "7733", - "0.0007946353823676379", - "1.7534967401808323", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0011278936957989734", - "3.506057235628336", - "0.0", - "0.0", - "0.0004613770689363024" - ], - [ - "7734", - "0.0007922775112219273", - "1.7534922982145702", - "0.0", - "0.0", - "0.0", - "0.0", - "0.001124547399167446", - "3.5060511310331464", - "0.0", - "0.0", - "0.0004600076232764085" - ], - [ - "7735", - "0.0007899236438638875", - "1.7534878645807432", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0011212065040854093", - "3.506045037332594", - "0.0", - "0.0", - "0.00045864078364236586" - ], - [ - "7736", - "0.0007874289461775456", - "1.7534831656612897", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00111766573305563", - "3.5060385790321638", - "0.0", - "0.0", - "0.00045719215929946114" - ], - [ - "7737", - "0.0007847167829285585", - "1.7534780550152997", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0011138170576003865", - "3.5060315563320166", - "0.0", - "0.0", - "0.00045561650825673064" - ], - [ - "7738", - "0.00078232660877415", - "1.7534735400494297", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0011104292140193368", - "3.506025359945281", - "0.0", - "0.0", - "0.00045422400352896334" - ], - [ - "7739", - "0.000779979742864759", - "1.7534691196484116", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0011070982364048201", - "3.50601928439455", - "0.0", - "0.0", - "0.000452861249324698" - ], - [ - "7740", - "0.0007776227804690941", - "1.753464679422977", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0011037532135883322", - "3.5060131821627474", - "0.0", - "0.0", - "0.00045149234734985597" - ], - [ - "7741", - "0.0007751905748636293", - "1.753460096856616", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0011003016136498466", - "3.506006884725587", - "0.0", - "0.0", - "0.000450079536077412" - ], - [ - "7742", - "0.0007726951510604234", - "1.753455396648894", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010967597778724317", - "3.5060004245893954", - "0.0", - "0.0", - "0.00044863052424841496" - ], - [ - "7743", - "0.0007697685669043158", - "1.7534498843373054", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010926059809645157", - "3.5059928482661817", - "0.0", - "0.0", - "0.00044693115284411586" - ], - [ - "7744", - "0.0007667642204654309", - "1.7534441921848156", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010883536321979713", - "3.50598504822615", - "0.0", - "0.0", - "0.0004451748087328906" - ], - [ - "7745", - "0.0007635484209931945", - "1.753438099014095", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010838021292748636", - "3.505976698933495", - "0.0", - "0.0", - "0.0004432947127115253" - ], - [ - "7746", - "0.00076041902357877", - "1.7534322049820492", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010793603673030763", - "3.5059685977522466", - "0.0", - "0.0", - "0.00044147767985446376" - ], - [ - "7747", - "0.0007572548933239757", - "1.7534262455327358", - "0.0", - "0.0", - "0.0", - "0.0", - "0.001074869305086598", - "3.505960406654325", - "0.0", - "0.0", - "0.0004396404815613536" - ], - [ - "7748", - "0.0007551543135028905", - "1.753422289216766", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010718878104127257", - "3.5059549688062925", - "0.0", - "0.0", - "0.00043842081659305524" - ], - [ - "7749", - "0.0007529599067831649", - "1.753418141112424", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010687784775426723", - "3.505949277944831", - "0.0", - "0.0", - "0.0004371413360236575" - ], - [ - "7750", - "0.0007508712410925371", - "1.753414207277755", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010658138771409836", - "3.505943870965109", - "0.0", - "0.0", - "0.00043592860504409044" - ], - [ - "7751", - "0.0007487896648239833", - "1.7534102868308807", - "0.0", - "0.0", - "0.0", - "0.0", - "0.001062859326029377", - "3.5059384823606448", - "0.0", - "0.0", - "0.00043472000361858957" - ], - [ - "7752", - "0.0007446363226989212", - "1.7534024643430846", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010569641715510586", - "3.505927730497116", - "0.0", - "0.0", - "0.000432308473846784" - ], - [ - "7753", - "0.0007407023574836723", - "1.7533950550340787", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010513803928341708", - "3.505917546536165", - "0.0", - "0.0", - "0.0004300243221331739" - ], - [ - "7754", - "0.0007367381464732112", - "1.7533875799766958", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010457567917605366", - "3.5059072783759064", - "0.0", - "0.0", - "0.00042771950118588594" - ], - [ - "7755", - "0.0007553205118794023", - "1.753422486720544", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010721646161274245", - "3.5059553214760952", - "0.0", - "0.0", - "0.0004384764076313802" - ], - [ - "7756", - "0.0007746721264289001", - "1.7534589235231655", - "0.0", - "0.0", - "0.0", - "0.0", - "0.001099635465655372", - "3.5060054104139207", - "0.0", - "0.0", - "0.0004497087872024284" - ], - [ - "7757", - "0.0007929423236565794", - "1.7534933310263061", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0011255686814090708", - "3.506052704789872", - "0.0", - "0.0", - "0.00046031596590408814" - ], - [ - "7758", - "0.0007900702968615145", - "1.7534879183527987", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00112149343463093", - "3.5060452676217744", - "0.0", - "0.0", - "0.00045864715909209894" - ], - [ - "7759", - "0.0007869768295384054", - "1.7534820928110704", - "0.0", - "0.0", - "0.0", - "0.0", - "0.001117102394308632", - "3.5060372600240797", - "0.0", - "0.0", - "0.0004568512647681788" - ], - [ - "7760", - "0.0007848444352462504", - "1.7534780774667253", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0011140754375906195", - "3.506031740431918", - "0.0", - "0.0", - "0.00045561343290188123" - ], - [ - "7761", - "0.0007818105957451359", - "1.7534723647695094", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0011097688372734512", - "3.506023887552561", - "0.0", - "0.0", - "0.00045385235421682057" - ], - [ - "7762", - "0.0007795763342356543", - "1.7534681471026412", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0011066009965837148", - "3.5060180972243145", - "0.0", - "0.0", - "0.0004525516718875939" - ], - [ - "7763", - "0.0007737684385078482", - "1.7534572095206684", - "0.0", - "0.0", - "0.0", - "0.0", - "0.001098357038245686", - "3.5060030629747563", - "0.0", - "0.0", - "0.00044917983877001033" - ], - [ - "7764", - "0.0007709258250539218", - "1.753451856137014", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010943221527069632", - "3.5059957045497407", - "0.0", - "0.0", - "0.0004475294974008804" - ], - [ - "7765", - "0.0007676827729350717", - "1.753445742464295", - "0.0", - "0.0", - "0.0", - "0.0", - "0.001089721052296075", - "3.5059873054053", - "0.0", - "0.0", - "0.00044564449357406875" - ], - [ - "7766", - "0.0007600833971406317", - "1.7534314309152754", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010789342524090157", - "3.5059676335898216", - "0.0", - "0.0", - "0.0004412325418722478" - ], - [ - "7767", - "0.0007579749714598178", - "1.7534274602157502", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010759414831194376", - "3.5059621756967077", - "0.0", - "0.0", - "0.0004400084598001978" - ], - [ - "7768", - "0.0007559079625090962", - "1.7534235555498074", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010730117378953748", - "3.5059568169779785", - "0.0", - "0.0", - "0.0004388041871228177" - ], - [ - "7769", - "0.0007538111193184122", - "1.7534196066961836", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010700353960078424", - "3.505951389087468", - "0.0", - "0.0", - "0.00043758684262898195" - ], - [ - "7770", - "0.0007517200926752706", - "1.7534156687964788", - "0.0", - "0.0", - "0.0", - "0.0", - "0.001067067309647723", - "3.5059459762525598", - "0.0", - "0.0", - "0.00043637287570281834" - ], - [ - "7771", - "0.0007496348664446632", - "1.7534117418203072", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010641074559182464", - "3.505940578431496", - "0.0", - "0.0", - "0.0004351622769710799" - ], - [ - "7772", - "0.0007475391929561326", - "1.7534077926818508", - "0.0", - "0.0", - "0.0", - "0.0", - "0.001061133653032716", - "3.5059351518946285", - "0.0", - "0.0", - "0.0004339447328795494" - ], - [ - "7773", - "0.0007454604208406381", - "1.7534038770793094", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010581832356474047", - "3.505929770253916", - "0.0", - "0.0", - "0.00043273760603387157" - ], - [ - "7774", - "0.0007429608043833118", - "1.753399136772662", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010546468386108628", - "3.505923277613967", - "0.0", - "0.0", - "0.0004312747701557607" - ], - [ - "7775", - "0.0007408998760878331", - "1.753395255655589", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010517214358657277", - "3.505917942753408", - "0.0", - "0.0", - "0.00043007831630993866" - ], - [ - "7776", - "0.0007391927494880256", - "1.7533920158880256", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010493070647027414", - "3.5059135069884655", - "0.0", - "0.0", - "0.0004290784342733098" - ], - [ - "7777", - "0.0007371142650729484", - "1.753388095787185", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010463588372588357", - "3.505908122702023", - "0.0", - "0.0", - "0.000427869692887061" - ], - [ - "7778", - "0.0007350754971013858", - "1.753384256551447", - "0.0", - "0.0", - "0.0", - "0.0", - "0.001043464835378757", - "3.5059028453023067", - "0.0", - "0.0", - "0.00042668615882401456" - ], - [ - "7779", - "0.0007320800670481562", - "1.7533786157160836", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010392128975721076", - "3.5058950914945943", - "0.0", - "0.0", - "0.0004249472365242046" - ], - [ - "7780", - "0.000729807090696417", - "1.7533742975542088", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010359998509634535", - "3.5058891823852347", - "0.0", - "0.0", - "0.0004236143304293805" - ], - [ - "7781", - "0.0007267327600208474", - "1.7533685065175926", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010316364864633683", - "3.505881223247201", - "0.0", - "0.0", - "0.0004218290335783264" - ], - [ - "7782", - "0.0007236501217076874", - "1.7533627017387166", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010272606544711534", - "3.505873243880148", - "0.0", - "0.0", - "0.0004200395889442214" - ], - [ - "7783", - "0.0007205412518443887", - "1.7533568446938828", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010228486012197942", - "3.5058651946820056", - "0.0", - "0.0", - "0.0004182339024689831" - ], - [ - "7784", - "0.0007175211199229585", - "1.7533511585396122", - "0.0", - "0.0", - "0.0", - "0.0", - "0.001018561168278477", - "3.505857377726414", - "0.0", - "0.0", - "0.00041648107156744025" - ], - [ - "7785", - "0.0007154709302228254", - "1.7533472886913335", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010156541698970968", - "3.5058520646340803", - "0.0", - "0.0", - "0.00041528769054855396" - ], - [ - "7786", - "0.0007131551968446093", - "1.753342927984994", - "0.0", - "0.0", - "0.0", - "0.0", - "0.001012366980430096", - "3.5058460703486616", - "0.0", - "0.0", - "0.0004139434132591226" - ], - [ - "7787", - "0.000710295571034604", - "1.753337536919672", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010083099163437684", - "3.505838664049758", - "0.0", - "0.0", - "0.00041228122572543966" - ], - [ - "7788", - "0.0007075472891850429", - "1.7533323607841975", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010044090417613135", - "3.5058315494978807", - "0.0", - "0.0", - "0.00041068553660877227" - ], - [ - "7789", - "0.0007046803395978791", - "1.7533269529928819", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010003426178277412", - "3.5058241222652184", - "0.0", - "0.0", - "0.0004090180613680169" - ], - [ - "7790", - "0.0007018305416222492", - "1.753321580001802", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0009962996534186547", - "3.505816741108897", - "0.0", - "0.0", - "0.0004073614298258438" - ], - [ - "7791", - "0.000699304562349578", - "1.7533168211680885", - "0.0", - "0.0", - "0.0", - "0.0", - "0.000992714798854282", - "3.5058102011019514", - "0.0", - "0.0", - "0.000405894325844874" - ], - [ - "7792", - "0.0006971952881393817", - "1.7533128490744634", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0009897207319111189", - "3.5058047411168483", - "0.0", - "0.0", - "0.00040466984436764446" - ], - [ - "7793", - "0.0006952581541036548", - "1.7533092013698994", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0009869709347580073", - "3.505799726875391", - "0.0", - "0.0", - "0.0004035453734493022" - ], - [ - "7794", - "0.0006919424485250492", - "1.7533028516455373", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0009823017899605341", - "3.505791072906657", - "0.0", - "0.0", - "0.0004015831070895645" - ], - [ - "7795", - "0.000690023043120993", - "1.7532992376189642", - "0.0", - "0.0", - "0.0", - "0.0", - "0.000979577053101374", - "3.505786104750646", - "0.0", - "0.0", - "0.00040046903314061203" - ], - [ - "7796", - "0.0006874141954841078", - "1.753294325449437", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0009758736014291179", - "3.505779352052683", - "0.0", - "0.0", - "0.00039895478953909765" - ], - [ - "7797", - "0.0006849951340708316", - "1.7532897705251027", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0009724396001003823", - "3.5057730905247255", - "0.0", - "0.0", - "0.0003975506680412809" - ], - [ - "7798", - "0.0006828383845714164", - "1.7532857075664794", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0009693786552816679", - "3.505767506656556", - "0.0", - "0.0", - "0.00039629811386116497" - ], - [ - "7799", - "0.0006806908548292286", - "1.753281664013829", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0009663300735889587", - "3.505761948026893", - "0.0", - "0.0", - "0.0003950516360694987" - ], - [ - "7800", - "0.0006785314489054138", - "1.7532775978113366", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0009632647340540387", - "3.5057563584621274", - "0.0", - "0.0", - "0.00039379816375678905" - ], - [ - "7801", - "0.0006760671729024091", - "1.753272957909983", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0009597664880926834", - "3.5057499800014535", - "0.0", - "0.0", - "0.0003923678577121348" - ], - [ - "7802", - "0.0006736989596511309", - "1.7532684187909466", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0009564329566172173", - "3.505743796343773", - "0.0", - "0.0", - "0.0003909649626850447" - ], - [ - "7803", - "0.0007109866160626543", - "1.7533386227348584", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010093671277130723", - "3.5058403079965252", - "0.0", - "0.0", - "0.0004126061044122362" - ], - [ - "7804", - "0.0007498282091136232", - "1.7534117471280448", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010645089090655635", - "3.5059408378013295", - "0.0", - "0.0", - "0.000435147509161683" - ], - [ - "7805", - "0.0007887119097380492", - "1.7534849557649843", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0011197084623332434", - "3.506041479549968", - "0.0", - "0.0", - "0.00045771535714285503" - ], - [ - "7806", - "0.0008267088211060463", - "1.7535564944952233", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0011736489896898687", - "3.506139825475887", - "0.0", - "0.0", - "0.000479768652522224" - ], - [ - "7807", - "0.000864629938274299", - "1.753627890793235", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0012274815885177973", - "3.5062379750448898", - "0.0", - "0.0", - "0.0005017782880308007" - ], - [ - "7808", - "0.0009034118750010031", - "1.7537009077997472", - "0.0", - "0.0", - "0.0", - "0.0", - "0.001282535960831193", - "3.5063383522561056", - "0.0", - "0.0", - "0.0005242877891708131" - ], - [ - "7809", - "0.000940774620968312", - "1.753771219233711", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0013355873189161479", - "3.506435033317511", - "0.0", - "0.0", - "0.0005459619230204762" - ], - [ - "7810", - "0.0009364735372266855", - "1.7537630121829613", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0013295202184967177", - "3.5064238277181348", - "0.0", - "0.0", - "0.0005434268559566533" - ], - [ - "7811", - "0.0009537996978935637", - "1.7537956299705153", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0013541171816367852", - "3.506468669686442", - "0.0", - "0.0", - "0.0005534822141503421" - ], - [ - "7812", - "0.0009494270517715257", - "1.753787385859266", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0013479139350635004", - "3.506457344557096", - "0.0", - "0.0", - "0.0005509401684795511" - ], - [ - "7813", - "0.0009452763263886594", - "1.753779526961305", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0013420372584788262", - "3.506446571873379", - "0.0", - "0.0", - "0.0005485153942984925" - ], - [ - "7814", - "0.0009432878485276204", - "1.7537757692202212", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0013392193837087722", - "3.5064414158715196", - "0.0", - "0.0", - "0.0005473563133464685" - ], - [ - "7815", - "0.0009749600876516354", - "1.753835385458414", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0013841858085543838", - "3.5065233807962066", - "0.0", - "0.0", - "0.000565734366748887" - ], - [ - "7816", - "0.00101403536113424", - "1.7539089455005217", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0014396591652913759", - "3.5066245099316844", - "0.0", - "0.0", - "0.0005884115569771041" - ], - [ - "7817", - "0.0010176025367514888", - "1.7539156607849549", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0014447233070478901", - "3.5066337419752953", - "0.0", - "0.0", - "0.0005904817664550873" - ], - [ - "7818", - "0.0010371866200421568", - "1.7539525282398478", - "0.0", - "0.0", - "0.0", - "0.0", - "0.001472525819060248", - "3.5066844265852906", - "0.0", - "0.0", - "0.0006018474210240655" - ], - [ - "7819", - "0.0010333848598114285", - "1.75394537134518", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0014671286611880174", - "3.50667458744286", - "0.0", - "0.0", - "0.0005996410584348395" - ], - [ - "7820", - "0.0010295319783839526", - "1.7539381182038465", - "0.0", - "0.0", - "0.0", - "0.0", - "0.001461658930357145", - "3.506664615985869", - "0.0", - "0.0", - "0.0005974050264107603" - ], - [ - "7821", - "0.0010256924100473473", - "1.7539308901345227", - "0.0", - "0.0", - "0.0", - "0.0", - "0.001456208093531133", - "3.506654678986718", - "0.0", - "0.0", - "0.0005951767265635614" - ], - [ - "7822", - "0.0010217721999238377", - "1.7539235102552486", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0014506427712619417", - "3.5066445332786236", - "0.0", - "0.0", - "0.0005929016285857338" - ], - [ - "7823", - "0.0010178088170235023", - "1.753916039808526", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0014450194448918602", - "3.506634269582336", - "0.0", - "0.0", - "0.0005905981891551443" - ], - [ - "7824", - "0.0010515572198959737", - "1.7539795715879818", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0014929303794849668", - "3.506721611906414", - "0.0", - "0.0", - "0.0006101840603069804" - ], - [ - "7825", - "0.0010640403360179798", - "1.7540027361710795", - "0.0", - "0.0", - "0.0", - "0.0", - "0.001510770529380752", - "3.5067536932685215", - "0.0", - "0.0", - "0.0006173101426552077" - ], - [ - "7826", - "0.0011015462444056486", - "1.754073326186617", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00156402093251109", - "3.5068507494239554", - "0.0", - "0.0", - "0.000639071556300207" - ], - [ - "7827", - "0.0011399848122356788", - "1.7541456750238087", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0016185940510200015", - "3.506950221035798", - "0.0", - "0.0", - "0.0006613755734513559" - ], - [ - "7828", - "0.0011785257674790997", - "1.754218216088706", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0016733124631634027", - "3.507049956906543", - "0.0", - "0.0", - "0.0006837390717947967" - ], - [ - "7829", - "0.001212856731718799", - "1.7542828335950142", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0017220534038223875", - "3.507138798167208", - "0.0", - "0.0", - "0.0007036600596152105" - ], - [ - "7830", - "0.0012437289857404141", - "1.7543409161781864", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00176589255177581", - "3.507218671966234", - "0.0", - "0.0", - "0.000721565419705018" - ], - [ - "7831", - "0.0012743199642333907", - "1.7543984936872825", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0018093235995868926", - "3.5072978340304726", - "0.0", - "0.0", - "0.0007393163288798889" - ], - [ - "7832", - "0.0013062368962259696", - "1.7544585668659614", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0018546369869040628", - "3.5073804270883024", - "0.0", - "0.0", - "0.0007578368055478766" - ], - [ - "7833", - "0.001302522381511053", - "1.754451570269262", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0018493652451349364", - "3.5073708113386814", - "0.0", - "0.0", - "0.0007556795178871693" - ], - [ - "7834", - "0.001297120125587247", - "1.754441392484032", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0018416989844244973", - "3.5073568250613203", - "0.0", - "0.0", - "0.0007525412667499963" - ], - [ - "7835", - "0.0012935581387531019", - "1.7544346473072083", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0018366564014093197", - "3.5073475800045393", - "0.0", - "0.0", - "0.0007504598760968843" - ], - [ - "7836", - "0.0013294316025809056", - "1.754502165805831", - "0.0", - "0.0", - "0.0", - "0.0", - "0.001887587417303687", - "3.507440410341235", - "0.0", - "0.0", - "0.0007712757878581239" - ], - [ - "7837", - "0.0013648671586832008", - "1.7545687969875956", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0019379188390556124", - "3.507532064697544", - "0.0", - "0.0", - "0.0007918154783107891" - ], - [ - "7838", - "0.0014003149685149136", - "1.7546354668333155", - "0.0", - "0.0", - "0.0", - "0.0", - "0.001988261933617475", - "3.5076237609454317", - "0.0", - "0.0", - "0.000812368003412352" - ], - [ - "7839", - "0.0014359500835248787", - "1.7547025283927822", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0020388568842377784", - "3.50771596793689", - "0.0", - "0.0", - "0.0008330432828119789" - ], - [ - "7840", - "0.0014712965584951492", - "1.754769009922181", - "0.0", - "0.0", - "0.0", - "0.0", - "0.002089054848429759", - "3.5078074029496866", - "0.0", - "0.0", - "0.000853538268560539" - ], - [ - "7841", - "0.0015068612311953406", - "1.7548359403352918", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0021395488707764213", - "3.5078994279898694", - "0.0", - "0.0", - "0.0008741735916142598" - ], - [ - "7842", - "0.0015343930445813308", - "1.7548877556222895", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0021786370791076672", - "3.5079706689384924", - "0.0", - "0.0", - "0.0008901490100549946" - ], - [ - "7843", - "0.0017781217446615294", - "1.7553464371995249", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0025246716599976932", - "3.508601316589675", - "0.0", - "0.0", - "0.0010315718293253655" - ], - [ - "7844", - "0.0018492129015940505", - "1.755480180869819", - "0.0", - "0.0", - "0.0", - "0.0", - "0.002625617737925646", - "3.5087852315694033", - "0.0", - "0.0", - "0.0010728080652624547" - ], - [ - "7845", - "0.0018440942897479534", - "1.7554705477657455", - "0.0", - "0.0", - "0.0", - "0.0", - "0.002618350805927892", - "3.5087719872730725", - "0.0", - "0.0", - "0.0010698377735680147" - ], - [ - "7846", - "0.0018389967292649966", - "1.7554609542797264", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0026111137564946143", - "3.508758797440066", - "0.0", - "0.0", - "0.001066879702035379" - ], - [ - "7847", - "0.0018338140826537328", - "1.7554511755288074", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0026037647966597887", - "3.5087453705229468", - "0.0", - "0.0", - "0.0010638633686476768" - ], - [ - "7848", - "0.001828844427689691", - "1.7554418228257667", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00259670930345195", - "3.508732511675732", - "0.0", - "0.0", - "0.0010609795519274318" - ], - [ - "7849", - "0.0018237566597776062", - "1.755432221895109", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0025894952966953803", - "3.508719329744367", - "0.0", - "0.0", - "0.0010580180228598323" - ], - [ - "7850", - "0.0018188521480587193", - "1.7554229782348365", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00258253707498492", - "3.5087066303169085", - "0.0", - "0.0", - "0.0010551672211325184" - ], - [ - "7851", - "0.0018490548258311376", - "1.755479813620334", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0026254179921337967", - "3.508784775597675", - "0.0", - "0.0", - "0.0010726916595284782" - ], - [ - "7852", - "0.001931442964420634", - "1.7556348568751168", - "0.0", - "0.0", - "0.0", - "0.0", - "0.002742387737587466", - "3.508997945987869", - "0.0", - "0.0", - "0.001120498191253802" - ], - [ - "7853", - "0.0019302162337012322", - "1.7556325131362136", - "0.0", - "0.0", - "0.0", - "0.0", - "0.002740658558276742", - "3.5089947482731683", - "0.0", - "0.0", - "0.0011197739091257225" - ], - [ - "7854", - "0.0019248417656461553", - "1.7556223957903576", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0027330294206792498", - "3.5089808402281877", - "0.0", - "0.0", - "0.0011166541106130607" - ], - [ - "7855", - "0.0019195023395767426", - "1.7556123474445433", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0027254489477507695", - "3.5089670249001004", - "0.0", - "0.0", - "0.0011135557314027155" - ], - [ - "7856", - "0.001914177725002988", - "1.7556023269725927", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0027178894983559635", - "3.5089532478883334", - "0.0", - "0.0", - "0.001110465951650012" - ], - [ - "7857", - "0.0019087485601341572", - "1.7555920916833467", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0027101880016726847", - "3.5089391881943857", - "0.0", - "0.0", - "0.0011073091185956295" - ], - [ - "7858", - "0.0019031757393601757", - "1.7555815620410615", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0027022910401494358", - "3.5089247406338506", - "0.0", - "0.0", - "0.0011040604385709155" - ], - [ - "7859", - "0.00189789345523273", - "1.755571620948512", - "0.0", - "0.0", - "0.0", - "0.0", - "0.002694791774008765", - "3.508911072936518", - "0.0", - "0.0", - "0.0011009951364566956" - ], - [ - "7860", - "0.0018924634561980497", - "1.7555613606521023", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0026870973685774588", - "3.508896995282052", - "0.0", - "0.0", - "0.0010978295438186403" - ], - [ - "7861", - "0.0018874098392687995", - "1.7555517933634939", - "0.0", - "0.0", - "0.0", - "0.0", - "0.002679942731835348", - "3.5088838811711365", - "0.0", - "0.0", - "0.001094876946702251" - ], - [ - "7862", - "0.0019229947078230974", - "1.7556187580718112", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0027304643240173227", - "3.5089759522483757", - "0.0", - "0.0", - "0.001115525091628872" - ], - [ - "7863", - "0.0019176604062873766", - "1.7556087198181998", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0027228909662121046", - "3.508962150478708", - "0.0", - "0.0", - "0.0011124298463626487" - ], - [ - "7864", - "0.0019123181990153958", - "1.755598662676855", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0027153077981457337", - "3.5089483255466627", - "0.0", - "0.0", - "0.0011093285998850578" - ], - [ - "7865", - "0.0019508307436940594", - "1.7556711124189224", - "0.0", - "0.0", - "0.0", - "0.0", - "0.002769994406304271", - "3.509047954938218", - "0.0", - "0.0", - "0.0011316670810838478" - ], - [ - "7866", - "0.001985081103644066", - "1.7557355653015954", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0028186211590595614", - "3.509136572272568", - "0.0", - "0.0", - "0.001151541048228571" - ], - [ - "7867", - "0.002019306746178058", - "1.7557999716661015", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0028672126297332855", - "3.5092251253569406", - "0.0", - "0.0", - "0.0011714008626228305" - ], - [ - "7868", - "0.0020534394886868156", - "1.755864201256794", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0029156727070518127", - "3.5093134364699625", - "0.0", - "0.0", - "0.0011912062703218185" - ], - [ - "7869", - "0.0020875282800404448", - "1.755928350051219", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00296406951946322", - "3.509401634862007", - "0.0", - "0.0", - "0.0012109870406176693" - ], - [ - "7870", - "0.0021216131241830003", - "1.755992491413231", - "0.0", - "0.0", - "0.0", - "0.0", - "0.003012460539869713", - "3.5094898227463283", - "0.0", - "0.0", - "0.0012307657084962879" - ], - [ - "7871", - "0.002155629034539266", - "1.7560565030501494", - "0.0", - "0.0", - "0.0", - "0.0", - "0.003060753505976527", - "3.5095778319837967", - "0.0", - "0.0", - "0.001250504563102005" - ], - [ - "7872", - "0.0021897392826418843", - "1.7561206922087242", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00310918021694971", - "3.5096660850059163", - "0.0", - "0.0", - "0.0012702983483340584" - ], - [ - "7873", - "0.002223830428786086", - "1.7561848454164624", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0031575796205214265", - "3.5097542883105777", - "0.0", - "0.0", - "0.0012900812370507453" - ], - [ - "7874", - "0.002257648219765807", - "1.7562484554562843", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0032056009277767836", - "3.509841764715518", - "0.0", - "0.0", - "0.0013096955117548302" - ], - [ - "7875", - "0.0022921444632787945", - "1.7563133626309195", - "0.0", - "0.0", - "0.0", - "0.0", - "0.003254578021311874", - "3.5099310099075334", - "0.0", - "0.0", - "0.0013297109052457154" - ], - [ - "7876", - "0.0023266014700806903", - "1.7563781823615556", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0033035040305192595", - "3.510020144124164", - "0.0", - "0.0", - "0.0013496989096421213" - ], - [ - "7877", - "0.0023623090635274944", - "1.7564453764984729", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0033541978390632253", - "3.510112527771601", - "0.0", - "0.0", - "0.0013704202879917637" - ], - [ - "7878", - "0.002355755941772444", - "1.75643304488482", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0033448944445350326", - "3.5100955733657995", - "0.0", - "0.0", - "0.0013666174390098557" - ], - [ - "7879", - "0.0023850290356911474", - "1.7564881278755258", - "0.0", - "0.0", - "0.0", - "0.0", - "0.003386454100575255", - "3.510171307440859", - "0.0", - "0.0", - "0.0013836039708070402" - ], - [ - "7880", - "0.002378413054842006", - "1.7564756780078945", - "0.0", - "0.0", - "0.0", - "0.0", - "0.003377061478227481", - "3.5101541904648395", - "0.0", - "0.0", - "0.0013797646314565315" - ], - [ - "7881", - "0.0023715697500495403", - "1.7564627631449572", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0033673592857666307", - "3.5101364602827494", - "0.0", - "0.0", - "0.00137578021433245" - ], - [ - "7882", - "0.0023650269164573333", - "1.7564504214643852", - "0.0", - "0.0", - "0.0", - "0.0", - "0.003358080916502293", - "3.510119512697667", - "0.0", - "0.0", - "0.0013719729164123739" - ], - [ - "7883", - "0.0024257170629111225", - "1.7565646253576284", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0034442425197264153", - "3.5102765296740652", - "0.0", - "0.0", - "0.0014071916060958301" - ], - [ - "7884", - "0.002517205390771262", - "1.7567367306461277", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0035741458805529677", - "3.5105131898571558", - "0.0", - "0.0", - "0.0014602649009895566" - ], - [ - "7885", - "0.002510206057730182", - "1.7567235572433608", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0035642099284884667", - "3.5104950798517165", - "0.0", - "0.0", - "0.001456202186971897" - ], - [ - "7886", - "0.0025031871753822543", - "1.7567103525636056", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0035542442655788005", - "3.5104769229664186", - "0.0", - "0.0", - "0.0014521300851857077" - ], - [ - "7887", - "0.002496231252488255", - "1.7566972614986014", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0035443696959037226", - "3.5104589256835586", - "0.0", - "0.0", - "0.001448092809072787" - ], - [ - "7888", - "0.002489306797363383", - "1.756684231498171", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0035345391381261036", - "3.5104410110464603", - "0.0", - "0.0", - "0.0014440744566006623" - ], - [ - "7889", - "0.002482401550693119", - "1.7566712376428097", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0035247358426136258", - "3.510423146092489", - "0.0", - "0.0", - "0.0014400672587726127" - ], - [ - "7890", - "0.0024754796996216363", - "1.7566582071201817", - "0.0", - "0.0", - "0.0", - "0.0", - "0.003514910884244255", - "3.510405234517689", - "0.0", - "0.0", - "0.0014360485149990177" - ], - [ - "7891", - "0.0024686128093836116", - "1.7566452854561894", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0035051620222363387", - "3.510387468783857", - "0.0", - "0.0", - "0.0014320635965308845" - ], - [ - "7892", - "0.002461764967910471", - "1.7566323996367352", - "0.0", - "0.0", - "0.0", - "0.0", - "0.003495440195990541", - "3.510369752320283", - "0.0", - "0.0", - "0.0014280897398304012" - ], - [ - "7893", - "0.002454901156410106", - "1.7566194784729279", - "0.0", - "0.0", - "0.0", - "0.0", - "0.003485697561862085", - "3.510351990964161", - "0.0", - "0.0", - "0.0014241047509581273" - ], - [ - "7894", - "0.002448091351114921", - "1.7566066642417764", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0034760297149973433", - "3.51033437289248", - "0.0", - "0.0", - "0.0014201529872324985" - ], - [ - "7895", - "0.0024413004362263805", - "1.7565938855571386", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0034663886792778115", - "3.510316803681627", - "0.0", - "0.0", - "0.0014162121931749498" - ], - [ - "7896", - "0.002434092993687246", - "1.7565802564655588", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0034561798555397504", - "3.510298111981236", - "0.0", - "0.0", - "0.0014120061318347414" - ], - [ - "7897", - "0.0024273409106793167", - "1.7565675510364063", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0034465938686605714", - "3.510280643335085", - "0.0", - "0.0", - "0.0014080879526980619" - ], - [ - "7898", - "0.0024206075579496496", - "1.756554880851942", - "0.0", - "0.0", - "0.0", - "0.0", - "0.003437034465963375", - "3.510263223135437", - "0.0", - "0.0", - "0.0014041806499359238" - ], - [ - "7899", - "0.0024138434489183835", - "1.7565421453490528", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0034274340239460284", - "3.5102457183407236", - "0.0", - "0.0", - "0.0014002528738907385" - ], - [ - "7900", - "0.0024071475381908366", - "1.7565295456396872", - "0.0", - "0.0", - "0.0", - "0.0", - "0.003417927756096851", - "3.510228395000163", - "0.0", - "0.0", - "0.0013963673202848225" - ], - [ - "7901", - "0.0024004702019152207", - "1.7565169808817376", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0034084478514043548", - "3.5102111197032064", - "0.0", - "0.0", - "0.0013924925524260864" - ], - [ - "7902", - "0.0023929692323566725", - "1.756502833073622", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0033978103642523572", - "3.5101916911595987", - "0.0", - "0.0", - "0.0013881281004609874" - ], - [ - "7903", - "0.0023862139910519283", - "1.7564901041232164", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0033882260657542487", - "3.5101742024359552", - "0.0", - "0.0", - "0.0013842019163496084" - ], - [ - "7904", - "0.0023795761603007423", - "1.7564776110451463", - "0.0", - "0.0", - "0.0", - "0.0", - "0.003378803164968722", - "3.5101570275212515", - "0.0", - "0.0", - "0.0013803491556327629" - ], - [ - "7905", - "0.0023729718928080117", - "1.756465183410949", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0033694270981576434", - "3.5101399409696104", - "0.0", - "0.0", - "0.0013765166874583797" - ], - [ - "7906", - "0.002366358396955091", - "1.75645273423774", - "0.0", - "0.0", - "0.0", - "0.0", - "0.003360039398904398", - "3.5101228277210508", - "0.0", - "0.0", - "0.0013726773950057843" - ], - [ - "7907", - "0.002359749371533503", - "1.7564402560564827", - "0.0", - "0.0", - "0.0", - "0.0", - "0.003350671274750811", - "3.510105700828649", - "0.0", - "0.0", - "0.0013688274683161953" - ], - [ - "7908", - "0.0024126997088289603", - "1.756539890572999", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0034258465323860317", - "3.510242690225735", - "0.0", - "0.0", - "0.0013995528852718887" - ], - [ - "7909", - "0.002447003960819273", - "1.7566043531958333", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0034745796392137655", - "3.5103313812838963", - "0.0", - "0.0", - "0.001419428282424781" - ], - [ - "7910", - "0.002489967640281701", - "1.7566851722043524", - "0.0", - "0.0", - "0.0", - "0.0", - "0.003535584443310234", - "3.5104425168404547", - "0.0", - "0.0", - "0.001444350837253168" - ], - [ - "7911", - "0.0025446706020395616", - "1.7567880550462884", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0036132643020918252", - "3.510584005357946", - "0.0", - "0.0", - "0.0014760769019872982" - ], - [ - "7912", - "0.002603306222913394", - "1.7568980076113176", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0036966436387062917", - "3.5107354448055905", - "0.0", - "0.0", - "0.0015099688071204965" - ], - [ - "7913", - "0.00266281609055594", - "1.7570099331855096", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0037811475759664172", - "3.5108893660216345", - "0.0", - "0.0", - "0.0015444846051454629" - ], - [ - "7914", - "0.002720450419575657", - "1.757118333272145", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0038629869908403075", - "3.5110384366952383", - "0.0", - "0.0", - "0.0015779138483110059" - ], - [ - "7915", - "0.002780431456224073", - "1.7572311742751454", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00394814849268516", - "3.5111935945245802", - "0.0", - "0.0", - "0.0016127144197629864" - ], - [ - "7916", - "0.002840284176916819", - "1.757343779266838", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00403312532103705", - "3.511348423157202", - "0.0", - "0.0", - "0.001647443032796588" - ], - [ - "7917", - "0.0028999952365698204", - "1.7574561207842287", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004117899366132729", - "3.5115028864906193", - "0.0", - "0.0", - "0.0016820911070069124" - ], - [ - "7918", - "0.0029595572369368445", - "1.7575681818458428", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004202461211678489", - "3.511656963330457", - "0.0", - "0.0", - "0.0017166532621951996" - ], - [ - "7919", - "0.0030187558710851434", - "1.7576795091277393", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004286524335095757", - "3.511810065550485", - "0.0", - "0.0", - "0.00175098740707453" - ], - [ - "7920", - "0.0030771963726883484", - "1.7577894581514688", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004369493549474854", - "3.5119612381627516", - "0.0", - "0.0", - "0.0017848991959018427" - ], - [ - "7921", - "0.0031324591143704473", - "1.7578929704679263", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004448112739870436", - "3.5121038812066803", - "0.0", - "0.0", - "0.0018168054888704577" - ], - [ - "7922", - "0.003189797563680243", - "1.7580007218087892", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004529560250091417", - "3.5122521176835884", - "0.0", - "0.0", - "0.0018500348772690686" - ], - [ - "7923", - "0.003247743996033134", - "1.7581097307421738", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004611830148252693", - "3.5124020026614358", - "0.0", - "0.0", - "0.001883657843813575" - ], - [ - "7924", - "0.0033053578766520397", - "1.7582180836877612", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004693638108716704", - "3.5125510061451526", - "0.0", - "0.0", - "0.001917077644587375" - ], - [ - "7925", - "0.0033632989411577206", - "1.7583269725901889", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004775938172161449", - "3.5127008014876875", - "0.0", - "0.0", - "0.0019506597101539925" - ], - [ - "7926", - "0.0033539578509839026", - "1.758309398659197", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004762676814003288", - "3.512676639051954", - "0.0", - "0.0", - "0.0019452388879645172" - ], - [ - "7927", - "0.0033446540654378525", - "1.7582918966169918", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00474946779924523", - "3.512652574238856", - "0.0", - "0.0", - "0.001939840331630475" - ], - [ - "7928", - "0.0033349947879105384", - "1.7582736685120923", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004735774331275855", - "3.5126275512765903", - "0.0", - "0.0", - "0.001934215244545222" - ], - [ - "7929", - "0.003325459718486332", - "1.7582556887050211", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004722252014862431", - "3.512602859427896", - "0.0", - "0.0", - "0.0019286674221102333" - ], - [ - "7930", - "0.0033162239228381346", - "1.7582383131702801", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0047091399783132605", - "3.5125789694697445", - "0.0", - "0.0", - "0.0019233078673630086" - ], - [ - "7931", - "0.003307024812794442", - "1.7582210083206984", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0046960794207168395", - "3.5125551755076367", - "0.0", - "0.0", - "0.0019179702048720442" - ], - [ - "7932", - "0.003297806961072919", - "1.7582036615508745", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004682994597211123", - "3.5125313285569573", - "0.0", - "0.0", - "0.001912619324934715" - ], - [ - "7933", - "0.0032882858085244394", - "1.758185694814588", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004669496616720577", - "3.512506663780727", - "0.0", - "0.0", - "0.001907075000328302" - ], - [ - "7934", - "0.0032791641998308634", - "1.7581685359291832", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0046565459900033725", - "3.512483070332394", - "0.0", - "0.0", - "0.0019017824096583544" - ], - [ - "7935", - "0.003269834524341909", - "1.758150949436601", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004643312744525563", - "3.5124589142877496", - "0.0", - "0.0", - "0.0018963563041582549" - ], - [ - "7936", - "0.0032606539819188835", - "1.7581336636311748", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004630284095775758", - "3.512435157539985", - "0.0", - "0.0", - "0.0018910238680620085" - ], - [ - "7937", - "0.003251609024802925", - "1.7581166490809386", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004617442205394592", - "3.512411762388714", - "0.0", - "0.0", - "0.0018857758442112574" - ], - [ - "7938", - "0.0032425785978705537", - "1.7580996602748777", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004604621493206299", - "3.512388403729227", - "0.0", - "0.0", - "0.0018805357025348083" - ], - [ - "7939", - "0.003233583782155386", - "1.7580827400499301", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004591850765004124", - "3.512365138232617", - "0.0", - "0.0", - "0.0018753167993066477" - ], - [ - "7940", - "0.0032244145308279524", - "1.7580654617649019", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004578842944003338", - "3.5123414013599494", - "0.0", - "0.0", - "0.0018699861176525666" - ], - [ - "7941", - "0.0032154701027535208", - "1.7580486364069559", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004566143699966886", - "3.5123182662080175", - "0.0", - "0.0", - "0.0018647965055401557" - ], - [ - "7942", - "0.0032065048796351197", - "1.7580317651259563", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004553417324542554", - "3.512295072662064", - "0.0", - "0.0", - "0.0018595924347276852" - ], - [ - "7943", - "0.0031976101332392413", - "1.758015033242501", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004540788585853387", - "3.512272065986393", - "0.0", - "0.0", - "0.001854431680625095" - ], - [ - "7944", - "0.0031887400609896923", - "1.7579983477732484", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004528194866716941", - "3.5122491231116135", - "0.0", - "0.0", - "0.0018492852552624427" - ], - [ - "7945", - "0.003179753129844204", - "1.7579814213180778", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004515442701303303", - "3.5122258636923402", - "0.0", - "0.0", - "0.0018440635583851042" - ], - [ - "7946", - "0.0031706906395868634", - "1.7579643375809177", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004502588599640002", - "3.51220239860528", - "0.0", - "0.0", - "0.0018387926795337254" - ], - [ - "7947", - "0.0031618296790220145", - "1.7579476595303296", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004490011215601666", - "3.5121794726863014", - "0.0", - "0.0", - "0.001833648142442363" - ], - [ - "7948", - "0.003151928522793201", - "1.7579288644182658", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0044760136382976535", - "3.512153748136956", - "0.0", - "0.0", - "0.001827843407288748" - ], - [ - "7949", - "0.0031431851738871136", - "1.7579124179840961", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00446359954364252", - "3.5121311333800316", - "0.0", - "0.0", - "0.0018227708041317077" - ], - [ - "7950", - "0.0031344345557409673", - "1.7578959531347842", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00445117679181044", - "3.5121084966058027", - "0.0", - "0.0", - "0.0018176923196714944" - ], - [ - "7951", - "0.0031257383728826586", - "1.757879595228447", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004438829708391866", - "3.512086003676419", - "0.0", - "0.0", - "0.001812647037373452" - ], - [ - "7952", - "0.0031154693127969967", - "1.7578599010704614", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004424382887368367", - "3.51205918786679", - "0.0", - "0.0", - "0.0018065557382256263" - ], - [ - "7953", - "0.0031066805422812027", - "1.7578433031777425", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00441192758720668", - "3.512036411030889", - "0.0", - "0.0", - "0.0018014334973557246" - ], - [ - "7954", - "0.0030975162931859497", - "1.7578259844279946", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0043989443054858685", - "3.5120126531626594", - "0.0", - "0.0", - "0.0017960882808860303" - ], - [ - "7955", - "0.003088923888686", - "1.7578098233890311", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004386743932072474", - "3.511990429694745", - "0.0", - "0.0", - "0.0017911038452995262" - ], - [ - "7956", - "0.003080355319571622", - "1.7577937071806558", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004374577390685018", - "3.5119682678562842", - "0.0", - "0.0", - "0.0017861332484582259" - ], - [ - "7957", - "0.0030691334481632395", - "1.7577721983651287", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00435878553962226", - "3.511938972256033", - "0.0", - "0.0", - "0.0017794813567042192" - ], - [ - "7958", - "0.003060619781112648", - "1.7577561865332594", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004346696532384185", - "3.511916953125064", - "0.0", - "0.0", - "0.0017745430298411113" - ], - [ - "7959", - "0.0030519162905161936", - "1.757739785722997", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004334349272969698", - "3.5118944214633605", - "0.0", - "0.0", - "0.0017694833080626885" - ], - [ - "7960", - "0.0031403226628721626", - "1.7579059970220576", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004459901658860738", - "3.5121230305483344", - "0.0", - "0.0", - "0.001820743666883587" - ], - [ - "7961", - "0.0032276462067479263", - "1.758070221615123", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004583897637446687", - "3.512348870756234", - "0.0", - "0.0", - "0.001871394776049165" - ], - [ - "7962", - "0.003319136309044497", - "1.7582422865459697", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0047138070349918475", - "3.512585487710602", - "0.0", - "0.0", - "0.0019244655830971465" - ], - [ - "7963", - "0.003404011493647755", - "1.758401909412006", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004834323008416604", - "3.512804993948477", - "0.0", - "0.0", - "0.001973699978878905" - ], - [ - "7964", - "0.0034847653914130017", - "1.7585537824701059", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004948985640713585", - "3.5130138406174978", - "0.0", - "0.0", - "0.002020545142112418" - ], - [ - "7965", - "0.0035664664935906192", - "1.7587074383173324", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005064991638766334", - "3.513225136233389", - "0.0", - "0.0", - "0.0020679413484149052" - ], - [ - "7966", - "0.0036535517824070073", - "1.7588712077272863", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005188645779505074", - "3.51345034616623", - "0.0", - "0.0", - "0.002118457785308941" - ], - [ - "7967", - "0.0037388757061511085", - "1.7590314151856974", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005309885954569591", - "3.513670830886188", - "0.0", - "0.0", - "0.002167865457732626" - ], - [ - "7968", - "0.0038262921124767764", - "1.7591957836920418", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005434016142659054", - "3.513896877432882", - "0.0", - "0.0", - "0.0022185680822944987" - ], - [ - "7969", - "0.003913696554811901", - "1.759360157300606", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005558118343897774", - "3.514122909743625", - "0.0", - "0.0", - "0.002269274765726028" - ], - [ - "7970", - "0.004002136477378963", - "1.759526441668272", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005683702447999496", - "3.5143515932450247", - "0.0", - "0.0", - "0.0023205705067584296" - ], - [ - "7971", - "0.004091324507956393", - "1.7596941427621864", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005810343989312686", - "3.514582216020987", - "0.0", - "0.0", - "0.002372305026600098" - ], - [ - "7972", - "0.004193257160197214", - "1.7598858272277493", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005955073621675151", - "3.5148458046322393", - "0.0", - "0.0", - "0.002431440698719276" - ], - [ - "7973", - "0.004313577791716951", - "1.7601118762431693", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006125985029501624", - "3.515156795180545", - "0.0", - "0.0", - "0.0025011705539322786" - ], - [ - "7974", - "0.004437162340654705", - "1.7603442375915965", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006301466520713116", - "3.515476339772695", - "0.0", - "0.0", - "0.002572858160596293" - ], - [ - "7975", - "0.004558184692666717", - "1.7605717589283951", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006473315460530563", - "3.5157892405029028", - "0.0", - "0.0", - "0.0026430539248028717" - ], - [ - "7976", - "0.004663933594343018", - "1.7607706078575622", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0066234598017168396", - "3.516062677102609", - "0.0", - "0.0", - "0.002704407386969195" - ], - [ - "7977", - "0.0047123976167359125", - "1.7608615162857708", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006692348093636244", - "3.5161878401477304", - "0.0", - "0.0", - "0.002732447139835581" - ], - [ - "7978", - "0.0047652768513896954", - "1.7609609536556712", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006767424577305037", - "3.5163245717667486", - "0.0", - "0.0", - "0.0027631291254743527" - ], - [ - "7979", - "0.004817719408051866", - "1.7610593548547082", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006841956643620856", - "3.5164600285457053", - "0.0", - "0.0", - "0.002793482172482878" - ], - [ - "7980", - "0.00486995511483797", - "1.7611575787942757", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006916119741062552", - "3.5165950925776888", - "0.0", - "0.0", - "0.0028237904886133885" - ], - [ - "7981", - "0.004921662830749111", - "1.7612547974005717", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006989537191382901", - "3.5167287822994906", - "0.0", - "0.0", - "0.0028537884701153216" - ], - [ - "7982", - "0.00496319970075037", - "1.7613313432779214", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0070490610829428545", - "3.5168351292434292", - "0.0", - "0.0", - "0.0028773383185578846" - ], - [ - "7983", - "0.0050139034450480255", - "1.7614263612653132", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007121162903170184", - "3.5169660108096483", - "0.0", - "0.0", - "0.002906643986925867" - ], - [ - "7984", - "0.005063990244400767", - "1.7615197751142886", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007192545313301836", - "3.5170949967825553", - "0.0", - "0.0", - "0.0029354351754996995" - ], - [ - "7985", - "0.005115891666740162", - "1.7616173145940333", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007266251486932599", - "3.517229155595159", - "0.0", - "0.0", - "0.002965531846547726" - ], - [ - "7986", - "0.005164238000570553", - "1.7617076914886263", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007335078735621917", - "3.517353799284301", - "0.0", - "0.0", - "0.002993397265519189" - ], - [ - "7987", - "0.005214929721894802", - "1.7618029810266345", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007407057877787324", - "3.5174848457618126", - "0.0", - "0.0", - "0.0030228015660022805" - ], - [ - "7988", - "0.005265534004655961", - "1.7618981000331226", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007478914625291397", - "3.5176156613929788", - "0.0", - "0.0", - "0.003052153384020525" - ], - [ - "7989", - "0.005315716453096398", - "1.7619923811447613", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0075501878656288645", - "3.5177453555447094", - "0.0", - "0.0", - "0.003081245040563932" - ], - [ - "7990", - "0.0053646819161814515", - "1.7620841666676668", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0076198061546155485", - "3.5178717626176152", - "0.0", - "0.0", - "0.003109557677747355" - ], - [ - "7991", - "0.005413812821718614", - "1.7621763826910517", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00768961674051503", - "3.517998677470745", - "0.0", - "0.0", - "0.0031380089029221974" - ], - [ - "7992", - "0.005463749306181995", - "1.762270248318261", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007760522969685191", - "3.518127765579988", - "0.0", - "0.0", - "0.0031669756426787985" - ], - [ - "7993", - "0.005514976657301728", - "1.762366540381532", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007833261718907978", - "3.5182601899878376", - "0.0", - "0.0", - "0.0031966915956954793" - ], - [ - "7994", - "0.005564891671421921", - "1.7624602125375475", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007904190744803953", - "3.518389117941203", - "0.0", - "0.0", - "0.00322559259803989" - ], - [ - "7995", - "0.005636544410279966", - "1.7625940742366284", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008006221749441383", - "3.5185737841785953", - "0.0", - "0.0", - "0.003266867071118547" - ], - [ - "7996", - "0.005717900018846143", - "1.7627468783137685", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008121780173311536", - "3.518784006232482", - "0.0", - "0.0", - "0.0033140198643807515" - ], - [ - "7997", - "0.00579550540045934", - "1.762892341888494", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008232115568107446", - "3.518984335751653", - "0.0", - "0.0", - "0.0033588952328112323" - ], - [ - "7998", - "0.005875472520199543", - "1.7630424068104478", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008345746090383452", - "3.519190878133267", - "0.0", - "0.0", - "0.003405198950015633" - ], - [ - "7999", - "0.005987967535355416", - "1.7632538246068485", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00850548580068335", - "3.5194816427080577", - "0.0", - "0.0", - "0.003470449270027483" - ], - [ - "8000", - "0.0061045263599225266", - "1.763472884779641", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008670992058149966", - "3.5197829110449086", - "0.0", - "0.0", - "0.0035380606616950867" - ] -]; -export const HISTORIC_VAPY_10_000 = [ - [ - "8001", - "0.006222651516112901", - "1.7636948890890483", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00883872002834142", - "3.5200882246629464", - "0.0", - "0.0", - "0.0036065830038843815" - ], - [ - "8002", - "0.00633636173304584", - "1.7639085426354542", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009000195856365209", - "3.5203820878453125", - "0.0", - "0.0", - "0.0036725276097264704" - ], - [ - "8003", - "0.006451982058294945", - "1.7641257515532696", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009164393882246252", - "3.5206808613616274", - "0.0", - "0.0", - "0.0037395702343436385" - ], - [ - "8004", - "0.006565267773822717", - "1.7643384587900852", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009325315230264258", - "3.520973520589821", - "0.0", - "0.0", - "0.003805220317381177" - ], - [ - "8005", - "0.0066821899797761125", - "1.764558154046884", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009491343439669642", - "3.5212756790112345", - "0.0", - "0.0", - "0.0038730365198825826" - ], - [ - "8006", - "0.006809221414301611", - "1.7647968121971136", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00967173551289155", - "3.5216039367820335", - "0.0", - "0.0", - "0.003946707315711672" - ], - [ - "8007", - "0.006971111617511709", - "1.7651008571680007", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009901661866610137", - "3.5220221962265383", - "0.0", - "0.0", - "0.004040561368413281" - ], - [ - "8008", - "0.00707291436942098", - "1.7652919488000625", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010046282746075347", - "3.522285140530091", - "0.0", - "0.0", - "0.004099545992766612" - ], - [ - "8009", - "0.007180669608361476", - "1.7654941030511282", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010199396999636547", - "3.5225633818330766", - "0.0", - "0.0", - "0.004161942217086406" - ], - [ - "8010", - "0.007291017619650105", - "1.7657014259994763", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010356085886998328", - "3.5228485208043643", - "0.0", - "0.0", - "0.004225949352301882" - ], - [ - "8011", - "0.007383476624835835", - "1.7658751510268118", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010487367442530579", - "3.523087440486954", - "0.0", - "0.0", - "0.004279585807141091" - ], - [ - "8012", - "0.007485115725448066", - "1.7660661520754772", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010631672523080572", - "3.523350097986259", - "0.0", - "0.0", - "0.00433855892781556" - ], - [ - "8013", - "0.007594016154879282", - "1.7662707986492487", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010786285240988057", - "3.5236315174652715", - "0.0", - "0.0", - "0.004401747068770507" - ], - [ - "8014", - "0.0077023371552537466", - "1.766474314730822", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010940088114392559", - "3.523911408547541", - "0.0", - "0.0", - "0.0044645861961149355" - ], - [ - "8015", - "0.007807683655685766", - "1.7666720555100364", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01108973173048589", - "3.5241834848814015", - "0.0", - "0.0", - "0.0045256355808856435" - ], - [ - "8016", - "0.007911234398312197", - "1.766866372987244", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011236841324151656", - "3.5244508851484624", - "0.0", - "0.0", - "0.00458562747247274" - ], - [ - "8017", - "0.008016929349109298", - "1.767064988445246", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011386898371475293", - "3.5247240049403827", - "0.0", - "0.0", - "0.004646960326743303" - ], - [ - "8018", - "0.0081229436231727", - "1.7672642039321589", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01153740696146347", - "3.524997947068183", - "0.0", - "0.0", - "0.0047084802848819315" - ], - [ - "8019", - "0.008255909012157269", - "1.767513970954268", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011726208501947052", - "3.5253414642031187", - "0.0", - "0.0", - "0.004785609522367486" - ], - [ - "8020", - "0.008420077736472176", - "1.7678221881969065", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011959370357690773", - "3.52576547908126", - "0.0", - "0.0", - "0.004880785115253578" - ], - [ - "8021", - "0.008584295278958405", - "1.768130767752838", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012192501528037502", - "3.526189796147076", - "0.0", - "0.0", - "0.004976089029879307" - ], - [ - "8022", - "0.008747928283502255", - "1.7684382665034786", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012424792305566116", - "3.526612608054631", - "0.0", - "0.0", - "0.0050710642614383945" - ], - [ - "8023", - "0.008910251881275746", - "1.7687429644489239", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012655340244211296", - "3.5270318002894765", - "0.0", - "0.0", - "0.005165163518340195" - ], - [ - "8024", - "0.009074112620521988", - "1.769050867602465", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012887954009107838", - "3.527455171465885", - "0.0", - "0.0", - "0.00526027123193614" - ], - [ - "8025", - "0.009235606953583522", - "1.7693543512729983", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01311719463423662", - "3.527872440283621", - "0.0", - "0.0", - "0.005354019272930424" - ], - [ - "8026", - "0.009400427211206078", - "1.7696639544812958", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013351198230046683", - "3.528298207747202", - "0.0", - "0.0", - "0.005449656192365473" - ], - [ - "8027", - "0.009562678373103628", - "1.769968636770769", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013581583676634722", - "3.528717267898954", - "0.0", - "0.0", - "0.005543773069572535" - ], - [ - "8028", - "0.009724734569280078", - "1.770273131237032", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0138116250102485", - "3.529135938357185", - "0.0", - "0.0", - "0.005637844128311659" - ], - [ - "8029", - "0.009890288825153647", - "1.7705841658147796", - "0.0", - "0.0", - "0.0", - "0.0", - "0.014046639025292091", - "3.529563617309503", - "0.0", - "0.0", - "0.005733938625015205" - ], - [ - "8030", - "0.01003683275394383", - "1.7708593977610858", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01425469384708423", - "3.5299421221473604", - "0.0", - "0.0", - "0.005818971660803431" - ], - [ - "8031", - "0.010187946461485535", - "1.7711432448925513", - "0.0", - "0.0", - "0.0", - "0.0", - "0.014469221486408645", - "3.530332446482433", - "0.0", - "0.0", - "0.005906671436562425" - ], - [ - "8032", - "0.010351451102133823", - "1.7714503436072717", - "0.0", - "0.0", - "0.0", - "0.0", - "0.014701343875616628", - "3.530754754399327", - "0.0", - "0.0", - "0.006001558328651019" - ], - [ - "8033", - "0.010515255934047011", - "1.771758110379771", - "0.0", - "0.0", - "0.0", - "0.0", - "0.014933851256141587", - "3.5311779013795235", - "0.0", - "0.0", - "0.006096660611952435" - ], - [ - "8034", - "0.010678841736967738", - "1.7720654854738167", - "0.0", - "0.0", - "0.0", - "0.0", - "0.015166036405480235", - "3.5316004893088846", - "0.0", - "0.0", - "0.006191647068455242" - ], - [ - "8035", - "0.010649050401597476", - "1.7720095007765932", - "0.0", - "0.0", - "0.0", - "0.0", - "0.015123755027080134", - "3.5315235255447406", - "0.0", - "0.0", - "0.006174345776114816" - ], - [ - "8036", - "0.010616263273921844", - "1.771947465248651", - "0.0", - "0.0", - "0.0", - "0.0", - "0.015077370605630218", - "3.5314385378850393", - "0.0", - "0.0", - "0.006155155942213473" - ], - [ - "8037", - "0.010586843082831329", - "1.7718921442384348", - "0.0", - "0.0", - "0.0", - "0.0", - "0.015035627621270422", - "3.5313625096840373", - "0.0", - "0.0", - "0.006138058544392238" - ], - [ - "8038", - "0.010557270054579642", - "1.7718365493478405", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01499366286431045", - "3.5312860954222085", - "0.0", - "0.0", - "0.006120877244848834" - ], - [ - "8039", - "0.010527965731005146", - "1.7717814856909675", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01495207003935863", - "3.53121039287026", - "0.0", - "0.0", - "0.006103861422651661" - ], - [ - "8040", - "0.010497096732664008", - "1.7717232441668638", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01490834034727044", - "3.531130487484698", - "0.0", - "0.0", - "0.006085853118057577" - ], - [ - "8041", - "0.010466368155787487", - "1.771664719157269", - "0.0", - "0.0", - "0.0", - "0.0", - "0.014865003340810807", - "3.531050575041373", - "0.0", - "0.0", - "0.006067732970764169" - ], - [ - "8042", - "0.010441949070009638", - "1.7716187001566237", - "0.0", - "0.0", - "0.0", - "0.0", - "0.014830391660271438", - "3.53098740104307", - "0.0", - "0.0", - "0.006053506479747837" - ], - [ - "8043", - "0.010407233882755279", - "1.771552631129413", - "0.0", - "0.0", - "0.0", - "0.0", - "0.014781414661950073", - "3.5308971533915856", - "0.0", - "0.0", - "0.006033053103560485" - ], - [ - "8044", - "0.010378284404735398", - "1.771498230676621", - "0.0", - "0.0", - "0.0", - "0.0", - "0.014740326036177235", - "3.530822364023932", - "0.0", - "0.0", - "0.006016242773293561" - ], - [ - "8045", - "0.01035160923859114", - "1.7714475703708858", - "0.0", - "0.0", - "0.0", - "0.0", - "0.014702653923039155", - "3.53075308960124", - "0.0", - "0.0", - "0.006000564554143124" - ], - [ - "8046", - "0.01041368262527457", - "1.771564187063472", - "0.0", - "0.0", - "0.0", - "0.0", - "0.014790766251356322", - "3.530913433593658", - "0.0", - "0.0", - "0.006036598999192818" - ], - [ - "8047", - "0.010578959484555105", - "1.7718747220075672", - "0.0", - "0.0", - "0.0", - "0.0", - "0.015025360569314606", - "3.5313403823560043", - "0.0", - "0.0", - "0.006132558399795606" - ], - [ - "8048", - "0.01074343648680693", - "1.772183575888327", - "0.0", - "0.0", - "0.0", - "0.0", - "0.015258878209922618", - "3.53176513780097", - "0.0", - "0.0", - "0.006227994763691242" - ], - [ - "8049", - "0.010897087599087632", - "1.7724720625050634", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01547703536806064", - "3.5321619037697247", - "0.0", - "0.0", - "0.006317139830114624" - ], - [ - "8050", - "0.011059801011689862", - "1.7727776081790587", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01570803960543489", - "3.5325820943630273", - "0.0", - "0.0", - "0.006411562417944837" - ], - [ - "8051", - "0.01122867054293912", - "1.7730946818332347", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0159477905176613", - "3.5330181539079377", - "0.0", - "0.0", - "0.0065095505682169425" - ], - [ - "8052", - "0.011404118593096771", - "1.773424255191909", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01619682412615368", - "3.5334712929612926", - "0.0", - "0.0", - "0.006611413060039861" - ], - [ - "8053", - "0.011444248718829911", - "1.7734998002517215", - "0.0", - "0.0", - "0.0", - "0.0", - "0.016253727468201258", - "3.5335750474676906", - "0.0", - "0.0", - "0.006634769969458564" - ], - [ - "8054", - "0.01137586174809033", - "1.7733685555163743", - "0.0", - "0.0", - "0.0", - "0.0", - "0.016157642659450848", - "3.533396543242011", - "0.0", - "0.0", - "0.006594080836729813" - ], - [ - "8055", - "0.011344956323431627", - "1.7733103882275447", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01611381500481753", - "3.533316646481171", - "0.0", - "0.0", - "0.006576097642045727" - ], - [ - "8056", - "0.011443404077784419", - "1.7734952439789846", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01625357857708696", - "3.5335708601843105", - "0.0", - "0.0", - "0.006633229578481875" - ], - [ - "8057", - "0.011606250190008542", - "1.7738011218949616", - "0.0", - "0.0", - "0.0", - "0.0", - "0.016484727561014583", - "3.5339914276186892", - "0.0", - "0.0", - "0.0067277728190025" - ], - [ - "8058", - "0.011769004593617627", - "1.774106835775902", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01671573919750458", - "3.534411757200843", - "0.0", - "0.0", - "0.006822269989730676" - ], - [ - "8059", - "0.011929983949198818", - "1.7744090385427262", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01694428970803061", - "3.5348273765896714", - "0.0", - "0.0", - "0.006915678190367024" - ], - [ - "8060", - "0.012081772451993746", - "1.7746938378378858", - "0.0", - "0.0", - "0.0", - "0.0", - "0.017159840616793987", - "3.535219159879671", - "0.0", - "0.0", - "0.007003704287193505" - ], - [ - "8061", - "0.012234752392343173", - "1.7749811655768153", - "0.0", - "0.0", - "0.0", - "0.0", - "0.017376976121934794", - "3.5356142105419606", - "0.0", - "0.0", - "0.007092528662751552" - ], - [ - "8062", - "0.012387510629310247", - "1.7752680977260222", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01759378583031622", - "3.5360086969663413", - "0.0", - "0.0", - "0.007181235428304274" - ], - [ - "8063", - "0.012539062747253036", - "1.7755526052780028", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01780893624475013", - "3.5363999555202437", - "0.0", - "0.0", - "0.0072691892497559404" - ], - [ - "8064", - "0.012682366586758483", - "1.7758204447979051", - "0.0", - "0.0", - "0.0", - "0.0", - "0.018012792174773466", - "3.5367691149740668", - "0.0", - "0.0", - "0.007351940998743499" - ], - [ - "8065", - "0.012836654206803477", - "1.7761102080709392", - "0.0", - "0.0", - "0.0", - "0.0", - "0.018231776136997807", - "3.537167505766709", - "0.0", - "0.0", - "0.007441532276609149" - ], - [ - "8066", - "0.012981299251931616", - "1.7763803478633948", - "0.0", - "0.0", - "0.0", - "0.0", - "0.018437606079574974", - "3.5375399700277987", - "0.0", - "0.0", - "0.007524992424288261" - ], - [ - "8067", - "0.012942744478788315", - "1.7763075884444843", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01838300968269106", - "3.537440181480921", - "0.0", - "0.0", - "0.007502479274885573" - ], - [ - "8068", - "0.012906841302564726", - "1.776240159519325", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01833205248780108", - "3.5373474761246793", - "0.0", - "0.0", - "0.007481630117328372" - ], - [ - "8069", - "0.012871037724428715", - "1.776172917645207", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01828123644627112", - "3.5372550276214625", - "0.0", - "0.0", - "0.007460839002586308" - ], - [ - "8070", - "0.01283704984047906", - "1.7761086076701247", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01823316627330466", - "3.537166944061762", - "0.0", - "0.0", - "0.00744093340765346" - ], - [ - "8071", - "0.012979312947520786", - "1.77637578344945", - "0.0", - "0.0", - "0.0", - "0.0", - "0.018435081827119167", - "3.537534277736411", - "0.0", - "0.0", - "0.007523544067922405" - ], - [ - "8072", - "0.013135066852280679", - "1.7766682954516264", - "0.0", - "0.0", - "0.0", - "0.0", - "0.018656141296129577", - "3.537936439872526", - "0.0", - "0.0", - "0.0076139924084317806" - ], - [ - "8073", - "0.013289987344715244", - "1.776959180505098", - "0.0", - "0.0", - "0.0", - "0.0", - "0.018876035887931363", - "3.538336402428727", - "0.0", - "0.0", - "0.007703938801499125" - ], - [ - "8074", - "0.013475914014480565", - "1.777308067079427", - "0.0", - "0.0", - "0.0", - "0.0", - "0.019140012364418785", - "3.538816260101163", - "0.0", - "0.0", - "0.007811815664542346" - ], - [ - "8075", - "0.013682291268720033", - "1.777695568893683", - "0.0", - "0.0", - "0.0", - "0.0", - "0.019432932885901654", - "3.5393490509669085", - "0.0", - "0.0", - "0.007931649651538412" - ], - [ - "8076", - "0.013631229800942918", - "1.7775992636769247", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01936061183322827", - "3.5392169391543464", - "0.0", - "0.0", - "0.007901847768657563" - ], - [ - "8077", - "0.013592586642324881", - "1.777526575935313", - "0.0", - "0.0", - "0.0", - "0.0", - "0.019305809985922923", - "3.5391170891620187", - "0.0", - "0.0", - "0.00787936329872684" - ], - [ - "8078", - "0.013554856676012052", - "1.7774557168544574", - "0.0", - "0.0", - "0.0", - "0.0", - "0.019252263719176373", - "3.5390196733707384", - "0.0", - "0.0", - "0.00785744963284773" - ], - [ - "8079", - "0.013517241939506907", - "1.7773850758670875", - "0.0", - "0.0", - "0.0", - "0.0", - "0.019198880162742942", - "3.538922555882287", - "0.0", - "0.0", - "0.00783560371627087" - ], - [ - "8080", - "0.013479587959102951", - "1.7773143424685338", - "0.0", - "0.0", - "0.0", - "0.0", - "0.019145447299049108", - "3.5388253240773926", - "0.0", - "0.0", - "0.007813728619156794" - ], - [ - "8081", - "0.013442195590104454", - "1.7772441208383405", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01909237826124996", - "3.538728781206305", - "0.0", - "0.0", - "0.007792012918958948" - ], - [ - "8082", - "0.013404568708227697", - "1.7771734129479648", - "0.0", - "0.0", - "0.0", - "0.0", - "0.019038992377967953", - "3.538631601517635", - "0.0", - "0.0", - "0.007770145038487439" - ], - [ - "8083", - "0.0133671915797789", - "1.777103192020507", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01898595439130102", - "3.5385350784377496", - "0.0", - "0.0", - "0.00774842876825678" - ], - [ - "8084", - "0.013330111009095272", - "1.7770335561353432", - "0.0", - "0.0", - "0.0", - "0.0", - "0.018933327133636314", - "3.5384393396997837", - "0.0", - "0.0", - "0.00772689488455423" - ], - [ - "8085", - "0.01329247273803589", - "1.7769627814003555", - "0.0", - "0.0", - "0.0", - "0.0", - "0.018879940479674437", - "3.5383420988440855", - "0.0", - "0.0", - "0.007705004996397346" - ], - [ - "8086", - "0.013255525877295626", - "1.776893385268714", - "0.0", - "0.0", - "0.0", - "0.0", - "0.018827506561271325", - "3.5382466969821755", - "0.0", - "0.0", - "0.007683545193319926" - ], - [ - "8087", - "0.013218146220938535", - "1.776823100865573", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01877448485500413", - "3.538150126309404", - "0.0", - "0.0", - "0.007661807586872941" - ], - [ - "8088", - "0.013181320591605096", - "1.776753920276258", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01872222684507851", - "3.538055028587247", - "0.0", - "0.0", - "0.007640414338131681" - ], - [ - "8089", - "0.013144431610051837", - "1.7766845995635796", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01866988617901061", - "3.537959752663121", - "0.0", - "0.0", - "0.0076189770410930654" - ], - [ - "8090", - "0.013100232604753955", - "1.7766011019228152", - "0.0", - "0.0", - "0.0", - "0.0", - "0.018607328860411953", - "3.537845298685291", - "0.0", - "0.0", - "0.00759313634909596" - ], - [ - "8091", - "0.01306373604508995", - "1.7765325428459813", - "0.0", - "0.0", - "0.0", - "0.0", - "0.018555535954123764", - "3.5377510519225486", - "0.0", - "0.0", - "0.0075719361360561364" - ], - [ - "8092", - "0.013026705559821982", - "1.7764628976686827", - "0.0", - "0.0", - "0.0", - "0.0", - "0.018503014509739377", - "3.537655369864161", - "0.0", - "0.0", - "0.007550396609904586" - ], - [ - "8093", - "0.012989032213989069", - "1.7763920968869016", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01844956215161496", - "3.5375580625174647", - "0.0", - "0.0", - "0.007528502276363179" - ], - [ - "8094", - "0.01296076676520942", - "1.7763377082418164", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01840990631152302", - "3.5374841973661066", - "0.0", - "0.0", - "0.00751162721889582" - ], - [ - "8095", - "0.013175633910480003", - "1.776741119410694", - "0.0", - "0.0", - "0.0", - "0.0", - "0.018714905780259628", - "3.5380389119256055", - "0.0", - "0.0", - "0.007636362040700378" - ], - [ - "8096", - "0.013390145531550957", - "1.7771438966324549", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01901938133512665", - "3.538592719948543", - "0.0", - "0.0", - "0.007760909727975261" - ], - [ - "8097", - "0.013597755650733474", - "1.777532815123737", - "0.0", - "0.0", - "0.0", - "0.0", - "0.019314372165199056", - "3.539128090980431", - "0.0", - "0.0", - "0.00788113913626789" - ], - [ - "8098", - "0.013809738117597024", - "1.7779308193768013", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0196152520841728", - "3.5396753311694695", - "0.0", - "0.0", - "0.008004224151021248" - ], - [ - "8099", - "0.014023009683242067", - "1.7783310783594903", - "0.0", - "0.0", - "0.0", - "0.0", - "0.019918012972765787", - "3.540225776093686", - "0.0", - "0.0", - "0.008128006393718345" - ], - [ - "8100", - "0.014236975115030422", - "1.7787326889475765", - "0.0", - "0.0", - "0.0", - "0.0", - "0.020221734085941183", - "3.5407780339746724", - "0.0", - "0.0", - "0.008252216144119664" - ], - [ - "8101", - "0.014445150616890003", - "1.7791234072792808", - "0.0", - "0.0", - "0.0", - "0.0", - "0.020517238133311032", - "3.541315320219947", - "0.0", - "0.0", - "0.008373063100468972" - ], - [ - "8102", - "0.01465340161480421", - "1.779514356045308", - "0.0", - "0.0", - "0.0", - "0.0", - "0.02081281101818114", - "3.541852850604018", - "0.0", - "0.0", - "0.008493992211427277" - ], - [ - "8103", - "0.014861626921412135", - "1.7799053341311262", - "0.0", - "0.0", - "0.0", - "0.0", - "0.021108313062834113", - "3.5423903563937897", - "0.0", - "0.0", - "0.008614940779990156" - ], - [ - "8104", - "0.015069291225407518", - "1.780295258790243", - "0.0", - "0.0", - "0.0", - "0.0", - "0.02140301205587585", - "3.542926403348925", - "0.0", - "0.0", - "0.008735570394939184" - ], - [ - "8105", - "0.015272744623169972", - "1.780676744694302", - "0.0", - "0.0", - "0.0", - "0.0", - "0.021691916777954578", - "3.543451210804489", - "0.0", - "0.0", - "0.008853572468385366" - ], - [ - "8106", - "0.015382077092720322", - "1.780882212630418", - "0.0", - "0.0", - "0.0", - "0.0", - "0.021847002607013645", - "3.5437335427515695", - "0.0", - "0.0", - "0.008917151578427002" - ], - [ - "8107", - "0.015339722962500286", - "1.7808026674010322", - "0.0", - "0.0", - "0.0", - "0.0", - "0.021786906464521895", - "3.5436242052156675", - "0.0", - "0.0", - "0.008892539460478676" - ], - [ - "8108", - "0.015403480930576606", - "1.780922373458245", - "0.0", - "0.0", - "0.0", - "0.0", - "0.021877385666125394", - "3.5437887713020793", - "0.0", - "0.0", - "0.00892957619502782" - ], - [ - "8109", - "0.015371261626334395", - "1.7808623374888892", - "0.0", - "0.0", - "0.0", - "0.0", - "0.021831501907308423", - "3.5437059180894597", - "0.0", - "0.0", - "0.008911021345360367" - ], - [ - "8110", - "0.015507011636303893", - "1.7811171469628109", - "0.0", - "0.0", - "0.0", - "0.0", - "0.022024165836047407", - "3.544056259002643", - "0.0", - "0.0", - "0.00898985743656038" - ], - [ - "8111", - "0.01571171650410907", - "1.7815011723392131", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0223147650609066", - "3.544584402885158", - "0.0", - "0.0", - "0.00910866794731154" - ], - [ - "8112", - "0.01591418030663689", - "1.78188130114536", - "0.0", - "0.0", - "0.0", - "0.0", - "0.022602067442666213", - "3.545106962469362", - "0.0", - "0.0", - "0.00922629317060757" - ], - [ - "8113", - "0.016118398905096008", - "1.782264384406633", - "0.0", - "0.0", - "0.0", - "0.0", - "0.022891973634373335", - "3.545633811148792", - "0.0", - "0.0", - "0.009344824175818684" - ], - [ - "8114", - "0.016322993789222032", - "1.7826484699269203", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0231823024497557", - "3.5461618205251355", - "0.0", - "0.0", - "0.009463685128688365" - ], - [ - "8115", - "0.0165216692149824", - "1.7830215018233269", - "0.0", - "0.0", - "0.0", - "0.0", - "0.02346420402955737", - "3.546674583193713", - "0.0", - "0.0", - "0.009579134400407427" - ], - [ - "8116", - "0.01670505541710948", - "1.7833656139910785", - "0.0", - "0.0", - "0.0", - "0.0", - "0.023724481324354677", - "3.547147733480249", - "0.0", - "0.0", - "0.009685629509864282" - ], - [ - "8117", - "0.016894530312377087", - "1.783721360347257", - "0.0", - "0.0", - "0.0", - "0.0", - "0.02399332055670361", - "3.547636725636176", - "0.0", - "0.0", - "0.009795740068050564" - ], - [ - "8118", - "0.017081950329952373", - "1.7840729503181931", - "0.0", - "0.0", - "0.0", - "0.0", - "0.024259344090166203", - "3.548120204486989", - "0.0", - "0.0", - "0.009904556569738541" - ], - [ - "8119", - "0.017279483954049275", - "1.784443784461738", - "0.0", - "0.0", - "0.0", - "0.0", - "0.024539620674316535", - "3.548629947019239", - "0.0", - "0.0", - "0.010019347233782012" - ], - [ - "8120", - "0.017231550620952128", - "1.7843537857751177", - "0.0", - "0.0", - "0.0", - "0.0", - "0.024471613971141344", - "3.5485062458559002", - "0.0", - "0.0", - "0.00999148727076291" - ], - [ - "8121", - "0.0171792106000186", - "1.7842549076841716", - "0.0", - "0.0", - "0.0", - "0.0", - "0.02439756899991056", - "3.5483707628196743", - "0.0", - "0.0", - "0.009960852200126644" - ], - [ - "8122", - "0.017131494730773012", - "1.7841653108953746", - "0.0", - "0.0", - "0.0", - "0.0", - "0.024329872329080144", - "3.548247617352896", - "0.0", - "0.0", - "0.009933117132465879" - ], - [ - "8123", - "0.017080986557833536", - "1.7840700547632742", - "0.0", - "0.0", - "0.0", - "0.0", - "0.02425836095746652", - "3.5481169837720845", - "0.0", - "0.0", - "0.009903612158200552" - ], - [ - "8124", - "0.017033532890334314", - "1.783980949475355", - "0.0", - "0.0", - "0.0", - "0.0", - "0.024191035833944705", - "3.547994513280121", - "0.0", - "0.0", - "0.009876029946723925" - ], - [ - "8125", - "0.016976597908149066", - "1.7838727788280673", - "0.0", - "0.0", - "0.0", - "0.0", - "0.024110705072713585", - "3.5478467197783194", - "0.0", - "0.0", - "0.009842490743584545" - ], - [ - "8126", - "0.016934318678829448", - "1.783792105243852", - "0.0", - "0.0", - "0.0", - "0.0", - "0.024051174940160625", - "3.547736734785839", - "0.0", - "0.0", - "0.009817462417498268" - ], - [ - "8127", - "0.017138830279423863", - "1.7841759169803562", - "0.0", - "0.0", - "0.0", - "0.0", - "0.024341400504825483", - "3.5482644090137", - "0.0", - "0.0", - "0.009936260054022242" - ], - [ - "8128", - "0.017330488462872995", - "1.7845351012883544", - "0.0", - "0.0", - "0.0", - "0.0", - "0.02461355822713758", - "3.5487585686749434", - "0.0", - "0.0", - "0.010047418698608411" - ], - [ - "8129", - "0.017530423290242448", - "1.7849104185148126", - "0.0", - "0.0", - "0.0", - "0.0", - "0.024897242696000105", - "3.549274478799918", - "0.0", - "0.0", - "0.010163603884484788" - ], - [ - "8130", - "0.017731138271988224", - "1.7852871988289765", - "0.0", - "0.0", - "0.0", - "0.0", - "0.02518202818751604", - "3.5497923911894222", - "0.0", - "0.0", - "0.010280248356460407" - ], - [ - "8131", - "0.0179369937352613", - "1.7856736557554929", - "0.0", - "0.0", - "0.0", - "0.0", - "0.02547409105398044", - "3.550323575676119", - "0.0", - "0.0", - "0.010399896416542168" - ], - [ - "8132", - "0.018144286854670268", - "1.7860627858668363", - "0.0", - "0.0", - "0.0", - "0.0", - "0.02576819590429755", - "3.5508584419343623", - "0.0", - "0.0", - "0.01052037780504299" - ], - [ - "8133", - "0.018351195178672914", - "1.7864510558943945", - "0.0", - "0.0", - "0.0", - "0.0", - "0.026061796713637543", - "3.5513922117654886", - "0.0", - "0.0", - "0.010640593643708285" - ], - [ - "8134", - "0.01830028906937816", - "1.7863554892957858", - "0.0", - "0.0", - "0.0", - "0.0", - "0.025989576134796192", - "3.551260861381069", - "0.0", - "0.0", - "0.010611002003960132" - ], - [ - "8135", - "0.018249019223746523", - "1.7862591662940375", - "0.0", - "0.0", - "0.0", - "0.0", - "0.02591686513466742", - "3.551128522139634", - "0.0", - "0.0", - "0.01058117331282563" - ], - [ - "8136", - "0.018198032244795", - "1.786163397756289", - "0.0", - "0.0", - "0.0", - "0.0", - "0.025844546729668242", - "3.5509969279549884", - "0.0", - "0.0", - "0.010551517759921757" - ], - [ - "8137", - "0.018147536350385324", - "1.7860685994549965", - "0.0", - "0.0", - "0.0", - "0.0", - "0.025772907526843115", - "3.5508666329093956", - "0.0", - "0.0", - "0.010522165173927534" - ], - [ - "8138", - "0.0179627612193378", - "1.785702186165163", - "0.0", - "0.0", - "0.0", - "0.0", - "0.025517666701710198", - "3.550376645948782", - "0.0", - "0.0", - "0.010407855736965397" - ], - [ - "8139", - "0.01791274641993502", - "1.7856083213575131", - "0.0", - "0.0", - "0.0", - "0.0", - "0.02544669732559527", - "3.5502476096371764", - "0.0", - "0.0", - "0.010378795514274773" - ], - [ - "8140", - "0.01785456749814898", - "1.7854973325899455", - "0.0", - "0.0", - "0.0", - "0.0", - "0.025364779714805122", - "3.55009628933442", - "0.0", - "0.0", - "0.010344355281492834" - ], - [ - "8141", - "0.01805577469012454", - "1.7858748214058378", - "0.0", - "0.0", - "0.0", - "0.0", - "0.025650329814836184", - "3.5506153110344023", - "0.0", - "0.0", - "0.010461219565412894" - ], - [ - "8142", - "0.01825463906525839", - "1.7862471515418084", - "0.0", - "0.0", - "0.0", - "0.0", - "0.02593281845881429", - "3.5511277628065634", - "0.0", - "0.0", - "0.010576459671702485" - ], - [ - "8143", - "0.01817955763656146", - "1.7861027912103624", - "0.0", - "0.0", - "0.0", - "0.0", - "0.025827503597862518", - "3.550931722798019", - "0.0", - "0.0", - "0.010531611675260403" - ], - [ - "8144", - "0.018126700362670268", - "1.7860027177504956", - "0.0", - "0.0", - "0.0", - "0.0", - "0.025752811472484684", - "3.5507947636007464", - "0.0", - "0.0", - "0.01050058925285585" - ], - [ - "8145", - "0.018322789138859367", - "1.7863704168452152", - "0.0", - "0.0", - "0.0", - "0.0", - "0.026031155340287083", - "3.5513004427921686", - "0.0", - "0.0", - "0.010614422937431648" - ], - [ - "8146", - "0.018273004496789255", - "1.7862770159433075", - "0.0", - "0.0", - "0.0", - "0.0", - "0.02596050407445623", - "3.551172026223153", - "0.0", - "0.0", - "0.010585504919122277" - ], - [ - "8147", - "0.01822333325297527", - "1.7861836337953145", - "0.0", - "0.0", - "0.0", - "0.0", - "0.02589008188926024", - "3.551043770133334", - "0.0", - "0.0", - "0.010556584616690299" - ], - [ - "8148", - "0.018298493798167104", - "1.78632450685721", - "0.0", - "0.0", - "0.0", - "0.0", - "0.02599679339575282", - "3.551237551224312", - "0.0", - "0.0", - "0.010600194200581389" - ], - [ - "8149", - "0.018246052291905825", - "1.7862259232711906", - "0.0", - "0.0", - "0.0", - "0.0", - "0.025922441470621265", - "3.551102146859786", - "0.0", - "0.0", - "0.010569663113190382" - ], - [ - "8150", - "0.018195026990361966", - "1.7861301363755255", - "0.0", - "0.0", - "0.0", - "0.0", - "0.025850049538137344", - "3.550970489546591", - "0.0", - "0.0", - "0.01054000444258659" - ], - [ - "8151", - "0.018144519071653653", - "1.7860353052985791", - "0.0", - "0.0", - "0.0", - "0.0", - "0.025778396684103012", - "3.5508401561157585", - "0.0", - "0.0", - "0.010510641459204297" - ], - [ - "8152", - "0.018094175287194415", - "1.785940870677867", - "0.0", - "0.0", - "0.0", - "0.0", - "0.025706945079055053", - "3.5507103054173768", - "0.0", - "0.0", - "0.010481405495333777" - ], - [ - "8153", - "0.018244206883506482", - "1.7862206841892356", - "0.0", - "0.0", - "0.0", - "0.0", - "0.025920450394292378", - "3.5510961827864245", - "0.0", - "0.0", - "0.010567963372720588" - ], - [ - "8154", - "0.018463781303220544", - "1.7866325384014152", - "0.0", - "0.0", - "0.0", - "0.0", - "0.026232086310658122", - "3.551662498907902", - "0.0", - "0.0", - "0.010695476295782968" - ], - [ - "8155", - "0.018686123591578563", - "1.7870495863881037", - "0.0", - "0.0", - "0.0", - "0.0", - "0.026547642012795566", - "3.5522359431815067", - "0.0", - "0.0", - "0.01082460517036156" - ], - [ - "8156", - "0.01931934594157402", - "1.7882375836951587", - "0.0", - "0.0", - "0.0", - "0.0", - "0.027446197354543227", - "3.5538692007592134", - "0.0", - "0.0", - "0.011192494528604808" - ], - [ - "8157", - "0.02005815955942329", - "1.7896235122265423", - "0.0", - "0.0", - "0.0", - "0.0", - "0.028494568183213262", - "3.555774568498306", - "0.0", - "0.0", - "0.011621750935633317" - ], - [ - "8158", - "0.020325431404614173", - "1.7901252670897898", - "0.0", - "0.0", - "0.0", - "0.0", - "0.028873667729099436", - "3.556464077852094", - "0.0", - "0.0", - "0.011777195080128908" - ], - [ - "8159", - "0.020545403315861983", - "1.7905366752603153", - "0.0", - "0.0", - "0.0", - "0.0", - "0.02918621616435886", - "3.5570305003169285", - "0.0", - "0.0", - "0.011904590467365106" - ], - [ - "8160", - "0.020484245058021128", - "1.790421496312626", - "0.0", - "0.0", - "0.0", - "0.0", - "0.029099601314707842", - "3.556872481371039", - "0.0", - "0.0", - "0.011868888801334417" - ], - [ - "8161", - "0.020426774103382138", - "1.7903136121000018", - "0.0", - "0.0", - "0.0", - "0.0", - "0.029018084128196293", - "3.55672422603336", - "0.0", - "0.0", - "0.011835464078567979" - ], - [ - "8162", - "0.020384702117201833", - "1.7902344612604706", - "0.0", - "0.0", - "0.0", - "0.0", - "0.028958469943366153", - "3.556615576746443", - "0.0", - "0.0", - "0.011810934291037514" - ], - [ - "8163", - "0.020576117106080587", - "1.7905931048219628", - "0.0", - "0.0", - "0.0", - "0.0", - "0.029230213816410982", - "3.5571089002613534", - "0.0", - "0.0", - "0.011922020395750195" - ], - [ - "8164", - "0.0208010335080454", - "1.7910168427190738", - "0.0", - "0.0", - "0.0", - "0.0", - "0.029548688906105753", - "3.5576901276422195", - "0.0", - "0.0", - "0.01205337810998505" - ], - [ - "8165", - "0.020889944832175704", - "1.7911819625437109", - "0.0", - "0.0", - "0.0", - "0.0", - "0.029675426621154143", - "3.557918271961202", - "0.0", - "0.0", - "0.012104463043197263" - ], - [ - "8166", - "0.020831373519340453", - "1.7910721047105729", - "0.0", - "0.0", - "0.0", - "0.0", - "0.02959231993777109", - "3.557767246144696", - "0.0", - "0.0", - "0.01207042710090982" - ], - [ - "8167", - "0.020777635701165385", - "1.7909704954338295", - "0.0", - "0.0", - "0.0", - "0.0", - "0.02951635995391652", - "3.5576281293428114", - "0.0", - "0.0", - "0.01203891144841425" - ], - [ - "8168", - "0.020719618197972273", - "1.7908616283403191", - "0.0", - "0.0", - "0.0", - "0.0", - "0.02943405500049918", - "3.557478497418635", - "0.0", - "0.0", - "0.012005181395445366" - ], - [ - "8169", - "0.02065768451349204", - "1.790743765470169", - "0.0", - "0.0", - "0.0", - "0.0", - "0.029346776199546506", - "3.557317648858966", - "0.0", - "0.0", - "0.011968592827437572" - ], - [ - "8170", - "0.020717965582442717", - "1.7908566288925414", - "0.0", - "0.0", - "0.0", - "0.0", - "0.029432381676310026", - "3.557472949537422", - "0.0", - "0.0", - "0.012003549488575413" - ], - [ - "8171", - "0.02078269508021533", - "1.790977980246282", - "0.0", - "0.0", - "0.0", - "0.0", - "0.029524247471662178", - "3.557639817433689", - "0.0", - "0.0", - "0.012041142688768483" - ], - [ - "8172", - "0.02082514638650359", - "1.7910544309603889", - "0.0", - "0.0", - "0.0", - "0.0", - "0.02958560319093397", - "3.5577471298978813", - "0.0", - "0.0", - "0.012064689582073207" - ], - [ - "8173", - "0.020883893135687552", - "1.7911638261976355", - "0.0", - "0.0", - "0.0", - "0.0", - "0.029669238713771875", - "3.557898071926323", - "0.0", - "0.0", - "0.012098547557603232" - ], - [ - "8174", - "0.02095112828358384", - "1.7912898353136864", - "0.0", - "0.0", - "0.0", - "0.0", - "0.029764672863438035", - "3.5580713696199378", - "0.0", - "0.0", - "0.012137583703729643" - ], - [ - "8175", - "0.021015283906035503", - "1.7914101445719173", - "0.0", - "0.0", - "0.0", - "0.0", - "0.029855709912728092", - "3.558236777393082", - "0.0", - "0.0", - "0.012174857899342913" - ], - [ - "8176", - "0.02111863982131595", - "1.791604232186606", - "0.0", - "0.0", - "0.0", - "0.0", - "0.030002276509679373", - "3.5585034312845845", - "0.0", - "0.0", - "0.012235003132952525" - ], - [ - "8177", - "0.02118477172447425", - "1.7917282546014806", - "0.0", - "0.0", - "0.0", - "0.0", - "0.030096113628283697", - "3.558673936438517", - "0.0", - "0.0", - "0.012273429820664799" - ], - [ - "8178", - "0.02117118635769525", - "1.7917026290652327", - "0.0", - "0.0", - "0.0", - "0.0", - "0.030076889133746756", - "3.5586388097997554", - "0.0", - "0.0", - "0.012265483581643744" - ], - [ - "8179", - "0.02111245976973272", - "1.7915924980165059", - "0.0", - "0.0", - "0.0", - "0.0", - "0.029993558341529673", - "3.5584873997522664", - "0.0", - "0.0", - "0.012231361197935768" - ], - [ - "8180", - "0.021053874091163167", - "1.7914826323483062", - "0.0", - "0.0", - "0.0", - "0.0", - "0.029910426548630378", - "3.5583363529271113", - "0.0", - "0.0", - "0.012197321633695957" - ], - [ - "8181", - "0.020995472910922096", - "1.7913731115421372", - "0.0", - "0.0", - "0.0", - "0.0", - "0.029827556410441325", - "3.5581857801815584", - "0.0", - "0.0", - "0.012163389411402869" - ], - [ - "8182", - "0.020937124177440446", - "1.791263674039979", - "0.0", - "0.0", - "0.0", - "0.0", - "0.02974476547152866", - "3.5580353316287123", - "0.0", - "0.0", - "0.01212948288335223" - ], - [ - "8183", - "0.02087851951668454", - "1.7911537072219228", - "0.0", - "0.0", - "0.0", - "0.0", - "0.02966162827979024", - "3.5578841889420345", - "0.0", - "0.0", - "0.01209541075357884" - ], - [ - "8184", - "0.020820370232236103", - "1.7910446232321648", - "0.0", - "0.0", - "0.0", - "0.0", - "0.029579126528264568", - "3.5577342390590103", - "0.0", - "0.0", - "0.01206161393620764" - ], - [ - "8185", - "0.02075986291575284", - "1.7909307818607818", - "0.0", - "0.0", - "0.0", - "0.0", - "0.02949339665290966", - "3.5575779814089032", - "0.0", - "0.0", - "0.012026329178596017" - ], - [ - "8186", - "0.020704848652703545", - "1.790826909906139", - "0.0", - "0.0", - "0.0", - "0.0", - "0.02941557827318008", - "3.5574356608998805", - "0.0", - "0.0", - "0.011994119032227012" - ], - [ - "8187", - "0.020864637748310686", - "1.791126494463235", - "0.0", - "0.0", - "0.0", - "0.0", - "0.02964234705222598", - "3.557847598255718", - "0.0", - "0.0", - "0.01208692844439539" - ], - [ - "8188", - "0.02081065188487628", - "1.7910250758532709", - "0.0", - "0.0", - "0.0", - "0.0", - "0.029565803434645647", - "3.557708286246972", - "0.0", - "0.0", - "0.012055500335106913" - ], - [ - "8189", - "0.020991580502689823", - "1.7913641332686678", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0298226265048534", - "3.5581746071449984", - "0.0", - "0.0", - "0.01216053450052625" - ], - [ - "8190", - "0.021174178458333238", - "1.7917065480713663", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03008173291882533", - "3.5586453776745777", - "0.0", - "0.0", - "0.012266623997841147" - ], - [ - "8191", - "0.021115443665950164", - "1.791596406298088", - "0.0", - "0.0", - "0.0", - "0.0", - "0.02999838885439346", - "3.558493949651865", - "0.0", - "0.0", - "0.012232498477506869" - ], - [ - "8192", - "0.02105659406040649", - "1.791486048986386", - "0.0", - "0.0", - "0.0", - "0.0", - "0.029914881404995878", - "3.558342224617143", - "0.0", - "0.0", - "0.0121983067158171" - ], - [ - "8193", - "0.02114955985592884", - "1.7916603577797297", - "0.0", - "0.0", - "0.0", - "0.0", - "0.030046808112388624", - "3.558581890323611", - "0.0", - "0.0", - "0.012252311599469056" - ], - [ - "8194", - "0.021236933406188613", - "1.7918234776099267", - "0.0", - "0.0", - "0.0", - "0.0", - "0.030171046379495848", - "3.5588066605646276", - "0.0", - "0.0", - "0.012302820432881377" - ], - [ - "8195", - "0.021329423006836476", - "1.7919968881736756", - "0.0", - "0.0", - "0.0", - "0.0", - "0.030302296584828588", - "3.5590450909500615", - "0.0", - "0.0", - "0.012356549428844364" - ], - [ - "8196", - "0.021414788142526398", - "1.7921567710307125", - "0.0", - "0.0", - "0.0", - "0.0", - "0.030423495451227512", - "3.559265038095631", - "0.0", - "0.0", - "0.012406080833825285" - ], - [ - "8197", - "0.021353616164638534", - "1.7920418150718975", - "0.0", - "0.0", - "0.0", - "0.0", - "0.030336781567633614", - "3.55910716492043", - "0.0", - "0.0", - "0.012370450761643455" - ], - [ - "8198", - "0.02129760671076765", - "1.7919360350980509", - "0.0", - "0.0", - "0.0", - "0.0", - "0.030257571013256997", - "3.5589622582919005", - "0.0", - "0.0", - "0.012337642408278303" - ], - [ - "8199", - "0.021453956552301492", - "1.792229198255038", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03047943478256265", - "3.5593653248996677", - "0.0", - "0.0", - "0.012428478322040339" - ], - [ - "8200", - "0.02160980057550323", - "1.7925213927665915", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03070058406603163", - "3.5597670678888322", - "0.0", - "0.0", - "0.01251901708497483" - ], - [ - "8201", - "0.021765489652064866", - "1.7928133323600663", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03092149704141909", - "3.560168429650649", - "0.0", - "0.0", - "0.012609482262710643" - ], - [ - "8202", - "0.021921564217071775", - "1.7931059948122416", - "0.0", - "0.0", - "0.0", - "0.0", - "0.031142953133141592", - "3.5605707792639376", - "0.0", - "0.0", - "0.01270017530100196" - ], - [ - "8203", - "0.022077153554185214", - "1.7933977260748881", - "0.0", - "0.0", - "0.0", - "0.0", - "0.031363724415674574", - "3.5609718576384366", - "0.0", - "0.0", - "0.012790582692695854" - ], - [ - "8204", - "0.022231604250423743", - "1.793687424089318", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03158284028048798", - "3.5613700638879426", - "0.0", - "0.0", - "0.012880368220359501" - ], - [ - "8205", - "0.022268397643834932", - "1.7937562565921947", - "0.0", - "0.0", - "0.0", - "0.0", - "0.031635101222867404", - "3.561464802417478", - "0.0", - "0.0", - "0.01290169406480246" - ], - [ - "8206", - "0.022209782745358085", - "1.7936463160684049", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03155194579588425", - "3.5613136831451793", - "0.0", - "0.0", - "0.012867619694831916" - ], - [ - "8207", - "0.022146711883320156", - "1.793527665605562", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03146259269349683", - "3.561150836130902", - "0.0", - "0.0", - "0.012830831073143492" - ], - [ - "8208", - "0.022084969443099383", - "1.793411848124411", - "0.0", - "0.0", - "0.0", - "0.0", - "0.031375002915218796", - "3.560991644331641", - "0.0", - "0.0", - "0.012794935970979972" - ], - [ - "8209", - "0.0220237938033101", - "1.7932963034473117", - "0.0", - "0.0", - "0.0", - "0.0", - "0.031288496030294044", - "3.560833377485072", - "0.0", - "0.0", - "0.012759091576326154" - ], - [ - "8210", - "0.022156427081462517", - "1.7935449463059912", - "0.0", - "0.0", - "0.0", - "0.0", - "0.031476708370324166", - "3.561175245910663", - "0.0", - "0.0", - "0.012836145792600867" - ], - [ - "8211", - "0.02226372400825853", - "1.7937460678215815", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03162897384589749", - "3.5614517891895785", - "0.0", - "0.0", - "0.012898474170619574" - ], - [ - "8212", - "0.02239076114484401", - "1.7939840331420713", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03180930622847014", - "3.561779099510041", - "0.0", - "0.0", - "0.012972216061217874" - ], - [ - "8213", - "0.02254160735908638", - "1.7942669277776655", - "0.0", - "0.0", - "0.0", - "0.0", - "0.032023316107162046", - "3.5621679724074946", - "0.0", - "0.0", - "0.013059898611010715" - ], - [ - "8214", - "0.022691155842982483", - "1.7945473654178157", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03223548951411501", - "3.562553478601463", - "0.0", - "0.0", - "0.013146822171849964" - ], - [ - "8215", - "0.02285128730816647", - "1.794847447705409", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03246274471863209", - "3.5629661235072523", - "0.0", - "0.0", - "0.01323982989770084" - ], - [ - "8216", - "0.02301185531766935", - "1.7951484970608054", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03269056269619007", - "3.5633799880099106", - "0.0", - "0.0", - "0.013333147939148632" - ], - [ - "8217", - "0.02316015422132505", - "1.7954255447289815", - "0.0", - "0.0", - "0.0", - "0.0", - "0.032901322325742194", - "3.5637615470819006", - "0.0", - "0.0", - "0.013418986116907906" - ], - [ - "8218", - "0.023299089998701315", - "1.7956859881714688", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03309845821865941", - "3.5641196121584855", - "0.0", - "0.0", - "0.013499721778743222" - ], - [ - "8219", - "0.023436621244436403", - "1.7959438491509832", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03329358038221786", - "3.5644740869994167", - "0.0", - "0.0", - "0.013579662106654948" - ], - [ - "8220", - "0.023572763890711744", - "1.7961989615233136", - "0.0", - "0.0", - "0.0", - "0.0", - "0.033486780827712455", - "3.56482488004655", - "0.0", - "0.0", - "0.013658746953711037" - ], - [ - "8221", - "0.023710090427738823", - "1.7964564033233943", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03368161911624041", - "3.565178794175613", - "0.0", - "0.0", - "0.013738561739237234" - ], - [ - "8222", - "0.02384361066048558", - "1.7967066363655742", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03387108005977521", - "3.565522844832667", - "0.0", - "0.0", - "0.013816141261195953" - ], - [ - "8223", - "0.02397386677883124", - "1.7969503513837484", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03405604831831913", - "3.5658582091009343", - "0.0", - "0.0", - "0.013891685239343348" - ], - [ - "8224", - "0.024106536584971368", - "1.7971988788668345", - "0.0", - "0.0", - "0.0", - "0.0", - "0.034244336535158085", - "3.566199984242008", - "0.0", - "0.0", - "0.013968736634784651" - ], - [ - "8225", - "0.02424362532921649", - "1.7974555644939452", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03443893565013581", - "3.566553057570916", - "0.0", - "0.0", - "0.014048315008297164" - ], - [ - "8226", - "0.02434269406857124", - "1.7976374280273009", - "0.0", - "0.0", - "0.0", - "0.0", - "0.034580848028574314", - "3.5668057464224248", - "0.0", - "0.0", - "0.01410454010856817" - ], - [ - "8227", - "0.024489874020267297", - "1.7979133417242503", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03478964831234245", - "3.567185026923796", - "0.0", - "0.0", - "0.01419009972819214" - ], - [ - "8228", - "0.024635393500111177", - "1.7981859632842385", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03499615297166022", - "3.5675599017906308", - "0.0", - "0.0", - "0.014274634028562137" - ], - [ - "8229", - "0.024765048423413868", - "1.7984278868840289", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03518048708001164", - "3.5678932418461913", - "0.0", - "0.0", - "0.014349609766816096" - ], - [ - "8230", - "0.02490824104850277", - "1.7986965143382694", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03538355441192416", - "3.568262360272989", - "0.0", - "0.0", - "0.01443292768508138" - ], - [ - "8231", - "0.025051616825951507", - "1.7989650481639534", - "0.0", - "0.0", - "0.0", - "0.0", - "0.035587032867440714", - "3.5686316496935886", - "0.0", - "0.0", - "0.014516200784462297" - ], - [ - "8232", - "0.025195631022159302", - "1.7992349159717003", - "0.0", - "0.0", - "0.0", - "0.0", - "0.035791365192560966", - "3.5690026721011496", - "0.0", - "0.0", - "0.014599896851757633" - ], - [ - "8233", - "0.025340252134983227", - "1.7995060423995497", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03599651241961104", - "3.569375335201657", - "0.0", - "0.0", - "0.014683991850355417" - ], - [ - "8234", - "0.025483708395406566", - "1.7997749051174228", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03620003228819325", - "3.5697449375405026", - "0.0", - "0.0", - "0.014767384502619888" - ], - [ - "8235", - "0.025622941344861584", - "1.8000358940275496", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03639754282315534", - "3.570103682174627", - "0.0", - "0.0", - "0.014848339866567823" - ], - [ - "8236", - "0.025840278186702054", - "1.800444371242131", - "0.0", - "0.0", - "0.0", - "0.0", - "0.036705458788518545", - "3.570664392458045", - "0.0", - "0.0", - "0.014975097584885565" - ], - [ - "8237", - "0.026067746315786365", - "1.8008714683764917", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0370278695115478", - "3.571250942791307", - "0.0", - "0.0", - "0.01510762312002493" - ], - [ - "8238", - "0.026202290727237416", - "1.8011236846125966", - "0.0", - "0.0", - "0.0", - "0.0", - "0.037218711052322946", - "3.5715975987385415", - "0.0", - "0.0", - "0.015185870402151882" - ], - [ - "8239", - "0.026123547786856972", - "1.80097633060766", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03710692925233175", - "3.571394890800112", - "0.0", - "0.0", - "0.015140166321382197" - ], - [ - "8240", - "0.02605178461018379", - "1.800841643920728", - "0.0", - "0.0", - "0.0", - "0.0", - "0.037005194376571876", - "3.5712098827484295", - "0.0", - "0.0", - "0.01509837484379571" - ], - [ - "8241", - "0.02618594950460808", - "1.8010931762890368", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03719548818457162", - "3.5715555800523653", - "0.0", - "0.0", - "0.015176410824644543" - ], - [ - "8242", - "0.026319331524364734", - "1.8013432296436747", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03738467276744548", - "3.5718992481861047", - "0.0", - "0.0", - "0.015253990281283986" - ], - [ - "8243", - "0.02645049563625195", - "1.8015889100727775", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03757078487624882", - "3.5722370519931146", - "0.0", - "0.0", - "0.015330206396255082" - ], - [ - "8244", - "0.026567557018900945", - "1.801808243137678", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03773685986240121", - "3.5725385778252274", - "0.0", - "0.0", - "0.015398254175400684" - ], - [ - "8245", - "0.02671444313384841", - "1.8020820070011807", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0379457574637884", - "3.5729159393977574", - "0.0", - "0.0", - "0.01548312880390842" - ], - [ - "8246", - "0.026637301980825465", - "1.8019371659154866", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03783642722126632", - "3.572717036487154", - "0.0", - "0.0", - "0.015438176740384613" - ], - [ - "8247", - "0.02655601374115381", - "1.8017830549366431", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03772174323124999", - "3.5725064348135596", - "0.0", - "0.0", - "0.015390284251057621" - ], - [ - "8248", - "0.026459550921580265", - "1.801598797540572", - "0.0", - "0.0", - "0.0", - "0.0", - "0.037586136378714254", - "3.5722555835337073", - "0.0", - "0.0", - "0.015332965464446274" - ], - [ - "8249", - "0.026582774847141426", - "1.8018297405325272", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03776093157174274", - "3.572573025549705", - "0.0", - "0.0", - "0.015404618122540108" - ], - [ - "8250", - "0.026743787987899083", - "1.8021315354334886", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03798931774652766", - "3.5729878315185006", - "0.0", - "0.0", - "0.015498258229270513" - ], - [ - "8251", - "0.026901862122315802", - "1.8024274694637508", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03821365575317832", - "3.5733948213683346", - "0.0", - "0.0", - "0.01559006849145329" - ], - [ - "8252", - "0.02706098381750786", - "1.8027255856722277", - "0.0", - "0.0", - "0.0", - "0.0", - "0.038439398277663975", - "3.573804651912647", - "0.0", - "0.0", - "0.015682569357351746" - ], - [ - "8253", - "0.027033902109162913", - "1.8026746537130653", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03840104699525435", - "3.573734769829516", - "0.0", - "0.0", - "0.015666757223071474" - ], - [ - "8254", - "0.0269586057673572", - "1.8025334689541714", - "0.0", - "0.0", - "0.0", - "0.0", - "0.038294267001929366", - "3.5735407596737345", - "0.0", - "0.0", - "0.01562294453278503" - ], - [ - "8255", - "0.02688370720018842", - "1.802393055562434", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03818804118757937", - "3.573347790347824", - "0.0", - "0.0", - "0.015579373212797476" - ], - [ - "8256", - "0.026807148488799323", - "1.8022492763403282", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03807954963679052", - "3.5731503707035457", - "0.0", - "0.0", - "0.015534747340808121" - ], - [ - "8257", - "0.026726083360917068", - "1.802096086187422", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03796500631140229", - "3.5729406870191327", - "0.0", - "0.0", - "0.015487160410431848" - ], - [ - "8258", - "0.026651281248557965", - "1.801955783734745", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03785893925917381", - "3.572747914617043", - "0.0", - "0.0", - "0.015443623237942121" - ], - [ - "8259", - "0.026570874387070335", - "1.8018054580642147", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03774475076313063", - "3.5725410281490073", - "0.0", - "0.0", - "0.015396998011010044" - ], - [ - "8260", - "0.02669177293018168", - "1.8020319176627817", - "0.0", - "0.0", - "0.0", - "0.0", - "0.037916289584427415", - "3.5728523916627726", - "0.0", - "0.0", - "0.01546725627593595" - ], - [ - "8261", - "0.026846037599244657", - "1.8023209946984053", - "0.0", - "0.0", - "0.0", - "0.0", - "0.038135125338810784", - "3.573249761532637", - "0.0", - "0.0", - "0.01555694985967853" - ], - [ - "8262", - "0.026993836259707565", - "1.8025967560761247", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03834520925036579", - "3.5736296581686062", - "0.0", - "0.0", - "0.01564246326904934" - ], - [ - "8263", - "0.027157546358028483", - "1.8029035968406673", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0385774135240823", - "3.574051389648185", - "0.0", - "0.0", - "0.015737679191974663" - ], - [ - "8264", - "0.027320310140950134", - "1.8032085906490891", - "0.0", - "0.0", - "0.0", - "0.0", - "0.038808297292103326", - "3.5744706272664044", - "0.0", - "0.0", - "0.015832322989796945" - ], - [ - "8265", - "0.027482425630134574", - "1.8035123376420357", - "0.0", - "0.0", - "0.0", - "0.0", - "0.039038268617097235", - "3.5748881669893153", - "0.0", - "0.0", - "0.015926582643171917" - ], - [ - "8266", - "0.027644851819588798", - "1.8038167700481689", - "0.0", - "0.0", - "0.0", - "0.0", - "0.039268639993700026", - "3.5753065704957745", - "0.0", - "0.0", - "0.016021063645477573" - ], - [ - "8267", - "0.027794332921121583", - "1.8040963286204814", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03948086373199955", - "3.57569120850851", - "0.0", - "0.0", - "0.016107802110243617" - ], - [ - "8268", - "0.027935827854013932", - "1.8043615133964594", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03968154715208731", - "3.576055672389001", - "0.0", - "0.0", - "0.016190108555940552" - ], - [ - "8269", - "0.028081099581420365", - "1.8046335047858653", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03988768010392514", - "3.576429675540273", - "0.0", - "0.0", - "0.016274519058915592" - ], - [ - "8270", - "0.02820700858275353", - "1.8048691379454798", - "0.0", - "0.0", - "0.0", - "0.0", - "0.040066373019033936", - "3.5767537536425795", - "0.0", - "0.0", - "0.016347644146473123" - ], - [ - "8271", - "0.028331801138828622", - "1.805100989314065", - "0.0", - "0.0", - "0.0", - "0.0", - "0.040244077917511945", - "3.5770738083542044", - "0.0", - "0.0", - "0.016419524360145304" - ], - [ - "8272", - "0.028473785383401028", - "1.805367033882808", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0404454635993813", - "3.5774394754363716", - "0.0", - "0.0", - "0.016502107167420746" - ], - [ - "8273", - "0.028614667667862914", - "1.8056309235894685", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04064531502954575", - "3.577802238728765", - "0.0", - "0.0", - "0.016584020306180076" - ], - [ - "8274", - "0.02875721409942848", - "1.805898083482849", - "0.0", - "0.0", - "0.0", - "0.0", - "0.040847469827939735", - "3.5781693858373718", - "0.0", - "0.0", - "0.01666695837091722" - ], - [ - "8275", - "0.028901894220802478", - "1.8061690397444208", - "0.0", - "0.0", - "0.0", - "0.0", - "0.041052718984856934", - "3.578541886355949", - "0.0", - "0.0", - "0.01675106945674802" - ], - [ - "8276", - "0.02904775234762409", - "1.8064424149377327", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04125956066736809", - "3.578917558761078", - "0.0", - "0.0", - "0.01683594402788009" - ], - [ - "8277", - "0.029183748733314602", - "1.8066972778754573", - "0.0", - "0.0", - "0.0", - "0.0", - "0.041452424587886894", - "3.5792678070846935", - "0.0", - "0.0", - "0.016915072878742315" - ], - [ - "8278", - "0.029319992929167274", - "1.806952633708526", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04164562693691407", - "3.5796187084253024", - "0.0", - "0.0", - "0.016994358921420476" - ], - [ - "8279", - "0.02943459629091575", - "1.8071673101025574", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04180818118994168", - "3.5799137890077155", - "0.0", - "0.0", - "0.017061011391889824" - ], - [ - "8280", - "0.029533126514307326", - "1.807352044831746", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04194787651109787", - "3.5801675948237426", - "0.0", - "0.0", - "0.01711837651751678" - ], - [ - "8281", - "0.029624413370322768", - "1.8075228077892571", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04207743935257665", - "3.5804024754461334", - "0.0", - "0.0", - "0.017171387388068886" - ], - [ - "8282", - "0.02971571036586432", - "1.8076937916427467", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04220694379248378", - "3.580637516836833", - "0.0", - "0.0", - "0.01722447693924486" - ], - [ - "8283", - "0.02964639751448046", - "1.8075637278623695", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04210871328927478", - "3.58045890222141", - "0.0", - "0.0", - "0.017184081739686146" - ], - [ - "8284", - "0.02962444067046793", - "1.807517818337435", - "0.0", - "0.0", - "0.0", - "0.0", - "0.042079262322209106", - "3.5803991331269973", - "0.0", - "0.0", - "0.017169619018726753" - ], - [ - "8285", - "0.029534842963982826", - "1.8073498436532087", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0419522283444395", - "3.580168347112429", - "0.0", - "0.0", - "0.017117457583526157" - ], - [ - "8286", - "0.029450129990528852", - "1.8071907007678083", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04183223426015732", - "3.57994992070138", - "0.0", - "0.0", - "0.017068025720900385" - ], - [ - "8287", - "0.029367573160125976", - "1.8070351455972953", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04171545701295665", - "3.579736738602805", - "0.0", - "0.0", - "0.017019689307295305" - ], - [ - "8288", - "0.02962811597576689", - "1.8075228558810101", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04208512900745881", - "3.5804073452731995", - "0.0", - "0.0", - "0.01717110294407497" - ], - [ - "8289", - "0.029893856524306206", - "1.8080200638565158", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04246224694015073", - "3.5810911563770267", - "0.0", - "0.0", - "0.017325466108461685" - ], - [ - "8290", - "0.030165119558373733", - "1.8085277579757368", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04284713622000913", - "3.5817892644575156", - "0.0", - "0.0", - "0.017483102896738337" - ], - [ - "8291", - "0.030440056420251868", - "1.8090429027558357", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04323702298181096", - "3.5824971983988005", - "0.0", - "0.0", - "0.017643089858692774" - ], - [ - "8292", - "0.030704813204372135", - "1.8095383293925338", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04361269013805703", - "3.5831784664940165", - "0.0", - "0.0", - "0.01779693627068724" - ], - [ - "8293", - "0.030959813615982205", - "1.8100149366704434", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04397470267468777", - "3.5838342327050956", - "0.0", - "0.0", - "0.017944924557276642" - ], - [ - "8294", - "0.03120035638761587", - "1.8104620570813243", - "0.0", - "0.0", - "0.0", - "0.0", - "0.044317053661929104", - "3.584451135931255", - "0.0", - "0.0", - "0.018083659113302637" - ], - [ - "8295", - "0.03146770014558458", - "1.810962223986949", - "0.0", - "0.0", - "0.0", - "0.0", - "0.044696395301531584", - "3.585138943815594", - "0.0", - "0.0", - "0.01823900498963758" - ], - [ - "8296", - "0.03171958467254437", - "1.811433338319157", - "0.0", - "0.0", - "0.0", - "0.0", - "0.045053837286441314", - "3.585786875086858", - "0.0", - "0.0", - "0.018385332058647424" - ], - [ - "8297", - "0.031978804461483386", - "1.8119189907683064", - "0.0", - "0.0", - "0.0", - "0.0", - "0.045421388341304714", - "3.5864542134169644", - "0.0", - "0.0", - "0.018536220581662058" - ], - [ - "8298", - "0.03223760667328333", - "1.8124037422335542", - "0.0", - "0.0", - "0.0", - "0.0", - "0.045788378800410215", - "3.5871203802526317", - "0.0", - "0.0", - "0.018686834546156432" - ], - [ - "8299", - "0.03248824483179757", - "1.812871234419438", - "0.0", - "0.0", - "0.0", - "0.0", - "0.046144479071920756", - "3.587764185129919", - "0.0", - "0.0", - "0.018832010591674383" - ], - [ - "8300", - "0.03273185042417245", - "1.8133275585197146", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04648988805510255", - "3.5883912308507333", - "0.0", - "0.0", - "0.01897381279324234" - ], - [ - "8301", - "0.032961859312466674", - "1.8137585262842557", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04681596963364277", - "3.588983341847777", - "0.0", - "0.0", - "0.019107748991290575" - ], - [ - "8302", - "0.03321085808498692", - "1.8142242751674038", - "0.0", - "0.0", - "0.0", - "0.0", - "0.047169247074731635", - "3.58962378239997", - "0.0", - "0.0", - "0.019252469095242215" - ], - [ - "8303", - "0.03347047823698142", - "1.8147106894525145", - "0.0", - "0.0", - "0.0", - "0.0", - "0.047537300991359596", - "3.5902920662817492", - "0.0", - "0.0", - "0.019403655482603248" - ], - [ - "8304", - "0.03373111948802149", - "1.8151990365666273", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04790678486387079", - "3.590962975593923", - "0.0", - "0.0", - "0.01955545411217219" - ], - [ - "8305", - "0.03398502138280574", - "1.8156747594305123", - "0.0", - "0.0", - "0.0", - "0.0", - "0.048266703805606465", - "3.5916165235292263", - "0.0", - "0.0", - "0.019703338960005028" - ], - [ - "8306", - "0.03417668602350128", - "1.8160338473511346", - "0.0", - "0.0", - "0.0", - "0.0", - "0.048538400140015724", - "3.592109845017616", - "0.0", - "0.0", - "0.019814971906986847" - ], - [ - "8307", - "0.03434153311772329", - "1.816342498134759", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04877214504932636", - "3.5925340031494155", - "0.0", - "0.0", - "0.019910921186120218" - ], - [ - "8308", - "0.03450649739864491", - "1.8166493374674249", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04900677139302537", - "3.59295708208636", - "0.0", - "0.0", - "0.020006223404264455" - ], - [ - "8309", - "0.03468064673595783", - "1.8169753470010301", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04925371798604058", - "3.5934051219174195", - "0.0", - "0.0", - "0.020107575485875086" - ], - [ - "8310", - "0.034823674597183746", - "1.817242049856168", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04945690120732297", - "3.593772380636598", - "0.0", - "0.0", - "0.020190447987044523" - ], - [ - "8311", - "0.034870734065228205", - "1.8173301948867506", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04952361301565696", - "3.5938934825253965", - "0.0", - "0.0", - "0.020217855114799455" - ], - [ - "8312", - "0.03491751522840384", - "1.817417777581526", - "0.0", - "0.0", - "0.0", - "0.0", - "0.049589944500116244", - "3.5940138399224932", - "0.0", - "0.0", - "0.02024508595669144" - ], - [ - "8313", - "0.035043931499627354", - "1.8176545733363678", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04976914650325071", - "3.5943391603812525", - "0.0", - "0.0", - "0.020318716496004002" - ], - [ - "8314", - "0.035017423489906226", - "1.8176046133053083", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04973167883489957", - "3.594270737261733", - "0.0", - "0.0", - "0.020303168144912887" - ], - [ - "8315", - "0.034916772925739636", - "1.8174155512171888", - "0.0", - "0.0", - "0.0", - "0.0", - "0.049589188411734535", - "3.5940113640147207", - "0.0", - "0.0", - "0.020244357439744738" - ], - [ - "8316", - "0.034819676342431556", - "1.8172335806716875", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04945158053069223", - "3.5937614282658004", - "0.0", - "0.0", - "0.020187772154170888" - ], - [ - "8317", - "0.03472205954435296", - "1.817050242245693", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04931337310714652", - "3.5935098852283764", - "0.0", - "0.0", - "0.020130745981559398" - ], - [ - "8318", - "0.03462577743855764", - "1.8168698594093518", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04917689488017304", - "3.5932620829819832", - "0.0", - "0.0", - "0.02007465999694224" - ], - [ - "8319", - "0.03485565371624199", - "1.8172995978255957", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04950306789581375", - "3.593853084347687", - "0.0", - "0.0", - "0.02020823953667024" - ], - [ - "8320", - "0.035111381674723836", - "1.8177786621217984", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04986555880965643", - "3.594511209638556", - "0.0", - "0.0", - "0.020357204539791247" - ], - [ - "8321", - "0.0353426897126452", - "1.8182117477800934", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0501935081845988", - "3.595106318895852", - "0.0", - "0.0", - "0.020491871240691607" - ], - [ - "8322", - "0.03556051598733654", - "1.8186196433971742", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05050231688945814", - "3.5956667659380073", - "0.0", - "0.0", - "0.020618715085214942" - ], - [ - "8323", - "0.03572233885529045", - "1.8189228096294499", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05073167569543826", - "3.596083209435409", - "0.0", - "0.0", - "0.02071300201514264" - ], - [ - "8324", - "0.03565446707263223", - "1.818796035047551", - "0.0", - "0.0", - "0.0", - "0.0", - "0.050635344004951205", - "3.595908802119734", - "0.0", - "0.0", - "0.02067359014031325" - ], - [ - "8325", - "0.03555365351186866", - "1.8186069093507082", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05049254692389142", - "3.5956491883763735", - "0.0", - "0.0", - "0.020614760099845905" - ], - [ - "8326", - "0.03545295650265322", - "1.8184179966750262", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05034991533336882", - "3.5953898685143426", - "0.0", - "0.0", - "0.020555997671937616" - ], - [ - "8327", - "0.03535361576325142", - "1.8182317233971872", - "0.0", - "0.0", - "0.0", - "0.0", - "0.050209169612183274", - "3.5951341032449218", - "0.0", - "0.0", - "0.020498061914319566" - ], - [ - "8328", - "0.035253883302737744", - "1.8180446600049436", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05006788704461968", - "3.594877289421154", - "0.0", - "0.0", - "0.0204398795608558" - ], - [ - "8329", - "0.03513341432549466", - "1.8178158004402014", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04989825473739101", - "3.594565111436661", - "0.0", - "0.0", - "0.020368573913598313" - ], - [ - "8330", - "0.03502987677331555", - "1.8176208478823928", - "0.0", - "0.0", - "0.0", - "0.0", - "0.049751844613969254", - "3.594297984623826", - "0.0", - "0.0", - "0.02030790893266185" - ], - [ - "8331", - "0.035012393836422545", - "1.8175880675191833", - "0.0", - "0.0", - "0.0", - "0.0", - "0.049727073138412174", - "3.594252972181196", - "0.0", - "0.0", - "0.02029771453443292" - ], - [ - "8332", - "0.03505594545207882", - "1.817669067650041", - "0.0", - "0.0", - "0.0", - "0.0", - "0.049789014465115765", - "3.594364656259727", - "0.0", - "0.0", - "0.020322876439041865" - ], - [ - "8333", - "0.034958345776611166", - "1.8174862550288298", - "0.0", - "0.0", - "0.0", - "0.0", - "0.049650659931931025", - "3.5941134968052855", - "0.0", - "0.0", - "0.020266031621291314" - ], - [ - "8334", - "0.03486138248068098", - "1.8173046141588984", - "0.0", - "0.0", - "0.0", - "0.0", - "0.049513213207206204", - "3.593863959017305", - "0.0", - "0.0", - "0.020209551754155747" - ], - [ - "8335", - "0.03476468810688954", - "1.817123477075315", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04937614621235925", - "3.5936151110687566", - "0.0", - "0.0", - "0.020153230001419834" - ], - [ - "8336", - "0.03466826190952197", - "1.8169428423810063", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04923945790242504", - "3.593366951058952", - "0.0", - "0.0", - "0.020097065916618907" - ], - [ - "8337", - "0.03457146282266395", - "1.816760367080907", - "0.0", - "0.0", - "0.0", - "0.0", - "0.049102644049135794", - "3.5931170558811525", - "0.0", - "0.0", - "0.0200402815961921" - ], - [ - "8338", - "0.034820458712703686", - "1.8172265614357428", - "0.0", - "0.0", - "0.0", - "0.0", - "0.049455695302120156", - "3.5937576985237287", - "0.0", - "0.0", - "0.020185222123287223" - ], - [ - "8339", - "0.03507004266794401", - "1.8176940130378048", - "0.0", - "0.0", - "0.0", - "0.0", - "0.049809515312987725", - "3.594399945031345", - "0.0", - "0.0", - "0.02033057002290029" - ], - [ - "8340", - "0.035316338392728054", - "1.8181546696427433", - "0.0", - "0.0", - "0.0", - "0.0", - "0.050158889694276704", - "3.5950332845742046", - "0.0", - "0.0", - "0.020473787091179405" - ], - [ - "8341", - "0.03557102561568965", - "1.8186312101889113", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05052009065023551", - "3.5956883151912074", - "0.0", - "0.0", - "0.020621960581143794" - ], - [ - "8342", - "0.035616529125418156", - "1.8187164997886214", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05058457056907976", - "3.5958054448723153", - "0.0", - "0.0", - "0.020648487681756547" - ], - [ - "8343", - "0.035626118870635576", - "1.8187333812109172", - "0.0", - "0.0", - "0.0", - "0.0", - "0.050598546769532564", - "3.5958293896121956", - "0.0", - "0.0", - "0.020653690971738588" - ], - [ - "8344", - "0.03552723964621567", - "1.818548153066833", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05045839381845911", - "3.5955749381151447", - "0.0", - "0.0", - "0.020596085473972243" - ], - [ - "8345", - "0.03542944953804332", - "1.8183648993509152", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05031980639894771", - "3.595323242455193", - "0.0", - "0.0", - "0.020539092677138923" - ], - [ - "8346", - "0.035331315888005865", - "1.818181018571386", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05018072468795471", - "3.5950706715800673", - "0.0", - "0.0", - "0.020481907088057024" - ], - [ - "8347", - "0.03523424560794804", - "1.8179992231107949", - "0.0", - "0.0", - "0.0", - "0.0", - "0.050043115703150426", - "3.5948208980970335", - "0.0", - "0.0", - "0.02042537551274566" - ], - [ - "8348", - "0.0351365174832433", - "1.8178161600669323", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04990458524975936", - "3.594569405542069", - "0.0", - "0.0", - "0.020368449716727237" - ], - [ - "8349", - "0.0350400113255452", - "1.8176352259111819", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04976784218136455", - "3.594320946942113", - "0.0", - "0.0", - "0.02031218046972585" - ], - [ - "8350", - "0.034940093151948924", - "1.8174481532540643", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04962617140622373", - "3.594063876652958", - "0.0", - "0.0", - "0.02025401489767412" - ], - [ - "8351", - "0.034843180841800686", - "1.8172666186181992", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04948879283975315", - "3.593814476825637", - "0.0", - "0.0", - "0.020197568843848226" - ], - [ - "8352", - "0.03474650915408899", - "1.8170855310459941", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04935175520346712", - "3.5935656914991996", - "0.0", - "0.0", - "0.020141263104710865" - ], - [ - "8353", - "0.03464994941550958", - "1.8169046468121193", - "0.0", - "0.0", - "0.0", - "0.0", - "0.049214877056634194", - "3.59331718772107", - "0.0", - "0.0", - "0.020085021774384964" - ], - [ - "8354", - "0.03455336708136289", - "1.8167236667008269", - "0.0", - "0.0", - "0.0", - "0.0", - "0.049077984384213534", - "3.593068587286009", - "0.0", - "0.0", - "0.02002874977851224" - ], - [ - "8355", - "0.03445689185449752", - "1.8165428690901209", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04894124850926601", - "3.5928202479745965", - "0.0", - "0.0", - "0.019972535199729018" - ], - [ - "8356", - "0.03436096335340578", - "1.8163631279350816", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04880527478368274", - "3.592573335368821", - "0.0", - "0.0", - "0.01991665192312882" - ], - [ - "8357", - "0.03426565723579212", - "1.8161846026634056", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04867016421909679", - "3.5923280562144533", - "0.0", - "0.0", - "0.019861150252487456" - ], - [ - "8358", - "0.03413054685236147", - "1.8159260963750075", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04848054205278256", - "3.591976661387808", - "0.0", - "0.0", - "0.019780551651940384" - ], - [ - "8359", - "0.034038131683839463", - "1.8157529258078844", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04834954791005324", - "3.5917387761254624", - "0.0", - "0.0", - "0.019726715457625676" - ], - [ - "8360", - "0.03394366773427452", - "1.815575985654844", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0482156237332248", - "3.5914956620665275", - "0.0", - "0.0", - "0.019671711735324244" - ], - [ - "8361", - "0.033849519451820555", - "1.8153996442975113", - "0.0", - "0.0", - "0.0", - "0.0", - "0.048082143033873814", - "3.591253363375173", - "0.0", - "0.0", - "0.019616895869767295" - ], - [ - "8362", - "0.03375567126963119", - "1.8152238507830711", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04794909147136932", - "3.5910118252409724", - "0.0", - "0.0", - "0.019562251067893072" - ], - [ - "8363", - "0.03366204437918123", - "1.815048486073983", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04781634720861128", - "3.5907708642195533", - "0.0", - "0.0", - "0.019507741549751174" - ], - [ - "8364", - "0.03356867715439874", - "1.8148736077393102", - "0.0", - "0.0", - "0.0", - "0.0", - "0.047683969727172586", - "3.5905305693937883", - "0.0", - "0.0", - "0.0194533845816249" - ], - [ - "8365", - "0.033475568875254096", - "1.814699214430291", - "0.0", - "0.0", - "0.0", - "0.0", - "0.047551958017488974", - "3.590290938927777", - "0.0", - "0.0", - "0.019399179733019217" - ], - [ - "8366", - "0.03338041475477936", - "1.8145206941152872", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04741714870903446", - "3.590045840978798", - "0.0", - "0.0", - "0.01934368080052425" - ], - [ - "8367", - "0.03328484442177867", - "1.814341557139533", - "0.0", - "0.0", - "0.0", - "0.0", - "0.047281690178491625", - "3.5897997800278443", - "0.0", - "0.0", - "0.01928799866506571" - ], - [ - "8368", - "0.03319015516848502", - "1.814164154268521", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04714744981118866", - "3.5895560413725245", - "0.0", - "0.0", - "0.019232860525781374" - ], - [ - "8369", - "0.03308893917653", - "1.8139731860567228", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04700442827996443", - "3.589294593466385", - "0.0", - "0.0", - "0.019173450073095566" - ], - [ - "8370", - "0.0329947477684343", - "1.8137967154140053", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04687089097736822", - "3.5890521315019925", - "0.0", - "0.0", - "0.019118604559500388" - ], - [ - "8371", - "0.03290152573692548", - "1.8136221144936344", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04673870765619928", - "3.588812199056128", - "0.0", - "0.0", - "0.019064343817651683" - ], - [ - "8372", - "0.032810267913394045", - "1.8134511924677759", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04660930814094138", - "3.588577320023693", - "0.0", - "0.0", - "0.019011227685846708" - ], - [ - "8373", - "0.032719263185377254", - "1.813280744494911", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04648026619854947", - "3.5883430904229847", - "0.0", - "0.0", - "0.018958260172205043" - ], - [ - "8374", - "0.03262850346912738", - "1.8131107544144671", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04635157073802569", - "3.5881094887725666", - "0.0", - "0.0", - "0.018905436200229074" - ], - [ - "8375", - "0.032537366929633854", - "1.8129399806799353", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0462223672073831", - "3.587874862444439", - "0.0", - "0.0", - "0.01885236665188461" - ], - [ - "8376", - "0.03244708398672297", - "1.8127708801555416", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04609434644248448", - "3.587642481665167", - "0.0", - "0.0", - "0.01879982153096146" - ], - [ - "8377", - "0.03236150659487608", - "1.8126105762405085", - "0.0", - "0.0", - "0.0", - "0.0", - "0.045973002932006034", - "3.5874221993011175", - "0.0", - "0.0", - "0.018750010257746124" - ], - [ - "8378", - "0.032271746477679684", - "1.8124424597372562", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04584571937401916", - "3.587191163668616", - "0.0", - "0.0", - "0.018697773581340203" - ], - [ - "8379", - "0.03218030432264925", - "1.812271192871636", - "0.0", - "0.0", - "0.0", - "0.0", - "0.045716049312271766", - "3.5869557966168437", - "0.0", - "0.0", - "0.018644559333026733" - ], - [ - "8380", - "0.03210669911499321", - "1.812128564446363", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04561335938393395", - "3.5867631049911175", - "0.0", - "0.0", - "0.018600038846052467" - ], - [ - "8381", - "0.03235989080389455", - "1.812602170249609", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04597261505197883", - "3.5874143922892374", - "0.0", - "0.0", - "0.018747166555810265" - ], - [ - "8382", - "0.03254934865501654", - "1.8129567427287168", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04624136679434679", - "3.587901850867317", - "0.0", - "0.0", - "0.018857330515686287" - ], - [ - "8383", - "0.03251948783194062", - "1.8129009698648626", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04619896905413522", - "3.5878250980963626", - "0.0", - "0.0", - "0.018840006609746024" - ], - [ - "8384", - "0.032615310113373895", - "1.8130799198519878", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0463350295133999", - "3.588071378503281", - "0.0", - "0.0", - "0.01889559071334789" - ], - [ - "8385", - "0.032853688020198966", - "1.8135261032668413", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04667314542239085", - "3.5886847264495154", - "0.0", - "0.0", - "0.019034230618007075" - ], - [ - "8386", - "0.032938869759110014", - "1.8136779856554102", - "0.0", - "0.0", - "0.0", - "0.0", - "0.046796638643353226", - "3.5888987708896662", - "0.0", - "0.0", - "0.0190811008748668" - ], - [ - "8387", - "0.033082100124222906", - "1.8139454837570639", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04700000073075564", - "3.589266891940453", - "0.0", - "0.0", - "0.01916419951769018" - ], - [ - "8388", - "0.03322943716915628", - "1.8142213236740583", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04720895246720193", - "3.5896460185881027", - "0.0", - "0.0", - "0.019249921871110628" - ], - [ - "8389", - "0.033329107211943654", - "1.8144051176559925", - "0.0", - "0.0", - "0.0", - "0.0", - "0.047351293865037274", - "3.589900582698225", - "0.0", - "0.0", - "0.019306920558850037" - ], - [ - "8390", - "0.03325819401412031", - "1.8142720647196295", - "0.0", - "0.0", - "0.0", - "0.0", - "0.047250830161337", - "3.5897179139311732", - "0.0", - "0.0", - "0.019265557866903614" - ], - [ - "8391", - "0.03348090020697554", - "1.8146888393583849", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04756672201511223", - "3.5902908539317857", - "0.0", - "0.0", - "0.019395078398838857" - ], - [ - "8392", - "0.03370747147043815", - "1.8151128695867866", - "0.0", - "0.0", - "0.0", - "0.0", - "0.047888080278713385", - "3.590873740350253", - "0.0", - "0.0", - "0.019526862662162917" - ], - [ - "8393", - "0.03361169501506385", - "1.814933438552899", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04775230160998621", - "3.590627218279619", - "0.0", - "0.0", - "0.019471088420141485" - ], - [ - "8394", - "0.03351688093250419", - "1.8147559081095648", - "0.0", - "0.0", - "0.0", - "0.0", - "0.047617851301258146", - "3.590383237368681", - "0.0", - "0.0", - "0.019415910563750232" - ], - [ - "8395", - "0.03341948358695679", - "1.8145731560623821", - "0.0", - "0.0", - "0.0", - "0.0", - "0.047479872436330575", - "3.59013234579556", - "0.0", - "0.0", - "0.01935909473758301" - ], - [ - "8396", - "0.033325739030427806", - "1.81439762931402", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04734693555202277", - "3.5898911134764537", - "0.0", - "0.0", - "0.01930454250883285" - ], - [ - "8397", - "0.03323173055933054", - "1.8142216084336984", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04721362302845393", - "3.5896491999211704", - "0.0", - "0.0", - "0.019249838090207156" - ], - [ - "8398", - "0.03313797836376545", - "1.8140460674221515", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0470806725419959", - "3.5894079437430837", - "0.0", - "0.0", - "0.019195284185534997" - ], - [ - "8399", - "0.033044532423302596", - "1.8138710998606289", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04694815498126804", - "3.5891674735752805", - "0.0", - "0.0", - "0.01914090986533715" - ], - [ - "8400", - "0.03295272314449297", - "1.813699177367808", - "0.0", - "0.0", - "0.0", - "0.0", - "0.046817963935620335", - "3.588931199916485", - "0.0", - "0.0", - "0.019087482353365597" - ], - [ - "8401", - "0.032868156302743874", - "1.8135404141458167", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04669818444892238", - "3.5887132896040943", - "0.0", - "0.0", - "0.01903812815656537" - ], - [ - "8402", - "0.03277416515200999", - "1.8133644270396014", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04656488927439453", - "3.5884714111879044", - "0.0", - "0.0", - "0.01898344102962544" - ], - [ - "8403", - "0.03268152482191452", - "1.8131909692020725", - "0.0", - "0.0", - "0.0", - "0.0", - "0.046433508428776984", - "3.5882330069322035", - "0.0", - "0.0", - "0.01892954121505206" - ], - [ - "8404", - "0.032551233331637924", - "1.8129454130136207", - "0.0", - "0.0", - "0.0", - "0.0", - "0.046249295326514915", - "3.587896619425376", - "0.0", - "0.0", - "0.018853171336760937" - ], - [ - "8405", - "0.032456973224662296", - "1.8127689152550348", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04611561652850888", - "3.587654036858741", - "0.0", - "0.0", - "0.018798329920815714" - ], - [ - "8406", - "0.03236794013636568", - "1.8126014897567262", - "0.0", - "0.0", - "0.0", - "0.0", - "0.045989602224664757", - "3.5874244188394604", - "0.0", - "0.0", - "0.018746278048066604" - ], - [ - "8407", - "0.03259505444721107", - "1.8130266585652104", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04631172710275453", - "3.5880088461437305", - "0.0", - "0.0", - "0.01887838179166761" - ], - [ - "8408", - "0.0328269780274187", - "1.8134607522542647", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04664069250873121", - "3.588605583078711", - "0.0", - "0.0", - "0.01901326354610619" - ], - [ - "8409", - "0.03305400981587686", - "1.8138857179052184", - "0.0", - "0.0", - "0.0", - "0.0", - "0.046962701246156924", - "3.5891897399694517", - "0.0", - "0.0", - "0.019145318385596796" - ], - [ - "8410", - "0.03322522605697235", - "1.8141977570323833", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04720852712159084", - "3.5896245384168335", - "0.0", - "0.0", - "0.01924192499235385" - ], - [ - "8411", - "0.03348122619283805", - "1.8146767172377374", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04757168768886422", - "3.5902830507710073", - "0.0", - "0.0", - "0.019390764696811884" - ], - [ - "8412", - "0.033733928519115025", - "1.8151496882872498", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04793009600551787", - "3.590933187509017", - "0.0", - "0.0", - "0.019537761032712177" - ], - [ - "8413", - "0.03398952077295142", - "1.8156275801829378", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04829276558790892", - "3.5915904123324656", - "0.0", - "0.0", - "0.01968627595799392" - ], - [ - "8414", - "0.03425063975024221", - "1.816116187136858", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0486631317936132", - "3.5922620913206935", - "0.0", - "0.0", - "0.019838147706871218" - ], - [ - "8415", - "0.03447429781210101", - "1.8165317720534957", - "0.0", - "0.0", - "0.0", - "0.0", - "0.048981390277513595", - "3.592835410567401", - "0.0", - "0.0", - "0.01996720534668843" - ], - [ - "8416", - "0.034715114547574234", - "1.816982471136092", - "0.0", - "0.0", - "0.0", - "0.0", - "0.049322913469885835", - "3.5934548941756104", - "0.0", - "0.0", - "0.02010731562526264" - ], - [ - "8417", - "0.03462004757491196", - "1.8168044081617356", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04918814165586902", - "3.5932102472351826", - "0.0", - "0.0", - "0.02005195349395491" - ], - [ - "8418", - "0.03452368472349354", - "1.8166239790980652", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04905150967448513", - "3.592962304741602", - "0.0", - "0.0", - "0.019995859772501953" - ], - [ - "8419", - "0.034422418431621325", - "1.8164336607616984", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04890817402962369", - "3.592701262478854", - "0.0", - "0.0", - "0.01993666283361896" - ], - [ - "8420", - "0.0343237985430205", - "1.8162486404176972", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04876846790890994", - "3.5924472599022614", - "0.0", - "0.0", - "0.019879129177131052" - ], - [ - "8421", - "0.034228599601458964", - "1.8160704389726365", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04863346472242976", - "3.592202338190479", - "0.0", - "0.0", - "0.019823734480488162" - ], - [ - "8422", - "0.034133664665000826", - "1.8158927317382467", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04849883450714705", - "3.5919580935457702", - "0.0", - "0.0", - "0.019768494822854598" - ], - [ - "8423", - "0.03403899300169527", - "1.815715517344207", - "0.0", - "0.0", - "0.0", - "0.0", - "0.048364576236739995", - "3.591714524102702", - "0.0", - "0.0", - "0.019713409766650546" - ], - [ - "8424", - "0.033888585258528475", - "1.8154263593926612", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04815396460199032", - "3.5913223829875327", - "0.0", - "0.0", - "0.019623205915066635" - ], - [ - "8425", - "0.033812016262573776", - "1.8152804836991974", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04804627621246634", - "3.5911236523801677", - "0.0", - "0.0", - "0.019577756312681212" - ], - [ - "8426", - "0.03406677592054579", - "1.8157561186473086", - "0.0", - "0.0", - "0.0", - "0.0", - "0.048408009173876915", - "3.5917782563541976", - "0.0", - "0.0", - "0.019725542667214668" - ], - [ - "8427", - "0.03433133460980541", - "1.8162512255090328", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04878322891486072", - "3.5924588223830196", - "0.0", - "0.0", - "0.019879440304750112" - ], - [ - "8428", - "0.034572616307481666", - "1.8167012884447955", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04912594980062385", - "3.593078487586561", - "0.0", - "0.0", - "0.02001928281433948" - ], - [ - "8429", - "0.03481811081697811", - "1.817160642622995", - "0.0", - "0.0", - "0.0", - "0.0", - "0.049474138670082136", - "3.5937099316711745", - "0.0", - "0.0", - "0.02016208296387409" - ], - [ - "8430", - "0.035063600913823476", - "1.8176199388056504", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0498223294649636", - "3.5943413161918474", - "0.0", - "0.0", - "0.020304872362683347" - ], - [ - "8431", - "0.03529741768186444", - "1.818056830656336", - "0.0", - "0.0", - "0.0", - "0.0", - "0.050154154202893333", - "3.5949422809459257", - "0.0", - "0.0", - "0.020440681160835545" - ], - [ - "8432", - "0.03519030788979835", - "1.8178556232532357", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05000252720386043", - "3.5946662577469937", - "0.0", - "0.0", - "0.020378088575736267" - ], - [ - "8433", - "0.0352640895117328", - "1.8179927899100992", - "0.0", - "0.0", - "0.0", - "0.0", - "0.050107481112537815", - "3.5948554204559815", - "0.0", - "0.0", - "0.02042069791092779" - ], - [ - "8434", - "0.03515410627347465", - "1.8177862664419284", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04995175686235042", - "3.5945720468814044", - "0.0", - "0.0", - "0.02035645568459888" - ], - [ - "8435", - "0.035052558974008684", - "1.817595696014791", - "0.0", - "0.0", - "0.0", - "0.0", - "0.049807935590373345", - "3.594310482304483", - "0.0", - "0.0", - "0.020297182357644026" - ], - [ - "8436", - "0.03495929492612404", - "1.8174202401781703", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04967599657928698", - "3.5940699590316876", - "0.0", - "0.0", - "0.02024259327296109" - ], - [ - "8437", - "0.035182357147075856", - "1.8178376710326274", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04999233851855793", - "3.5946437188846794", - "0.0", - "0.0", - "0.02037237577559379" - ], - [ - "8438", - "0.03540343512326963", - "1.8182512221140172", - "0.0", - "0.0", - "0.0", - "0.0", - "0.050305917667658524", - "3.5952122499735473", - "0.0", - "0.0", - "0.020500952578880734" - ], - [ - "8439", - "0.03564108918169573", - "1.8186955374817901", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05064308597165815", - "3.5958232304281434", - "0.0", - "0.0", - "0.02063909239173331" - ], - [ - "8440", - "0.035866697526830804", - "1.8191172462352534", - "0.0", - "0.0", - "0.0", - "0.0", - "0.050963186901306204", - "3.596403171830195", - "0.0", - "0.0", - "0.020770208152355404" - ], - [ - "8441", - "0.036097012075470135", - "1.8195481092482966", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05128983059779949", - "3.5969954411129805", - "0.0", - "0.0", - "0.020904193553140778" - ], - [ - "8442", - "0.03632678390414471", - "1.8199780778528418", - "0.0", - "0.0", - "0.0", - "0.0", - "0.051615653591292825", - "3.597586384243647", - "0.0", - "0.0", - "0.0210379142169966" - ], - [ - "8443", - "0.03656197541325019", - "1.8204182382090255", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05194913564452889", - "3.5981912869612276", - "0.0", - "0.0", - "0.02117481518197148" - ], - [ - "8444", - "0.03679799458946097", - "1.8208599085322292", - "0.0", - "0.0", - "0.0", - "0.0", - "0.052283796392866594", - "3.598798278611658", - "0.0", - "0.0", - "0.02131219278605534" - ], - [ - "8445", - "0.03703276791373934", - "1.821299109747582", - "0.0", - "0.0", - "0.0", - "0.0", - "0.052616730703103055", - "3.599401959467498", - "0.0", - "0.0", - "0.021448805124375636" - ], - [ - "8446", - "0.03726796843286124", - "1.8217391791706434", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05295023779737806", - "3.6000067724694693", - "0.0", - "0.0", - "0.021585699068344424" - ], - [ - "8447", - "0.03750334405581595", - "1.8221796133318349", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05328397143217721", - "3.6006120477217305", - "0.0", - "0.0", - "0.021722716679454683" - ], - [ - "8448", - "0.03772207456887867", - "1.822588934561649", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05359408482134974", - "3.601174530371965", - "0.0", - "0.0", - "0.02185006431640759" - ], - [ - "8449", - "0.03792758168070058", - "1.8229732257107572", - "0.0", - "0.0", - "0.0", - "0.0", - "0.053885544112442695", - "3.601702804465192", - "0.0", - "0.0", - "0.02196961924895846" - ], - [ - "8450", - "0.03813226726293259", - "1.823355483104539", - "0.0", - "0.0", - "0.0", - "0.0", - "0.054176007806668126", - "3.602228618982415", - "0.0", - "0.0", - "0.022088526719197057" - ], - [ - "8451", - "0.038343442293569965", - "1.8237501640852716", - "0.0", - "0.0", - "0.0", - "0.0", - "0.054475566005196104", - "3.6027713003352075", - "0.0", - "0.0", - "0.02221131858194383" - ], - [ - "8452", - "0.0385461603440686", - "1.8241290657567941", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05476311180599661", - "3.6032922568573555", - "0.0", - "0.0", - "0.022329208882140582" - ], - [ - "8453", - "0.03876028407095909", - "1.824529618798503", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05506671125356798", - "3.6038427397306485", - "0.0", - "0.0", - "0.022453856888350193" - ], - [ - "8454", - "0.03897518188969507", - "1.8249317559290201", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0553713529551241", - "3.604395294027554", - "0.0", - "0.0", - "0.022579010824266048" - ], - [ - "8455", - "0.03921876485728544", - "1.8253872537703162", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0557167628210626", - "3.60502137587656", - "0.0", - "0.0", - "0.02272076689350827" - ], - [ - "8456", - "0.039354210327299445", - "1.8256319781892214", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05591185439478334", - "3.6053636967713865", - "0.0", - "0.0", - "0.022796566259815545" - ], - [ - "8457", - "0.03953825663381095", - "1.8259759877320965", - "0.0", - "0.0", - "0.0", - "0.0", - "0.056172884163701496", - "3.6058366309729637", - "0.0", - "0.0", - "0.022903629103920395" - ], - [ - "8458", - "0.03972250559702682", - "1.8263204153452395", - "0.0", - "0.0", - "0.0", - "0.0", - "0.056434182198389915", - "3.6063101045339354", - "0.0", - "0.0", - "0.023010828995663736" - ], - [ - "8459", - "0.039894850694678255", - "1.8266421685890013", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05667874293730629", - "3.6067526945286574", - "0.0", - "0.0", - "0.023110958452050214" - ], - [ - "8460", - "0.03992711877969689", - "1.8267031427786358", - "0.0", - "0.0", - "0.0", - "0.0", - "0.056724272144431265", - "3.6068360569065234", - "0.0", - "0.0", - "0.023129965414962508" - ], - [ - "8461", - "0.03981721946578588", - "1.8264975155455094", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05656848513808838", - "3.606553523408521", - "0.0", - "0.0", - "0.02306595379348339" - ], - [ - "8462", - "0.03969551862617845", - "1.826268375975305", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05639647326217382", - "3.6062396751280663", - "0.0", - "0.0", - "0.022994563990183084" - ], - [ - "8463", - "0.03958360681004314", - "1.8260585969982135", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05623796608145883", - "3.6059516993132497", - "0.0", - "0.0", - "0.022929247538627445" - ], - [ - "8464", - "0.03945977788047278", - "1.8258253685982222", - "0.0", - "0.0", - "0.0", - "0.0", - "0.056062970798418967", - "3.605632300148212", - "0.0", - "0.0", - "0.022856584962526592" - ], - [ - "8465", - "0.039351520535374766", - "1.8256228321105654", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05590949691007608", - "3.60535398835695", - "0.0", - "0.0", - "0.022793544160673446" - ], - [ - "8466", - "0.039240578505395446", - "1.825415015389312", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05575230623817992", - "3.605068596904247", - "0.0", - "0.0", - "0.022728850772610963" - ], - [ - "8467", - "0.03913009246622913", - "1.8252080832196944", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05559574898734764", - "3.6047843961682355", - "0.0", - "0.0", - "0.022664435945110622" - ], - [ - "8468", - "0.039021241355724975", - "1.8250043896785166", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05544144408909023", - "3.604504517960402", - "0.0", - "0.0", - "0.022601038622359727" - ], - [ - "8469", - "0.03891081520127201", - "1.8247974748082376", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05528500148464324", - "3.60422040104071", - "0.0", - "0.0", - "0.022536628917900772" - ], - [ - "8470", - "0.038802725192986616", - "1.824595221348214", - "0.0", - "0.0", - "0.0", - "0.0", - "0.055131766226167396", - "3.603942484879295", - "0.0", - "0.0", - "0.022473684159805832" - ], - [ - "8471", - "0.03868002834894117", - "1.8243628404886516", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05495881022297554", - "3.6036251097025818", - "0.0", - "0.0", - "0.02240124647490681" - ], - [ - "8472", - "0.03863968413912078", - "1.824285674413975", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05490220722890839", - "3.603520238075294", - "0.0", - "0.0", - "0.022377161049333166" - ], - [ - "8473", - "0.03861073908607495", - "1.8242313874098155", - "0.0", - "0.0", - "0.0", - "0.0", - "0.054861216484035955", - "3.603445728452242", - "0.0", - "0.0", - "0.022360261688113954" - ], - [ - "8474", - "0.03855955128653452", - "1.8241340158328354", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05478921003465927", - "3.603313032150941", - "0.0", - "0.0", - "0.022329892538409776" - ], - [ - "8475", - "0.038762480560821114", - "1.824513503962848", - "0.0", - "0.0", - "0.0", - "0.0", - "0.055076981205910085", - "3.603834651958872", - "0.0", - "0.0", - "0.02244797991573215" - ], - [ - "8476", - "0.03896131233829036", - "1.8248847518076596", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05535913995426716", - "3.6043453372870924", - "0.0", - "0.0", - "0.02256348472231356" - ], - [ - "8477", - "0.039161911173895066", - "1.8252588051985992", - "0.0", - "0.0", - "0.0", - "0.0", - "0.055643974795343165", - "3.60486021616485", - "0.0", - "0.0", - "0.022679847552446966" - ], - [ - "8478", - "0.039389652098978906", - "1.8256833674226907", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05596737806544744", - "3.6054446796504314", - "0.0", - "0.0", - "0.02281192613251038" - ], - [ - "8479", - "0.039628418715698124", - "1.8261300124704465", - "0.0", - "0.0", - "0.0", - "0.0", - "0.056305889050909115", - "3.606058464171118", - "0.0", - "0.0", - "0.022950948380487127" - ], - [ - "8480", - "0.039819497687721084", - "1.826487463115457", - "0.0", - "0.0", - "0.0", - "0.0", - "0.056576780423550584", - "3.6065496588247115", - "0.0", - "0.0", - "0.023062214951891587" - ], - [ - "8481", - "0.040036967749461215", - "1.8268940592699148", - "0.0", - "0.0", - "0.0", - "0.0", - "0.056885158698165766", - "3.607108532513661", - "0.0", - "0.0", - "0.02318877680075667" - ], - [ - "8482", - "0.04025530138751191", - "1.8273023959602435", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05719470960918979", - "3.607669699736537", - "0.0", - "0.0", - "0.023315893165834028" - ], - [ - "8483", - "0.04041762445084786", - "1.8276059960687447", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05742483866106286", - "3.608086911032925", - "0.0", - "0.0", - "0.02341041024063286" - ], - [ - "8484", - "0.040655609226289795", - "1.828051020593506", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05776225915944634", - "3.6086985202227426", - "0.0", - "0.0", - "0.023548959293133248" - ], - [ - "8485", - "0.04089503232947483", - "1.8284987075341252", - "0.0", - "0.0", - "0.0", - "0.0", - "0.058101719728794736", - "3.6093137937815847", - "0.0", - "0.0", - "0.023688344930154915" - ], - [ - "8486", - "0.04113835171597748", - "1.8289538670558048", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05844662923725391", - "3.6099391931725786", - "0.0", - "0.0", - "0.023830074194701057" - ], - [ - "8487", - "0.041381134547812365", - "1.8294079436409367", - "0.0", - "0.0", - "0.0", - "0.0", - "0.058790797072009036", - "3.6105631456262635", - "0.0", - "0.0", - "0.023971472023615686" - ], - [ - "8488", - "0.04159189373039845", - "1.8297997736276848", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05909039377080992", - "3.6111031883059304", - "0.0", - "0.0", - "0.024093393689986975" - ], - [ - "8489", - "0.041548666321766695", - "1.8297187193826254", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05902918979734705", - "3.610991957011198", - "0.0", - "0.0", - "0.024068142846186344" - ], - [ - "8490", - "0.04141687994653676", - "1.8294698188013245", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05884323130827152", - "3.6106516287182844", - "0.0", - "0.0", - "0.023990528584802006" - ], - [ - "8491", - "0.041307404926913184", - "1.8292650025875312", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0586880647584898", - "3.61037023595179", - "0.0", - "0.0", - "0.023926745095336575" - ], - [ - "8492", - "0.04126751474745116", - "1.829190364913556", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05863152777771559", - "3.6102676971941303", - "0.0", - "0.0", - "0.023903501717186745" - ], - [ - "8493", - "0.04122822622224758", - "1.8291168733724006", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05857583607340466", - "3.6101667184837587", - "0.0", - "0.0", - "0.023880616371090502" - ], - [ - "8494", - "0.0411788254994649", - "1.8290230576245587", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0585063084859352", - "3.610038792168768", - "0.0", - "0.0", - "0.0238513425129946" - ], - [ - "8495", - "0.0411374559358529", - "1.8289456747853956", - "0.0", - "0.0", - "0.0", - "0.0", - "0.058447665817793044", - "3.609932464869273", - "0.0", - "0.0", - "0.023827246053912746" - ], - [ - "8496", - "0.0410968590051758", - "1.8288696447162025", - "0.0", - "0.0", - "0.0", - "0.0", - "0.058390150843711526", - "3.609828060173922", - "0.0", - "0.0", - "0.02380356716664007" - ], - [ - "8497", - "0.04106974198010508", - "1.8288185038811906", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05835185911553681", - "3.6097580802339717", - "0.0", - "0.0", - "0.023787624844673352" - ], - [ - "8498", - "0.04094404577750387", - "1.828582439160933", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05817401281730146", - "3.6094343704431044", - "0.0", - "0.0", - "0.02371407873770629" - ], - [ - "8499", - "0.04082892364731391", - "1.8283669007930619", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05801088925387787", - "3.6091383426601373", - "0.0", - "0.0", - "0.023646958040749934" - ], - [ - "8500", - "0.040716078153318645", - "1.8281557968614641", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05785092874195795", - "3.6088482828560124", - "0.0", - "0.0", - "0.02358122756467934" - ], - [ - "8501", - "0.040593249465594554", - "1.827920545926649", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05767875027279581", - "3.6085288407445066", - "0.0", - "0.0", - "0.023507748658393293" - ], - [ - "8502", - "0.04068088246259581", - "1.8280846868381506", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05780290174257908", - "3.608754234765257", - "0.0", - "0.0", - "0.023558863182612536" - ], - [ - "8503", - "0.04061171615589092", - "1.8279553445379735", - "0.0", - "0.0", - "0.0", - "0.0", - "0.057704838363952835", - "3.6085764800824873", - "0.0", - "0.0", - "0.023518593947829004" - ], - [ - "8504", - "0.04056220553474234", - "1.8278627084893828", - "0.0", - "0.0", - "0.0", - "0.0", - "0.057634659964881554", - "3.6084492048856913", - "0.0", - "0.0", - "0.02348975110460311" - ], - [ - "8505", - "0.04046740262551884", - "1.8276853463756406", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05750027521056369", - "3.6082055085672295", - "0.0", - "0.0", - "0.02343453004047399" - ], - [ - "8506", - "0.04035517352264043", - "1.8274754383212328", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05734116696028311", - "3.607917052427039", - "0.0", - "0.0", - "0.023369180084997762" - ], - [ - "8507", - "0.04048798955578815", - "1.8277227910106228", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05752983633276363", - "3.6082577010764405", - "0.0", - "0.0", - "0.02344614277881266" - ], - [ - "8508", - "0.040376766269529935", - "1.8275149339879637", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05737209432440756", - "3.6079719460766517", - "0.0", - "0.0", - "0.023381438214652307" - ], - [ - "8509", - "0.040263846769217675", - "1.8273034628998563", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0572121018116734", - "3.6076815282606165", - "0.0", - "0.0", - "0.023315591726761942" - ], - [ - "8510", - "0.04014786014875104", - "1.827085967957165", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05704786050992863", - "3.607383028681325", - "0.0", - "0.0", - "0.02324785978757345" - ], - [ - "8511", - "0.04014801191685729", - "1.8270835257291536", - "0.0", - "0.0", - "0.0", - "0.0", - "0.057049039889630414", - "3.607381565459099", - "0.0", - "0.0", - "0.023246983944084167" - ], - [ - "8512", - "0.040037492434334465", - "1.8268768274773033", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05689234555359212", - "3.607097503271637", - "0.0", - "0.0", - "0.023182639315076813" - ], - [ - "8513", - "0.04014156263259816", - "1.8270714640013224", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05703989615776273", - "3.6073649892951196", - "0.0", - "0.0", - "0.023243229107433587" - ], - [ - "8514", - "0.040315992935977166", - "1.8273972243492271", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05728736452210556", - "3.607812995076257", - "0.0", - "0.0", - "0.023344621349848778" - ], - [ - "8515", - "0.04049296896172929", - "1.8277258581469822", - "0.0", - "0.0", - "0.0", - "0.0", - "0.057539105026583874", - "3.6082662531728036", - "0.0", - "0.0", - "0.023446832896874707" - ], - [ - "8516", - "0.040692888933488644", - "1.8280997436322004", - "0.0", - "0.0", - "0.0", - "0.0", - "0.057822540511455425", - "3.608780063811717", - "0.0", - "0.0", - "0.02356323735552186" - ], - [ - "8517", - "0.04077702480704304", - "1.8282572612256938", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05794176216808503", - "3.6089964117337274", - "0.0", - "0.0", - "0.023612287446001044" - ], - [ - "8518", - "0.04062163089301499", - "1.8279525769973535", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05772643181028065", - "3.6085874714724593", - "0.0", - "0.0", - "0.023516829975749325" - ], - [ - "8519", - "0.040569770971761614", - "1.8278555437741435", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0576529239097863", - "3.608454155773049", - "0.0", - "0.0", - "0.023486618033736934" - ], - [ - "8520", - "0.040517041392673606", - "1.8277567475165846", - "0.0", - "0.0", - "0.0", - "0.0", - "0.057578230933728096", - "3.608318511371556", - "0.0", - "0.0", - "0.023455851851619126" - ], - [ - "8521", - "0.04040467697644522", - "1.8275466450319842", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05741891071299125", - "3.6080297480952024", - "0.0", - "0.0", - "0.023390443239899184" - ], - [ - "8522", - "0.04025217614390092", - "1.8272560633165995", - "0.0", - "0.0", - "0.0", - "0.0", - "0.057204598356448026", - "3.6076341383760226", - "0.0", - "0.0", - "0.023299753931353813" - ], - [ - "8523", - "0.0400907121671864", - "1.8269542005550043", - "0.0", - "0.0", - "0.0", - "0.0", - "0.056975636264946", - "3.6072192161249084", - "0.0", - "0.0", - "0.02320578806942679" - ], - [ - "8524", - "0.039973708906555105", - "1.8267353390454246", - "0.0", - "0.0", - "0.0", - "0.0", - "0.056809760943950016", - "3.6069184615286183", - "0.0", - "0.0", - "0.02313765686916019" - ], - [ - "8525", - "0.03985726695664402", - "1.8265175167192687", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05664468309368091", - "3.6066191391961415", - "0.0", - "0.0", - "0.023069850819607142" - ], - [ - "8526", - "0.03968107641754423", - "1.8261847490816274", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05639601929464426", - "3.60616406014982", - "0.0", - "0.0", - "0.022966133540444206" - ], - [ - "8527", - "0.03957031324895999", - "1.825975689725827", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05623964445480504", - "3.6058780612585886", - "0.0", - "0.0", - "0.02290098204311494" - ], - [ - "8528", - "0.03978471075785843", - "1.8263752178271513", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05654414279416799", - "3.6064281526078354", - "0.0", - "0.0", - "0.023025278721548876" - ], - [ - "8529", - "0.03997153047192524", - "1.8267239010479637", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05680927495913244", - "3.6069078491344024", - "0.0", - "0.0", - "0.02313378598471804" - ], - [ - "8530", - "0.039910668855318125", - "1.8266098045904051", - "0.0", - "0.0", - "0.0", - "0.0", - "0.056723079414607566", - "3.6067512330423255", - "0.0", - "0.0", - "0.023098258296028688" - ], - [ - "8531", - "0.03979370944787883", - "1.8263906630485836", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05655739083995235", - "3.6064503393662255", - "0.0", - "0.0", - "0.023030028055805302" - ], - [ - "8532", - "0.039686479001039866", - "1.8261901357861048", - "0.0", - "0.0", - "0.0", - "0.0", - "0.056405346512164514", - "3.6061747344299704", - "0.0", - "0.0", - "0.022967611489915225" - ], - [ - "8533", - "0.03957501718025292", - "1.825981606616051", - "0.0", - "0.0", - "0.0", - "0.0", - "0.056247331983249285", - "3.6058881904635505", - "0.0", - "0.0", - "0.02290270237725656" - ], - [ - "8534", - "0.03944142272138637", - "1.8257290669134363", - "0.0", - "0.0", - "0.0", - "0.0", - "0.056058858335757446", - "3.605542971109017", - "0.0", - "0.0", - "0.022823987107015296" - ], - [ - "8535", - "0.03932394636867751", - "1.8255088824027506", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05589245508857575", - "3.6052406835334425", - "0.0", - "0.0", - "0.022755437648779273" - ], - [ - "8536", - "0.0392093948741221", - "1.825294687792944", - "0.0", - "0.0", - "0.0", - "0.0", - "0.055730013353091766", - "3.604946264928668", - "0.0", - "0.0", - "0.022688776395152443" - ], - [ - "8537", - "0.03909957720858725", - "1.8250893644766093", - "0.0", - "0.0", - "0.0", - "0.0", - "0.055574275627140346", - "3.6046640236490957", - "0.0", - "0.0", - "0.022624878790034143" - ], - [ - "8538", - "0.038988055468452035", - "1.824880843848727", - "0.0", - "0.0", - "0.0", - "0.0", - "0.055416123329146076", - "3.6043773921474522", - "0.0", - "0.0", - "0.022559987607757993" - ], - [ - "8539", - "0.038879233418678966", - "1.824677406306", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05526178522304927", - "3.6040977205276508", - "0.0", - "0.0", - "0.02249668161430866" - ], - [ - "8540", - "0.03876963718330941", - "1.8244724070869691", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05510638766397126", - "3.603815978484458", - "0.0", - "0.0", - "0.022432886702647564" - ], - [ - "8541", - "0.03866211946210081", - "1.8242714143771326", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05495389352381911", - "3.603539657804411", - "0.0", - "0.0", - "0.02237034540038251" - ], - [ - "8542", - "0.0385547502978879", - "1.8240706372951667", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05480163022352705", - "3.6032636738696215", - "0.0", - "0.0", - "0.022307870372248753" - ], - [ - "8543", - "0.0384471105832542", - "1.8238694147432495", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05464896009981473", - "3.6029870329446463", - "0.0", - "0.0", - "0.022245261066693674" - ], - [ - "8544", - "0.03833585749537903", - "1.82366143950655", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05449116230974881", - "3.6027011040130668", - "0.0", - "0.0", - "0.02218055268100924" - ], - [ - "8545", - "0.03831879623283192", - "1.8236278283186946", - "0.0", - "0.0", - "0.0", - "0.0", - "0.054467569425673", - "3.6026560848522906", - "0.0", - "0.0", - "0.02217002303999084" - ], - [ - "8546", - "0.038523611861769495", - "1.824010532516442", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05475813447936699", - "3.603182355510326", - "0.0", - "0.0", - "0.022289089244172004" - ], - [ - "8547", - "0.03840631362247652", - "1.823790856159174", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05459190516179098", - "3.6028806192105196", - "0.0", - "0.0", - "0.022220722083162055" - ], - [ - "8548", - "0.03829380227961279", - "1.8235804342360022", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05443235533332382", - "3.6025913908799194", - "0.0", - "0.0", - "0.022155249225901757" - ], - [ - "8549", - "0.03819185642867698", - "1.8233882947161253", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05428830825847103", - "3.6023283131774857", - "0.0", - "0.0", - "0.022095404598882925" - ], - [ - "8550", - "0.03837669140627314", - "1.82373376054522", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05455049746678749", - "3.602803315441353", - "0.0", - "0.0", - "0.022202885345758795" - ], - [ - "8551", - "0.03838920923911125", - "1.823757389444874", - "0.0", - "0.0", - "0.0", - "0.0", - "0.054568171785433585", - "3.6028356428054167", - "0.0", - "0.0", - "0.02221024669278892" - ], - [ - "8552", - "0.038277761628252256", - "1.8235489879383198", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05441011916006807", - "3.6025491696097705", - "0.0", - "0.0", - "0.022145404096436446" - ], - [ - "8553", - "0.038167456886909853", - "1.8233417919366792", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05425401440631491", - "3.602264996195995", - "0.0", - "0.0", - "0.0220808993675048" - ], - [ - "8554", - "0.038058749601206476", - "1.8231382765358708", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05409992841897501", - "3.601985398848166", - "0.0", - "0.0", - "0.022017570783437936" - ], - [ - "8555", - "0.03795225690072005", - "1.8229391557166155", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05394889191783729", - "3.6017116641683202", - "0.0", - "0.0", - "0.021955621883602817" - ], - [ - "8556", - "0.03784134397857998", - "1.8227317303181045", - "0.0", - "0.0", - "0.0", - "0.0", - "0.053791598418934536", - "3.601426537628501", - "0.0", - "0.0", - "0.02189108953822543" - ], - [ - "8557", - "0.03773002273982859", - "1.8225234465770994", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05363375737907032", - "3.6011402938905204", - "0.0", - "0.0", - "0.021826288100586854" - ], - [ - "8558", - "0.03762233731129978", - "1.8223219460701297", - "0.0", - "0.0", - "0.0", - "0.0", - "0.053481076532682165", - "3.6008633829648584", - "0.0", - "0.0", - "0.0217635980899174" - ], - [ - "8559", - "0.03751305449677681", - "1.822117662785928", - "0.0", - "0.0", - "0.0", - "0.0", - "0.053326056186614214", - "3.600582502187441", - "0.0", - "0.0", - "0.021700052806939412" - ], - [ - "8560", - "0.03740216070265283", - "1.8219103879031084", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05316874173411542", - "3.6002974914484835", - "0.0", - "0.0", - "0.021635579671190244" - ], - [ - "8561", - "0.037574278309669466", - "1.8222324178534186", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05341279483982888", - "3.6007400717520537", - "0.0", - "0.0", - "0.021735761779510053" - ], - [ - "8562", - "0.037884341753315925", - "1.8228118555810662", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05385267841120793", - "3.6015368772985132", - "0.0", - "0.0", - "0.021916005095423925" - ], - [ - "8563", - "0.03789368223908544", - "1.8228292981873795", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05386593388204404", - "3.6015608716514893", - "0.0", - "0.0", - "0.021921430596126834" - ], - [ - "8564", - "0.037842541498117374", - "1.822730889046727", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05379438447352822", - "3.6014275156074524", - "0.0", - "0.0", - "0.021890698522706534" - ], - [ - "8565", - "0.03782148214452943", - "1.8226913316129376", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05376457955931193", - "3.601373259523816", - "0.0", - "0.0", - "0.021878384729746923" - ], - [ - "8566", - "0.03780403658609762", - "1.822658697951159", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05373984122140622", - "3.6013284062570805", - "0.0", - "0.0", - "0.021868231950789012" - ], - [ - "8567", - "0.0377740717593748", - "1.822600877656797", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05369797427256909", - "3.601250159564341", - "0.0", - "0.0", - "0.021850169246180502" - ], - [ - "8568", - "0.037758679498588306", - "1.8225720943568062", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05367614411871096", - "3.6012105916878525", - "0.0", - "0.0", - "0.021841214878465645" - ], - [ - "8569", - "0.037742087794575295", - "1.8225408995879", - "0.0", - "0.0", - "0.0", - "0.0", - "0.053652672301992485", - "3.601167825488912", - "0.0", - "0.0", - "0.021831503287158112" - ], - [ - "8570", - "0.0377285657036784", - "1.8225155928334835", - "0.0", - "0.0", - "0.0", - "0.0", - "0.053633501748808945", - "3.6011330509561974", - "0.0", - "0.0", - "0.02182362965854786" - ], - [ - "8571", - "0.03770981220035473", - "1.8224805082144524", - "0.0", - "0.0", - "0.0", - "0.0", - "0.053606909951058324", - "3.601084831535947", - "0.0", - "0.0", - "0.021812714449651133" - ], - [ - "8572", - "0.03767078384260906", - "1.8224068095346067", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05355181015670262", - "3.6009840147198355", - "0.0", - "0.0", - "0.0217897575285155" - ], - [ - "8573", - "0.03761016482854979", - "1.8222931371614122", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05346594718038637", - "3.6008279682323687", - "0.0", - "0.0", - "0.021754382476713206" - ], - [ - "8574", - "0.03749642134777287", - "1.8220793214302384", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05330502043406091", - "3.600534807545297", - "0.0", - "0.0", - "0.02168782226148483" - ], - [ - "8575", - "0.037391173937104595", - "1.8218824400878761", - "0.0", - "0.0", - "0.0", - "0.0", - "0.053155772234729504", - "3.600264198851759", - "0.0", - "0.0", - "0.021626575639479683" - ], - [ - "8576", - "0.03728680468531834", - "1.8216873226876709", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05300772484197389", - "3.599995928126765", - "0.0", - "0.0", - "0.021565884528662774" - ], - [ - "8577", - "0.0371828309776648", - "1.821492924180673", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05286024410560661", - "3.5997286574948335", - "0.0", - "0.0", - "0.021505417849722996" - ], - [ - "8578", - "0.03707174453134224", - "1.821284265095434", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0527030120036871", - "3.5994424440103874", - "0.0", - "0.0", - "0.02144047705899738" - ], - [ - "8579", - "0.036961221099845364", - "1.821076735482236", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05254654947318486", - "3.5991577272060136", - "0.0", - "0.0", - "0.02137589272650587" - ], - [ - "8580", - "0.03685786283986361", - "1.8208835005507586", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05239993192201103", - "3.5988920393484953", - "0.0", - "0.0", - "0.021315793757716188" - ], - [ - "8581", - "0.036755139285116145", - "1.820691445223125", - "0.0", - "0.0", - "0.0", - "0.0", - "0.052254215555435905", - "3.598627975723495", - "0.0", - "0.0", - "0.02125606301479639" - ], - [ - "8582", - "0.036646138945162714", - "1.820487466101513", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05209966010997234", - "3.5983476454562826", - "0.0", - "0.0", - "0.021192617780353088" - ], - [ - "8583", - "0.03654834074851238", - "1.8203044043134424", - "0.0", - "0.0", - "0.0", - "0.0", - "0.051961003212097415", - "3.5980960914223057", - "0.0", - "0.0", - "0.021135678284927354" - ], - [ - "8584", - "0.03644149992412262", - "1.8201040145344483", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0518096658357766", - "3.5978210013936227", - "0.0", - "0.0", - "0.021073334012468647" - ], - [ - "8585", - "0.03633501264889562", - "1.8199049910154814", - "0.0", - "0.0", - "0.0", - "0.0", - "0.051658579386717494", - "3.5975472988252686", - "0.0", - "0.0", - "0.021011445911073737" - ], - [ - "8586", - "0.036231503689187095", - "1.819711496436361", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0515117301771781", - "3.5972812231933857", - "0.0", - "0.0", - "0.020951277201196085" - ], - [ - "8587", - "0.036126126400436484", - "1.8195145526033893", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05136221336000384", - "3.5970103718547857", - "0.0", - "0.0", - "0.020890039440869125" - ], - [ - "8588", - "0.036019506948962166", - "1.8193150823051125", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05121100461622211", - "3.596736185206066", - "0.0", - "0.0", - "0.02082800928170222" - ], - [ - "8589", - "0.03591471112158663", - "1.8191192258785358", - "0.0", - "0.0", - "0.0", - "0.0", - "0.051062309124520325", - "3.5964668235819715", - "0.0", - "0.0", - "0.02076711311865294" - ], - [ - "8590", - "0.03580750680095874", - "1.8189185059618649", - "0.0", - "0.0", - "0.0", - "0.0", - "0.050910322200457034", - "3.5961910213506916", - "0.0", - "0.0", - "0.02070469140146045" - ], - [ - "8591", - "0.03570310424318487", - "1.8187233647443495", - "0.0", - "0.0", - "0.0", - "0.0", - "0.050762188259834175", - "3.595922651784197", - "0.0", - "0.0", - "0.020644020226535557" - ], - [ - "8592", - "0.0355975702856445", - "1.818525977200266", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05061249370456373", - "3.5956512814401647", - "0.0", - "0.0", - "0.020582646866725278" - ], - [ - "8593", - "0.03549389806504127", - "1.818332222454932", - "0.0", - "0.0", - "0.0", - "0.0", - "0.05046538509743609", - "3.59538479864335", - "0.0", - "0.0", - "0.02052241103264645" - ], - [ - "8594", - "0.03538856732614864", - "1.8181350616692755", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0503160294504913", - "3.5951138409059933", - "0.0", - "0.0", - "0.020461105201805968" - ], - [ - "8595", - "0.035259872953990204", - "1.8178911018310768", - "0.0", - "0.0", - "0.0", - "0.0", - "0.050134624001550054", - "3.594780683893744", - "0.0", - "0.0", - "0.020385121906430353" - ], - [ - "8596", - "0.03515701010799213", - "1.8176988662394684", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04998865615069612", - "3.59451627762601", - "0.0", - "0.0", - "0.020325364065288138" - ], - [ - "8597", - "0.03505308014949987", - "1.8175044802637372", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0498412273882678", - "3.5942490191953067", - "0.0", - "0.0", - "0.020264932910731937" - ], - [ - "8598", - "0.0349540692122403", - "1.817317899405621", - "0.0", - "0.0", - "0.0", - "0.0", - "0.049701266856300094", - "3.593993454771045", - "0.0", - "0.0", - "0.0202068715681805" - ], - [ - "8599", - "0.03487326444928901", - "1.817164998166985", - "0.0", - "0.0", - "0.0", - "0.0", - "0.049587262913482956", - "3.593784452129454", - "0.0", - "0.0", - "0.020159265985095067" - ], - [ - "8600", - "0.03484262239307619", - "1.8171076638213786", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04954380279152235", - "3.593705637913792", - "0.0", - "0.0", - "0.02014144199463003" - ], - [ - "8601", - "0.034795113068170576", - "1.8170165366410012", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04947720634664929", - "3.593581913780189", - "0.0", - "0.0", - "0.020113019789691867" - ], - [ - "8602", - "0.03476570721128949", - "1.8169615483891381", - "0.0", - "0.0", - "0.0", - "0.0", - "0.049435487533011156", - "3.5935063011928103", - "0.0", - "0.0", - "0.020095926889567826" - ], - [ - "8603", - "0.03472862297429104", - "1.8168922412020978", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04938286111153414", - "3.593410971508092", - "0.0", - "0.0", - "0.02007438483704794" - ], - [ - "8604", - "0.03468921999350959", - "1.8168186086489042", - "0.0", - "0.0", - "0.0", - "0.0", - "0.049326941037363396", - "3.593309686419813", - "0.0", - "0.0", - "0.020051498949655775" - ], - [ - "8605", - "0.034660628344181994", - "1.816764936108076", - "0.0", - "0.0", - "0.0", - "0.0", - "0.049286449807185995", - "3.593236025387428", - "0.0", - "0.0", - "0.020034806881177997" - ], - [ - "8606", - "0.03463223707049825", - "1.816711669356997", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04924623176950555", - "3.5931629006425987", - "0.0", - "0.0", - "0.020018242371490948" - ], - [ - "8607", - "0.03460564846163426", - "1.816661902085717", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04920852582623298", - "3.593094498884898", - "0.0", - "0.0", - "0.020002771097035542" - ], - [ - "8608", - "0.03462354247570195", - "1.816695192183922", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04923397334876233", - "3.593140394227345", - "0.0", - "0.0", - "0.020013111602641565" - ], - [ - "8609", - "0.03467244420034889", - "1.8167865628334132", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04930337867427566", - "3.5932660881142167", - "0.0", - "0.0", - "0.020041509726422116" - ], - [ - "8610", - "0.034720122272239425", - "1.8168754990970999", - "0.0", - "0.0", - "0.0", - "0.0", - "0.049371099124714005", - "3.593388535091141", - "0.0", - "0.0", - "0.020069145419764848" - ], - [ - "8611", - "0.03469243969967249", - "1.8168235629746654", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04933188491488156", - "3.5933172367450297", - "0.0", - "0.0", - "0.02005299448446342" - ], - [ - "8612", - "0.03461965158354157", - "1.8166873306291242", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04922865961048683", - "3.593129989032986", - "0.0", - "0.0", - "0.020010643556596305" - ], - [ - "8613", - "0.034523642850480075", - "1.8165079288877095", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04909239988199612", - "3.592883203102661", - "0.0", - "0.0", - "0.01995488581896403" - ], - [ - "8614", - "0.034427900309211557", - "1.816329024595515", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04895651650107632", - "3.5926370992487304", - "0.0", - "0.0", - "0.019899284117346795" - ], - [ - "8615", - "0.03433257981349997", - "1.8161488350670565", - "0.0", - "0.0", - "0.0", - "0.0", - "0.048821961680896704", - "3.5923906606646248", - "0.0", - "0.0", - "0.01984319794610324" - ], - [ - "8616", - "0.03426987010277036", - "1.8160316671678847", - "0.0", - "0.0", - "0.0", - "0.0", - "0.048732954706274006", - "3.5922294719914882", - "0.0", - "0.0", - "0.019806785499266715" - ], - [ - "8617", - "0.03419461848261744", - "1.815890531203081", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04862633397480258", - "3.592035679043033", - "0.0", - "0.0", - "0.0197629029904323" - ], - [ - "8618", - "0.034123877163170856", - "1.8157582464091933", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0485259647206678", - "3.5918537680339306", - "0.0", - "0.0", - "0.019721789605673907" - ], - [ - "8619", - "0.034035012510338726", - "1.8155907506078344", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04840034605422978", - "3.591624348347554", - "0.0", - "0.0", - "0.019669678966447675" - ], - [ - "8620", - "0.03393442915338217", - "1.8154001460425357", - "0.0", - "0.0", - "0.0", - "0.0", - "0.048258520067342464", - "3.5913639743000467", - "0.0", - "0.0", - "0.01961033823942188" - ], - [ - "8621", - "0.033839741819252124", - "1.815223157751892", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04812414520126178", - "3.5911205312671086", - "0.0", - "0.0", - "0.01955533843724247" - ], - [ - "8622", - "0.033745896079197917", - "1.8150478168707562", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04799093711508448", - "3.590879300695568", - "0.0", - "0.0", - "0.019500855043311352" - ], - [ - "8623", - "0.033651571771177835", - "1.8148714962168218", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04785707851792932", - "3.590636779298751", - "0.0", - "0.0", - "0.019446065024426345" - ], - [ - "8624", - "0.03357412969573046", - "1.8147264550359814", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0477472751247781", - "3.5904374724899544", - "0.0", - "0.0", - "0.019400984266682825" - ], - [ - "8625", - "0.03351602095875611", - "1.8146178445413537", - "0.0", - "0.0", - "0.0", - "0.0", - "0.047664805456406265", - "3.5902880728278594", - "0.0", - "0.0", - "0.01936723646110595" - ], - [ - "8626", - "0.033460244328094385", - "1.814513591350285", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04758564565743808", - "3.5901446672330444", - "0.0", - "0.0", - "0.01933484299875069" - ], - [ - "8627", - "0.03340513578183935", - "1.8144106244495386", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04750742031402739", - "3.5900030042892093", - "0.0", - "0.0", - "0.01930285124965131" - ], - [ - "8628", - "0.03334495893630437", - "1.8142981913978564", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0474219988070513", - "3.5898483143618525", - "0.0", - "0.0", - "0.019267919065557432" - ], - [ - "8629", - "0.033288122348677986", - "1.8141918232286132", - "0.0", - "0.0", - "0.0", - "0.0", - "0.047341380301659935", - "3.589702089708161", - "0.0", - "0.0", - "0.01923486439569604" - ], - [ - "8630", - "0.033222331951448504", - "1.8140687757803444", - "0.0", - "0.0", - "0.0", - "0.0", - "0.047248033531238576", - "3.589532881471396", - "0.0", - "0.0", - "0.019196630371658436" - ], - [ - "8631", - "0.03312091743759933", - "1.8138790745372364", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04710414934943403", - "3.589272030588533", - "0.0", - "0.0", - "0.01913768552576464" - ], - [ - "8632", - "0.033020351457933354", - "1.8136911378349478", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04696140499822185", - "3.5890134810985104", - "0.0", - "0.0", - "0.019079297917644858" - ], - [ - "8633", - "0.03292052434990212", - "1.813504625020075", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04681969267127605", - "3.5887568582963514", - "0.0", - "0.0", - "0.019021356028528193" - ], - [ - "8634", - "0.032820764478050796", - "1.8133181831505412", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04667809349998725", - "3.588500368559016", - "0.0", - "0.0", - "0.01896343545611434" - ], - [ - "8635", - "0.0327209409681139", - "1.8131316917695068", - "0.0", - "0.0", - "0.0", - "0.0", - "0.046536377995649796", - "3.588243760318073", - "0.0", - "0.0", - "0.018905503940577998" - ], - [ - "8636", - "0.0326218746460337", - "1.8129466006415205", - "0.0", - "0.0", - "0.0", - "0.0", - "0.046395740955473", - "3.5879890863636215", - "0.0", - "0.0", - "0.018848008336594415" - ], - [ - "8637", - "0.03252308247467763", - "1.8127620217727705", - "0.0", - "0.0", - "0.0", - "0.0", - "0.046255491567141656", - "3.587735114881669", - "0.0", - "0.0", - "0.018790673382213602" - ], - [ - "8638", - "0.032424511436113905", - "1.8125778514793072", - "0.0", - "0.0", - "0.0", - "0.0", - "0.046115556205375385", - "3.5874817064267277", - "0.0", - "0.0", - "0.018733466666852418" - ], - [ - "8639", - "0.03232622282616572", - "1.8123942109674958", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04597601954646338", - "3.587229023167898", - "0.0", - "0.0", - "0.018676426105868067" - ], - [ - "8640", - "0.03222833715015733", - "1.8122112834445103", - "0.0", - "0.0", - "0.0", - "0.0", - "0.045837067454150955", - "3.586977346229411", - "0.0", - "0.0", - "0.0186196068461637" - ], - [ - "8641", - "0.03212994141433633", - "1.8120273733962384", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04569740013829591", - "3.5867243354833356", - "0.0", - "0.0", - "0.018562482690376754" - ], - [ - "8642", - "0.032026497366628645", - "1.8118332637706889", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04555083438235094", - "3.586457818516656", - "0.0", - "0.0", - "0.018502160350906346" - ], - [ - "8643", - "0.03192985454133903", - "1.8116526457369395", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04541364666804529", - "3.5862093211980803", - "0.0", - "0.0", - "0.01844606241463277" - ], - [ - "8644", - "0.03183227480605191", - "1.8114702728754641", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04527512884373642", - "3.5859584099314805", - "0.0", - "0.0", - "0.0183894207683674" - ], - [ - "8645", - "0.03173568226732828", - "1.811289798256692", - "0.0", - "0.0", - "0.0", - "0.0", - "0.045137992180481395", - "3.5857100712637355", - "0.0", - "0.0", - "0.018333372354175165" - ], - [ - "8646", - "0.03164237781657674", - "1.811114923992961", - "0.0", - "0.0", - "0.0", - "0.0", - "0.045005713619674204", - "3.58546981238674", - "0.0", - "0.0", - "0.01827904201347929" - ], - [ - "8647", - "0.031555010656745965", - "1.8109516906184395", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04488167053921594", - "3.5852451912590717", - "0.0", - "0.0", - "0.01822835077427599" - ], - [ - "8648", - "0.03148976267001529", - "1.8108302989527088", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04478884991653928", - "3.585077789952339", - "0.0", - "0.0", - "0.018190675423491297" - ], - [ - "8649", - "0.03140183300730325", - "1.8106659188085017", - "0.0", - "0.0", - "0.0", - "0.0", - "0.044664039840969595", - "3.584851653849253", - "0.0", - "0.0", - "0.01813962617363691" - ], - [ - "8650", - "0.031313669260253536", - "1.8105010517112676", - "0.0", - "0.0", - "0.0", - "0.0", - "0.044538913658563745", - "3.5846248800978673", - "0.0", - "0.0", - "0.01808842486194333" - ], - [ - "8651", - "0.031226770418165278", - "1.8103386914411077", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04441553170513495", - "3.5844014549176357", - "0.0", - "0.0", - "0.018038009131195604" - ], - [ - "8652", - "0.03114016966067217", - "1.8101768947995613", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04429256945452208", - "3.5841787989283747", - "0.0", - "0.0", - "0.017987769866822264" - ], - [ - "8653", - "0.0310537387109631", - "1.8100154063256118", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04416985034169512", - "3.583956571520495", - "0.0", - "0.0", - "0.017937627080231073" - ], - [ - "8654", - "0.03096641776184438", - "1.8098521048854284", - "0.0", - "0.0", - "0.0", - "0.0", - "0.044045919210967746", - "3.583731951229188", - "0.0", - "0.0", - "0.017886916312721008" - ], - [ - "8655", - "0.030880538888823836", - "1.8096916575176578", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04392397825982734", - "3.5835111463068814", - "0.0", - "0.0", - "0.017837099517820327" - ], - [ - "8656", - "0.03079460668037401", - "1.8095310588045288", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04380197862331424", - "3.5832901670947765", - "0.0", - "0.0", - "0.01778723473743378" - ], - [ - "8657", - "0.03070920418734943", - "1.8093715016716387", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0436807117304682", - "3.583070583648786", - "0.0", - "0.0", - "0.01773769664423067" - ], - [ - "8658", - "0.030620716043253896", - "1.8092057678445645", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0435552071219689", - "3.582842782721133", - "0.0", - "0.0", - "0.017686224964538894" - ], - [ - "8659", - "0.03053558385828635", - "1.8090466886625403", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04343433126584833", - "3.5826238722067316", - "0.0", - "0.0", - "0.017636836450724367" - ], - [ - "8660", - "0.030450663823621816", - "1.808888002426436", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04331375673151444", - "3.5824055031097433", - "0.0", - "0.0", - "0.01758757091572919" - ], - [ - "8661", - "0.030366215013069377", - "1.8087302284880364", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04319383898072423", - "3.58218836577592", - "0.0", - "0.0", - "0.017538591045414526" - ], - [ - "8662", - "0.030281981866442806", - "1.808572822479115", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04307423867981117", - "3.581971757305188", - "0.0", - "0.0", - "0.017489725053074435" - ], - [ - "8663", - "0.03019800076137388", - "1.8084159225117342", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04295498280616977", - "3.5817558192827876", - "0.0", - "0.0", - "0.017441018716577987" - ], - [ - "8664", - "0.030114244032367652", - "1.8082594390273246", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0428360454121932", - "3.5815404546544616", - "0.0", - "0.0", - "0.017392442652542105" - ], - [ - "8665", - "0.03003066724292695", - "1.8081032877194738", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04271736385663613", - "3.5813255482917916", - "0.0", - "0.0", - "0.01734397062921777" - ], - [ - "8666", - "0.029947382957994467", - "1.8079476897355453", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04259909418094574", - "3.5811113970749995", - "0.0", - "0.0", - "0.01729567173504319" - ], - [ - "8667", - "0.029864329595717123", - "1.8077925232131986", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04248115134137141", - "3.580897838008538", - "0.0", - "0.0", - "0.01724750785006283" - ], - [ - "8668", - "0.029781355463243828", - "1.807637484701434", - "0.0", - "0.0", - "0.0", - "0.0", - "0.042363326981459684", - "3.5806844673163876", - "0.0", - "0.0", - "0.017199383945027975" - ], - [ - "8669", - "0.02969835582282477", - "1.807482363814613", - "0.0", - "0.0", - "0.0", - "0.0", - "0.042245477538750784", - "3.5804710056066993", - "0.0", - "0.0", - "0.01715123410689876" - ], - [ - "8670", - "0.029615394960921276", - "1.8073272897460786", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0421276911083441", - "3.580257624407968", - "0.0", - "0.0", - "0.017103098813498453" - ], - [ - "8671", - "0.029533262118140734", - "1.8071738435697022", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04201105103307", - "3.58004642618927", - "0.0", - "0.0", - "0.01705547320321147" - ], - [ - "8672", - "0.029451357006688002", - "1.8070208228900693", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04189473330687791", - "3.5798358119805784", - "0.0", - "0.0", - "0.0170079807064981" - ], - [ - "8673", - "0.029372831204498247", - "1.806874123879274", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0417832108401374", - "3.5796338915886214", - "0.0", - "0.0", - "0.0169624515688591" - ], - [ - "8674", - "0.02928710452092916", - "1.8067134719225981", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04166163667125876", - "3.5794131103725526", - "0.0", - "0.0", - "0.016912572370599555" - ], - [ - "8675", - "0.02920588197513847", - "1.8065617278859087", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04154628466662718", - "3.5792042475353227", - "0.0", - "0.0", - "0.01686547928364976" - ], - [ - "8676", - "0.029124547710813947", - "1.8064097319041168", - "0.0", - "0.0", - "0.0", - "0.0", - "0.041430788174523545", - "3.578995066220215", - "0.0", - "0.0", - "0.016818307247104345" - ], - [ - "8677", - "0.029043775894795655", - "1.8062588301278864", - "0.0", - "0.0", - "0.0", - "0.0", - "0.041316074180919135", - "3.578787359418722", - "0.0", - "0.0", - "0.016771477608672168" - ], - [ - "8678", - "0.028959782934714108", - "1.806101455871363", - "0.0", - "0.0", - "0.0", - "0.0", - "0.041196944281569406", - "3.5785710562587982", - "0.0", - "0.0", - "0.01672262158785881" - ], - [ - "8679", - "0.02887948631777046", - "1.805951442889558", - "0.0", - "0.0", - "0.0", - "0.0", - "0.041082902754750225", - "3.578364568963396", - "0.0", - "0.0", - "0.016676069880790692" - ], - [ - "8680", - "0.028787371684671995", - "1.8057793514680356", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04095207527224648", - "3.578127689342314", - "0.0", - "0.0", - "0.016622668097097507" - ], - [ - "8681", - "0.028694472935444085", - "1.8056055984383834", - "0.0", - "0.0", - "0.0", - "0.0", - "0.040820201981434656", - "3.577888656473835", - "0.0", - "0.0", - "0.016568743889453515" - ], - [ - "8682", - "0.028602415561350902", - "1.805433606599126", - "0.0", - "0.0", - "0.0", - "0.0", - "0.040689455758039984", - "3.5776519149553114", - "0.0", - "0.0", - "0.01651537536466182" - ], - [ - "8683", - "0.028511456529300042", - "1.8052636748770003", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04056026533504984", - "3.5774180015534003", - "0.0", - "0.0", - "0.01646264772355024" - ], - [ - "8684", - "0.02842132490892055", - "1.805095285411452", - "0.0", - "0.0", - "0.0", - "0.0", - "0.040432250063423734", - "3.5771862115781894", - "0.0", - "0.0", - "0.016410399754417368" - ], - [ - "8685", - "0.028331205564306013", - "1.8049269225054791", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04030424968223469", - "3.5769544537126956", - "0.0", - "0.0", - "0.01635816144637733" - ], - [ - "8686", - "0.028240715000659566", - "1.8047578225434937", - "0.0", - "0.0", - "0.0", - "0.0", - "0.04017573607707473", - "3.576721709399382", - "0.0", - "0.0", - "0.016305693924244396" - ], - [ - "8687", - "0.028148722340815446", - "1.8045857486257024", - "0.0", - "0.0", - "0.0", - "0.0", - "0.040045146627347546", - "3.576484985198424", - "0.0", - "0.0", - "0.01625229805428335" - ], - [ - "8688", - "0.028056626850731806", - "1.804413444216489", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03991442328820787", - "3.5762479682001245", - "0.0", - "0.0", - "0.01619883041325574" - ], - [ - "8689", - "0.027964442865825244", - "1.8042409311366276", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03978358816032203", - "3.576010691860761", - "0.0", - "0.0", - "0.01614529757132846" - ], - [ - "8690", - "0.027874575737784867", - "1.8040730421736928", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03965593862020437", - "3.575779574654382", - "0.0", - "0.0", - "0.016093212855365368" - ], - [ - "8691", - "0.027784643423007162", - "1.8039050034796236", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03952820505105815", - "3.5755482687086526", - "0.0", - "0.0", - "0.01604108179495618" - ], - [ - "8692", - "0.02770810756539236", - "1.8037611795386777", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03941978500326122", - "3.575350857182151", - "0.0", - "0.0", - "0.015996430127523508" - ], - [ - "8693", - "0.027602825522620705", - "1.8035644560767083", - "0.0", - "0.0", - "0.0", - "0.0", - "0.039270248201797815", - "3.5750800647292853", - "0.0", - "0.0", - "0.015935402843443594" - ], - [ - "8694", - "0.0275094591268304", - "1.803390033017838", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03913762176989209", - "3.5748399422789725", - "0.0", - "0.0", - "0.015881296483768712" - ], - [ - "8695", - "0.027416590368851967", - "1.8032165396682598", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03900570086113591", - "3.574601097627299", - "0.0", - "0.0", - "0.015827479876568025" - ], - [ - "8696", - "0.027332986600083146", - "1.8030588857232275", - "0.0", - "0.0", - "0.0", - "0.0", - "0.038887456283259104", - "3.574385072140914", - "0.0", - "0.0", - "0.015778516916907185" - ], - [ - "8697", - "0.027244475543443326", - "1.8028928863716136", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03876195051082233", - "3.574156987553833", - "0.0", - "0.0", - "0.015727000576064323" - ], - [ - "8698", - "0.027159341132259946", - "1.8027336587129152", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03864107724261663", - "3.5739379034418155", - "0.0", - "0.0", - "0.015677605021903265" - ], - [ - "8699", - "0.02706932778581817", - "1.802564718344792", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03851348220946492", - "3.5737058590477178", - "0.0", - "0.0", - "0.015625173362171427" - ], - [ - "8700", - "0.026978853608487327", - "1.8023948136314756", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0383852675946028", - "3.573472556457375", - "0.0", - "0.0", - "0.015572439622371858" - ], - [ - "8701", - "0.026896678280359288", - "1.8022412317632484", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03826855303664886", - "3.573261158362882", - "0.0", - "0.0", - "0.015524803524069713" - ], - [ - "8702", - "0.0268138418492372", - "1.802086478523596", - "0.0", - "0.0", - "0.0", - "0.0", - "0.038150875870593196", - "3.573048101960304", - "0.0", - "0.0", - "0.015476807827881205" - ], - [ - "8703", - "0.026731111068195965", - "1.801931922932248", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03803334762167105", - "3.5728353158385544", - "0.0", - "0.0", - "0.015428874514720876" - ], - [ - "8704", - "0.026648363974301734", - "1.8017773455204995", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03791579208463074", - "3.572622492055811", - "0.0", - "0.0", - "0.01538093586397273" - ], - [ - "8705", - "0.02656623944644312", - "1.8016239367350213", - "0.0", - "0.0", - "0.0", - "0.0", - "0.037799117964305406", - "3.5724112717389342", - "0.0", - "0.0", - "0.015333360928580838" - ], - [ - "8706", - "0.0264840290908669", - "1.8014703257282738", - "0.0", - "0.0", - "0.0", - "0.0", - "0.037682335574785356", - "3.5721998003183058", - "0.0", - "0.0", - "0.015285722606948451" - ], - [ - "8707", - "0.026402495178053067", - "1.801318020410123", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03756649837596448", - "3.571990095964372", - "0.0", - "0.0", - "0.01523849198014166" - ], - [ - "8708", - "0.02632229128449727", - "1.8011681901026073", - "0.0", - "0.0", - "0.0", - "0.0", - "0.037452553078126984", - "3.5717838043580694", - "0.0", - "0.0", - "0.015192029490867561" - ], - [ - "8709", - "0.026241191292876928", - "1.801016695445956", - "0.0", - "0.0", - "0.0", - "0.0", - "0.037337330276126124", - "3.57157521297177", - "0.0", - "0.0", - "0.015145052309627736" - ], - [ - "8710", - "0.026160212344191653", - "1.800865426931322", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03722227840610174", - "3.5713669313616276", - "0.0", - "0.0", - "0.015098146282281566" - ], - [ - "8711", - "0.026079373198822475", - "1.8007143913799148", - "0.0", - "0.0", - "0.0", - "0.0", - "0.037107434044574665", - "3.5711589884235355", - "0.0", - "0.0", - "0.015051312353070284" - ], - [ - "8712", - "0.02599896290802454", - "1.8005641834513706", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03699318865299624", - "3.570952165170895", - "0.0", - "0.0", - "0.015004737163052841" - ], - [ - "8713", - "0.025916742070137198", - "1.8004103453360742", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03687645698362059", - "3.5707405132071766", - "0.0", - "0.0", - "0.0149570271566538" - ], - [ - "8714", - "0.025836445797014006", - "1.800260330306165", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03676237859737671", - "3.5705339663005518", - "0.0", - "0.0", - "0.014910512996651304" - ], - [ - "8715", - "0.025757583406624367", - "1.800113030720925", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0366503235230575", - "3.5703311313709802", - "0.0", - "0.0", - "0.014864843290191233" - ], - [ - "8716", - "0.025672364072904567", - "1.799953625095751", - "0.0", - "0.0", - "0.0", - "0.0", - "0.036529316504414135", - "3.5701117850853263", - "0.0", - "0.0", - "0.014815411641395004" - ], - [ - "8717", - "0.025588934285270957", - "1.7997977802860152", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03641077446236852", - "3.5698971896730134", - "0.0", - "0.0", - "0.014767094108173397" - ], - [ - "8718", - "0.025505779260510036", - "1.7996424487626355", - "0.0", - "0.0", - "0.0", - "0.0", - "0.036292621721839086", - "3.5696832993606904", - "0.0", - "0.0", - "0.014718936799180985" - ], - [ - "8719", - "0.02541693781514315", - "1.7994762248105183", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03616648307586435", - "3.5694545951452783", - "0.0", - "0.0", - "0.01466739255442195" - ], - [ - "8720", - "0.025329837415403914", - "1.7993135244220946", - "0.0", - "0.0", - "0.0", - "0.0", - "0.036042721730196806", - "3.569230553633869", - "0.0", - "0.0", - "0.01461695310061102" - ], - [ - "8721", - "0.025242381764194632", - "1.7991501189461425", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03591846898530382", - "3.569005568029261", - "0.0", - "0.0", - "0.014566294543085449" - ], - [ - "8722", - "0.025155461967555106", - "1.798987685071579", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03579498676935754", - "3.56878193880406", - "0.0", - "0.0", - "0.014515937165752673" - ], - [ - "8723", - "0.02506899352414702", - "1.7988261656556053", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03567211965636284", - "3.568559517749008", - "0.0", - "0.0", - "0.014465867391931196" - ], - [ - "8724", - "0.0249827086742042", - "1.7986649589700086", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03554952286494964", - "3.5683375464201275", - "0.0", - "0.0", - "0.014415894483458756" - ], - [ - "8725", - "0.024896527143068857", - "1.7985039756751304", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03542706104302752", - "3.5681158599385596", - "0.0", - "0.0", - "0.014365993243110196" - ], - [ - "8726", - "0.024809204966806983", - "1.7983408617450165", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03530297719089974", - "3.5678912375621348", - "0.0", - "0.0", - "0.014315432742714225" - ], - [ - "8727", - "0.024717425389143614", - "1.798169394233072", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03517256773962627", - "3.5676551284805806", - "0.0", - "0.0", - "0.014262283038660955" - ], - [ - "8728", - "0.02463348142429455", - "1.7980125908211315", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03505328189329821", - "3.567439192556791", - "0.0", - "0.0", - "0.01421368095529089" - ], - [ - "8729", - "0.024548968031662816", - "1.797854723781777", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03493318575059059", - "3.567221790164477", - "0.0", - "0.0", - "0.014164750312735043" - ], - [ - "8730", - "0.0244595675549924", - "1.797687095830769", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03480636567781199", - "3.566991380412542", - "0.0", - "0.0", - "0.014112769432172807" - ], - [ - "8731", - "0.02437764294094587", - "1.7975340666817783", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03468994528215178", - "3.5667806354845766", - "0.0", - "0.0", - "0.014065340599739958" - ], - [ - "8732", - "0.024293695748383668", - "1.7973771136161065", - "0.0", - "0.0", - "0.0", - "0.0", - "0.034570700807692374", - "3.566564585784149", - "0.0", - "0.0", - "0.014016690689074964" - ], - [ - "8733", - "0.024210128722131338", - "1.7972210171328569", - "0.0", - "0.0", - "0.0", - "0.0", - "0.034451944046516955", - "3.5663496129192094", - "0.0", - "0.0", - "0.01396831339774572" - ], - [ - "8734", - "0.024126525947546433", - "1.7970648191194436", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03433314759190227", - "3.5661345225505476", - "0.0", - "0.0", - "0.013919904303190598" - ], - [ - "8735", - "0.024043597550250137", - "1.7969099157348516", - "0.0", - "0.0", - "0.0", - "0.0", - "0.034215296145307696", - "3.5659211893420593", - "0.0", - "0.0", - "0.01387189895519258" - ], - [ - "8736", - "0.023961047549544763", - "1.7967557191995842", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03409798136242963", - "3.5657088279430575", - "0.0", - "0.0", - "0.013824113736659895" - ], - [ - "8737", - "0.023878648260610223", - "1.796601804216995", - "0.0", - "0.0", - "0.0", - "0.0", - "0.033980879682488786", - "3.5654968526455417", - "0.0", - "0.0", - "0.013776416838731662" - ], - [ - "8738", - "0.023794965284806718", - "1.7964452941155937", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03386202187828822", - "3.5652814378519406", - "0.0", - "0.0", - "0.013727908691325216" - ], - [ - "8739", - "0.023709443720443694", - "1.796285547762377", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03374048045376048", - "3.5650614274703676", - "0.0", - "0.0", - "0.013678406987126912" - ], - [ - "8740", - "0.02361992196098685", - "1.7961183294567262", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03361325279293415", - "3.5648311244454587", - "0.0", - "0.0", - "0.013626591129039547" - ], - [ - "8741", - "0.02353097104639065", - "1.7959521774777591", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03348683515191351", - "3.5646022880940134", - "0.0", - "0.0", - "0.013575106940867786" - ], - [ - "8742", - "0.023442095745138572", - "1.7957861612918768", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03336052564437196", - "3.5643736406282014", - "0.0", - "0.0", - "0.013523665845905183" - ], - [ - "8743", - "0.023352893954587867", - "1.7956194616907637", - "0.0", - "0.0", - "0.0", - "0.0", - "0.033233776702871476", - "3.5641441007885404", - "0.0", - "0.0", - "0.013472011206304261" - ], - [ - "8744", - "0.023261993579966563", - "1.7954493751939964", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03310468755027729", - "3.5639100420418717", - "0.0", - "0.0", - "0.013419299609655835" - ], - [ - "8745", - "0.023174114945236093", - "1.795285227714655", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03297978835066732", - "3.5636839577858925", - "0.0", - "0.0", - "0.013368441539804871" - ], - [ - "8746", - "0.02308569259603344", - "1.795120040556187", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03285412361587363", - "3.56345645630746", - "0.0", - "0.0", - "0.01331726157619325" - ], - [ - "8747", - "0.022999413339389527", - "1.7949580431490897", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03273178912981172", - "3.563233907839633", - "0.0", - "0.0", - "0.013267037548967334" - ], - [ - "8748", - "0.022911824306036045", - "1.7947944116389698", - "0.0", - "0.0", - "0.0", - "0.0", - "0.032607306679509784", - "3.563008545938509", - "0.0", - "0.0", - "0.013216341932562308" - ], - [ - "8749", - "0.022827901888581532", - "1.794637465635115", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03248809182429161", - "3.562792503382971", - "0.0", - "0.0", - "0.013167711952871456" - ], - [ - "8750", - "0.022742254670022746", - "1.7944774397327024", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03236637454003427", - "3.5625721190087267", - "0.0", - "0.0", - "0.013118134800011219" - ], - [ - "8751", - "0.02265661052613813", - "1.7943174565932605", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03224464747952181", - "3.5623517662165396", - "0.0", - "0.0", - "0.01306857357275445" - ], - [ - "8752", - "0.022569637496865157", - "1.7941550076483141", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03212102466979851", - "3.562128003918595", - "0.0", - "0.0", - "0.013018250323931805" - ], - [ - "8753", - "0.02248136043653311", - "1.7939899212914074", - "0.0", - "0.0", - "0.0", - "0.0", - "0.031995617904230465", - "3.561900746158109", - "0.0", - "0.0", - "0.01296710296883575" - ], - [ - "8754", - "0.022394284207916892", - "1.7938272019916819", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03187187324029264", - "3.561676661353858", - "0.0", - "0.0", - "0.01291669517554114" - ], - [ - "8755", - "0.022328576089090273", - "1.793704035023971", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03177862690180123", - "3.5615073047965233", - "0.0", - "0.0", - "0.01287852527637932" - ], - [ - "8756", - "0.022267213310594065", - "1.793589402109363", - "0.0", - "0.0", - "0.0", - "0.0", - "0.031691409936297744", - "3.5613494142654614", - "0.0", - "0.0", - "0.012843016684890388" - ], - [ - "8757", - "0.022205456556542637", - "1.7934740527634068", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03160362553798423", - "3.5611905225381557", - "0.0", - "0.0", - "0.012807287575101044" - ], - [ - "8758", - "0.022143871051541614", - "1.7933590232968708", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03151608395834814", - "3.561032070512104", - "0.0", - "0.0", - "0.012771658144735092" - ], - [ - "8759", - "0.02208245632088541", - "1.7932443128229332", - "0.0", - "0.0", - "0.0", - "0.0", - "0.031428784527603226", - "3.560874056973381", - "0.0", - "0.0", - "0.012736128114167591" - ], - [ - "8760", - "0.022021124111651934", - "1.793129761141411", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03134160017246412", - "3.5607162580503817", - "0.0", - "0.0", - "0.012700648050839756" - ], - [ - "8761", - "0.02195940178057494", - "1.7930144761586928", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03125386229380467", - "3.5605574512835534", - "0.0", - "0.0", - "0.012664941267345214" - ], - [ - "8762", - "0.02189779872252075", - "1.79289941397438", - "0.0", - "0.0", - "0.0", - "0.0", - "0.031166293356712102", - "3.560398950497376", - "0.0", - "0.0", - "0.012629304088329397" - ], - [ - "8763", - "0.021836772685570105", - "1.792785392256044", - "0.0", - "0.0", - "0.0", - "0.0", - "0.031079557154288437", - "3.560241907816471", - "0.0", - "0.0", - "0.012593988216851768" - ], - [ - "8764", - "0.021775852082481062", - "1.792671552245688", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03099297558366712", - "3.5600851250546834", - "0.0", - "0.0", - "0.012558728581295003" - ], - [ - "8765", - "0.021715457863290256", - "1.7925587482367509", - "0.0", - "0.0", - "0.0", - "0.0", - "0.030907123169638465", - "3.559929732086697", - "0.0", - "0.0", - "0.012523792556942043" - ], - [ - "8766", - "0.02164385853343439", - "1.7924250154054933", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0308053415620847", - "3.5597455075016646", - "0.0", - "0.0", - "0.012482375504784078" - ], - [ - "8767", - "0.021559282894502818", - "1.7922670224734687", - "0.0", - "0.0", - "0.0", - "0.0", - "0.030685120597370497", - "3.5595278775475965", - "0.0", - "0.0", - "0.012433445191635134" - ], - [ - "8768", - "0.021473361884249875", - "1.792106305508858", - "0.0", - "0.0", - "0.0", - "0.0", - "0.030563060039833903", - "3.559306639016547", - "0.0", - "0.0", - "0.012383663728665844" - ], - [ - "8769", - "0.02139041368681567", - "1.7919513410807075", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03044515429580458", - "3.5590931853815344", - "0.0", - "0.0", - "0.01233567307782676" - ], - [ - "8770", - "0.021306789964262725", - "1.7917951504351883", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03032627467805029", - "3.558878016330609", - "0.0", - "0.0", - "0.012287305250475163" - ], - [ - "8771", - "0.021222529877369976", - "1.791637771239401", - "0.0", - "0.0", - "0.0", - "0.0", - "0.03020648927798221", - "3.5586612081987585", - "0.0", - "0.0", - "0.01223857047675774" - ], - [ - "8772", - "0.02113725512537937", - "1.791478428674995", - "0.0", - "0.0", - "0.0", - "0.0", - "0.030085284201589714", - "3.558441740621869", - "0.0", - "0.0", - "0.012189226049169031" - ], - [ - "8773", - "0.021069302205060546", - "1.791351507934053", - "0.0", - "0.0", - "0.0", - "0.0", - "0.029988679490937406", - "3.5582668897206013", - "0.0", - "0.0", - "0.012149924919183683" - ], - [ - "8774", - "0.021009425438941423", - "1.7912394963270846", - "0.0", - "0.0", - "0.0", - "0.0", - "0.029903617068799456", - "3.5581126982656035", - "0.0", - "0.0", - "0.012115233809083387" - ], - [ - "8775", - "0.02095097603765617", - "1.7911303265407452", - "0.0", - "0.0", - "0.0", - "0.0", - "0.029820521641590426", - "3.557962299668666", - "0.0", - "0.0", - "0.012081430433721911" - ], - [ - "8776", - "0.02087646851545539", - "1.790991163973614", - "0.0", - "0.0", - "0.0", - "0.0", - "0.029714596168519316", - "3.557770580075898", - "0.0", - "0.0", - "0.012038340862391464" - ], - [ - "8777", - "0.020794088071068587", - "1.7908372966699257", - "0.0", - "0.0", - "0.0", - "0.0", - "0.029597476930743095", - "3.5575586006824143", - "0.0", - "0.0", - "0.011990699211394083" - ], - [ - "8778", - "0.020711898116436547", - "1.7906837851925148", - "0.0", - "0.0", - "0.0", - "0.0", - "0.029480627432917354", - "3.5573471098496228", - "0.0", - "0.0", - "0.01194316879995574" - ], - [ - "8779", - "0.020629729149921925", - "1.7905302685481796", - "0.0", - "0.0", - "0.0", - "0.0", - "0.029363822272635322", - "3.5571356408875316", - "0.0", - "0.0", - "0.011895636027208532" - ], - [ - "8780", - "0.020549077956888435", - "1.7903796331949777", - "0.0", - "0.0", - "0.0", - "0.0", - "0.029249157626618734", - "3.5569281078427775", - "0.0", - "0.0", - "0.01184899828715814" - ], - [ - "8781", - "0.02046860248606713", - "1.790229324239599", - "0.0", - "0.0", - "0.0", - "0.0", - "0.029134742423816504", - "3.556721024167076", - "0.0", - "0.0", - "0.011802462548317755" - ], - [ - "8782", - "0.02038834716756615", - "1.7900794265107067", - "0.0", - "0.0", - "0.0", - "0.0", - "0.029020639193040182", - "3.5565145054696434", - "0.0", - "0.0", - "0.01175605514209212" - ], - [ - "8783", - "0.020308265308262585", - "1.7899298527964709", - "0.0", - "0.0", - "0.0", - "0.0", - "0.028906781555680997", - "3.556308431607546", - "0.0", - "0.0", - "0.011709749060844168" - ], - [ - "8784", - "0.02022839108080046", - "1.7897806669229561", - "0.0", - "0.0", - "0.0", - "0.0", - "0.028793218104446936", - "3.5561028905276637", - "0.0", - "0.0", - "0.01166356405715398" - ], - [ - "8785", - "0.02014836514643833", - "1.7896311977316632", - "0.0", - "0.0", - "0.0", - "0.0", - "0.028679437940271536", - "3.555896957541815", - "0.0", - "0.0", - "0.011617292352605129" - ], - [ - "8786", - "0.02006834509428084", - "1.789481739561221", - "0.0", - "0.0", - "0.0", - "0.0", - "0.02856566511908489", - "3.5556910381742206", - "0.0", - "0.0", - "0.011571025069476791" - ], - [ - "8787", - "0.020012685849182324", - "1.789377781526986", - "0.0", - "0.0", - "0.0", - "0.0", - "0.02848652798639796", - "3.5555478067228314", - "0.0", - "0.0", - "0.011538843711966687" - ], - [ - "8788", - "0.01995718094999545", - "1.789274111790188", - "0.0", - "0.0", - "0.0", - "0.0", - "0.028407609813381703", - "3.5554049717278113", - "0.0", - "0.0", - "0.011506752086609192" - ], - [ - "8789", - "0.01990860737347045", - "1.7891832063070254", - "0.0", - "0.0", - "0.0", - "0.0", - "0.028338610103076707", - "3.555279847987717", - "0.0", - "0.0", - "0.011478604643864193" - ], - [ - "8790", - "0.019852964923747787", - "1.7890792105774362", - "0.0", - "0.0", - "0.0", - "0.0", - "0.028259519667081946", - "3.5551366101060444", - "0.0", - "0.0", - "0.011446410180413633" - ], - [ - "8791", - "0.019775479228206907", - "1.7889344870692838", - "0.0", - "0.0", - "0.0", - "0.0", - "0.028149346228762348", - "3.554937207776446", - "0.0", - "0.0", - "0.011401612227651466" - ], - [ - "8792", - "0.019689675925912874", - "1.7887733217591317", - "0.0", - "0.0", - "0.0", - "0.0", - "0.028027663140489302", - "3.554715775451256", - "0.0", - "0.0", - "0.011351688711336448" - ], - [ - "8793", - "0.01961267776024882", - "1.7886295109485426", - "0.0", - "0.0", - "0.0", - "0.0", - "0.027918180172084656", - "3.554517626149819", - "0.0", - "0.0", - "0.011307175348412983" - ], - [ - "8794", - "0.01952971635429651", - "1.788474547281967", - "0.0", - "0.0", - "0.0", - "0.0", - "0.02780022241519787", - "3.55430411881148", - "0.0", - "0.0", - "0.011259210293395154" - ], - [ - "8795", - "0.01944430901754566", - "1.7883149733733628", - "0.0", - "0.0", - "0.0", - "0.0", - "0.027678800350191487", - "3.5540842864117237", - "0.0", - "0.0", - "0.011209817684899832" - ], - [ - "8796", - "0.019390348320607258", - "1.7882141870370707", - "0.0", - "0.0", - "0.0", - "0.0", - "0.027602073207671197", - "3.5539454172875367", - "0.0", - "0.0", - "0.011178623433543316" - ], - [ - "8797", - "0.019336486992661196", - "1.7881135795348666", - "0.0", - "0.0", - "0.0", - "0.0", - "0.027525489272678724", - "3.553806798537511", - "0.0", - "0.0", - "0.01114748471264367" - ], - [ - "8798", - "0.019281867473711255", - "1.788011310160273", - "0.0", - "0.0", - "0.0", - "0.0", - "0.02744791293567224", - "3.553666058749247", - "0.0", - "0.0", - "0.011115822011750274" - ], - [ - "8799", - "0.01922838926043801", - "1.7879114300723065", - "0.0", - "0.0", - "0.0", - "0.0", - "0.027371868691883385", - "3.553528432708583", - "0.0", - "0.0", - "0.011084909828992634" - ], - [ - "8800", - "0.019175059346338855", - "1.7878118269748802", - "0.0", - "0.0", - "0.0", - "0.0", - "0.02729603487042341", - "3.5533911876397117", - "0.0", - "0.0", - "0.011054083822254293" - ], - [ - "8801", - "0.019121314587321307", - "1.7877113736215", - "0.0", - "0.0", - "0.0", - "0.0", - "0.02721963714817662", - "3.5532528223439455", - "0.0", - "0.0", - "0.011022992026465991" - ], - [ - "8802", - "0.019067925167165014", - "1.7876116115231948", - "0.0", - "0.0", - "0.0", - "0.0", - "0.027143734586733304", - "3.553115389819898", - "0.0", - "0.0", - "0.010992115747596726" - ], - [ - "8803", - "0.019013640843562232", - "1.7875100574675902", - "0.0", - "0.0", - "0.0", - "0.0", - "0.027066601280309986", - "3.5529755705540564", - "0.0", - "0.0", - "0.01096068040681448" - ], - [ - "8804", - "0.01896090645948823", - "1.7874115674939413", - "0.0", - "0.0", - "0.0", - "0.0", - "0.026991612200594123", - "3.5528398559540264", - "0.0", - "0.0", - "0.010930200718382336" - ], - [ - "8805", - "0.018908318312421887", - "1.7873133506565342", - "0.0", - "0.0", - "0.0", - "0.0", - "0.02691683063034528", - "3.5527045170451363", - "0.0", - "0.0", - "0.010899805994498492" - ], - [ - "8806", - "0.018855879108200465", - "1.7872154119844395", - "0.0", - "0.0", - "0.0", - "0.0", - "0.026842260429569203", - "3.5525695607797383", - "0.0", - "0.0", - "0.010869497786831729" - ], - [ - "8807", - "0.01880328340371667", - "1.7871171407353692", - "0.0", - "0.0", - "0.0", - "0.0", - "0.026767481366075166", - "3.5524341733563216", - "0.0", - "0.0", - "0.010839085441358174" - ], - [ - "8808", - "0.018751540688444285", - "1.7870205009230309", - "0.0", - "0.0", - "0.0", - "0.0", - "0.02669390142244669", - "3.552301006912604", - "0.0", - "0.0", - "0.010809179954441877" - ], - [ - "8809", - "0.018699977644108978", - "1.7869241074775815", - "0.0", - "0.0", - "0.0", - "0.0", - "0.026620607822726027", - "3.5521682408373985", - "0.0", - "0.0", - "0.010779347465491931" - ], - [ - "8810", - "0.01864811308374121", - "1.7868272424963934", - "0.0", - "0.0", - "0.0", - "0.0", - "0.026546852923900566", - "3.5520347611687733", - "0.0", - "0.0", - "0.01074937324358185" - ], - [ - "8811", - "0.01859636413117846", - "1.7867305896365289", - "0.0", - "0.0", - "0.0", - "0.0", - "0.02647326333419534", - "3.551901575773055", - "0.0", - "0.0", - "0.010719464928161582" - ], - [ - "8812", - "0.018544759072829677", - "1.78663420349155", - "0.0", - "0.0", - "0.0", - "0.0", - "0.026399878663741338", - "3.5517687586681608", - "0.0", - "0.0", - "0.010689639481918017" - ], - [ - "8813", - "0.018491414718705454", - "1.7865343679999874", - "0.0", - "0.0", - "0.0", - "0.0", - "0.02632409055273819", - "3.5516313262439323", - "0.0", - "0.0", - "0.010658738884672718" - ], - [ - "8814", - "0.018426621766187853", - "1.7864116627560975", - "0.0", - "0.0", - "0.0", - "0.0", - "0.026232542240617003", - "3.5514634039401534", - "0.0", - "0.0", - "0.010620701291758702" - ], - [ - "8815", - "0.01833787779483796", - "1.786245270023223", - "0.0", - "0.0", - "0.0", - "0.0", - "0.02610656593777267", - "3.5512345569909765", - "0.0", - "0.0", - "0.010569189651903245" - ], - [ - "8816", - "0.018254154214250112", - "1.7860887081568448", - "0.0", - "0.0", - "0.0", - "0.0", - "0.02598756878457008", - "3.551018942150475", - "0.0", - "0.0", - "0.01052073964393014" - ], - [ - "8817", - "0.018173260582409558", - "1.7859371051318382", - "0.0", - "0.0", - "0.0", - "0.0", - "0.02587270952832164", - "3.5508103843212293", - "0.0", - "0.0", - "0.010473811636497474" - ], - [ - "8818", - "0.018090007603261706", - "1.7857814618847265", - "0.0", - "0.0", - "0.0", - "0.0", - "0.025754365549934054", - "3.550596004678422", - "0.0", - "0.0", - "0.010425649656589356" - ], - [ - "8819", - "0.018006949778798048", - "1.7856259728249149", - "0.0", - "0.0", - "0.0", - "0.0", - "0.025636371693810153", - "3.550381980812947", - "0.0", - "0.0", - "0.010377527863785941" - ], - [ - "8820", - "0.0179244550874336", - "1.7854718723812917", - "0.0", - "0.0", - "0.0", - "0.0", - "0.02551905960156586", - "3.5501696366721487", - "0.0", - "0.0", - "0.010329850573301342" - ], - [ - "8821", - "0.017843051203917874", - "1.7853198305715707", - "0.0", - "0.0", - "0.0", - "0.0", - "0.025403290289701008", - "3.549960113160893", - "0.0", - "0.0", - "0.010282812118134742" - ], - [ - "8822", - "0.017762163009732747", - "1.7851687772036215", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0252882444840126", - "3.5497519327876823", - "0.0", - "0.0", - "0.010236081535452895" - ], - [ - "8823", - "0.017681341180519304", - "1.7850178286347211", - "0.0", - "0.0", - "0.0", - "0.0", - "0.025173298739689907", - "3.5495439084619766", - "0.0", - "0.0", - "0.0101893836213487" - ], - [ - "8824", - "0.01760089863513897", - "1.7848676076457315", - "0.0", - "0.0", - "0.0", - "0.0", - "0.025058884667139597", - "3.5493368720225202", - "0.0", - "0.0", - "0.010142912603138342" - ], - [ - "8825", - "0.017520675457680563", - "1.7847177963474146", - "0.0", - "0.0", - "0.0", - "0.0", - "0.024944781574055032", - "3.549130398644508", - "0.0", - "0.0", - "0.01009656934130609" - ], - [ - "8826", - "0.017452737209468418", - "1.7845909263425341", - "0.0", - "0.0", - "0.0", - "0.0", - "0.024848150787357706", - "3.5489555422514334", - "0.0", - "0.0", - "0.010057323631579127" - ], - [ - "8827", - "0.01740427429868476", - "1.7845004252062904", - "0.0", - "0.0", - "0.0", - "0.0", - "0.024779219957866", - "3.548830809932124", - "0.0", - "0.0", - "0.010029328639503513" - ], - [ - "8828", - "0.017342228271693398", - "1.7843845205416418", - "0.0", - "0.0", - "0.0", - "0.0", - "0.024690982061234386", - "3.5486710908119785", - "0.0", - "0.0", - "0.009993474482152409" - ], - [ - "8829", - "0.017297661760749254", - "1.784301007554013", - "0.0", - "0.0", - "0.0", - "0.0", - "0.024627693393736997", - "3.5485561872813554", - "0.0", - "0.0", - "0.009967630127761508" - ], - [ - "8830", - "0.017226923700641234", - "1.784168891962302", - "0.0", - "0.0", - "0.0", - "0.0", - "0.024527083835892", - "3.548374109221805", - "0.0", - "0.0", - "0.009926763565390467" - ], - [ - "8831", - "0.017147896195907782", - "1.784021134434185", - "0.0", - "0.0", - "0.0", - "0.0", - "0.024414739430086183", - "3.5481705826984715", - "0.0", - "0.0", - "0.00988105296172938" - ], - [ - "8832", - "0.017069223348291723", - "1.783874220853539", - "0.0", - "0.0", - "0.0", - "0.0", - "0.02430283488029213", - "3.547968092647659", - "0.0", - "0.0", - "0.009835611816291319" - ], - [ - "8833", - "0.01699016565160394", - "1.7837265848980157", - "0.0", - "0.0", - "0.0", - "0.0", - "0.024190383234389035", - "3.5477646080036593", - "0.0", - "0.0", - "0.009789948068818843" - ], - [ - "8834", - "0.01691193288597342", - "1.783580307810776", - "0.0", - "0.0", - "0.0", - "0.0", - "0.024079167612808452", - "3.547563119987569", - "0.0", - "0.0", - "0.009744698159138388" - ], - [ - "8835", - "0.01683400017593096", - "1.783434769425347", - "0.0", - "0.0", - "0.0", - "0.0", - "0.023968315367091757", - "3.54736252570632", - "0.0", - "0.0", - "0.00969968498477016" - ], - [ - "8836", - "0.016754981056467805", - "1.7832867903627765", - "0.0", - "0.0", - "0.0", - "0.0", - "0.023856061036280043", - "3.5471588497967086", - "0.0", - "0.0", - "0.00965390107665557" - ], - [ - "8837", - "0.016678526240361025", - "1.7831439983307245", - "0.0", - "0.0", - "0.0", - "0.0", - "0.023747313832863198", - "3.546962047268959", - "0.0", - "0.0", - "0.009609738647858853" - ], - [ - "8838", - "0.016602357782622135", - "1.7830017608003077", - "0.0", - "0.0", - "0.0", - "0.0", - "0.02363896612837131", - "3.5467659940151797", - "0.0", - "0.0", - "0.00956574943687296" - ], - [ - "8839", - "0.016525221969419305", - "1.7828577132294696", - "0.0", - "0.0", - "0.0", - "0.0", - "0.023529242709997646", - "3.5465674469396804", - "0.0", - "0.0", - "0.009521201228840962" - ], - [ - "8840", - "0.016478691196325966", - "1.7827707445594883", - "0.0", - "0.0", - "0.0", - "0.0", - "0.023463079724520584", - "3.5464476249302903", - "0.0", - "0.0", - "0.00949430266813135" - ], - [ - "8841", - "0.016432941706673053", - "1.782685314520465", - "0.0", - "0.0", - "0.0", - "0.0", - "0.023397999886706843", - "3.5463298683120126", - "0.0", - "0.0", - "0.009467883526639265" - ], - [ - "8842", - "0.01638736418360852", - "1.782600205262576", - "0.0", - "0.0", - "0.0", - "0.0", - "0.023333164466115445", - "3.546212553589537", - "0.0", - "0.0", - "0.009441563901101593" - ], - [ - "8843", - "0.01634188480061681", - "1.7825152808460707", - "0.0", - "0.0", - "0.0", - "0.0", - "0.023268467772805945", - "3.5460954920642704", - "0.0", - "0.0", - "0.009415301828427676" - ], - [ - "8844", - "0.0162929576865127", - "1.7824236325183993", - "0.0", - "0.0", - "0.0", - "0.0", - "0.02319896624741402", - "3.545969358651513", - "0.0", - "0.0", - "0.009386949125611383" - ], - [ - "8845", - "0.016246358904770226", - "1.7823364575365388", - "0.0", - "0.0", - "0.0", - "0.0", - "0.02313273257419716", - "3.545849304298952", - "0.0", - "0.0", - "0.009359985235343293" - ], - [ - "8846", - "0.016201298827963333", - "1.782252315797633", - "0.0", - "0.0", - "0.0", - "0.0", - "0.02306863146577632", - "3.545733320302428", - "0.0", - "0.0", - "0.009333966190150344" - ], - [ - "8847", - "0.01612485958555996", - "1.7821094615811055", - "0.0", - "0.0", - "0.0", - "0.0", - "0.022959931678239065", - "3.54553648471845", - "0.0", - "0.0", - "0.009289787492880857" - ], - [ - "8848", - "0.016049303921902087", - "1.7819683753230613", - "0.0", - "0.0", - "0.0", - "0.0", - "0.022852446621270457", - "3.5453420034359504", - "0.0", - "0.0", - "0.00924616122253372" - ], - [ - "8849", - "0.015973379882224713", - "1.7818265998236265", - "0.0", - "0.0", - "0.0", - "0.0", - "0.022744437084947458", - "3.545146571617574", - "0.0", - "0.0", - "0.009202322679501966" - ], - [ - "8850", - "0.015897257622999404", - "1.781684435590267", - "0.0", - "0.0", - "0.0", - "0.0", - "0.022636151155808835", - "3.5449506153593053", - "0.0", - "0.0", - "0.009158364090189974" - ], - [ - "8851", - "0.015820905457034837", - "1.7815418104492537", - "0.0", - "0.0", - "0.0", - "0.0", - "0.02252754829892246", - "3.544754044119259", - "0.0", - "0.0", - "0.009114262615147209" - ], - [ - "8852", - "0.0157408256697248", - "1.7813918837623195", - "0.0", - "0.0", - "0.0", - "0.0", - "0.02241376075621677", - "3.5445476411901047", - "0.0", - "0.0", - "0.00906789058323283" - ], - [ - "8853", - "0.015663867611822303", - "1.7812480786623566", - "0.0", - "0.0", - "0.0", - "0.0", - "0.02230431102849438", - "3.544349473932179", - "0.0", - "0.0", - "0.009023424195150223" - ], - [ - "8854", - "0.0156204229231746", - "1.7811669553952", - "0.0", - "0.0", - "0.0", - "0.0", - "0.022242503220220464", - "3.5442376432037204", - "0.0", - "0.0", - "0.008998342626128735" - ], - [ - "8855", - "0.0155769669903143", - "1.7810857965810876", - "0.0", - "0.0", - "0.0", - "0.0", - "0.022180684209862165", - "3.5441257730429876", - "0.0", - "0.0", - "0.008973249770766436" - ], - [ - "8856", - "0.015535875781929609", - "1.781007989921591", - "0.0", - "0.0", - "0.0", - "0.0", - "0.02212260139510471", - "3.544019256233166", - "0.0", - "0.0", - "0.008949150168754506" - ], - [ - "8857", - "0.015492598465460385", - "1.7809271362664052", - "0.0", - "0.0", - "0.0", - "0.0", - "0.022061045844608305", - "3.5439078253918677", - "0.0", - "0.0", - "0.008924151086312468" - ], - [ - "8858", - "0.015448485283512468", - "1.7808446139968601", - "0.0", - "0.0", - "0.0", - "0.0", - "0.021998338540315462", - "3.543794168105833", - "0.0", - "0.0", - "0.008898632026709475" - ], - [ - "8859", - "0.015402515960990083", - "1.7807583639372353", - "0.0", - "0.0", - "0.0", - "0.0", - "0.021933081809179886", - "3.543675551762506", - "0.0", - "0.0", - "0.00887195011280028" - ], - [ - "8860", - "0.015362537544524404", - "1.7806837330884042", - "0.0", - "0.0", - "0.0", - "0.0", - "0.021876196768736648", - "3.5435726547656903", - "0.0", - "0.0", - "0.008848878320312161" - ], - [ - "8861", - "0.015288351719620542", - "1.7805452144925071", - "0.0", - "0.0", - "0.0", - "0.0", - "0.021770648081309678", - "3.543381692495376", - "0.0", - "0.0", - "0.008806055357931405" - ], - [ - "8862", - "0.01521354284953775", - "1.780405477254835", - "0.0", - "0.0", - "0.0", - "0.0", - "0.02166423142140345", - "3.543189086951467", - "0.0", - "0.0", - "0.00876285427767205" - ], - [ - "8863", - "0.015170997440871454", - "1.7803259910096214", - "0.0", - "0.0", - "0.0", - "0.0", - "0.02160371472749053", - "3.5430795373179165", - "0.0", - "0.0", - "0.008738280154252381" - ], - [ - "8864", - "0.015128919657795817", - "1.780247425117226", - "0.0", - "0.0", - "0.0", - "0.0", - "0.021543846560622196", - "3.542971223548908", - "0.0", - "0.0", - "0.00871399275496944" - ], - [ - "8865", - "0.01505503361813411", - "1.7801093166990756", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0214387740091889", - "3.542780925616584", - "0.0", - "0.0", - "0.008671293227079322" - ], - [ - "8866", - "0.015013277433930784", - "1.7800313517287474", - "0.0", - "0.0", - "0.0", - "0.0", - "0.021379362491331804", - "3.5426734388233165", - "0.0", - "0.0", - "0.008647192376529764" - ], - [ - "8867", - "0.014971603683766209", - "1.7799535366565538", - "0.0", - "0.0", - "0.0", - "0.0", - "0.02132006939353632", - "3.5425661610359565", - "0.0", - "0.0", - "0.0086231379739961" - ], - [ - "8868", - "0.014911476882854203", - "1.7798408797390262", - "0.0", - "0.0", - "0.0", - "0.0", - "0.021234655834856734", - "3.54241111420625", - "0.0", - "0.0", - "0.008588297930851672" - ], - [ - "8869", - "0.014870118829160752", - "1.779763659262589", - "0.0", - "0.0", - "0.0", - "0.0", - "0.02117580945207796", - "3.5423046516014396", - "0.0", - "0.0", - "0.008564428206243547" - ], - [ - "8870", - "0.014830124244337762", - "1.7796889047033326", - "0.0", - "0.0", - "0.0", - "0.0", - "0.021118930762689968", - "3.542201643321432", - "0.0", - "0.0", - "0.008541317725985554" - ], - [ - "8871", - "0.014788776932932382", - "1.779611683793614", - "0.0", - "0.0", - "0.0", - "0.0", - "0.02106010630173375", - "3.542095193419712", - "0.0", - "0.0", - "0.008517447564131012" - ], - [ - "8872", - "0.014747759157820998", - "1.7795350989644867", - "0.0", - "0.0", - "0.0", - "0.0", - "0.021001743182820998", - "3.541989605745045", - "0.0", - "0.0", - "0.008493775132820998" - ], - [ - "8873", - "0.014676595854938183", - "1.7794017738648433", - "0.0", - "0.0", - "0.0", - "0.0", - "0.02090064539381649", - "3.5418061026723713", - "0.0", - "0.0", - "0.00845254631605988" - ], - [ - "8874", - "0.014601378024159438", - "1.7792613360383958", - "0.0", - "0.0", - "0.0", - "0.0", - "0.020793617537399674", - "3.5416124767318684", - "0.0", - "0.0", - "0.008409138510919203" - ], - [ - "8875", - "0.014525943281144814", - "1.7791204932522127", - "0.0", - "0.0", - "0.0", - "0.0", - "0.02068628012532852", - "3.5414182910648466", - "0.0", - "0.0", - "0.008365606436961109" - ], - [ - "8876", - "0.014395489165718063", - "1.778876684493994", - "0.0", - "0.0", - "0.0", - "0.0", - "0.02050073664140564", - "3.5410823043129174", - "0.0", - "0.0", - "0.00829024169003049" - ], - [ - "8877", - "0.014253415331480229", - "1.7786113145616156", - "0.0", - "0.0", - "0.0", - "0.0", - "0.02029860919908739", - "3.5407164931728548", - "0.0", - "0.0", - "0.008208221463873068" - ], - [ - "8878", - "0.014174035601535614", - "1.7784631082508993", - "0.0", - "0.0", - "0.0", - "0.0", - "0.020185653270382704", - "3.5405121469577163", - "0.0", - "0.0", - "0.008162417932688525" - ], - [ - "8879", - "0.014098305032359043", - "1.7783217149425912", - "0.0", - "0.0", - "0.0", - "0.0", - "0.020077889166109916", - "3.5403171931852753", - "0.0", - "0.0", - "0.00811872089860817" - ], - [ - "8880", - "0.01405694942298351", - "1.7782442246589032", - "0.0", - "0.0", - "0.0", - "0.0", - "0.02001913690826116", - "3.5402105393818237", - "0.0", - "0.0", - "0.008094761937705862" - ], - [ - "8881", - "0.014017038247190633", - "1.7781695884803717", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01996238481637109", - "3.540107712150824", - "0.0", - "0.0", - "0.008071691678010178" - ], - [ - "8882", - "0.013976228222108871", - "1.778093395127469", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01990431106035141", - "3.5400026541137963", - "0.0", - "0.0", - "0.008048145383866334" - ], - [ - "8883", - "0.013911413204816857", - "1.7779712857712706", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01981246106132117", - "3.539835040793168", - "0.0", - "0.0", - "0.008010365348312544" - ], - [ - "8884", - "0.01382890468074368", - "1.7778167150899458", - "0.0", - "0.0", - "0.0", - "0.0", - "0.019695231226050915", - "3.5396222724095368", - "0.0", - "0.0", - "0.007962578135436448" - ], - [ - "8885", - "0.013771092977064752", - "1.7777084513800103", - "0.0", - "0.0", - "0.0", - "0.0", - "0.019613076445633204", - "3.5394732175441384", - "0.0", - "0.0", - "0.007929109508496299" - ], - [ - "8886", - "0.013732897610831865", - "1.777637145103307", - "0.0", - "0.0", - "0.0", - "0.0", - "0.019558720029433836", - "3.539374891953338", - "0.0", - "0.0", - "0.007907075192229895" - ], - [ - "8887", - "0.013694765896411942", - "1.7775659543605804", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0195044551196178", - "3.539276727592312", - "0.0", - "0.0", - "0.007885076673206086" - ], - [ - "8888", - "0.01365670469892788", - "1.7774948881669121", - "0.0", - "0.0", - "0.0", - "0.0", - "0.019450292816487982", - "3.5391787395110494", - "0.0", - "0.0", - "0.007863116581367778" - ], - [ - "8889", - "0.013618394645846658", - "1.7774233097772962", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01939579277713161", - "3.539080077573428", - "0.0", - "0.0", - "0.007840996514561705" - ], - [ - "8890", - "0.01356493695546642", - "1.7773234460208287", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01931973751115579", - "3.5389424158635046", - "0.0", - "0.0", - "0.00781013639977705" - ], - [ - "8891", - "0.01351033445963198", - "1.7772213615623311", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0192420817489751", - "3.538801748697357", - "0.0", - "0.0", - "0.007778587170288863" - ], - [ - "8892", - "0.013457194064908019", - "1.7771221558657178", - "0.0", - "0.0", - "0.0", - "0.0", - "0.019166454155663277", - "3.5386649477868204", - "0.0", - "0.0", - "0.00774793397415276" - ], - [ - "8893", - "0.013403638733769348", - "1.777022094644385", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01909026387179787", - "3.538527022140515", - "0.0", - "0.0", - "0.007717013595740828" - ], - [ - "8894", - "0.013347981621438503", - "1.7769178708384161", - "0.0", - "0.0", - "0.0", - "0.0", - "0.019011165415186406", - "3.5383835201065015", - "0.0", - "0.0", - "0.0076847978276905985" - ], - [ - "8895", - "0.013295302554346656", - "1.776819528001487", - "0.0", - "0.0", - "0.0", - "0.0", - "0.018936192445460805", - "3.5382479058575913", - "0.0", - "0.0", - "0.007654412663232508" - ], - [ - "8896", - "0.013235035761936874", - "1.7767067925312918", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01885049965601119", - "3.5380926001250144", - "0.0", - "0.0", - "0.007619571867862559" - ], - [ - "8897", - "0.013182273605706177", - "1.7766082955204596", - "0.0", - "0.0", - "0.0", - "0.0", - "0.018775407160425743", - "3.53795677117987", - "0.0", - "0.0", - "0.0075891400509866145" - ], - [ - "8898", - "0.013139757162748674", - "1.7765289213811934", - "0.0", - "0.0", - "0.0", - "0.0", - "0.018714897693737756", - "3.537847315205218", - "0.0", - "0.0", - "0.007564616631759592" - ], - [ - "8899", - "0.013101773173849907", - "1.7764578130319015", - "0.0", - "0.0", - "0.0", - "0.0", - "0.018660907054800363", - "3.5377493921040983", - "0.0", - "0.0", - "0.007542639292899451" - ], - [ - "8900", - "0.01306474087442267", - "1.7763885987908916", - "0.0", - "0.0", - "0.0", - "0.0", - "0.018608229606204944", - "3.5376539998203866", - "0.0", - "0.0", - "0.007521252142640394" - ], - [ - "8901", - "0.013028504458385005", - "1.7763209530484705", - "0.0", - "0.0", - "0.0", - "0.0", - "0.018556655762699416", - "3.537560713276063", - "0.0", - "0.0", - "0.007500353154070594" - ], - [ - "8902", - "0.012991906729209909", - "1.7762525707571295", - "0.0", - "0.0", - "0.0", - "0.0", - "0.018504589157988343", - "3.5374664533879545", - "0.0", - "0.0", - "0.007479224300431474" - ], - [ - "8903", - "0.012955872305353732", - "1.7761853022786718", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01845330232133697", - "3.537373686344409", - "0.0", - "0.0", - "0.007458442289370495" - ], - [ - "8904", - "0.01291971029750909", - "1.776117765323055", - "0.0", - "0.0", - "0.0", - "0.0", - "0.018401844284870017", - "3.5372805695995213", - "0.0", - "0.0", - "0.007437576310148161" - ], - [ - "8905", - "0.012883876096375885", - "1.7760508707164258", - "0.0", - "0.0", - "0.0", - "0.0", - "0.018350841976086177", - "3.537188317452869", - "0.0", - "0.0", - "0.007416910216665593" - ], - [ - "8906", - "0.012848079598626041", - "1.7759840386174122", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01829989588025695", - "3.537096156619594", - "0.0", - "0.0", - "0.007396263316995132" - ], - [ - "8907", - "0.012784603985622919", - "1.7758655346438454", - "0.0", - "0.0", - "0.0", - "0.0", - "0.018209554196681382", - "3.536932736512568", - "0.0", - "0.0", - "0.007359653774564455" - ], - [ - "8908", - "0.012747384579310772", - "1.7757960520868694", - "0.0", - "0.0", - "0.0", - "0.0", - "0.018156580270324647", - "3.5368369156146278", - "0.0", - "0.0", - "0.007338188888296898" - ], - [ - "8909", - "0.01268122217170919", - "1.775672541532615", - "0.0", - "0.0", - "0.0", - "0.0", - "0.018062410232216847", - "3.5366665831609763", - "0.0", - "0.0", - "0.007300034111201532" - ], - [ - "8910", - "0.012615198612221816", - "1.7755492902033565", - "0.0", - "0.0", - "0.0", - "0.0", - "0.017968437118752706", - "3.5364966071286115", - "0.0", - "0.0", - "0.007261960105690925" - ], - [ - "8911", - "0.012580208913746067", - "1.7754839722141902", - "0.0", - "0.0", - "0.0", - "0.0", - "0.017918635053365", - "3.5364065265890066", - "0.0", - "0.0", - "0.007241782774127136" - ], - [ - "8912", - "0.012543365381518946", - "1.7754149313605447", - "0.0", - "0.0", - "0.0", - "0.0", - "0.017866285784928382", - "3.5363114919379703", - "0.0", - "0.0", - "0.0072204449781095095" - ], - [ - "8913", - "0.012489149240024842", - "1.7753137215874444", - "0.0", - "0.0", - "0.0", - "0.0", - "0.017789117448742665", - "3.536171911890778", - "0.0", - "0.0", - "0.007189181031307019" - ], - [ - "8914", - "0.012435091477904692", - "1.7752128089377845", - "0.0", - "0.0", - "0.0", - "0.0", - "0.017712173566254867", - "3.5360327398959464", - "0.0", - "0.0", - "0.007158009389554516" - ], - [ - "8915", - "0.012380223650897505", - "1.7751102577842095", - "0.0", - "0.0", - "0.0", - "0.0", - "0.017634120338162015", - "3.5358913943925057", - "0.0", - "0.0", - "0.007126326963632993" - ], - [ - "8916", - "0.012327126258458485", - "1.7750111384847906", - "0.0", - "0.0", - "0.0", - "0.0", - "0.017558542298044596", - "3.5357546938763376", - "0.0", - "0.0", - "0.007095710218872373" - ], - [ - "8917", - "0.012292935487795397", - "1.7749473130387745", - "0.0", - "0.0", - "0.0", - "0.0", - "0.017509875423172835", - "3.53566666855859", - "0.0", - "0.0", - "0.007075995552417959" - ], - [ - "8918", - "0.01225872540799946", - "1.7748834367979538", - "0.0", - "0.0", - "0.0", - "0.0", - "0.017461186033209702", - "3.53557858305449", - "0.0", - "0.0", - "0.007056264782789219" - ], - [ - "8919", - "0.01219710625859299", - "1.77476840967093", - "0.0", - "0.0", - "0.0", - "0.0", - "0.017373476981022328", - "3.535419941277543", - "0.0", - "0.0", - "0.0070207355361636544" - ], - [ - "8920", - "0.01213560356990268", - "1.7746535937179753", - "0.0", - "0.0", - "0.0", - "0.0", - "0.017285935276489653", - "3.5352615941150005", - "0.0", - "0.0", - "0.006985271863315706" - ], - [ - "8921", - "0.012074261754263745", - "1.7745390783842807", - "0.0", - "0.0", - "0.0", - "0.0", - "0.017198621855670854", - "3.5351036604335406", - "0.0", - "0.0", - "0.0069499016528566365" - ], - [ - "8922", - "0.012012898211794017", - "1.7744245119430433", - "0.0", - "0.0", - "0.0", - "0.0", - "0.017111280598246677", - "3.534945662613532", - "0.0", - "0.0", - "0.0069145158253413564" - ], - [ - "8923", - "0.011950282849401778", - "1.7743074238557617", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01702222142529374", - "3.534784313203517", - "0.0", - "0.0", - "0.006878344273509817" - ], - [ - "8924", - "0.011888601586559423", - "1.7741921847539524", - "0.0", - "0.0", - "0.0", - "0.0", - "0.016934454498791184", - "3.5346254405435618", - "0.0", - "0.0", - "0.006842748674327662" - ], - [ - "8925", - "0.011842864587834697", - "1.7741068068740529", - "0.0", - "0.0", - "0.0", - "0.0", - "0.016869349093435314", - "3.534507685128112", - "0.0", - "0.0", - "0.00681638008223408" - ], - [ - "8926", - "0.011810016845567347", - "1.7740454895529887", - "0.0", - "0.0", - "0.0", - "0.0", - "0.016822590995750234", - "3.5344231143497913", - "0.0", - "0.0", - "0.006797442695384458" - ], - [ - "8927", - "0.011777260201287056", - "1.7739843422922927", - "0.0", - "0.0", - "0.0", - "0.0", - "0.016775962401669134", - "3.5343387778594497", - "0.0", - "0.0", - "0.006778558000904978" - ], - [ - "8928", - "0.011744594402400534", - "1.773923364620392", - "0.0", - "0.0", - "0.0", - "0.0", - "0.016729462953059587", - "3.5342546750088712", - "0.0", - "0.0", - "0.006759725851741479" - ], - [ - "8929", - "0.011712019197014586", - "1.77386255606702", - "0.0", - "0.0", - "0.0", - "0.0", - "0.016683092292776567", - "3.5341708051516285", - "0.0", - "0.0", - "0.0067409461012526055" - ], - [ - "8930", - "0.011654369784263631", - "1.773754938525425", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01660102912128968", - "3.5340223754487843", - "0.0", - "0.0", - "0.0067077104472375824" - ], - [ - "8931", - "0.011600197635853474", - "1.773653792779599", - "0.0", - "0.0", - "0.0", - "0.0", - "0.016523922093749546", - "3.5338828844901795", - "0.0", - "0.0", - "0.006676473177957402" - ], - [ - "8932", - "0.01154394441548853", - "1.7735487722525731", - "0.0", - "0.0", - "0.0", - "0.0", - "0.016443848655883653", - "3.533738041588837", - "0.0", - "0.0", - "0.0066440401750934045" - ], - [ - "8933", - "0.011484469931328853", - "1.7734377440729072", - "0.0", - "0.0", - "0.0", - "0.0", - "0.016359187208711826", - "3.533584907911213", - "0.0", - "0.0", - "0.006609752653945879" - ], - [ - "8934", - "0.011423793391200195", - "1.7733242819741815", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01627288041180128", - "3.5334285470654154", - "0.0", - "0.0", - "0.006574706370599108" - ], - [ - "8935", - "0.011363399883947094", - "1.7732115460248534", - "0.0", - "0.0", - "0.0", - "0.0", - "0.016186906833153537", - "3.533273050786549", - "0.0", - "0.0", - "0.006539892934740653" - ], - [ - "8936", - "0.01130317043623172", - "1.7730991163459577", - "0.0", - "0.0", - "0.0", - "0.0", - "0.016101166219001137", - "3.53311797605038", - "0.0", - "0.0", - "0.006505174653462303" - ], - [ - "8937", - "0.011243645450302892", - "1.7729880017002342", - "0.0", - "0.0", - "0.0", - "0.0", - "0.016016427880328695", - "3.5329647142668907", - "0.0", - "0.0", - "0.006470863020277088" - ], - [ - "8938", - "0.011186364648961205", - "1.7728810762699467", - "0.0", - "0.0", - "0.0", - "0.0", - "0.015934883771394775", - "3.5328172298949347", - "0.0", - "0.0", - "0.006437845526527638" - ], - [ - "8939", - "0.011129420895570447", - "1.7727747800231315", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01585381895644651", - "3.532670612566857", - "0.0", - "0.0", - "0.0064050228346943855" - ], - [ - "8940", - "0.0110726326386125", - "1.7726687740594105", - "0.0", - "0.0", - "0.0", - "0.0", - "0.015772974986478155", - "3.5325243948384117", - "0.0", - "0.0", - "0.006372290290746846" - ], - [ - "8941", - "0.011015823146206418", - "1.7725627198846008", - "0.0", - "0.0", - "0.0", - "0.0", - "0.015692103268156146", - "3.5323781157262446", - "0.0", - "0.0", - "0.006339543024256688" - ], - [ - "8942", - "0.010958944320457523", - "1.7724564683400466", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01561115606808527", - "3.532231610338023", - "0.0", - "0.0", - "0.006306732572829778" - ], - [ - "8943", - "0.010902701353159325", - "1.772351453876254", - "0.0", - "0.0", - "0.0", - "0.0", - "0.015531096072891541", - "3.5320867760529806", - "0.0", - "0.0", - "0.0062743066334271114" - ], - [ - "8944", - "0.010846707957522413", - "1.7722469323190442", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01545138143375908", - "3.5319426023006755", - "0.0", - "0.0", - "0.006242034481285745" - ], - [ - "8945", - "0.010789145802446857", - "1.772139363176806", - "0.0", - "0.0", - "0.0", - "0.0", - "0.015369474564685442", - "3.5317943060342496", - "0.0", - "0.0", - "0.006208817040208273" - ], - [ - "8946", - "0.010731648820179868", - "1.772032035583037", - "0.0", - "0.0", - "0.0", - "0.0", - "0.015287618075819022", - "3.531646259665992", - "0.0", - "0.0", - "0.006175679564540716" - ], - [ - "8947", - "0.010674286518575316", - "1.7719249594130737", - "0.0", - "0.0", - "0.0", - "0.0", - "0.015205952797684698", - "3.5314985592965638", - "0.0", - "0.0", - "0.006142620239465933" - ], - [ - "8948", - "0.010617080067070794", - "1.7718181741830015", - "0.0", - "0.0", - "0.0", - "0.0", - "0.015124508872672608", - "3.5313512594403904", - "0.0", - "0.0", - "0.006109651261468981" - ], - [ - "8949", - "0.010560287968533286", - "1.7717121624305479", - "0.0", - "0.0", - "0.0", - "0.0", - "0.015043654335073542", - "3.5312050257234175", - "0.0", - "0.0", - "0.0060769216019930326" - ], - [ - "8950", - "0.010502864054268273", - "1.7716049713106345", - "0.0", - "0.0", - "0.0", - "0.0", - "0.014961899758365609", - "3.5310571643661426", - "0.0", - "0.0", - "0.006043828350170936" - ], - [ - "8951", - "0.010446174739870315", - "1.7714991514612095", - "0.0", - "0.0", - "0.0", - "0.0", - "0.014881190513383994", - "3.5309111937665185", - "0.0", - "0.0", - "0.006011158966356636" - ], - [ - "8952", - "0.010389628012979076", - "1.7713935977942084", - "0.0", - "0.0", - "0.0", - "0.0", - "0.014800683757161448", - "3.530765589556296", - "0.0", - "0.0", - "0.005978572268796701" - ], - [ - "8953", - "0.01033110131503461", - "1.7712840718896172", - "0.0", - "0.0", - "0.0", - "0.0", - "0.014717454035376666", - "3.530614695165267", - "0.0", - "0.0", - "0.005944748594692556" - ], - [ - "8954", - "0.010275097611234414", - "1.7711795353563367", - "0.0", - "0.0", - "0.0", - "0.0", - "0.014637718150930285", - "3.530470490058153", - "0.0", - "0.0", - "0.005912477071538543" - ], - [ - "8955", - "0.010212726632278948", - "1.7710622633512891", - "0.0", - "0.0", - "0.0", - "0.0", - "0.014549213139570128", - "3.5303093007352113", - "0.0", - "0.0", - "0.005876240124987769" - ], - [ - "8956", - "0.01014315453574224", - "1.7709324034140002", - "0.0", - "0.0", - "0.0", - "0.0", - "0.014450156545640703", - "3.5301301582913425", - "0.0", - "0.0", - "0.005836152525843777" - ], - [ - "8957", - "0.010075616025685971", - "1.7708063393003455", - "0.0", - "0.0", - "0.0", - "0.0", - "0.014353994622891957", - "3.5299562510635183", - "0.0", - "0.0", - "0.005797237428479987" - ], - [ - "8958", - "0.010020600740145349", - "1.7707036504522673", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0142756628347905", - "3.529814589513673", - "0.0", - "0.0", - "0.005765538645500198" - ], - [ - "8959", - "0.009992806877888623", - "1.770651771792028", - "0.0", - "0.0", - "0.0", - "0.0", - "0.014236089231004459", - "3.5297430214641734", - "0.0", - "0.0", - "0.005749524524772788" - ], - [ - "8960", - "0.009961557097507238", - "1.7705930281151532", - "0.0", - "0.0", - "0.0", - "0.0", - "0.014191739537757982", - "3.5296622677005454", - "0.0", - "0.0", - "0.005731374657256492" - ], - [ - "8961", - "0.009907365834084669", - "1.770491879631447", - "0.0", - "0.0", - "0.0", - "0.0", - "0.014114579230148461", - "3.5295227280479042", - "0.0", - "0.0", - "0.005700152438020876" - ], - [ - "8962", - "0.009852409839428375", - "1.770389183650864", - "0.0", - "0.0", - "0.0", - "0.0", - "0.014036371520964071", - "3.5293811354246625", - "0.0", - "0.0", - "0.005668448157892681" - ], - [ - "8963", - "0.009798599951130882", - "1.770288747697763", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013959753062668825", - "3.5292425768478126", - "0.0", - "0.0", - "0.005637446839592939" - ], - [ - "8964", - "0.009745852847374144", - "1.770190172192821", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013884690452776025", - "3.5291066689608352", - "0.0", - "0.0", - "0.005607015241972265" - ], - [ - "8965", - "0.009692216260479856", - "1.7700900604178513", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013808317598170174", - "3.5289685557354264", - "0.0", - "0.0", - "0.005576114922789538" - ], - [ - "8966", - "0.009665154022032928", - "1.7700395351964084", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013769788538244742", - "3.5288988610074035", - "0.0", - "0.0", - "0.005560519505821115" - ], - [ - "8967", - "0.009640110413926957", - "1.769992826074065", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013734116821946021", - "3.5288343975368854", - "0.0", - "0.0", - "0.005546104005907895" - ], - [ - "8968", - "0.009612775914248615", - "1.7699417266353652", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013695222919242744", - "3.528763955694449", - "0.0", - "0.0", - "0.005530328909254486" - ], - [ - "8969", - "0.009560616636401419", - "1.7698443582491832", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013620957382812136", - "3.52862963516297", - "0.0", - "0.0", - "0.005500275889990702" - ], - [ - "8970", - "0.009501604390514454", - "1.7697335940999535", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013537144403562691", - "3.5284772488269964", - "0.0", - "0.0", - "0.00546606437746622" - ], - [ - "8971", - "0.0094450001280932", - "1.769627947409372", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01345654221299997", - "3.5283314934162613", - "0.0", - "0.0", - "0.00543345804318643" - ], - [ - "8972", - "0.009388260353806762", - "1.7695220131538347", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013375758641311483", - "3.528185364308344", - "0.0", - "0.0", - "0.005400762066302042" - ], - [ - "8973", - "0.009350858182879998", - "1.7694516084174492", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013322707214062625", - "3.5280886399634923", - "0.0", - "0.0", - "0.005379009151697372" - ], - [ - "8974", - "0.009324921859056656", - "1.7694032024044826", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013285773756575598", - "3.528021854557208", - "0.0", - "0.0", - "0.005364069961537711" - ], - [ - "8975", - "0.00929905746819007", - "1.769354930647157", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013248942624163592", - "3.5279552542170696", - "0.0", - "0.0", - "0.005349172312216547" - ], - [ - "8976", - "0.009265046604679613", - "1.7692903908957252", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013200881975871884", - "3.5278669401262452", - "0.0", - "0.0", - "0.005329211233487342" - ], - [ - "8977", - "0.009239349635661049", - "1.7692424345475053", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013164287979742246", - "3.5278007725525478", - "0.0", - "0.0", - "0.005314411291579852" - ], - [ - "8978", - "0.009213321066477546", - "1.7691938082655803", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01312723948847654", - "3.5277337155990263", - "0.0", - "0.0", - "0.005299402644478552" - ], - [ - "8979", - "0.009187766222400121", - "1.769146117312799", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01309084762174937", - "3.527667913774537", - "0.0", - "0.0", - "0.005284684823050871" - ], - [ - "8980", - "0.00913695615763098", - "1.7690512945827501", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013018490260429852", - "3.527537081171818", - "0.0", - "0.0", - "0.005255422054832105" - ], - [ - "8981", - "0.009082229902479304", - "1.7689491362816725", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012940564947259628", - "3.527396145170503", - "0.0", - "0.0", - "0.005223894857698979" - ], - [ - "8982", - "0.009027150951347051", - "1.7688463470749993", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012862127357951643", - "3.5272543191656083", - "0.0", - "0.0", - "0.005192174544742458" - ], - [ - "8983", - "0.00897138656298363", - "1.7687422787144165", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012782713144196385", - "3.5271107274528197", - "0.0", - "0.0", - "0.0051600599817708745" - ], - [ - "8984", - "0.008915590161765302", - "1.7686381332054328", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012703258920097662", - "3.5269670405012943", - "0.0", - "0.0", - "0.005127921403432941" - ], - [ - "8985", - "0.00886011826566546", - "1.7685346101380002", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01262426045952904", - "3.526824200060903", - "0.0", - "0.0", - "0.005095976071801881" - ], - [ - "8986", - "0.008804805070200443", - "1.7684313839720354", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01254548726588016", - "3.526681768038226", - "0.0", - "0.0", - "0.005064122874520728" - ], - [ - "8987", - "0.008734578213765616", - "1.768298448256053", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012446129389723828", - "3.5264996317619315", - "0.0", - "0.0", - "0.005023027037807403" - ], - [ - "8988", - "0.008681952519855764", - "1.7682002101372263", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012371192057572155", - "3.5263640994893173", - "0.0", - "0.0", - "0.004992712982139376" - ], - [ - "8989", - "0.008628964517568538", - "1.7681013349284138", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012295724676007435", - "3.5262276606345497", - "0.0", - "0.0", - "0.0049622043591296405" - ], - [ - "8990", - "0.008577189163481373", - "1.7680045764767953", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012222034899684117", - "3.526094242397854", - "0.0", - "0.0", - "0.004932343427278629" - ], - [ - "8991", - "0.008525177677519367", - "1.7679075243587914", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012147957124687182", - "3.5259603172957017", - "0.0", - "0.0", - "0.004902398230351553" - ], - [ - "8992", - "0.008472705368457121", - "1.7678095622632377", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012073240056051041", - "3.5258251702423693", - "0.0", - "0.0", - "0.004872170680863201" - ], - [ - "8993", - "0.008420771246450545", - "1.7677126548464455", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011999271486413802", - "3.5256914432669633", - "0.0", - "0.0", - "0.0048422710064872886" - ], - [ - "8994", - "0.008359548802655565", - "1.7675972422511081", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011912482486424908", - "3.5255329854579114", - "0.0", - "0.0", - "0.004806615118886222" - ], - [ - "8995", - "0.00830732580754931", - "1.7674998031557683", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011838098971993706", - "3.525398518296768", - "0.0", - "0.0", - "0.004776552643104913" - ], - [ - "8996", - "0.008255246803750286", - "1.767402632741518", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01176392011315128", - "3.5252644212479654", - "0.0", - "0.0", - "0.004746573494349293" - ], - [ - "8997", - "0.008204489552375509", - "1.7673079285061541", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011691623475168219", - "3.525133726928957", - "0.0", - "0.0", - "0.004717355629582797" - ], - [ - "8998", - "0.008153828711546005", - "1.7672134041733425", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011619463746651404", - "3.52500328024553", - "0.0", - "0.0", - "0.004688193676440604" - ], - [ - "8999", - "0.008105845444212887", - "1.767123875743601", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011551117489327314", - "3.5248797274877215", - "0.0", - "0.0", - "0.004660573399098462" - ], - [ - "9000", - "0.008060049726521697", - "1.7670384289153116", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011485886781140865", - "3.5247618069700852", - "0.0", - "0.0", - "0.004634212671902529" - ], - [ - "9001", - "0.00801511339431962", - "1.7669545855642148", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011421879839764894", - "3.5246460988203827", - "0.0", - "0.0", - "0.004608346948874344" - ], - [ - "9002", - "0.007970710503335617", - "1.766871738638062", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011358632023235902", - "3.524531764540441", - "0.0", - "0.0", - "0.004582788983435332" - ], - [ - "9003", - "0.007946790411770379", - "1.7668271079323803", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011324560139144051", - "3.5244701714006155", - "0.0", - "0.0", - "0.004569020684396706" - ], - [ - "9004", - "0.007913435207974485", - "1.7667647751947768", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011277082776620359", - "3.5243842152806026", - "0.0", - "0.0", - "0.00454978763932861" - ], - [ - "9005", - "0.007891485637595869", - "1.7667238214155885", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01124581741793701", - "3.524327696035621", - "0.0", - "0.0", - "0.004537153857254728" - ], - [ - "9006", - "0.007869596944253302", - "1.766682981224739", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011214638696258415", - "3.5242713334323925", - "0.0", - "0.0", - "0.004524555192248188" - ], - [ - "9007", - "0.007847673750117393", - "1.7666420690554425", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011183413406828761", - "3.524214876601622", - "0.0", - "0.0", - "0.004511934093406024" - ], - [ - "9008", - "0.007779455041058333", - "1.7665147828621817", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011086241505888689", - "3.5240392127487854", - "0.0", - "0.0", - "0.004472668576227978" - ], - [ - "9009", - "0.007711386651083201", - "1.7663877426013395", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01098929502831565", - "3.523863910898926", - "0.0", - "0.0", - "0.004433478273850753" - ], - [ - "9010", - "0.007643766921013288", - "1.7662615773967232", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010892973683416468", - "3.5236897895357657", - "0.0", - "0.0", - "0.004394560158610109" - ], - [ - "9011", - "0.007575568473607306", - "1.766134243452299", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010795858262770876", - "3.5235141151689873", - "0.0", - "0.0", - "0.004355278684443735" - ], - [ - "9012", - "0.007509201172891721", - "1.76601031296927", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01070135510626126", - "3.523343145879967", - "0.0", - "0.0", - "0.004317047239522182" - ], - [ - "9013", - "0.007443322796787003", - "1.765887398552397", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010607511521190887", - "3.523173506518862", - "0.0", - "0.0", - "0.004279134072383119" - ], - [ - "9014", - "0.007377913875290712", - "1.7657653500642092", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010514339466259084", - "3.5230050680676523", - "0.0", - "0.0", - "0.004241488284322342" - ], - [ - "9015", - "0.007311131703143185", - "1.765640749514107", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010419206975772307", - "3.5228330993660224", - "0.0", - "0.0", - "0.004203056430514063" - ], - [ - "9016", - "0.007246278650021619", - "1.7655197482960028", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010326821864151136", - "3.522666097263327", - "0.0", - "0.0", - "0.004165735435892102" - ], - [ - "9017", - "0.0071812486366816634", - "1.7653984169383181", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010234183986337303", - "3.522498638468139", - "0.0", - "0.0", - "0.004128313287026023" - ], - [ - "9018", - "0.007116388092300681", - "1.7652774017998762", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01014178684451318", - "3.5223316150700454", - "0.0", - "0.0", - "0.004090989340088182" - ], - [ - "9019", - "0.007050791125224763", - "1.7651550126916626", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01004833994099922", - "3.5221626942800954", - "0.0", - "0.0", - "0.004053242309450307" - ], - [ - "9020", - "0.0069876771536680204", - "1.765037209259975", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00995844596513744", - "3.522000133929353", - "0.0", - "0.0", - "0.0040169083421986015" - ], - [ - "9021", - "0.006926815156710208", - "1.7649236549960228", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00987174293380161", - "3.5218434047609386", - "0.0", - "0.0", - "0.003981887379618806" - ], - [ - "9022", - "0.006862317909322845", - "1.7648033182314837", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009779860530451915", - "3.5216773132914363", - "0.0", - "0.0", - "0.0039447752881937755" - ], - [ - "9023", - "0.006797853125117322", - "1.7646830420636337", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009688023703356327", - "3.5215113044307493", - "0.0", - "0.0", - "0.003907682546878318" - ], - [ - "9024", - "0.006733361656440028", - "1.764562716136822", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009596148190546548", - "3.5213452258627007", - "0.0", - "0.0", - "0.003870575122333508" - ], - [ - "9025", - "0.006669682824008801", - "1.7644439059451533", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009505429880586436", - "3.5211812386924333", - "0.0", - "0.0", - "0.003833935767431166" - ], - [ - "9026", - "0.006614240769721412", - "1.7643404641493852", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009426445191647531", - "3.5210384625664597", - "0.0", - "0.0", - "0.0038020363477952925" - ], - [ - "9027", - "0.006562161384312572", - "1.7642432963194261", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009352250626564139", - "3.520904345424799", - "0.0", - "0.0", - "0.003772072142061005" - ], - [ - "9028", - "0.006508254532891394", - "1.7641427132046905", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00927545409368039", - "3.5207655174891386", - "0.0", - "0.0", - "0.003741054972102397" - ], - [ - "9029", - "0.006455082744831631", - "1.7640435072939522", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009199702313798668", - "3.520628585827105", - "0.0", - "0.0", - "0.003710463175864594" - ], - [ - "9030", - "0.006405005192940709", - "1.7639500745094256", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009128358354695646", - "3.520499622040241", - "0.0", - "0.0", - "0.0036816520311857715" - ], - [ - "9031", - "0.006368646663470658", - "1.7638822381637744", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009076559214326933", - "3.5204059882221754", - "0.0", - "0.0", - "0.0036607341126143832" - ], - [ - "9032", - "0.0063323738441501435", - "1.7638145617416998", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00902488197057758", - "3.5203125748190605", - "0.0", - "0.0", - "0.0036398657177227067" - ], - [ - "9033", - "0.006284721697060653", - "1.7637255368622857", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008957033376331426", - "3.5201897743470445", - "0.0", - "0.0", - "0.003612410017789882" - ], - [ - "9034", - "0.006257086767989876", - "1.7636739742088354", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008917662893328944", - "3.5201186038553334", - "0.0", - "0.0", - "0.003596510642650808" - ], - [ - "9035", - "0.006239358804044925", - "1.763640848631461", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008892423112944439", - "3.520072914296439", - "0.0", - "0.0", - "0.0035862944951454115" - ], - [ - "9036", - "0.006221293247661525", - "1.7636070457403903", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008866718847151223", - "3.520026322334359", - "0.0", - "0.0", - "0.0035758676481718265" - ], - [ - "9037", - "0.006204036910621308", - "1.763574850287584", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008842133407949001", - "3.519981882027594", - "0.0", - "0.0", - "0.0035659404132936147" - ], - [ - "9038", - "0.006185939771709218", - "1.7635409696232285", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008816390611348002", - "3.519935195496286", - "0.0", - "0.0", - "0.0035554889320704346" - ], - [ - "9039", - "0.006126376467173052", - "1.7634298424562875", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008731528678002242", - "3.5197818018777114", - "0.0", - "0.0", - "0.003521224256343862" - ], - [ - "9040", - "0.006063800335098975", - "1.7633130942566195", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00864237365719067", - "3.519620648380813", - "0.0", - "0.0", - "0.0034852270130072797" - ], - [ - "9041", - "0.00600420852724261", - "1.7632019139607509", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00855746993884383", - "3.519467179624312", - "0.0", - "0.0", - "0.003450947115641391" - ], - [ - "9042", - "0.005946677342929095", - "1.7630945781882363", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008475501559950752", - "3.5193190168575286", - "0.0", - "0.0", - "0.003417853125907436" - ], - [ - "9043", - "0.005896153357791847", - "1.763000266792683", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00840353340446288", - "3.519188865446139", - "0.0", - "0.0", - "0.0033887733111208147" - ], - [ - "9044", - "0.005877226100692456", - "1.7629649446766038", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00837656959588408", - "3.5191401141319973", - "0.0", - "0.0", - "0.0033778826055008327" - ], - [ - "9045", - "0.005860924068582186", - "1.7629345301939288", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00835334270556477", - "3.519098130440665", - "0.0", - "0.0", - "0.0033685054315996028" - ], - [ - "9046", - "0.005844667251818882", - "1.7629042000707176", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008330180194656325", - "3.519056263132347", - "0.0", - "0.0", - "0.0033591543089814386" - ], - [ - "9047", - "0.005828455525007666", - "1.7628739540730076", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00830708188485264", - "3.5190145118846288", - "0.0", - "0.0", - "0.0033498291651626925" - ], - [ - "9048", - "0.005812288763101336", - "1.762843791967485", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008284047598340682", - "3.518972876375988", - "0.0", - "0.0", - "0.003340529927861991" - ], - [ - "9049", - "0.005796000205382877", - "1.7628133803576116", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008260847495652833", - "3.518930911680123", - "0.0", - "0.0", - "0.0033311529151129216" - ], - [ - "9050", - "0.005779923462065049", - "1.762783386263732", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008237941361314153", - "3.518889507921889", - "0.0", - "0.0", - "0.003321905562815944" - ], - [ - "9051", - "0.005753557785910044", - "1.762734196294779", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008200375471218057", - "3.5188216060961235", - "0.0", - "0.0", - "0.0033067401006020313" - ], - [ - "9052", - "0.005719387684165619", - "1.7626704457560567", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008151689646398773", - "3.518733604605988", - "0.0", - "0.0", - "0.003287085721932464" - ], - [ - "9053", - "0.005702390078669843", - "1.7626385629371122", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008127530726983677", - "3.518689710519367", - "0.0", - "0.0", - "0.0032772494303560103" - ], - [ - "9054", - "0.005686091892631646", - "1.7626081001697746", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00810432818433351", - "3.5186476975555996", - "0.0", - "0.0", - "0.0032678556009297813" - ], - [ - "9055", - "0.005670161064270044", - "1.7625783591624038", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008081636340282196", - "3.5186066558734246", - "0.0", - "0.0", - "0.003258685788257892" - ], - [ - "9056", - "0.0056542730891410535", - "1.7625487004321179", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008059004703394684", - "3.5185657261087", - "0.0", - "0.0", - "0.0032495414748874235" - ], - [ - "9057", - "0.005638589445561241", - "1.7625194404784834", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00803665804546901", - "3.5185253347065855", - "0.0", - "0.0", - "0.003240520845653471" - ], - [ - "9058", - "0.005578119430051852", - "1.7624066255197306", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007950497672269737", - "3.518369600657896", - "0.0", - "0.0", - "0.0032057411878339665" - ], - [ - "9059", - "0.0055156397979923", - "1.7622897839753453", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007861569921719457", - "3.518208497624888", - "0.0", - "0.0", - "0.0031697096742651426" - ], - [ - "9060", - "0.005455251844692262", - "1.76217712519692", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007775524217642219", - "3.5180529752507264", - "0.0", - "0.0", - "0.0031349794717423045" - ], - [ - "9061", - "0.005393975456513836", - "1.7620628089944879", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007688211996592026", - "3.517895163924838", - "0.0", - "0.0", - "0.0030997389164356456" - ], - [ - "9062", - "0.005359555654514804", - "1.7619985960002589", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007639167238029142", - "3.5178065187095013", - "0.0", - "0.0", - "0.0030799440710004653" - ], - [ - "9063", - "0.0053317303441610155", - "1.7619466855828585", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007599518827389533", - "3.5177348568293008", - "0.0", - "0.0", - "0.003063941860932497" - ], - [ - "9064", - "0.005316878395260518", - "1.7619189696409265", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007578359094758253", - "3.517696600903239", - "0.0", - "0.0", - "0.0030553976957627812" - ], - [ - "9065", - "0.0053021305608198675", - "1.7618914563631776", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00755734474449979", - "3.5176586189143593", - "0.0", - "0.0", - "0.0030469163771399453" - ], - [ - "9066", - "0.005287423631409263", - "1.7618640193985564", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0075363886452710525", - "3.5176207422218595", - "0.0", - "0.0", - "0.0030384586175474728" - ], - [ - "9067", - "0.0052726684112292714", - "1.7618364611430215", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007515374569011075", - "3.517582719450654", - "0.0", - "0.0", - "0.003029962253447467" - ], - [ - "9068", - "0.005258043199393242", - "1.7618091767184838", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0074945348105762725", - "3.5175450531735546", - "0.0", - "0.0", - "0.003021551588210212" - ], - [ - "9069", - "0.005243458552510849", - "1.7617819679723585", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007473752819543647", - "3.5175074913181064", - "0.0", - "0.0", - "0.003013164285478052" - ], - [ - "9070", - "0.005228679358813237", - "1.761754364895328", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007452704513090518", - "3.5174694065787615", - "0.0", - "0.0", - "0.0030046542045359557" - ], - [ - "9071", - "0.005213854918099554", - "1.7617266532240992", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007431600120846511", - "3.5174311884686076", - "0.0", - "0.0", - "0.0029961097153525973" - ], - [ - "9072", - "0.005199392834550595", - "1.7616996733741945", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007410992585937764", - "3.5173939422822795", - "0.0", - "0.0", - "0.0029877930831634265" - ], - [ - "9073", - "0.005184970863537689", - "1.7616727683579698", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007390442175147536", - "3.517356799353655", - "0.0", - "0.0", - "0.0029794995519278416" - ], - [ - "9074", - "0.005170588893814875", - "1.7616459379678768", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007369948730236849", - "3.51731975939664", - "0.0", - "0.0", - "0.0029712290573929013" - ], - [ - "9075", - "0.005156246814444656", - "1.7616191819969438", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007349512093404463", - "3.5172828221259302", - "0.0", - "0.0", - "0.00296298153548485" - ], - [ - "9076", - "0.005141944514797139", - "1.7615925002387725", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0073291321072856625", - "3.5172459872570117", - "0.0", - "0.0", - "0.002954756922308615" - ], - [ - "9077", - "0.00512766445609371", - "1.761565857645806", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00730878459112003", - "3.5172092080039667", - "0.0", - "0.0", - "0.0029465443210673907" - ], - [ - "9078", - "0.005113441433600863", - "1.761539323792941", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007288517502714327", - "3.5171725772172273", - "0.0", - "0.0", - "0.0029383653644874" - ], - [ - "9079", - "0.005099257860643818", - "1.761512863536803", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007268306595350347", - "3.517136047983096", - "0.0", - "0.0", - "0.0029302091259372897" - ], - [ - "9080", - "0.005085113627814971", - "1.7614864766732734", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007248151713397982", - "3.5170996200201965", - "0.0", - "0.0", - "0.0029220755422319604" - ], - [ - "9081", - "0.0050710347380152464", - "1.761460209054027", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007228090835971334", - "3.5170633584533455", - "0.0", - "0.0", - "0.0029139786400591595" - ], - [ - "9082", - "0.005056968786044", - "1.761433968237938", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007208047434013595", - "3.5170271320106465", - "0.0", - "0.0", - "0.0029058901380744056" - ], - [ - "9083", - "0.005042941847995527", - "1.7614078002058489", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007188059593448041", - "3.5169910060002163", - "0.0", - "0.0", - "0.002897824102543013" - ], - [ - "9084", - "0.005028953815670092", - "1.7613817047558957", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007168127160358792", - "3.516954980143779", - "0.0", - "0.0", - "0.002889780470981392" - ], - [ - "9085", - "0.0050150045811679774", - "1.7613556816867744", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007148249981255775", - "3.516919054163829", - "0.0", - "0.0", - "0.0028817591810801797" - ], - [ - "9086", - "0.0050010940368886495", - "1.761329730797739", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00712842790307355", - "3.5168832277836297", - "0.0", - "0.0", - "0.0028737601707037493" - ], - [ - "9087", - "0.0049870802702693725", - "1.7613035686573144", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007108465212606197", - "3.5168471225377504", - "0.0", - "0.0", - "0.002865695327932549" - ], - [ - "9088", - "0.004973247178398411", - "1.7612777623144251", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007088753421224667", - "3.5168114955789327", - "0.0", - "0.0", - "0.0028577409355721554" - ], - [ - "9089", - "0.004959452454642541", - "1.761252027550536", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00706909627259899", - "3.51677596739133", - "0.0", - "0.0", - "0.0028498086366860924" - ], - [ - "9090", - "0.004945695992592739", - "1.7612263641671242", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007049493615354743", - "3.516740537701265", - "0.0", - "0.0", - "0.002841898369830734" - ], - [ - "9091", - "0.004931977686135034", - "1.7612007719662184", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007029945298536301", - "3.516705206235816", - "0.0", - "0.0", - "0.0028340100737337666" - ], - [ - "9092", - "0.004918297429449691", - "1.7611752507503955", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007010451171605673", - "3.5166699727228177", - "0.0", - "0.0", - "0.0028261436872937086" - ], - [ - "9093", - "0.004904655117010396", - "1.7611498003227801", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006991011084441359", - "3.516634836890858", - "0.0", - "0.0", - "0.002818299149579433" - ], - [ - "9094", - "0.00489105064358344", - "1.7611244204870427", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006971624887337194", - "3.5165997984692763", - "0.0", - "0.0", - "0.002810476399829686" - ], - [ - "9095", - "0.0048774839042269105", - "1.7610991110473981", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006952292431001205", - "3.5165648571881607", - "0.0", - "0.0", - "0.0028026753774526175" - ], - [ - "9096", - "0.004863954794289883", - "1.7610738718086043", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006933013566554466", - "3.5165300127783463", - "0.0", - "0.0", - "0.0027948960220253003" - ], - [ - "9097", - "0.004850317051763564", - "1.76104841038776", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00691358667104738", - "3.516494874985583", - "0.0", - "0.0", - "0.0027870474324797477" - ], - [ - "9098", - "0.0048346291005996874", - "1.7610188614929547", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0068913296919106345", - "3.516454274396725", - "0.0", - "0.0", - "0.00277792850928874" - ], - [ - "9099", - "0.004821218859038069", - "1.7609938448487248", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006872219829649435", - "3.516419736576529", - "0.0", - "0.0", - "0.0027702178884267043" - ], - [ - "9100", - "0.004807845812845448", - "1.760968897593249", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006853162942585232", - "3.516385294509636", - "0.0", - "0.0", - "0.002762528683105664" - ], - [ - "9101", - "0.004749705174451218", - "1.7608604369518939", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0067703109089000315", - "3.5162355537287935", - "0.0", - "0.0", - "0.0027290994400024043" - ], - [ - "9102", - "0.004699982192107539", - "1.7607676793623028", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006699453836723303", - "3.5161074919195783", - "0.0", - "0.0", - "0.002700510547491775" - ], - [ - "9103", - "0.004678339550577582", - "1.7607272833777863", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0066686197868296845", - "3.516051735776612", - "0.0", - "0.0", - "0.002688059314325479" - ], - [ - "9104", - "0.00464053891966536", - "1.7606567583026462", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006614755061516144", - "3.5159543735583823", - "0.0", - "0.0", - "0.0026663227778145767" - ], - [ - "9105", - "0.004584320004839452", - "1.7605518529161708", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006534650388807068", - "3.5158095592679475", - "0.0", - "0.0", - "0.002633989620871837" - ], - [ - "9106", - "0.004536136687553719", - "1.760461968298438", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006465985872435748", - "3.515685461464202", - "0.0", - "0.0", - "0.0026062875026716913" - ], - [ - "9107", - "0.004492389942768017", - "1.7603803599404684", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006403643468747681", - "3.5155727896895237", - "0.0", - "0.0", - "0.0025811364167883525" - ], - [ - "9108", - "0.004448645272203306", - "1.760298755465182", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006341303711569099", - "3.515460122801177", - "0.0", - "0.0", - "0.002555986832837513" - ], - [ - "9109", - "0.004408498306187553", - "1.7602238624200985", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006284090707290389", - "3.5153567216044004", - "0.0", - "0.0", - "0.0025329059050847175" - ], - [ - "9110", - "0.00439296758969332", - "1.7601948903047548", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006261957982351118", - "3.515316721102061", - "0.0", - "0.0", - "0.0025239771970355204" - ], - [ - "9111", - "0.004339113137806541", - "1.760094426350564", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0061852100446146", - "3.5151780145560148", - "0.0", - "0.0", - "0.002493016230998481" - ], - [ - "9112", - "0.00428522570167392", - "1.7599939008853478", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006108414631615351", - "3.5150392223646287", - "0.0", - "0.0", - "0.002462036771732489" - ], - [ - "9113", - "0.00427315796224919", - "1.7599713664140966", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006091224553346742", - "3.5150081250721663", - "0.0", - "0.0", - "0.002455091371151637" - ], - [ - "9114", - "0.004261305056828725", - "1.7599492552251705", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006074332775922102", - "3.514977596708761", - "0.0", - "0.0", - "0.0024482773377353475" - ], - [ - "9115", - "0.004249485027632494", - "1.759927205366686", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006057487828338557", - "3.5149471529880763", - "0.0", - "0.0", - "0.002441482226926432" - ], - [ - "9116", - "0.004237697783480058", - "1.7599052166685407", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006040689580841159", - "3.5149167936755443", - "0.0", - "0.0", - "0.002434705986118956" - ], - [ - "9117", - "0.004225943233443816", - "1.759883288961105", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006023937904034081", - "3.5148865185372475", - "0.0", - "0.0", - "0.002427948562853551" - ], - [ - "9118", - "0.004214172265575747", - "1.7598613240817973", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006007165086467969", - "3.5148561965339136", - "0.0", - "0.0", - "0.002421179444683524" - ], - [ - "9119", - "0.00420248296804191", - "1.7598395181206916", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005990506351753137", - "3.514826089407757", - "0.0", - "0.0", - "0.0024144595843306835" - ], - [ - "9120", - "0.0041900777152160795", - "1.7598162766568968", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005972862051703776", - "3.5147940688284387", - "0.0", - "0.0", - "0.0024072933787283824" - ], - [ - "9121", - "0.004178455249600757", - "1.7597945956470116", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0059562984192571165", - "3.5147641339608433", - "0.0", - "0.0", - "0.0024006120799443973" - ], - [ - "9122", - "0.004166865021089614", - "1.7597729747744402", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005939780707417773", - "3.514734282091205", - "0.0", - "0.0", - "0.0023939493347614554" - ], - [ - "9123", - "0.004155306940274515", - "1.7597514138723893", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005923308788947337", - "3.5147045129895096", - "0.0", - "0.0", - "0.002387305091601693" - ], - [ - "9124", - "0.00414378091799525", - "1.7597299127745283", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005906882536959562", - "3.5146748264263805", - "0.0", - "0.0", - "0.0023806792990309373" - ], - [ - "9125", - "0.004132118400758658", - "1.7597081475032161", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005890265063254646", - "3.5146447816391317", - "0.0", - "0.0", - "0.0023739717382626688" - ], - [ - "9126", - "0.004120656696435211", - "1.7596867664149187", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005873930421523535", - "3.5146152606892156", - "0.0", - "0.0", - "0.0023673829713468874" - ], - [ - "9127", - "0.004067770230784796", - "1.7595881100524746", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005798559028320837", - "3.5144790450525982", - "0.0", - "0.0", - "0.0023369814332487547" - ], - [ - "9128", - "0.004014123658286338", - "1.7594880326177662", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005722105003473051", - "3.5143408687903235", - "0.0", - "0.0", - "0.0023061423130996263" - ], - [ - "9129", - "0.003960470383624602", - "1.7593879199610447", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005645648877513013", - "3.514202658784814", - "0.0", - "0.0", - "0.002275291889736191" - ], - [ - "9130", - "0.0039046326512481816", - "1.759283602017892", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005566124401895152", - "3.5140587311121987", - "0.0", - "0.0", - "0.0022431409006012106" - ], - [ - "9131", - "0.0038477530183416934", - "1.7591774878779258", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005485063205561538", - "3.5139122214645537", - "0.0", - "0.0", - "0.0022104428311218484" - ], - [ - "9132", - "0.003791573502049728", - "1.759072660832045", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005405005890859547", - "3.5137675011681995", - "0.0", - "0.0", - "0.0021781411132399094" - ], - [ - "9133", - "0.003733283572449563", - "1.7589637361520156", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005321996253016849", - "3.5136172325762005", - "0.0", - "0.0", - "0.002144570891882278" - ], - [ - "9134", - "0.0036762185801356576", - "1.7588572914353438", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005240664033087779", - "3.5134702536794964", - "0.0", - "0.0", - "0.0021117731271835354" - ], - [ - "9135", - "0.0036212608333401892", - "1.7587547656761635", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005162338772504278", - "3.5133286933845174", - "0.0", - "0.0", - "0.0020801828941761006" - ], - [ - "9136", - "0.0035687952614305613", - "1.7586569005808539", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005087560913061556", - "3.51319355968697", - "0.0", - "0.0", - "0.0020500296097995673" - ], - [ - "9137", - "0.003558896054744857", - "1.7586384353920375", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0050734517729153815", - "3.5131680625807205", - "0.0", - "0.0", - "0.002044340336574332" - ], - [ - "9138", - "0.003549024305702379", - "1.7586200214212016", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0050593817518033175", - "3.5131426361730904", - "0.0", - "0.0", - "0.00203866685960144" - ], - [ - "9139", - "0.003539112423879056", - "1.7586015230881453", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005045257821540349", - "3.5131170997704464", - "0.0", - "0.0", - "0.002032967026217763" - ], - [ - "9140", - "0.00352929554922897", - "1.7585832115033038", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005031265971324384", - "3.513091814673417", - "0.0", - "0.0", - "0.002027325127133556" - ], - [ - "9141", - "0.0035195059038720202", - "1.7585649507104069", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00501731291509697", - "3.513066599687378", - "0.0", - "0.0", - "0.00202169889264707" - ], - [ - "9142", - "0.003509743412287148", - "1.7585467405685777", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005003398545348008", - "3.5130414546180027", - "0.0", - "0.0", - "0.002016088279226288" - ], - [ - "9143", - "0.0035000079991627238", - "1.7585285809373312", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004989522754865062", - "3.5130163792715", - "0.0", - "0.0", - "0.002010493243460386" - ], - [ - "9144", - "0.0034903348868938217", - "1.7585105372058776", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004975735854485345", - "3.5129914641533415", - "0.0", - "0.0", - "0.0020049339193022988" - ], - [ - "9145", - "0.0034806533076876113", - "1.7584924779941382", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004961936762298043", - "3.5129665274218755", - "0.0", - "0.0", - "0.001999369853077179" - ], - [ - "9146", - "0.003424406328629027", - "1.7583875595757332", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004881768006973623", - "3.5128216522872866", - "0.0", - "0.0", - "0.0019670446502844307" - ], - [ - "9147", - "0.0033680474295882104", - "1.7582824324135073", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004801439218650007", - "3.512676488124578", - "0.0", - "0.0", - "0.0019346556405264133" - ], - [ - "9148", - "0.003313273395765143", - "1.7581802495284906", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004723373041464022", - "3.5125353970372686", - "0.0", - "0.0", - "0.001903173750066264" - ], - [ - "9149", - "0.0032595411853086243", - "1.758080013843532", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0046467899809561055", - "3.51239699137857", - "0.0", - "0.0", - "0.0018722923896611436" - ], - [ - "9150", - "0.0032057331947935794", - "1.7579796453270264", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004570095482119509", - "3.51225839574875", - "0.0", - "0.0", - "0.0018413709074676498" - ], - [ - "9151", - "0.0031529418174110874", - "1.7578811710192628", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00449485027744811", - "3.5121224165185216", - "0.0", - "0.0", - "0.0018110333573740642" - ], - [ - "9152", - "0.003143414594237675", - "1.757863295780785", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004481306848757396", - "3.5120978043365034", - "0.0", - "0.0", - "0.0018055223397179542" - ], - [ - "9153", - "0.003109704530088435", - "1.7578001103784295", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004433364469588641", - "3.5120107624589596", - "0.0", - "0.0", - "0.0017860445905882292" - ], - [ - "9154", - "0.0031010787228756376", - "1.7577840217336642", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004421069215551479", - "3.511988545115184", - "0.0", - "0.0", - "0.001781088230199796" - ], - [ - "9155", - "0.0030924234672092344", - "1.757767871380023", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004408734333523619", - "3.511966247188699", - "0.0", - "0.0", - "0.0017761126008948502" - ], - [ - "9156", - "0.0030838455933247903", - "1.7577518721591832", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004396507373298764", - "3.511944153283758", - "0.0", - "0.0", - "0.0017711838133508166" - ], - [ - "9157", - "0.0030335503778538713", - "1.7576580628796825", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0043248159887570884", - "3.5118146082764032", - "0.0", - "0.0", - "0.0017422847669506542" - ], - [ - "9158", - "0.002969913869507502", - "1.7575378285210015", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004234643297983152", - "3.5116496273621833", - "0.0", - "0.0", - "0.001705184441031852" - ], - [ - "9159", - "0.0029173153377778246", - "1.7574397504713786", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004159658265291911", - "3.511514167225504", - "0.0", - "0.0", - "0.0016749724102637382" - ], - [ - "9160", - "0.0028657228116256363", - "1.7573434895932833", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004086127381726722", - "3.5113812564267737", - "0.0", - "0.0", - "0.0016453182415245506" - ], - [ - "9161", - "0.0028139171409631027", - "1.7572467606245787", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004012316773014876", - "3.5112477468782037", - "0.0", - "0.0", - "0.0016155175089113294" - ], - [ - "9162", - "0.0027631959719711073", - "1.757152175535932", - "0.0", - "0.0", - "0.0", - "0.0", - "0.003940009541635461", - "3.5111171143733926", - "0.0", - "0.0", - "0.0015863824023067538" - ], - [ - "9163", - "0.0027119050493083947", - "1.7570565373277032", - "0.0", - "0.0", - "0.0", - "0.0", - "0.003866886407824674", - "3.5109850203449513", - "0.0", - "0.0", - "0.0015569236907921153" - ], - [ - "9164", - "0.002660581846269597", - "1.7569608410969912", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0037937160798777623", - "3.510852844051143", - "0.0", - "0.0", - "0.0015274476126614308" - ], - [ - "9165", - "0.0026093399457271065", - "1.7568652964811469", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0037206612374201735", - "3.5107208765165865", - "0.0", - "0.0", - "0.0014980186540340394" - ], - [ - "9166", - "0.0025581547576297406", - "1.7567698576299773", - "0.0", - "0.0", - "0.0", - "0.0", - "0.003647686824467121", - "3.5105890544149707", - "0.0", - "0.0", - "0.0014686226907923603" - ], - [ - "9167", - "0.0025071056524323893", - "1.756674672535893", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0035749060013723537", - "3.510457582160097", - "0.0", - "0.0", - "0.0014393053034924249" - ], - [ - "9168", - "0.0024581999020601877", - "1.7565834766071853", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0035051831086841925", - "3.5103316242496936", - "0.0", - "0.0", - "0.001411216695436183" - ], - [ - "9169", - "0.0024111119549824482", - "1.7564956666486746", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0034380527219977663", - "3.51021034498237", - "0.0", - "0.0", - "0.00138417118796713" - ], - [ - "9170", - "0.0023630706805223335", - "1.7564060903060303", - "0.0", - "0.0", - "0.0", - "0.0", - "0.003369558911808385", - "3.5100866177055186", - "0.0", - "0.0", - "0.0013565824492362821" - ], - [ - "9171", - "0.0023145028405300557", - "1.7563155321625639", - "0.0", - "0.0", - "0.0", - "0.0", - "0.003300313982072538", - "3.509961533734329", - "0.0", - "0.0", - "0.0013286916989875732" - ], - [ - "9172", - "0.002265987252308143", - "1.7562250714639862", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0032311431680033618", - "3.509836583774753", - "0.0", - "0.0", - "0.001300831336612924" - ], - [ - "9173", - "0.0022177199774028587", - "1.7561350525398776", - "0.0", - "0.0", - "0.0", - "0.0", - "0.003162333390667631", - "3.5097122579941433", - "0.0", - "0.0", - "0.001273106564138086" - ], - [ - "9174", - "0.0021696843211867693", - "1.7560454872027906", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0030938459254528316", - "3.5095885432970064", - "0.0", - "0.0", - "0.0012455227169207075" - ], - [ - "9175", - "0.0021176653417240136", - "1.755948493416353", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0030196792242496977", - "3.5094545681028633", - "0.0", - "0.0", - "0.0012156514591983292" - ], - [ - "9176", - "0.0020717780664613636", - "1.7558629339263674", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0029542540952654825", - "3.5093363854496746", - "0.0", - "0.0", - "0.0011893020376572447" - ], - [ - "9177", - "0.0020275143108766875", - "1.7557804015982177", - "0.0", - "0.0", - "0.0", - "0.0", - "0.002891143423745355", - "3.509222383695931", - "0.0", - "0.0", - "0.0011638851980080194" - ], - [ - "9178", - "0.0019832862708690333", - "1.7556979358771252", - "0.0", - "0.0", - "0.0", - "0.0", - "0.002828083358387088", - "3.5091084734614375", - "0.0", - "0.0", - "0.0011384891833509784" - ], - [ - "9179", - "0.0019402905902484505", - "1.7556177679765859", - "0.0", - "0.0", - "0.0", - "0.0", - "0.002766780078973462", - "3.508997736749058", - "0.0", - "0.0", - "0.0011138011015234392" - ], - [ - "9180", - "0.0019156161753555814", - "1.755571761128019", - "0.0", - "0.0", - "0.0", - "0.0", - "0.002731599141105199", - "3.5089341868276356", - "0.0", - "0.0", - "0.001099633209605964" - ], - [ - "9181", - "0.001910191942790895", - "1.7555616473388154", - "0.0", - "0.0", - "0.0", - "0.0", - "0.002723865222544573", - "3.508920216484916", - "0.0", - "0.0", - "0.0010965186630372168" - ], - [ - "9182", - "0.001904893325323837", - "1.7555517677662995", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0027163104024918233", - "3.508906569662488", - "0.0", - "0.0", - "0.001093476248155851" - ], - [ - "9183", - "0.0018999792376254165", - "1.7555426123222506", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0027093013590702235", - "3.508893918185924", - "0.0", - "0.0", - "0.0010906571161806093" - ], - [ - "9184", - "0.001894708948207653", - "1.7555327855495722", - "0.0", - "0.0", - "0.0", - "0.0", - "0.002701786927606519", - "3.508880344297054", - "0.0", - "0.0", - "0.001087630968808787" - ], - [ - "9185", - "0.001889386080460291", - "1.755522854190752", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00269419980191816", - "3.5088666304225256", - "0.0", - "0.0", - "0.001084572359002422" - ], - [ - "9186", - "0.0018841451744709044", - "1.755513082223828", - "0.0", - "0.0", - "0.0", - "0.0", - "0.002686727250338704", - "3.508853132211561", - "0.0", - "0.0", - "0.0010815630986031044" - ], - [ - "9187", - "0.0018787831823929005", - "1.7555030647741434", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00267908889943983", - "3.5088393084070995", - "0.0", - "0.0", - "0.0010784774653459707" - ], - [ - "9188", - "0.0018730763303567482", - "1.7554923594893574", - "0.0", - "0.0", - "0.0", - "0.0", - "0.002670974417330209", - "3.508824565180563", - "0.0", - "0.0", - "0.0010751782433832875" - ], - [ - "9189", - "0.0018678806649431823", - "1.7554826721102386", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0026635662754089908", - "3.508811183631291", - "0.0", - "0.0", - "0.0010721950544773737" - ], - [ - "9190", - "0.001862699411318144", - "1.755473011602273", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0026561786779081753", - "3.5087978391934995", - "0.0", - "0.0", - "0.0010692201447281128" - ], - [ - "9191", - "0.0018575325295077227", - "1.7554633778909268", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0026488115678679185", - "3.5087845317642867", - "0.0", - "0.0", - "0.0010662534911475268" - ], - [ - "9192", - "0.0018421883621962786", - "1.755434768513362", - "0.0", - "0.0", - "0.0", - "0.0", - "0.002626933323889645", - "3.508745012452402", - "0.0", - "0.0", - "0.0010574434005029129" - ], - [ - "9193", - "0.0018267497126166754", - "1.7554059829743203", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0026049203253104953", - "3.50870524974239", - "0.0", - "0.0", - "0.0010485790999228554" - ], - [ - "9194", - "0.0018147754522423456", - "1.755383656829895", - "0.0", - "0.0", - "0.0", - "0.0", - "0.002587846954612756", - "3.5086744096327545", - "0.0", - "0.0", - "0.0010417039498719352" - ], - [ - "9195", - "0.0017688429395429934", - "1.7552980138157959", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0025223548217705753", - "3.508556107659699", - "0.0", - "0.0", - "0.0010153310573154115" - ], - [ - "9196", - "0.001722899871491794", - "1.755212345244738", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0024568493444613966", - "3.508437773895707", - "0.0", - "0.0", - "0.0009889503985221913" - ], - [ - "9197", - "0.0016764395522063462", - "1.7551257233997755", - "0.0", - "0.0", - "0.0", - "0.0", - "0.002390602127313658", - "3.5083181151642027", - "0.0", - "0.0", - "0.0009622769770990349" - ], - [ - "9198", - "0.0016264150642333092", - "1.7550324523771095", - "0.0", - "0.0", - "0.0", - "0.0", - "0.002319273826285513", - "3.5081892734971043", - "0.0", - "0.0", - "0.0009335563021811056" - ], - [ - "9199", - "0.0015763570336509", - "1.7549391009976032", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0022479034903502525", - "3.5080603324224993", - "0.0", - "0.0", - "0.0009048105769515474" - ], - [ - "9200", - "0.0015327213170461711", - "1.7548577424113472", - "0.0", - "0.0", - "0.0", - "0.0", - "0.002185683874940253", - "3.507947944833131", - "0.0", - "0.0", - "0.0008797587591520896" - ], - [ - "9201", - "0.0014844748508481605", - "1.7547676586883612", - "0.0", - "0.0", - "0.0", - "0.0", - "0.002116934122882773", - "3.507823591880987", - "0.0", - "0.0", - "0.0008520155788135482" - ], - [ - "9202", - "0.0014373192372627444", - "1.7546797413823203", - "0.0", - "0.0", - "0.0", - "0.0", - "0.002049693397223143", - "3.507702140278231", - "0.0", - "0.0", - "0.0008249450773023459" - ], - [ - "9203", - "0.0013975553972384164", - "1.7546056053717407", - "0.0", - "0.0", - "0.0", - "0.0", - "0.001992992562063689", - "3.50759972614087", - "0.0", - "0.0", - "0.0008021182324131437" - ], - [ - "9204", - "0.0013478765511558076", - "1.7545129767753596", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0019221555951251306", - "3.507471769918447", - "0.0", - "0.0", - "0.0007735975071864844" - ], - [ - "9205", - "0.0012979656039541947", - "1.754419915893283", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0018509871130585713", - "3.507343215608788", - "0.0", - "0.0", - "0.0007449440948498181" - ], - [ - "9206", - "0.0012478209563544045", - "1.7543264264037801", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0017794825156646867", - "3.5072140637235956", - "0.0", - "0.0", - "0.0007161593970441224" - ], - [ - "9207", - "0.0011976362403256298", - "1.7542328473500521", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0017079255439788185", - "3.5070847976741844", - "0.0", - "0.0", - "0.0006873469366724411" - ], - [ - "9208", - "0.0011494920853107808", - "1.754143079866219", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0016392754965831777", - "3.5069607916999543", - "0.0", - "0.0", - "0.0006597086740383839" - ], - [ - "9209", - "0.0011366999530791385", - "1.754119230528138", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0016210339852932455", - "3.5069278442351037", - "0.0", - "0.0", - "0.0006523659208650318" - ], - [ - "9210", - "0.0011335433315312704", - "1.7541133429578923", - "0.0", - "0.0", - "0.0", - "0.0", - "0.001616533504628277", - "3.5069197123209848", - "0.0", - "0.0", - "0.0006505531584342638" - ], - [ - "9211", - "0.0011294967470110732", - "1.7541057909462092", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0016107657504942472", - "3.5069092845756304", - "0.0", - "0.0", - "0.0006482277435278992" - ], - [ - "9212", - "0.0011165998704070854", - "1.7540817464425724", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0015923747922837067", - "3.5068760673495523", - "0.0", - "0.0", - "0.0006408249485304639" - ], - [ - "9213", - "0.0011036963429307313", - "1.7540576895405542", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0015739743229219894", - "3.506842832953871", - "0.0", - "0.0", - "0.0006334183629394734" - ], - [ - "9214", - "0.0010907910356686991", - "1.754033629321646", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0015555712885667147", - "3.5068095939345447", - "0.0", - "0.0", - "0.0006260107827706838" - ], - [ - "9215", - "0.001078260282918517", - "1.7540102674107445", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0015377023450154697", - "3.5067773195830965", - "0.0", - "0.0", - "0.0006188182208215639" - ], - [ - "9216", - "0.0010655682486920785", - "1.7539866024496464", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0015196042081962269", - "3.5067446281484127", - "0.0", - "0.0", - "0.00061153228918793" - ], - [ - "9217", - "0.0010528637580352628", - "1.7539629166583257", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0015014874511895635", - "3.506711906258727", - "0.0", - "0.0", - "0.0006042400648809622" - ], - [ - "9218", - "0.0010499390092071454", - "1.7539574633038617", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0014973169145942606", - "3.5067043728338594", - "0.0", - "0.0", - "0.0006025611038200302" - ], - [ - "9219", - "0.0010470265914266498", - "1.7539520334996375", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0014931637660797602", - "3.506696871557604", - "0.0", - "0.0", - "0.0006008894167735395" - ], - [ - "9220", - "0.0010441110404311108", - "1.7539465965629897", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0014890065967301843", - "3.506689361309925", - "0.0", - "0.0", - "0.0005992154841320374" - ], - [ - "9221", - "0.0010411373924342252", - "1.7539410436477163", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0014847692417906764", - "3.5066816960844798", - "0.0", - "0.0", - "0.000597505543077774" - ], - [ - "9222", - "0.0010118740406926876", - "1.753886484378729", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0014430398001049748", - "3.5066063234830698", - "0.0", - "0.0", - "0.0005807082812804003" - ], - [ - "9223", - "0.001003225688290895", - "1.753870360096543", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00143070728507684", - "3.5065840481158554", - "0.0", - "0.0", - "0.0005757440915049498" - ], - [ - "9224", - "0.0009921898570444216", - "1.7538497828728177", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0014149707891369793", - "3.506555622200561", - "0.0", - "0.0", - "0.000569408924951864" - ], - [ - "9225", - "0.000987015942596489", - "1.7538401282316545", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0014075956490800187", - "3.5065422901161734", - "0.0", - "0.0", - "0.0005664362361129596" - ], - [ - "9226", - "0.0009842282751300554", - "1.7538349254267078", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00140362230710066", - "3.5065351062182972", - "0.0", - "0.0", - "0.000564834243159451" - ], - [ - "9227", - "0.0009493672693969888", - "1.7537699329109633", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0013539092034562578", - "3.5064453176205284", - "0.0", - "0.0", - "0.0005448253353377196" - ], - [ - "9228", - "0.000946733823891712", - "1.7537650232925637", - "0.0", - "0.0", - "0.0", - "0.0", - "0.001350153803237368", - "3.5064385348618647", - "0.0", - "0.0", - "0.0005433138445460558" - ], - [ - "9229", - "0.0009441056889958236", - "1.753760123355077", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0013464060514317227", - "3.5064317656264743", - "0.0", - "0.0", - "0.0005418053265599244" - ], - [ - "9230", - "0.0009414868384094981", - "1.7537552409471773", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0013426714617155975", - "3.5064250204559473", - "0.0", - "0.0", - "0.0005403022151033988" - ], - [ - "9231", - "0.0009234979280341219", - "1.7537216897778332", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0013170233143622004", - "3.5063786781102033", - "0.0", - "0.0", - "0.0005299725417060434" - ], - [ - "9232", - "0.0009203657433136867", - "1.7537157888583026", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0013125780383344049", - "3.5063705679246717", - "0.0", - "0.0", - "0.0005281534482929685" - ], - [ - "9233", - "0.0008897685797616444", - "1.7536587482478636", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0012689440995905272", - "3.5062917627617107", - "0.0", - "0.0", - "0.0005105930599327617" - ], - [ - "9234", - "0.0008492572919942364", - "1.753583223275329", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0012111723141602295", - "3.506187421321551", - "0.0", - "0.0", - "0.0004873422698282434" - ], - [ - "9235", - "0.000806832965076827", - "1.753504133821995", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0011506714367725682", - "3.5060781535881107", - "0.0", - "0.0", - "0.00046299449338108576" - ], - [ - "9236", - "0.0007638142540428754", - "1.753423934172445", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010893233567122985", - "3.5059673530416013", - "0.0", - "0.0", - "0.0004383051513734523" - ], - [ - "9237", - "0.0007357180428104152", - "1.7533715559711323", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010492552672611386", - "3.505894988211817", - "0.0", - "0.0", - "0.00042218081835969167" - ], - [ - "9238", - "0.0007256703820645327", - "1.753352821782961", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010349272434107364", - "3.5058691073117303", - "0.0", - "0.0", - "0.00041641352071832894" - ], - [ - "9239", - "0.00071563412018486", - "1.7533341117813868", - "0.0", - "0.0", - "0.0", - "0.0", - "0.001020614439510419", - "3.5058432577925336", - "0.0", - "0.0", - "0.00041065380085930116" - ], - [ - "9240", - "0.0007103949799792623", - "1.7533243447665818", - "0.0", - "0.0", - "0.0", - "0.0", - "0.001013142847752868", - "3.5058297637892415", - "0.0", - "0.0", - "0.0004076471122056567" - ], - [ - "9241", - "0.0007085344011916034", - "1.753320877463523", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010104890176550231", - "3.505824972534468", - "0.0", - "0.0", - "0.0004065797847281837" - ], - [ - "9242", - "0.0007065689956591064", - "1.7533172134724704", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010076861320752605", - "3.5058199104033085", - "0.0", - "0.0", - "0.00040545185924295216" - ], - [ - "9243", - "0.0007045907434747747", - "1.7533135231090435", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010048657668066793", - "3.505814813494445", - "0.0", - "0.0", - "0.0004043157201428703" - ], - [ - "9244", - "0.0007027344411248934", - "1.7533100661772634", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0010022172003696674", - "3.505810034923391", - "0.0", - "0.0", - "0.0004032516818801193" - ], - [ - "9245", - "0.0007010879207671593", - "1.753306991114385", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0009998710069467826", - "3.5058057902474196", - "0.0", - "0.0", - "0.000402304834587536" - ], - [ - "9246", - "0.0006993064175376357", - "1.7533036711071048", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0009973299864256121", - "3.5058012025731684", - "0.0", - "0.0", - "0.00040128284864965927" - ], - [ - "9247", - "0.000697346424800546", - "1.7533000145430178", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0009945357424803716", - "3.5057961525224313", - "0.0", - "0.0", - "0.0004001571071207206" - ], - [ - "9248", - "0.0006507887504867678", - "1.7532132201838708", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0009281389634715416", - "3.505676237702795", - "0.0", - "0.0", - "0.0003734385375019941" - ], - [ - "9249", - "0.0006077416746114456", - "1.7531329704136858", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0008667484022508169", - "3.5055653643876177", - "0.0", - "0.0", - "0.0003487349469720742" - ], - [ - "9250", - "0.0005985176156721252", - "1.7531157297543067", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0008536092752927504", - "3.5055415752995596", - "0.0", - "0.0", - "0.00034342595605149986" - ], - [ - "9251", - "0.000596838948533203", - "1.7531126004542195", - "0.0", - "0.0", - "0.0", - "0.0", - "0.000851215231851099", - "3.5055372517501486", - "0.0", - "0.0", - "0.00034246266521530686" - ], - [ - "9252", - "0.0005951833733053224", - "1.7531095142011153", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0008488541206596745", - "3.5055329876752546", - "0.0", - "0.0", - "0.00034151262595097034" - ], - [ - "9253", - "0.0005935323904564564", - "1.7531064365089506", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0008464995584815026", - "3.5055287354277747", - "0.0", - "0.0", - "0.00034056522243141007" - ], - [ - "9254", - "0.0005918859872480363", - "1.7531033673539784", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0008441515271530594", - "3.5055244949749045", - "0.0", - "0.0", - "0.0003396204473430132" - ], - [ - "9255", - "0.0005902441429305678", - "1.753100306696479", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0008418099974470075", - "3.505520266262483", - "0.0", - "0.0", - "0.0003386782884141282" - ], - [ - "9256", - "0.0005886068609508937", - "1.7530972545449595", - "0.0", - "0.0", - "0.0", - "0.0", - "0.000839474973559612", - "3.505516049300844", - "0.0", - "0.0", - "0.0003377387483421754" - ], - [ - "9257", - "0.0005869611141921421", - "1.7530941851454371", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0008371283870901145", - "3.505511809513277", - "0.0", - "0.0", - "0.0003367938412941696" - ], - [ - "9258", - "0.0005853329389679275", - "1.7530911499744584", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0008348063486000544", - "3.5055076160084453", - "0.0", - "0.0", - "0.0003358595293358006" - ], - [ - "9259", - "0.0005837092801192129", - "1.7530881232227242", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0008324907507559513", - "3.5055034341352975", - "0.0", - "0.0", - "0.00033492780948247465" - ], - [ - "9260", - "0.0005820901251182468", - "1.753085104866881", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0008301815756947873", - "3.505499263861573", - "0.0", - "0.0", - "0.00033399867454170625" - ], - [ - "9261", - "0.0005804754614720267", - "1.7530820948836394", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0008278788056030799", - "3.5054951051551", - "0.0", - "0.0", - "0.00033307211734097343" - ], - [ - "9262", - "0.000578865276722203", - "1.7530790932497753", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0008255824227167437", - "3.5054909579837967", - "0.0", - "0.0", - "0.00033214813072766225" - ], - [ - "9263", - "0.0005772595584449827", - "1.7530760999421282", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0008232924093209541", - "3.5054868223156688", - "0.0", - "0.0", - "0.00033122670756901147" - ], - [ - "9264", - "0.000575658294251034", - "1.7530731149376027", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0008210087477500105", - "3.5054826981188123", - "0.0", - "0.0", - "0.00033030784075205755" - ], - [ - "9265", - "0.0005627667877576026", - "1.7530490776273366", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0008026252866113738", - "3.5054494910213023", - "0.0", - "0.0", - "0.0003229082889038312" - ], - [ - "9266", - "0.0005197990008671389", - "1.752968973378286", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0007413479939052635", - "3.505338819406855", - "0.0", - "0.0", - "0.0002982500078290142" - ], - [ - "9267", - "0.0005182241163642387", - "1.7529660218785525", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0007391073820264201", - "3.5053347522066", - "0.0", - "0.0", - "0.00029734085070205746" - ], - [ - "9268", - "0.0005167866100488984", - "1.7529633422192608", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0007370572260238017", - "3.5053310498143526", - "0.0", - "0.0", - "0.00029651599407399523" - ], - [ - "9269", - "0.0005150476647524992", - "1.752960064388232", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0007345897522092324", - "3.5053265457664824", - "0.0", - "0.0", - "0.000295505577295766" - ], - [ - "9270", - "0.0004747966672171207", - "1.7528850352385001", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0006771830820906357", - "3.50522287842855", - "0.0", - "0.0", - "0.00027241025234360576" - ], - [ - "9271", - "0.00045706102464482593", - "1.7528519754362715", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0006518881178852211", - "3.5051771997650474", - "0.0", - "0.0", - "0.0002622339314044308" - ], - [ - "9272", - "0.00045576922725475827", - "1.7528495652186764", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0006500465129533735", - "3.5051738711202196", - "0.0", - "0.0", - "0.0002614919415561431" - ], - [ - "9273", - "0.0004539899858872039", - "1.7528462486651408", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0006475089134499491", - "3.5051692886337995", - "0.0", - "0.0", - "0.0002604710583244587" - ], - [ - "9274", - "0.0004527306582887758", - "1.752843901244803", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0006457128279388792", - "3.505166045199529", - "0.0", - "0.0", - "0.0002597484886386724" - ], - [ - "9275", - "0.0004514748239341146", - "1.7528415603359775", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0006439217243258516", - "3.5051628107618327", - "0.0", - "0.0", - "0.0002590279235423777" - ], - [ - "9276", - "0.00045009772689579307", - "1.7528389785089298", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0006419628399307711", - "3.505159253631727", - "0.0", - "0.0", - "0.00025823261386081505" - ], - [ - "9277", - "0.00044884673492618884", - "1.7528366463874703", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00064017872510576", - "3.505156031498294", - "0.0", - "0.0", - "0.00025751474474661765" - ], - [ - "9278", - "0.0004476016741901747", - "1.7528343256029326", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0006384029717597217", - "3.5051528248364523", - "0.0", - "0.0", - "0.0002568003766206278" - ], - [ - "9279", - "0.00044635438793297425", - "1.75283199991944", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0006366243046802524", - "3.505149611918995", - "0.0", - "0.0", - "0.000256084471185696" - ], - [ - "9280", - "0.0004451162407099072", - "1.7528296920237485", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0006348584104281992", - "3.505146423063669", - "0.0", - "0.0", - "0.00025537407099161525" - ], - [ - "9281", - "0.00040587129193530983", - "1.7527565103165117", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0005788958248652674", - "3.50504532673189", - "0.0", - "0.0", - "0.0002328467590053523" - ], - [ - "9282", - "0.0003496724199318539", - "1.7526517602165943", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0004987407471494812", - "3.5049005881493893", - "0.0", - "0.0", - "0.00020060409271422663" - ], - [ - "9283", - "0.0003295782285554128", - "1.7526143062938648", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00047008076863544186", - "3.5048488359538528", - "0.0", - "0.0", - "0.00018907568847538377" - ], - [ - "9284", - "0.00031756952081291165", - "1.7525919230502485", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00045295293660702133", - "3.50481790771693", - "0.0", - "0.0", - "0.00018218610501880193" - ], - [ - "9285", - "0.00030546258465607886", - "1.752569356718115", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00043568497922949365", - "3.504786726459588", - "0.0", - "0.0", - "0.00017524019008266408" - ], - [ - "9286", - "0.0002933673983066969", - "1.7525468122878276", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0004184337566812835", - "3.5047555754289412", - "0.0", - "0.0", - "0.0001683010399321103" - ], - [ - "9287", - "0.00028106967067630817", - "1.7525238903384899", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0004008936275286558", - "3.5047239027196206", - "0.0", - "0.0", - "0.00016124571382396052" - ], - [ - "9288", - "0.00026879337970311777", - "1.7525010078112455", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0003833842346285868", - "3.504692284811088", - "0.0", - "0.0", - "0.00015420252477764876" - ], - [ - "9289", - "0.00025627487780226904", - "1.7524776743842907", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0003655291584636063", - "3.5046600434431654", - "0.0", - "0.0", - "0.0001470205971409318" - ], - [ - "9290", - "0.00024356604311237654", - "1.752453986161881", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0003474025968758118", - "3.504627311812863", - "0.0", - "0.0", - "0.00013972948934894128" - ], - [ - "9291", - "0.00023100469072157454", - "1.7524305720470124", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00032948663674690887", - "3.504594959435795", - "0.0", - "0.0", - "0.0001325227446962402" - ], - [ - "9292", - "0.00021918535037321422", - "1.7524085414413306", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0003126288243870718", - "3.5045645184001977", - "0.0", - "0.0", - "0.00012574187635935665" - ], - [ - "9293", - "0.00021237188427744938", - "1.752395841525492", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00030291082796125445", - "3.504546970125021", - "0.0", - "0.0", - "0.0001218329405936443" - ], - [ - "9294", - "0.0002117827820396203", - "1.752394743492975", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00030207058822672784", - "3.5045454528894546", - "0.0", - "0.0", - "0.00012149497585251277" - ], - [ - "9295", - "0.00021119531391917092", - "1.7523936485063052", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0003012326791866236", - "3.5045439398624834", - "0.0", - "0.0", - "0.00012115794865171829" - ], - [ - "9296", - "0.0002106028832694703", - "1.7523925433571297", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00030038800892029594", - "3.504542413417754", - "0.0", - "0.0", - "0.00012081775761864461" - ], - [ - "9297", - "0.00021001868808419747", - "1.7523914544734482", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0002995547670949556", - "3.504540908821845", - "0.0", - "0.0", - "0.00012048260907343938" - ], - [ - "9298", - "0.00020943498286351908", - "1.752390366355072", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00029872227541824357", - "3.5045394053845724", - "0.0", - "0.0", - "0.00012014769030879461" - ], - [ - "9299", - "0.0002088592154030821", - "1.7523892932388945", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0002979010335151212", - "3.5045379225352984", - "0.0", - "0.0", - "0.00011981739729104294" - ], - [ - "9300", - "0.00020827985699818988", - "1.7523882133707616", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00029707469017526994", - "3.5045364303964597", - "0.0", - "0.0", - "0.00011948502382110981" - ], - [ - "9301", - "0.0002077021056822773", - "1.75238713649809", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0002962506389844982", - "3.5045349423966026", - "0.0", - "0.0", - "0.00011915357238005645" - ], - [ - "9302", - "0.0002071240330571563", - "1.752386058816875", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0002954262022430986", - "3.5045334534229027", - "0.0", - "0.0", - "0.00011882186387121396" - ], - [ - "9303", - "0.00020654948789482506", - "1.752384987920751", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0002946067237045158", - "3.50453197368075", - "0.0", - "0.0", - "0.00011849225208513435" - ], - [ - "9304", - "0.00020597653647002828", - "1.752383919995201", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00029378951827365005", - "3.5045304980431924", - "0.0", - "0.0", - "0.00011816355466640654" - ], - [ - "9305", - "0.00020540491625700756", - "1.7523828545171356", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0002929742232315196", - "3.5045290258105446", - "0.0", - "0.0", - "0.00011783560928249555" - ], - [ - "9306", - "0.0002048351397729243", - "1.752381792509464", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00029216154610701793", - "3.504527558349964", - "0.0", - "0.0", - "0.00011750873343883065" - ], - [ - "9307", - "0.00020426694379854654", - "1.7523807334477108", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00029135112322468395", - "3.504526094959913", - "0.0", - "0.0", - "0.00011718276437240914" - ], - [ - "9308", - "0.00020369807235565048", - "1.7523796728301302", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00029053983991482826", - "3.5045246296230874", - "0.0", - "0.0", - "0.0001168563047964727" - ], - [ - "9309", - "0.00020313163739839327", - "1.752378617001945", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00028973194562479764", - "3.5045231707343496", - "0.0", - "0.0", - "0.00011653132917198889" - ], - [ - "9310", - "0.00020256816678965062", - "1.752377566748778", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0002889282620842783", - "3.5045217195149294", - "0.0", - "0.0", - "0.00011620807149502288" - ], - [ - "9311", - "0.0002020062591987535", - "1.752376519408923", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0002881268078397902", - "3.504520272320989", - "0.0", - "0.0", - "0.0001158857105577168" - ], - [ - "9312", - "0.00020154633866689293", - "1.7523756575857878", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00028747240772606644", - "3.5045190846023946", - "0.0", - "0.0", - "0.00011562026960771943" - ], - [ - "9313", - "0.00020098726553979953", - "1.7523746155417914", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00028667499180431744", - "3.5045176447173394", - "0.0", - "0.0", - "0.00011529953927528161" - ], - [ - "9314", - "0.000200443076881811", - "1.7523736007551107", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00028589897437521846", - "3.504516242828301", - "0.0", - "0.0", - "0.00011498717938840355" - ], - [ - "9315", - "0.00019988706410612055", - "1.752372564416587", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00028510592291996004", - "3.504514810825932", - "0.0", - "0.0", - "0.0001146682052922811" - ], - [ - "9316", - "0.00019931753552116565", - "1.752371501911428", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00028429393200204344", - "3.504513343333752", - "0.0", - "0.0", - "0.00011434113904028784" - ], - [ - "9317", - "0.00019876383209011677", - "1.7523704697847966", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0002835042064008634", - "3.5045119172144354", - "0.0", - "0.0", - "0.00011402345777937017" - ], - [ - "9318", - "0.00019821247739248168", - "1.7523694421313178", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00028271779767180354", - "3.50451049721072", - "0.0", - "0.0", - "0.00011370715711315983" - ], - [ - "9319", - "0.0001918964015400283", - "1.7523576697872096", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0002737090431505716", - "3.504494230270295", - "0.0", - "0.0", - "0.00011008375992948495" - ], - [ - "9320", - "0.00018257434739059547", - "1.7523402946270736", - "0.0", - "0.0", - "0.0", - "0.0", - "0.000260412807643625", - "3.5044702214245973", - "0.0", - "0.0", - "0.00010473588713756596" - ], - [ - "9321", - "0.00017317493305239298", - "1.7523227753387283", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00024700619628337993", - "3.5044460133602033", - "0.0", - "0.0", - "9.934366982140602e-05" - ], - [ - "9322", - "0.00016378327587957255", - "1.7523052692927663", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00023361105721657498", - "3.5044218244046443", - "0.0", - "0.0", - "9.395549454257013e-05" - ], - [ - "9323", - "0.0001543965818073475", - "1.7522877737920781", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00022022253360845707", - "3.504397649113151", - "0.0", - "0.0", - "8.857063000623796e-05" - ], - [ - "9324", - "0.00014485242341321907", - "1.7522699848003793", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0002066093992423561", - "3.5043730682531637", - "0.0", - "0.0", - "8.309544758408204e-05" - ], - [ - "9325", - "0.00013529685968859364", - "1.752252174534457", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00019297998817852007", - "3.50434845798535", - "0.0", - "0.0", - "7.76137311986672e-05" - ], - [ - "9326", - "0.00012575332128360545", - "1.752234386700998", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00017936770811158238", - "3.5043238786796604", - "0.0", - "0.0", - "7.213893445562854e-05" - ], - [ - "9327", - "0.00011615443887467307", - "1.75221649570787", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00016567647643279132", - "3.5042991568093274", - "0.0", - "0.0", - "6.663240131655483e-05" - ], - [ - "9328", - "0.00010049777417713446", - "1.75218731376928", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00014334480607143923", - "3.5042588330529343", - "0.0", - "0.0", - "5.765074228282972e-05" - ], - [ - "9329", - "8.108280725798387e-05", - "1.7521511269850405", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00011565243331515944", - "3.5042088297926255", - "0.0", - "0.0", - "4.65131812008083e-05" - ], - [ - "9330", - "6.171752483059632e-05", - "1.75211503280877", - "0.0", - "0.0", - "0.0", - "0.0", - "8.803086664125493e-05", - "3.504158954405529", - "0.0", - "0.0", - "3.540418301993771e-05" - ], - [ - "9331", - "5.2228903138724575e-05", - "1.7520973471245542", - "0.0", - "0.0", - "0.0", - "0.0", - "7.449687699305019e-05", - "3.504134516222601", - "0.0", - "0.0", - "2.9960929284398965e-05" - ], - [ - "9332", - "4.8771696543021704e-05", - "1.7520909033906003", - "0.0", - "0.0", - "0.0", - "0.0", - "6.956569207377196e-05", - "3.5041256121618667", - "0.0", - "0.0", - "2.7977701012271455e-05" - ], - [ - "9333", - "4.863640758713561e-05", - "1.752090651231521", - "0.0", - "0.0", - "0.0", - "0.0", - "6.937272269894246e-05", - "3.504125263724119", - "0.0", - "0.0", - "2.7900092475328763e-05" - ], - [ - "9334", - "4.85014938653316e-05", - "1.7520903997717752", - "0.0", - "0.0", - "0.0", - "0.0", - "6.918028855322949e-05", - "3.504124916252751", - "0.0", - "0.0", - "2.7822699177433715e-05" - ], - [ - "9335", - "4.8363780866222944e-05", - "1.7520901427489979", - "0.0", - "0.0", - "0.0", - "0.0", - "6.89839816242223e-05", - "3.5041245613307477", - "0.0", - "0.0", - "2.7743580108223585e-05" - ], - [ - "9336", - "4.390849862795701e-05", - "1.7520818387781454", - "0.0", - "0.0", - "0.0", - "0.0", - "6.262917779360261e-05", - "3.504113086736529", - "0.0", - "0.0", - "2.5187819462311418e-05" - ], - [ - "9337", - "4.0660361068834974e-05", - "1.7520757847421216", - "0.0", - "0.0", - "0.0", - "0.0", - "5.7996185998698606e-05", - "3.504104721144472", - "0.0", - "0.0", - "2.3324536138971336e-05" - ], - [ - "9338", - "3.726968879294233e-05", - "1.7520694650430833", - "0.0", - "0.0", - "0.0", - "0.0", - "5.315988750959982e-05", - "3.5040959884509735", - "0.0", - "0.0", - "2.137949007628484e-05" - ], - [ - "9339", - "3.4912480048503777e-05", - "1.7520650715634314", - "0.0", - "0.0", - "0.0", - "0.0", - "4.9797672617855196e-05", - "3.5040899174463878", - "0.0", - "0.0", - "2.0027287479152354e-05" - ], - [ - "9340", - "3.301151129373798e-05", - "1.7520615284459686", - "0.0", - "0.0", - "0.0", - "0.0", - "4.708621695223217e-05", - "3.5040850214895394", - "0.0", - "0.0", - "1.8936805635243792e-05" - ], - [ - "9341", - "3.291979579537618e-05", - "1.7520613574831663", - "0.0", - "0.0", - "0.0", - "0.0", - "4.69554047116413e-05", - "3.5040847852624113", - "0.0", - "0.0", - "1.888418687911106e-05" - ], - [ - "9342", - "3.2828478782741255e-05", - "1.7520611872821572", - "0.0", - "0.0", - "0.0", - "0.0", - "4.682515422954213e-05", - "3.5040845500748903", - "0.0", - "0.0", - "1.8831803335940378e-05" - ], - [ - "9343", - "3.273741507646431e-05", - "1.7520610175532727", - "0.0", - "0.0", - "0.0", - "0.0", - "4.669526505089739e-05", - "3.50408431553976", - "0.0", - "0.0", - "1.877956510203123e-05" - ], - [ - "9344", - "3.013522984981128e-05", - "1.7520561649884394", - "0.0", - "0.0", - "0.0", - "0.0", - "4.2984487984527576e-05", - "3.5040776118594437", - "0.0", - "0.0", - "1.728597171509499e-05" - ], - [ - "9345", - "2.538383393893762e-05", - "1.7520473095069284", - "0.0", - "0.0", - "0.0", - "0.0", - "3.620716871083966e-05", - "3.5040653748815354", - "0.0", - "0.0", - "1.4560499167035585e-05" - ], - [ - "9346", - "2.035906999495315e-05", - "1.752037944139105", - "0.0", - "0.0", - "0.0", - "0.0", - "2.9040053822580077e-05", - "3.504052433578186", - "0.0", - "0.0", - "1.1678086167326225e-05" - ], - [ - "9347", - "1.533217039110301e-05", - "1.7520285751039644", - "0.0", - "0.0", - "0.0", - "0.0", - "2.18697799643447e-05", - "3.5040394869868203", - "0.0", - "0.0", - "8.794560817861318e-06" - ], - [ - "9348", - "1.0037205327148598e-05", - "1.752018706691558", - "0.0", - "0.0", - "0.0", - "0.0", - "1.4317055741067754e-05", - "3.504025850162184", - "0.0", - "0.0", - "5.757354913229441e-06" - ], - [ - "9349", - "4.4521238262102615e-06", - "1.7520082974991202", - "0.0", - "0.0", - "0.0", - "0.0", - "6.3505330590787675e-06", - "3.504011466099178", - "0.0", - "0.0", - "2.5537145933417546e-06" - ], - ["9350", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9351", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9352", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9353", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9354", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9355", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9356", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9357", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9358", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9359", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9360", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9361", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9362", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9363", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9364", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9365", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9366", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9367", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9368", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9369", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9370", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9371", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9372", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9373", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9374", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9375", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9376", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9377", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9378", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9379", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9380", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9381", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9382", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9383", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9384", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9385", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9386", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9387", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9388", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9389", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9390", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9391", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9392", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9393", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9394", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9395", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9396", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9397", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9398", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9399", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9400", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9401", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9402", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9403", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9404", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9405", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9406", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9407", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9408", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9409", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9410", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9411", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9412", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9413", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9414", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9415", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9416", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9417", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9418", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9419", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9420", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9421", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9422", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9423", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9424", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9425", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9426", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9427", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9428", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9429", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9430", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9431", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9432", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9433", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9434", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9435", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9436", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9437", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9438", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9439", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9440", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9441", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9442", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9443", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9444", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9445", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9446", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9447", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9448", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9449", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9450", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9451", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9452", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9453", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9454", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9455", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9456", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9457", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9458", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9459", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9460", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9461", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9462", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9463", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9464", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9465", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9466", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9467", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9468", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9469", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9470", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9471", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9472", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9473", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9474", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9475", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9476", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9477", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9478", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9479", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9480", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9481", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9482", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9483", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9484", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9485", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9486", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9487", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9488", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9489", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9490", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9491", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9492", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9493", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9494", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9495", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9496", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9497", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9498", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9499", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9500", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9501", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9502", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9503", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9504", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9505", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9506", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9507", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9508", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9509", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9510", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9511", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9512", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9513", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9514", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9515", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9516", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9517", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9518", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9519", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9520", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9521", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9522", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9523", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9524", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9525", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9526", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9527", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9528", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9529", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9530", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9531", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9532", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9533", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9534", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9535", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9536", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9537", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9538", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9539", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9540", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9541", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9542", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9543", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9544", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9545", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9546", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9547", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9548", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9549", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9550", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9551", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9552", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9553", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9554", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9555", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9556", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9557", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9558", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9559", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9560", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9561", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9562", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9563", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9564", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9565", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9566", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9567", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9568", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9569", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9570", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9571", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9572", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9573", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9574", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9575", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9576", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9577", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9578", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9579", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9580", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9581", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9582", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9583", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9584", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9585", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9586", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9587", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9588", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9589", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9590", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9591", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9592", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9593", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9594", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9595", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9596", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9597", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9598", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9599", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9600", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9601", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9602", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9603", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9604", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9605", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9606", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9607", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9608", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9609", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9610", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9611", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9612", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9613", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9614", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9615", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9616", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9617", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9618", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9619", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9620", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9621", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9622", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9623", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9624", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9625", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9626", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9627", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9628", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9629", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9630", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9631", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9632", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9633", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9634", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9635", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9636", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9637", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9638", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9639", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9640", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9641", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9642", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9643", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9644", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9645", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9646", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9647", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9648", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9649", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9650", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9651", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9652", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9653", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9654", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9655", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9656", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9657", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9658", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9659", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9660", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9661", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9662", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9663", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9664", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9665", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9666", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9667", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9668", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9669", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9670", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9671", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9672", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9673", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9674", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9675", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9676", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9677", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9678", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9679", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9680", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9681", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9682", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9683", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9684", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9685", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9686", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9687", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9688", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9689", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9690", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9691", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9692", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9693", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9694", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9695", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9696", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9697", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9698", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9699", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9700", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9701", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9702", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9703", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9704", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9705", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9706", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9707", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9708", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9709", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9710", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9711", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9712", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9713", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9714", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9715", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9716", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9717", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9718", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9719", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9720", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9721", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9722", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9723", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9724", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9725", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9726", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9727", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9728", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9729", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9730", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9731", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9732", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9733", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9734", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9735", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9736", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9737", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9738", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9739", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9740", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9741", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9742", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9743", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9744", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9745", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9746", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9747", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9748", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9749", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9750", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9751", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9752", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9753", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9754", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9755", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9756", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9757", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9758", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9759", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9760", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9761", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9762", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9763", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9764", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9765", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9766", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9767", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9768", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9769", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9770", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9771", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9772", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9773", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9774", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9775", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9776", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9777", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9778", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9779", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9780", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9781", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9782", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9783", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9784", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9785", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9786", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9787", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9788", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9789", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9790", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9791", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9792", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9793", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9794", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9795", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9796", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9797", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9798", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9799", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9800", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9801", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9802", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9803", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9804", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9805", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9806", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9807", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9808", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9809", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9810", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9811", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9812", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9813", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9814", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9815", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9816", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9817", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9818", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9819", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9820", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9821", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9822", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9823", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9824", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9825", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9826", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9827", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9828", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9829", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9830", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9831", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9832", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9833", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9834", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9835", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9836", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9837", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9838", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9839", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9840", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9841", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9842", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9843", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9844", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9845", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9846", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9847", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9848", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9849", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9850", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9851", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9852", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9853", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9854", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9855", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9856", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9857", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9858", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9859", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9860", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9861", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9862", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9863", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9864", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9865", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9866", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9867", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9868", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9869", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9870", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9871", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9872", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9873", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9874", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9875", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9876", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9877", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9878", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9879", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9880", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9881", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9882", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9883", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9884", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9885", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9886", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9887", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9888", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9889", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9890", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9891", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9892", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9893", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9894", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9895", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9896", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9897", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9898", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9899", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9900", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9901", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9902", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9903", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9904", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9905", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9906", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9907", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9908", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9909", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9910", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9911", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9912", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9913", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9914", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9915", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9916", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9917", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9918", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9919", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9920", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9921", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9922", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9923", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9924", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9925", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9926", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9927", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9928", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9929", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9930", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9931", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9932", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9933", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9934", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9935", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9936", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9937", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9938", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9939", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9940", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9941", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9942", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9943", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9944", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9945", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9946", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9947", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9948", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9949", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9950", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9951", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9952", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9953", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9954", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9955", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9956", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9957", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9958", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9959", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9960", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9961", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9962", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9963", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9964", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9965", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9966", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9967", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9968", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9969", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9970", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9971", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9972", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9973", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9974", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9975", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9976", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9977", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9978", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9979", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9980", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9981", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9982", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9983", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9984", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9985", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9986", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9987", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9988", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9989", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9990", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9991", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9992", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9993", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9994", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9995", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9996", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9997", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9998", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["9999", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10000", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"] -]; -export const HISTORIC_VAPY_12_000 = [ - ["10001", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10002", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10003", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10004", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10005", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10006", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10007", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10008", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10009", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10010", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10011", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10012", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10013", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10014", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10015", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10016", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10017", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10018", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10019", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10020", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10021", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10022", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10023", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10024", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10025", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10026", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10027", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10028", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10029", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10030", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10031", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10032", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10033", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10034", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10035", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10036", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10037", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10038", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10039", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10040", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10041", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10042", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10043", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10044", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10045", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10046", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10047", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10048", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10049", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10050", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10051", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10052", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10053", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10054", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10055", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10056", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10057", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10058", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10059", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10060", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10061", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10062", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10063", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10064", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10065", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10066", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10067", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10068", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10069", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10070", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10071", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10072", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10073", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10074", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10075", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10076", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10077", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10078", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10079", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10080", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10081", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10082", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10083", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10084", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10085", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10086", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10087", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10088", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10089", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10090", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10091", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10092", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10093", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10094", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10095", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10096", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10097", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10098", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10099", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10100", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10101", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10102", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10103", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10104", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10105", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10106", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10107", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10108", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10109", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10110", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10111", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10112", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10113", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10114", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10115", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10116", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10117", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10118", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10119", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10120", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10121", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10122", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10123", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10124", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10125", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10126", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10127", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10128", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10129", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10130", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10131", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10132", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10133", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10134", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10135", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10136", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10137", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10138", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10139", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10140", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10141", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10142", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10143", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10144", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10145", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10146", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10147", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10148", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10149", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10150", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10151", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10152", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10153", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10154", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10155", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10156", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10157", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10158", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10159", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10160", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10161", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10162", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10163", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10164", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10165", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10166", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10167", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10168", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10169", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10170", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10171", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10172", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10173", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10174", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10175", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10176", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10177", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10178", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10179", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10180", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10181", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10182", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10183", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10184", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10185", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10186", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10187", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10188", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10189", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10190", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10191", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10192", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10193", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10194", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10195", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10196", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10197", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10198", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10199", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10200", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10201", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10202", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10203", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10204", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10205", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10206", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10207", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10208", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10209", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10210", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10211", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10212", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10213", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10214", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10215", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10216", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10217", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10218", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10219", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10220", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10221", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10222", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10223", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10224", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10225", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10226", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10227", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10228", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10229", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10230", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10231", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10232", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10233", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10234", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10235", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10236", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10237", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10238", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10239", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10240", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10241", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10242", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10243", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10244", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10245", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10246", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10247", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10248", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10249", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10250", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10251", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10252", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10253", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10254", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10255", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10256", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10257", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10258", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10259", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10260", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10261", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10262", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10263", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10264", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10265", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10266", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10267", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10268", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10269", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10270", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10271", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10272", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10273", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10274", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10275", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10276", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10277", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10278", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10279", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10280", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10281", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10282", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10283", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10284", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10285", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10286", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10287", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10288", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10289", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10290", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10291", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10292", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10293", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10294", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10295", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10296", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10297", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10298", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10299", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10300", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10301", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10302", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10303", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10304", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10305", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10306", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10307", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10308", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10309", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10310", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10311", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10312", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10313", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10314", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10315", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10316", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10317", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10318", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10319", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10320", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10321", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10322", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10323", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10324", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10325", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10326", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10327", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10328", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10329", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10330", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10331", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10332", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10333", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10334", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10335", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10336", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10337", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10338", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10339", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10340", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10341", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10342", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10343", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10344", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10345", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10346", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10347", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10348", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10349", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10350", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10351", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10352", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10353", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10354", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10355", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10356", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10357", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10358", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10359", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10360", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10361", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10362", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10363", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10364", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10365", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10366", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10367", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10368", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10369", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10370", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10371", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10372", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10373", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10374", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10375", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10376", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10377", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10378", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10379", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10380", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10381", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10382", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10383", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10384", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10385", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10386", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10387", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10388", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10389", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10390", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10391", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10392", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10393", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10394", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10395", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10396", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10397", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10398", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10399", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10400", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10401", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10402", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10403", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10404", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10405", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10406", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10407", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10408", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10409", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10410", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10411", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10412", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10413", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10414", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10415", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10416", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10417", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10418", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10419", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10420", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10421", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10422", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10423", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10424", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10425", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10426", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10427", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10428", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10429", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10430", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10431", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10432", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10433", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10434", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10435", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10436", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10437", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10438", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10439", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10440", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10441", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10442", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10443", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10444", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10445", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10446", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10447", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10448", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10449", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10450", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10451", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10452", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10453", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10454", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10455", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10456", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10457", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10458", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10459", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10460", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10461", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10462", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10463", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10464", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10465", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10466", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10467", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10468", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10469", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10470", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10471", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10472", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10473", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10474", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10475", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10476", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10477", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10478", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10479", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10480", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10481", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10482", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10483", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10484", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10485", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10486", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10487", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10488", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10489", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10490", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10491", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10492", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10493", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10494", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10495", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10496", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10497", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10498", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10499", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10500", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10501", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10502", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10503", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10504", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10505", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10506", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10507", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10508", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10509", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10510", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10511", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10512", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10513", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10514", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10515", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10516", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10517", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10518", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10519", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10520", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10521", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10522", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10523", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10524", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10525", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10526", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10527", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10528", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10529", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10530", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10531", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10532", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10533", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10534", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10535", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10536", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10537", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10538", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10539", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10540", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10541", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10542", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10543", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10544", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10545", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10546", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10547", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10548", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10549", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10550", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10551", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10552", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10553", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10554", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10555", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10556", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10557", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10558", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10559", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10560", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10561", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10562", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10563", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10564", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10565", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10566", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10567", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10568", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10569", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10570", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10571", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10572", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10573", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10574", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10575", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10576", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10577", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10578", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10579", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10580", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10581", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10582", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10583", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10584", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10585", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10586", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10587", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10588", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10589", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10590", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10591", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10592", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10593", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10594", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10595", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10596", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10597", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10598", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10599", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10600", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10601", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10602", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10603", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10604", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10605", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10606", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10607", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10608", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10609", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10610", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10611", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10612", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10613", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10614", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10615", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10616", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10617", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10618", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10619", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10620", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10621", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10622", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10623", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10624", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10625", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10626", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10627", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10628", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10629", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10630", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10631", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10632", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10633", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10634", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10635", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10636", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10637", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10638", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10639", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10640", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10641", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10642", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10643", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10644", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10645", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10646", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10647", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10648", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10649", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10650", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10651", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10652", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10653", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10654", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10655", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10656", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10657", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10658", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10659", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10660", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10661", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10662", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10663", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10664", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10665", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10666", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10667", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10668", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10669", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10670", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10671", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10672", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10673", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10674", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10675", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10676", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10677", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10678", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10679", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10680", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10681", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10682", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10683", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10684", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10685", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10686", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10687", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10688", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10689", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10690", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10691", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10692", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10693", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10694", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10695", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10696", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10697", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10698", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10699", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10700", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10701", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10702", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10703", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10704", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10705", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10706", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10707", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10708", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10709", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10710", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10711", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10712", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10713", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10714", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10715", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10716", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10717", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10718", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10719", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10720", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10721", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10722", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10723", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10724", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10725", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10726", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10727", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10728", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10729", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10730", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10731", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10732", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10733", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10734", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10735", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10736", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10737", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10738", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10739", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10740", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10741", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10742", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10743", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10744", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10745", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10746", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10747", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10748", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10749", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10750", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10751", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10752", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10753", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10754", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10755", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10756", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10757", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10758", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10759", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10760", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10761", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10762", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10763", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10764", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10765", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10766", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10767", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10768", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10769", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10770", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10771", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10772", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10773", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10774", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10775", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10776", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10777", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10778", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10779", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10780", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10781", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10782", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10783", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10784", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10785", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10786", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10787", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10788", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10789", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10790", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10791", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10792", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10793", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10794", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10795", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10796", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10797", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10798", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10799", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10800", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10801", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10802", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10803", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10804", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10805", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10806", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10807", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10808", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10809", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10810", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10811", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10812", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10813", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10814", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10815", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10816", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10817", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10818", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10819", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10820", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10821", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10822", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10823", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10824", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10825", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10826", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10827", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10828", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10829", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10830", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10831", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10832", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10833", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10834", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10835", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10836", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10837", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10838", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10839", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10840", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10841", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10842", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10843", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10844", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10845", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10846", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10847", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10848", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10849", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10850", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10851", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10852", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10853", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10854", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10855", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10856", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10857", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10858", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10859", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10860", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10861", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10862", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10863", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10864", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10865", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10866", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10867", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10868", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10869", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10870", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10871", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10872", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10873", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10874", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10875", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10876", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10877", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10878", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10879", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10880", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10881", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10882", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10883", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10884", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10885", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10886", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10887", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10888", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10889", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10890", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10891", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10892", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10893", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10894", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10895", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10896", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10897", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10898", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10899", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10900", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10901", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10902", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10903", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10904", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10905", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10906", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10907", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10908", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10909", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10910", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10911", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10912", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10913", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10914", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10915", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10916", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10917", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10918", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10919", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10920", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10921", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10922", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10923", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10924", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10925", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10926", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10927", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10928", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10929", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10930", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10931", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10932", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10933", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10934", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10935", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10936", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10937", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10938", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10939", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10940", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10941", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10942", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10943", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10944", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10945", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10946", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10947", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10948", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10949", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10950", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10951", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10952", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10953", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10954", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10955", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10956", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10957", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10958", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10959", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10960", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10961", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10962", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10963", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10964", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10965", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10966", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10967", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10968", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10969", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10970", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10971", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10972", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10973", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10974", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10975", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10976", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10977", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10978", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10979", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10980", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10981", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10982", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10983", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10984", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10985", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10986", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10987", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10988", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10989", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10990", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10991", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10992", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10993", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10994", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10995", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10996", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10997", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10998", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["10999", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11000", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11001", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11002", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11003", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11004", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11005", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11006", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11007", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11008", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11009", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11010", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11011", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11012", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11013", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11014", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11015", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11016", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11017", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11018", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11019", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11020", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11021", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11022", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11023", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11024", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11025", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11026", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11027", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11028", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11029", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11030", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11031", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11032", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11033", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11034", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11035", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11036", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11037", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11038", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11039", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11040", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11041", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11042", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11043", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11044", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11045", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11046", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11047", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11048", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11049", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11050", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11051", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11052", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11053", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11054", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11055", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11056", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11057", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11058", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11059", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11060", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11061", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11062", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11063", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11064", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11065", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11066", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11067", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11068", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11069", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11070", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11071", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11072", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11073", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11074", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11075", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11076", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11077", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11078", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11079", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11080", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11081", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11082", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11083", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11084", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11085", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11086", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11087", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11088", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11089", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11090", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11091", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11092", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11093", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11094", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11095", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11096", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11097", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11098", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11099", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11100", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11101", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11102", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11103", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11104", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11105", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11106", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11107", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11108", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11109", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11110", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11111", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11112", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11113", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11114", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11115", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11116", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11117", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11118", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11119", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11120", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11121", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11122", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11123", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11124", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11125", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11126", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11127", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11128", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11129", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11130", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11131", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11132", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11133", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11134", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11135", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11136", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11137", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11138", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11139", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11140", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11141", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11142", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11143", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11144", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11145", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11146", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11147", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11148", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11149", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11150", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11151", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11152", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11153", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11154", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11155", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11156", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11157", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11158", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11159", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11160", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11161", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11162", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11163", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11164", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11165", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11166", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11167", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11168", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11169", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11170", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11171", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11172", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11173", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11174", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11175", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11176", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11177", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11178", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11179", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11180", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11181", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11182", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11183", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11184", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11185", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11186", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11187", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11188", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11189", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11190", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11191", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11192", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11193", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11194", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11195", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11196", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11197", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11198", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11199", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11200", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11201", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11202", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11203", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11204", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11205", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11206", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11207", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11208", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11209", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11210", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11211", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11212", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11213", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11214", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11215", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11216", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11217", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11218", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11219", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11220", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11221", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11222", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11223", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11224", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11225", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11226", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11227", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11228", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11229", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11230", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11231", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11232", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11233", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11234", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11235", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11236", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11237", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11238", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11239", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11240", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11241", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11242", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11243", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11244", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11245", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11246", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11247", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11248", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11249", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11250", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11251", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11252", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11253", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11254", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11255", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11256", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11257", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11258", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11259", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11260", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11261", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11262", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11263", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11264", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11265", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11266", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11267", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11268", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11269", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11270", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11271", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11272", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11273", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11274", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11275", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11276", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11277", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11278", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11279", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11280", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11281", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11282", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11283", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11284", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11285", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11286", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11287", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11288", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11289", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11290", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11291", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11292", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11293", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11294", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11295", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11296", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11297", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11298", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11299", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11300", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11301", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11302", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11303", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11304", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11305", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11306", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11307", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11308", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11309", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11310", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11311", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11312", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11313", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11314", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11315", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11316", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11317", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11318", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11319", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11320", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11321", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11322", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11323", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11324", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11325", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11326", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11327", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11328", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11329", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11330", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11331", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11332", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11333", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11334", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11335", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11336", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11337", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11338", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11339", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11340", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11341", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11342", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11343", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11344", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11345", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11346", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11347", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11348", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11349", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11350", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11351", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11352", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11353", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11354", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11355", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11356", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11357", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11358", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11359", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11360", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11361", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11362", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11363", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11364", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11365", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11366", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11367", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11368", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11369", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11370", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11371", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11372", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11373", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11374", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11375", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11376", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11377", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11378", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11379", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11380", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11381", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11382", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11383", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11384", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11385", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11386", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11387", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11388", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11389", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11390", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11391", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11392", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11393", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11394", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11395", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11396", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11397", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11398", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11399", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11400", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11401", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11402", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11403", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11404", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11405", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11406", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11407", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11408", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11409", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11410", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11411", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11412", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11413", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11414", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11415", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11416", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11417", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11418", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11419", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11420", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11421", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11422", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11423", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11424", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11425", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11426", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11427", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11428", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11429", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11430", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11431", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11432", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11433", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11434", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11435", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11436", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11437", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11438", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11439", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11440", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11441", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11442", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11443", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11444", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11445", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11446", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11447", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11448", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11449", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11450", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11451", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11452", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11453", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11454", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11455", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11456", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11457", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11458", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11459", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11460", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11461", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11462", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11463", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11464", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11465", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11466", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11467", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11468", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11469", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11470", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11471", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11472", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11473", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11474", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11475", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11476", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11477", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11478", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11479", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11480", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11481", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11482", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11483", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11484", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11485", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11486", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11487", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11488", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11489", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11490", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11491", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11492", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11493", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11494", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11495", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11496", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11497", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11498", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11499", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11500", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11501", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11502", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11503", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11504", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11505", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11506", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11507", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11508", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11509", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11510", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11511", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11512", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11513", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11514", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11515", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11516", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11517", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11518", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11519", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11520", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11521", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11522", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11523", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11524", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11525", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11526", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11527", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11528", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11529", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11530", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11531", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11532", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11533", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11534", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11535", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11536", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11537", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11538", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11539", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11540", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11541", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11542", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11543", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11544", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11545", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11546", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11547", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11548", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11549", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11550", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11551", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11552", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11553", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11554", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11555", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11556", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11557", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11558", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11559", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11560", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11561", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11562", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11563", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11564", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11565", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11566", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11567", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11568", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11569", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11570", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11571", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11572", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11573", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11574", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11575", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11576", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11577", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11578", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11579", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11580", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11581", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11582", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11583", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11584", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11585", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11586", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11587", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11588", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11589", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11590", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11591", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11592", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11593", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11594", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11595", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11596", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11597", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11598", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11599", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11600", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11601", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11602", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11603", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11604", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11605", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11606", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11607", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11608", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11609", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11610", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11611", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11612", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11613", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11614", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11615", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11616", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11617", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11618", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11619", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11620", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11621", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11622", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11623", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11624", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11625", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11626", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11627", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11628", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11629", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11630", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11631", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11632", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11633", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11634", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11635", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11636", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11637", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11638", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11639", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11640", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11641", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11642", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11643", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11644", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11645", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11646", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11647", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11648", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11649", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11650", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11651", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11652", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11653", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11654", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11655", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11656", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11657", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11658", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11659", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11660", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11661", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11662", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11663", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11664", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11665", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11666", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11667", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11668", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11669", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11670", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11671", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11672", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11673", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11674", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11675", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11676", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11677", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11678", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11679", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11680", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11681", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11682", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11683", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11684", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11685", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11686", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11687", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11688", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11689", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11690", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11691", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11692", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11693", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11694", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11695", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11696", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11697", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11698", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11699", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11700", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11701", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11702", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11703", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11704", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11705", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11706", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11707", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11708", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11709", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11710", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11711", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11712", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11713", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11714", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11715", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11716", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11717", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11718", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11719", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11720", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11721", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11722", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11723", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11724", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11725", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11726", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11727", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11728", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11729", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11730", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11731", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11732", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11733", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11734", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11735", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11736", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11737", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11738", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11739", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11740", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11741", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11742", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11743", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11744", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11745", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11746", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11747", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11748", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11749", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11750", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11751", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11752", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11753", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11754", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11755", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11756", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11757", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11758", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11759", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11760", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11761", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11762", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11763", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11764", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11765", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11766", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11767", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11768", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11769", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11770", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11771", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11772", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11773", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11774", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11775", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11776", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11777", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11778", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11779", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11780", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11781", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11782", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11783", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11784", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11785", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11786", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11787", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11788", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11789", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11790", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11791", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11792", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11793", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11794", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11795", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11796", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11797", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11798", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11799", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11800", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11801", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11802", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11803", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11804", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11805", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11806", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11807", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11808", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11809", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11810", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11811", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11812", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11813", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11814", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11815", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11816", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11817", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11818", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11819", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11820", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11821", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11822", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11823", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11824", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11825", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11826", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11827", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11828", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11829", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11830", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11831", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11832", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11833", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11834", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11835", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11836", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11837", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11838", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11839", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11840", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11841", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11842", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11843", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11844", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11845", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11846", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11847", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11848", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11849", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11850", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11851", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11852", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11853", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11854", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11855", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11856", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11857", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11858", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11859", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11860", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11861", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11862", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11863", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11864", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11865", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11866", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11867", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11868", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11869", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11870", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11871", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11872", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11873", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11874", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11875", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11876", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11877", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11878", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11879", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11880", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11881", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11882", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11883", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11884", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11885", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11886", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11887", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11888", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11889", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11890", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11891", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11892", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11893", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11894", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11895", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11896", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11897", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11898", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11899", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11900", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11901", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11902", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11903", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11904", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11905", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11906", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11907", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11908", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11909", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11910", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11911", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11912", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11913", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11914", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11915", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11916", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11917", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11918", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11919", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11920", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11921", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11922", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11923", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11924", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11925", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11926", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11927", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11928", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11929", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11930", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11931", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11932", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11933", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11934", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11935", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11936", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11937", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11938", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11939", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11940", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11941", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11942", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11943", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11944", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11945", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11946", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11947", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11948", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11949", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11950", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11951", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11952", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11953", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11954", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11955", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11956", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11957", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11958", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11959", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11960", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11961", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11962", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11963", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11964", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11965", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11966", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11967", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11968", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11969", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11970", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11971", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11972", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11973", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11974", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11975", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11976", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11977", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11978", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11979", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11980", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11981", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11982", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11983", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11984", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11985", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11986", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11987", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11988", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11989", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11990", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11991", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11992", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11993", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11994", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11995", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11996", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11997", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11998", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["11999", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12000", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"] -]; -export const HISTORIC_VAPY_14_000 = [ - ["12001", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12002", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12003", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12004", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12005", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12006", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12007", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12008", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12009", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12010", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12011", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12012", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12013", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12014", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12015", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12016", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12017", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12018", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12019", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12020", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12021", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12022", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12023", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12024", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12025", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12026", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12027", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12028", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12029", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12030", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12031", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12032", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12033", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12034", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12035", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12036", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12037", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12038", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12039", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12040", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12041", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12042", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12043", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12044", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12045", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12046", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12047", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12048", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12049", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12050", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12051", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12052", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12053", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12054", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12055", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12056", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12057", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12058", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12059", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12060", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12061", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12062", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12063", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12064", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12065", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12066", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12067", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12068", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12069", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12070", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12071", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12072", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12073", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12074", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12075", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12076", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12077", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12078", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12079", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12080", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12081", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12082", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12083", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12084", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12085", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12086", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12087", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12088", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12089", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12090", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12091", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12092", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12093", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12094", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12095", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12096", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12097", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12098", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12099", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12100", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12101", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12102", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12103", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12104", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12105", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12106", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12107", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12108", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12109", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12110", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12111", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12112", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12113", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12114", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12115", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12116", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12117", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12118", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12119", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12120", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12121", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12122", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12123", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12124", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12125", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12126", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12127", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12128", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12129", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12130", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12131", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12132", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12133", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12134", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12135", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12136", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12137", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12138", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12139", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12140", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12141", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12142", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12143", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12144", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12145", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12146", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12147", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12148", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12149", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12150", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12151", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12152", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12153", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12154", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12155", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12156", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12157", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12158", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12159", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12160", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12161", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12162", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12163", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12164", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12165", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12166", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12167", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12168", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12169", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12170", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12171", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12172", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12173", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12174", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12175", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12176", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12177", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12178", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12179", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12180", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12181", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12182", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12183", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12184", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12185", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12186", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12187", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12188", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12189", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12190", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12191", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12192", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12193", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12194", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12195", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12196", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12197", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12198", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12199", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12200", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12201", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12202", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12203", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12204", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12205", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12206", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12207", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12208", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12209", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12210", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12211", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12212", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12213", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12214", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12215", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12216", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12217", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12218", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12219", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12220", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12221", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12222", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12223", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12224", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12225", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12226", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12227", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12228", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12229", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12230", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12231", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12232", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12233", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12234", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12235", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12236", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12237", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12238", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12239", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12240", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12241", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12242", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12243", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12244", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12245", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12246", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12247", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12248", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12249", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12250", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12251", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12252", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12253", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12254", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12255", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12256", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12257", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12258", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12259", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12260", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12261", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12262", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12263", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12264", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12265", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12266", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12267", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12268", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12269", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12270", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12271", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12272", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12273", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12274", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12275", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12276", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12277", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12278", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12279", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12280", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12281", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12282", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12283", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12284", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12285", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12286", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12287", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12288", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12289", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12290", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12291", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12292", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12293", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12294", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12295", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12296", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12297", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12298", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12299", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12300", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12301", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12302", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12303", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12304", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12305", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12306", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12307", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12308", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12309", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12310", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12311", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12312", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12313", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12314", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12315", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12316", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12317", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12318", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12319", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12320", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12321", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12322", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12323", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12324", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12325", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12326", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12327", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12328", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12329", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12330", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12331", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12332", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12333", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12334", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12335", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12336", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12337", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12338", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12339", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12340", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12341", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12342", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12343", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12344", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12345", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12346", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12347", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12348", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12349", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12350", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12351", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12352", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12353", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12354", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12355", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12356", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12357", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12358", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12359", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12360", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12361", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12362", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12363", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12364", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12365", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12366", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12367", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12368", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12369", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12370", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12371", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12372", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12373", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12374", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12375", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12376", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12377", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12378", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12379", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12380", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12381", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12382", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12383", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12384", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12385", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12386", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12387", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12388", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12389", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12390", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12391", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12392", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12393", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12394", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12395", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12396", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12397", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12398", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12399", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12400", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12401", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12402", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12403", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12404", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12405", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12406", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12407", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12408", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12409", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12410", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12411", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12412", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12413", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12414", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12415", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12416", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12417", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12418", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12419", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12420", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12421", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12422", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12423", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12424", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12425", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12426", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12427", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12428", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12429", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12430", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12431", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12432", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12433", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12434", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12435", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12436", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12437", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12438", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12439", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12440", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12441", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12442", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12443", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12444", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12445", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12446", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12447", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12448", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12449", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12450", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12451", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12452", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12453", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12454", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12455", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12456", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12457", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12458", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12459", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12460", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12461", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12462", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12463", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12464", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12465", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12466", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12467", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12468", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12469", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12470", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12471", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12472", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12473", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12474", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12475", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12476", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12477", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12478", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12479", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12480", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12481", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12482", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12483", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12484", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12485", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12486", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12487", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12488", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12489", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12490", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12491", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12492", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12493", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12494", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12495", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12496", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12497", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12498", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12499", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12500", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12501", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12502", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12503", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12504", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12505", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12506", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12507", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12508", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12509", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12510", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12511", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12512", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12513", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12514", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12515", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12516", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12517", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12518", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12519", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12520", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12521", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12522", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12523", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12524", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12525", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12526", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12527", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12528", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12529", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12530", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12531", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12532", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12533", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12534", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12535", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12536", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12537", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12538", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12539", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12540", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12541", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12542", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12543", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12544", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12545", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12546", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12547", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12548", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12549", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12550", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12551", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12552", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12553", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12554", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12555", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12556", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12557", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12558", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12559", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12560", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12561", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12562", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12563", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12564", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12565", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12566", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12567", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12568", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12569", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12570", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12571", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12572", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12573", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12574", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12575", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12576", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12577", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12578", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12579", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12580", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12581", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12582", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12583", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12584", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12585", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12586", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12587", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12588", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12589", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12590", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12591", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12592", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12593", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12594", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12595", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12596", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12597", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12598", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12599", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12600", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12601", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12602", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12603", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12604", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12605", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12606", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12607", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12608", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12609", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12610", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12611", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12612", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12613", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12614", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12615", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12616", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12617", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12618", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12619", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12620", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12621", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12622", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12623", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12624", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12625", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12626", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12627", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12628", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12629", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12630", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12631", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12632", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12633", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12634", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12635", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12636", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12637", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12638", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12639", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12640", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12641", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12642", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12643", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12644", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12645", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12646", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12647", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12648", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12649", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12650", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12651", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12652", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12653", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12654", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12655", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12656", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12657", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12658", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12659", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12660", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12661", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12662", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12663", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12664", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12665", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12666", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12667", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12668", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12669", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12670", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12671", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12672", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12673", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12674", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12675", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12676", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12677", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12678", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12679", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12680", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12681", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12682", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12683", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12684", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12685", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12686", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12687", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12688", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12689", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12690", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12691", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12692", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12693", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12694", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12695", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12696", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12697", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12698", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12699", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12700", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12701", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12702", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12703", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12704", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12705", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12706", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12707", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12708", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12709", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12710", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12711", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12712", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12713", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12714", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12715", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12716", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12717", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12718", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12719", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12720", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12721", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12722", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12723", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12724", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12725", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12726", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12727", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12728", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12729", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12730", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12731", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12732", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12733", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12734", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12735", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12736", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12737", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12738", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12739", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12740", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12741", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12742", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12743", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12744", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12745", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12746", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12747", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12748", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12749", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12750", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12751", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12752", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12753", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12754", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12755", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12756", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12757", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12758", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12759", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12760", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12761", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12762", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12763", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12764", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12765", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12766", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12767", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12768", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12769", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12770", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12771", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12772", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12773", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12774", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12775", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12776", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12777", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12778", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12779", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12780", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12781", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12782", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12783", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12784", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12785", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12786", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12787", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12788", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12789", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12790", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12791", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12792", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12793", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12794", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12795", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12796", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12797", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12798", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12799", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12800", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12801", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12802", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12803", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12804", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12805", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12806", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12807", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12808", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12809", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12810", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12811", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12812", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12813", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12814", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12815", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12816", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12817", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12818", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12819", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12820", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12821", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12822", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12823", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12824", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12825", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12826", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12827", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12828", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12829", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12830", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12831", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12832", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12833", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12834", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12835", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12836", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12837", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12838", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12839", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12840", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12841", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12842", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12843", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12844", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12845", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12846", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12847", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12848", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12849", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12850", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12851", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12852", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12853", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12854", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12855", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12856", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12857", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12858", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12859", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12860", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12861", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12862", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12863", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12864", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12865", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12866", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12867", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12868", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12869", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12870", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12871", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12872", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12873", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12874", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12875", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12876", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12877", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12878", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12879", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12880", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12881", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12882", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12883", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12884", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12885", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12886", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12887", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12888", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12889", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12890", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12891", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12892", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12893", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12894", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12895", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12896", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12897", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12898", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12899", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12900", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12901", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12902", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12903", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12904", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12905", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12906", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12907", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12908", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12909", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12910", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12911", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12912", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12913", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12914", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12915", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12916", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12917", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12918", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12919", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12920", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12921", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12922", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12923", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12924", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12925", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12926", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12927", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12928", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12929", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12930", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12931", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12932", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12933", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12934", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12935", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12936", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12937", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12938", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12939", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12940", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12941", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12942", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12943", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12944", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12945", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12946", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12947", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12948", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12949", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12950", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12951", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12952", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12953", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12954", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12955", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12956", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12957", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12958", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12959", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12960", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12961", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12962", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12963", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12964", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12965", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12966", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12967", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12968", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12969", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12970", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12971", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12972", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12973", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12974", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12975", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12976", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12977", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12978", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12979", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12980", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12981", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12982", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12983", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12984", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12985", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12986", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12987", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12988", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12989", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12990", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12991", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12992", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12993", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12994", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12995", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12996", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12997", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12998", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["12999", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13000", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13001", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13002", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13003", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13004", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13005", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13006", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13007", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13008", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13009", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13010", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13011", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13012", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13013", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13014", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13015", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13016", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13017", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13018", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13019", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13020", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13021", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13022", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13023", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13024", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13025", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13026", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13027", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13028", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13029", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13030", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13031", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13032", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13033", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13034", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13035", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13036", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13037", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13038", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13039", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13040", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13041", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13042", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13043", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13044", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13045", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13046", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13047", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13048", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13049", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13050", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13051", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13052", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13053", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13054", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13055", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13056", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13057", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13058", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13059", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13060", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13061", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13062", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13063", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13064", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13065", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13066", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13067", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13068", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13069", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13070", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13071", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13072", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13073", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13074", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13075", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13076", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13077", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13078", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13079", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13080", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13081", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13082", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13083", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13084", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13085", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13086", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13087", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13088", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13089", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13090", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13091", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13092", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13093", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13094", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13095", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13096", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13097", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13098", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13099", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13100", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13101", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13102", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13103", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13104", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13105", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13106", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13107", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13108", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13109", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13110", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13111", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13112", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13113", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13114", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13115", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13116", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13117", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13118", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13119", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13120", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13121", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13122", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13123", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13124", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13125", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13126", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13127", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13128", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13129", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13130", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13131", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13132", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13133", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13134", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13135", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13136", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13137", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13138", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13139", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13140", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13141", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13142", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13143", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13144", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13145", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13146", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13147", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13148", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13149", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13150", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13151", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13152", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13153", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13154", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13155", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13156", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13157", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13158", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13159", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13160", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13161", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13162", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13163", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13164", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13165", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13166", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13167", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13168", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13169", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13170", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13171", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13172", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13173", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13174", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13175", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13176", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13177", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13178", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13179", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13180", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13181", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13182", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13183", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13184", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13185", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13186", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13187", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13188", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13189", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13190", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13191", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13192", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13193", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13194", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13195", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13196", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13197", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13198", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13199", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13200", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13201", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13202", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13203", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13204", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13205", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13206", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13207", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13208", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13209", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13210", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13211", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13212", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13213", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13214", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13215", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13216", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13217", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13218", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13219", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13220", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13221", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13222", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13223", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13224", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13225", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13226", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13227", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13228", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13229", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13230", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13231", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13232", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13233", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13234", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13235", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13236", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13237", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13238", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13239", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13240", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13241", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13242", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13243", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13244", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13245", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13246", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13247", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13248", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13249", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13250", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13251", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13252", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13253", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13254", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13255", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13256", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13257", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13258", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13259", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13260", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13261", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13262", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13263", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13264", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13265", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13266", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13267", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13268", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13269", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13270", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13271", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13272", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13273", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13274", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13275", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13276", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13277", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13278", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13279", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13280", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13281", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13282", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13283", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13284", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13285", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13286", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13287", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13288", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13289", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13290", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13291", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13292", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13293", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13294", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13295", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13296", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13297", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13298", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13299", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13300", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13301", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13302", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13303", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13304", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13305", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13306", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13307", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13308", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13309", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13310", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13311", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13312", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13313", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13314", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13315", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13316", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13317", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13318", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13319", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13320", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13321", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13322", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13323", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13324", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13325", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13326", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13327", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13328", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13329", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13330", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13331", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13332", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13333", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13334", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13335", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13336", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13337", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13338", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13339", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13340", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13341", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13342", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13343", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13344", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13345", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13346", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13347", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13348", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13349", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13350", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13351", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13352", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13353", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13354", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13355", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13356", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13357", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13358", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13359", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13360", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13361", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13362", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13363", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13364", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13365", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13366", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13367", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13368", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13369", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13370", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13371", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13372", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13373", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13374", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13375", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13376", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13377", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13378", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13379", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13380", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13381", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13382", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13383", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13384", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13385", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13386", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13387", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13388", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13389", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13390", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13391", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13392", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13393", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13394", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13395", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13396", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13397", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13398", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13399", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13400", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13401", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13402", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13403", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13404", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13405", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13406", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13407", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13408", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13409", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13410", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13411", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13412", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13413", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13414", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13415", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13416", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13417", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13418", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13419", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13420", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13421", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13422", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13423", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13424", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13425", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13426", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13427", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13428", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13429", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13430", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13431", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13432", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13433", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13434", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13435", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13436", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13437", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13438", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13439", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13440", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13441", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13442", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13443", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13444", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13445", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13446", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13447", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13448", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13449", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13450", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13451", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13452", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13453", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13454", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13455", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13456", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13457", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13458", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13459", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13460", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13461", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13462", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13463", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13464", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13465", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13466", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13467", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13468", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13469", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13470", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13471", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13472", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13473", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13474", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13475", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13476", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13477", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13478", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13479", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13480", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13481", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13482", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13483", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13484", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13485", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13486", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13487", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13488", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13489", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13490", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13491", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13492", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13493", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13494", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13495", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13496", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13497", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13498", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13499", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13500", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13501", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13502", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13503", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13504", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13505", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13506", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13507", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13508", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13509", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13510", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13511", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13512", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13513", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13514", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13515", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13516", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13517", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13518", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13519", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13520", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13521", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13522", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13523", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13524", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13525", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13526", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13527", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13528", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13529", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13530", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13531", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13532", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13533", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13534", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13535", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13536", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13537", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13538", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13539", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13540", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13541", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13542", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13543", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13544", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13545", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13546", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13547", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13548", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13549", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13550", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13551", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13552", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13553", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13554", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13555", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13556", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13557", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13558", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13559", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13560", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13561", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13562", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13563", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13564", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13565", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13566", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13567", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13568", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13569", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13570", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13571", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13572", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13573", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13574", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13575", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13576", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13577", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13578", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13579", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13580", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13581", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13582", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13583", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13584", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13585", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13586", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13587", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13588", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13589", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13590", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13591", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13592", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13593", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13594", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13595", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13596", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13597", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13598", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13599", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13600", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13601", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13602", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13603", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13604", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13605", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13606", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13607", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13608", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13609", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13610", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13611", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13612", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13613", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13614", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13615", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13616", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13617", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13618", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13619", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13620", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13621", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13622", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13623", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13624", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13625", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13626", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13627", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13628", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13629", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13630", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13631", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13632", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13633", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13634", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13635", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13636", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13637", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13638", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13639", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13640", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13641", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13642", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13643", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13644", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13645", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13646", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13647", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13648", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13649", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13650", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13651", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13652", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13653", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13654", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13655", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13656", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13657", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13658", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13659", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13660", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13661", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13662", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13663", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13664", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13665", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13666", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13667", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13668", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13669", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13670", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13671", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13672", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13673", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13674", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13675", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13676", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13677", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13678", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13679", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13680", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13681", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13682", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13683", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13684", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13685", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13686", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13687", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13688", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13689", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13690", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13691", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13692", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13693", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13694", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13695", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13696", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13697", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13698", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13699", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13700", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13701", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13702", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13703", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13704", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13705", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13706", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13707", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13708", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13709", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13710", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13711", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13712", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13713", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13714", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13715", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13716", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13717", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13718", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13719", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13720", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13721", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13722", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13723", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13724", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13725", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13726", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13727", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13728", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13729", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13730", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13731", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13732", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13733", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13734", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13735", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13736", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13737", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13738", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13739", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13740", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13741", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13742", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13743", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13744", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13745", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13746", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13747", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13748", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13749", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13750", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13751", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13752", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13753", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13754", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13755", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13756", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13757", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13758", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13759", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13760", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13761", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13762", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13763", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13764", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13765", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13766", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13767", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13768", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13769", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13770", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13771", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13772", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13773", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13774", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13775", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13776", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13777", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13778", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13779", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13780", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13781", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13782", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13783", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13784", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13785", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13786", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13787", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13788", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13789", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13790", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13791", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13792", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13793", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13794", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13795", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13796", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13797", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13798", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13799", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13800", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13801", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13802", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13803", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13804", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13805", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13806", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13807", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13808", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13809", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13810", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13811", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13812", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13813", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13814", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13815", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13816", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13817", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13818", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13819", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13820", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13821", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13822", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13823", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13824", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13825", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13826", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13827", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13828", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13829", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13830", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13831", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13832", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13833", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13834", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13835", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13836", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13837", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13838", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13839", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13840", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13841", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13842", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13843", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13844", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13845", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13846", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13847", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13848", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13849", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13850", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13851", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13852", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13853", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13854", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13855", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13856", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13857", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13858", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13859", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13860", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13861", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13862", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13863", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13864", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13865", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13866", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13867", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13868", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13869", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13870", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13871", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13872", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13873", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13874", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13875", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13876", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13877", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13878", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13879", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13880", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13881", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13882", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13883", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13884", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13885", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13886", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13887", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13888", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13889", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13890", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13891", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13892", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13893", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13894", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13895", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13896", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13897", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13898", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13899", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13900", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13901", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13902", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13903", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13904", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13905", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13906", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13907", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13908", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13909", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13910", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13911", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13912", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13913", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13914", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13915", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13916", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13917", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13918", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13919", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13920", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13921", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13922", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13923", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13924", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13925", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13926", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13927", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13928", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13929", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13930", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13931", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13932", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13933", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13934", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13935", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13936", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13937", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13938", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13939", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13940", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13941", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13942", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13943", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13944", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13945", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13946", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13947", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13948", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13949", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13950", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13951", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13952", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13953", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13954", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13955", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13956", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13957", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13958", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13959", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13960", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13961", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13962", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13963", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13964", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13965", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13966", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13967", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13968", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13969", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13970", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13971", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13972", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13973", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13974", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13975", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13976", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13977", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13978", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13979", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13980", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13981", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13982", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13983", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13984", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13985", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13986", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13987", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13988", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13989", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13990", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13991", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13992", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13993", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13994", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13995", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13996", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13997", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13998", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["13999", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14000", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"] -]; -export const HISTORIC_VAPY_16_000 = [ - ["14001", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14002", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14003", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14004", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14005", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14006", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14007", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14008", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14009", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14010", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14011", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14012", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14013", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14014", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14015", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14016", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14017", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14018", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14019", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14020", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14021", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14022", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14023", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14024", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14025", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14026", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14027", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14028", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14029", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14030", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14031", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14032", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14033", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14034", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14035", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14036", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14037", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14038", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14039", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14040", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14041", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14042", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14043", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14044", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14045", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14046", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14047", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14048", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14049", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14050", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14051", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14052", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14053", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14054", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14055", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14056", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14057", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14058", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14059", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14060", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14061", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14062", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14063", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14064", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14065", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14066", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14067", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14068", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14069", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14070", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14071", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14072", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14073", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14074", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14075", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14076", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14077", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14078", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14079", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14080", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14081", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14082", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14083", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14084", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14085", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14086", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14087", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14088", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14089", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14090", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14091", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14092", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - ["14093", "0.0", "1.752", "0.0", "0.0", "0.0", "0.0", "0.0", "3.504", "0.0", "0.0", "0.0"], - [ - "14094", - "0.0019733677852850668", - "1.7556172100811835", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0028352333701778774", - "3.5090383245849415", - "0.0", - "0.0", - "0.0011115022003922558" - ], - [ - "14095", - "0.004673129259602226", - "1.7605650119950134", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006713451927290299", - "3.5159291461198556", - "0.0", - "0.0", - "0.002632806591914152" - ], - [ - "14096", - "0.0064723486377449785", - "1.7638617647809847", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009297638660605331", - "3.5205200447764664", - "0.0", - "0.0", - "0.0036470586148846258" - ], - [ - "14097", - "0.007435298991547013", - "1.7656250916140535", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010680879417942877", - "3.522975994523525", - "0.0", - "0.0", - "0.004189718565151148" - ], - [ - "14098", - "0.007413313880433101", - "1.765584592786486", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01064938124919828", - "3.5229197481095094", - "0.0", - "0.0", - "0.0041772465116679215" - ], - [ - "14099", - "0.007389912409537446", - "1.765541122820081", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010615975821423353", - "3.522859611286026", - "0.0", - "0.0", - "0.004163848997651538" - ], - [ - "14100", - "0.007401208550456659", - "1.7655607591693194", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010632555055643103", - "3.52288764765843", - "0.0", - "0.0", - "0.004169862045270216" - ], - [ - "14101", - "0.007379050704651977", - "1.7655199887528445", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01060079356274019", - "3.522830993410119", - "0.0", - "0.0", - "0.004157307846563765" - ], - [ - "14102", - "0.007357057134540173", - "1.7654795430089651", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010569259918865346", - "3.522774775582199", - "0.0", - "0.0", - "0.004144854350215" - ], - [ - "14103", - "0.0073122997033560405", - "1.7653951945791722", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01050577550879036", - "3.5226588666784266", - "0.0", - "0.0", - "0.004118823897921721" - ], - [ - "14104", - "0.007279114066871631", - "1.7653328861595379", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010458626073170184", - "3.5225730956960386", - "0.0", - "0.0", - "0.004099602060573077" - ], - [ - "14105", - "0.007258753546350284", - "1.765295507032424", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010429412119275023", - "3.5225210983441553", - "0.0", - "0.0", - "0.004088094973425546" - ], - [ - "14106", - "0.007238423199790083", - "1.7652582473444298", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010400219824943508", - "3.5224692251925367", - "0.0", - "0.0", - "0.004076626574636658" - ], - [ - "14107", - "0.007217774600479414", - "1.7652203687639998", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010370582487867788", - "3.5224165136411214", - "0.0", - "0.0", - "0.004064966713091042" - ], - [ - "14108", - "0.0071970022529837755", - "1.765182269940352", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010340765188348647", - "3.5223634910777064", - "0.0", - "0.0", - "0.0040532393176189035" - ], - [ - "14109", - "0.007176945661794496", - "1.7651455218718852", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010311962454807555", - "3.52231232344038", - "0.0", - "0.0", - "0.004041928868781436" - ], - [ - "14110", - "0.0071556753120730465", - "1.7651064284866302", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010281457512361085", - "3.522257969626649", - "0.0", - "0.0", - "0.004029893111785007" - ], - [ - "14111", - "0.00713586825857954", - "1.7650701398428186", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010253012262399844", - "3.5222074400497383", - "0.0", - "0.0", - "0.004018724254759234" - ], - [ - "14112", - "0.007116011613796276", - "1.7650337585887506", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01022449632444349", - "3.52215678257791", - "0.0", - "0.0", - "0.004007526903149061" - ], - [ - "14113", - "0.007090263105401239", - "1.7649860239771664", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01018770707905138", - "3.522090682019993", - "0.0", - "0.0", - "0.003992819131751097" - ], - [ - "14114", - "0.007070493805770628", - "1.7649498044784404", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010159315858553406", - "3.522040248441542", - "0.0", - "0.0", - "0.003981671752987851" - ], - [ - "14115", - "0.007044095434375673", - "1.764900518793757", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010121714500927994", - "3.521972223693701", - "0.0", - "0.0", - "0.003966476367823352" - ], - [ - "14116", - "0.00702456182219637", - "1.764864742925192", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010093657636760444", - "3.521922399894629", - "0.0", - "0.0", - "0.003955466007632298" - ], - [ - "14117", - "0.007001434833244086", - "1.7648220403016581", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01006055571906911", - "3.521863155513312", - "0.0", - "0.0", - "0.003942313947419061" - ], - [ - "14118", - "0.0069820194910282666", - "1.7647864820259316", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010032668274058049", - "3.521813633916559", - "0.0", - "0.0", - "0.003931370707998484" - ], - [ - "14119", - "0.006960754992807116", - "1.764747362587634", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010002183467081366", - "3.5217592668833584", - "0.0", - "0.0", - "0.003919326518532864" - ], - [ - "14120", - "0.006914231860301905", - "1.7646595624967119", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009936232643455452", - "3.521638686406583", - "0.0", - "0.0", - "0.0038922310771483584" - ], - [ - "14121", - "0.006895058317988574", - "1.764624454778854", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009908689655100037", - "3.5215897868573185", - "0.0", - "0.0", - "0.0038814269808771108" - ], - [ - "14122", - "0.006875937928386263", - "1.764589444397655", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009881222961860864", - "3.52154102279232", - "0.0", - "0.0", - "0.0038706528949116617" - ], - [ - "14123", - "0.006856616274511911", - "1.7645540430282045", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009853474653534082", - "3.5214917287543637", - "0.0", - "0.0", - "0.0038597578954897398" - ], - [ - "14124", - "0.0068354531423236555", - "1.7645149002520286", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009823205338903046", - "3.521437465196842", - "0.0", - "0.0", - "0.0038477009457442645" - ], - [ - "14125", - "0.006815820483042774", - "1.764478888409728", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009795023943405189", - "3.521387347504441", - "0.0", - "0.0", - "0.0038366170226803594" - ], - [ - "14126", - "0.006796918788004324", - "1.764444279879006", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009767870705720593", - "3.521339141891488", - "0.0", - "0.0", - "0.0038259668702880557" - ], - [ - "14127", - "0.006777050674754272", - "1.7644078045549596", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009739361845750928", - "3.521288399626335", - "0.0", - "0.0", - "0.0038147395037576174" - ], - [ - "14128", - "0.006756602922698707", - "1.7643702118050415", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009710039125351198", - "3.521236137533024", - "0.0", - "0.0", - "0.0038031667200462155" - ], - [ - "14129", - "0.0067312977057739885", - "1.7643232574372163", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00967389567034221", - "3.5211711415575184", - "0.0", - "0.0", - "0.003788699741205766" - ], - [ - "14130", - "0.006712631322169266", - "1.7642890821760022", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009647079414518075", - "3.5211235374937484", - "0.0", - "0.0", - "0.0037781832298204566" - ], - [ - "14131", - "0.006694016686038692", - "1.7642550016672467", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009620337443264935", - "3.521076065328663", - "0.0", - "0.0", - "0.003767695928812448" - ], - [ - "14132", - "0.006675453654013471", - "1.764221015648374", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009593669551084325", - "3.5210287246972203", - "0.0", - "0.0", - "0.0037572377569426163" - ], - [ - "14133", - "0.006656670208124839", - "1.7641866002367925", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009566693653507546", - "3.520980802773818", - "0.0", - "0.0", - "0.003746646762742133" - ], - [ - "14134", - "0.006636748344899462", - "1.7641499928611435", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009538118464422384", - "3.5209298979162447", - "0.0", - "0.0", - "0.0037353782253765387" - ], - [ - "14135", - "0.006618344077712938", - "1.7641162979898737", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009511678336638288", - "3.5208829622879194", - "0.0", - "0.0", - "0.0037250098187875864" - ], - [ - "14136", - "0.006599990831772589", - "1.764082696539783", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009485311452876595", - "3.5208361567082638", - "0.0", - "0.0", - "0.0037146702106685826" - ], - [ - "14137", - "0.006581688465719367", - "1.7640491882519815", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009459017610509804", - "3.520789480817345", - "0.0", - "0.0", - "0.0037043593209289288" - ], - [ - "14138", - "0.006562706480121549", - "1.7640143846106102", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009431764538494992", - "3.5207410338816825", - "0.0", - "0.0", - "0.0036936484217481047" - ], - [ - "14139", - "0.006544507477066344", - "1.7639810657241295", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00940561903370932", - "3.5206946215601347", - "0.0", - "0.0", - "0.003683395920423367" - ], - [ - "14140", - "0.006526358926545874", - "1.7639478392168813", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009379545957863146", - "3.5206483378388893", - "0.0", - "0.0", - "0.0036731718952286033" - ], - [ - "14141", - "0.006508260688774931", - "1.7639147048328596", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00935354511057794", - "3.5206021823620124", - "0.0", - "0.0", - "0.003662976266971921" - ], - [ - "14142", - "0.006486608422234353", - "1.763874723441837", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009322552771388385", - "3.5205467115919276", - "0.0", - "0.0", - "0.003650664073080321" - ], - [ - "14143", - "0.006468576413202302", - "1.7638416802617851", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009296657070833665", - "3.5205007026467543", - "0.0", - "0.0", - "0.003640495755570939" - ], - [ - "14144", - "0.00645005715356084", - "1.7638077354886486", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009270064513206888", - "3.520453443953313", - "0.0", - "0.0", - "0.0036300497939147926" - ], - [ - "14145", - "0.006432170453888765", - "1.763774989566905", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009244366969095178", - "3.5204078285155704", - "0.0", - "0.0", - "0.0036199739386823518" - ], - [ - "14146", - "0.006414333341424464", - "1.7637423344364924", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009218740614532074", - "3.5203623394724324", - "0.0", - "0.0", - "0.003609926068316854" - ], - [ - "14147", - "0.006396545678777684", - "1.7637097698458022", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00919318525255929", - "3.520316976474058", - "0.0", - "0.0", - "0.0035999061049960773" - ], - [ - "14148", - "0.0063784382833257085", - "1.7636765750786283", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009167185564375515", - "3.5202707648725715", - "0.0", - "0.0", - "0.0035896910022759037" - ], - [ - "14149", - "0.006360093022173095", - "1.7636429272991512", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0091408499861309", - "3.520223933611624", - "0.0", - "0.0", - "0.0035793360582152905" - ], - [ - "14150", - "0.006342455732437103", - "1.7636106383287955", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009115510408647524", - "3.5201789541262154", - "0.0", - "0.0", - "0.003569401056226681" - ], - [ - "14151", - "0.006324833665584299", - "1.763578372599011", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009090194211755224", - "3.520134009971854", - "0.0", - "0.0", - "0.0035594731194133742" - ], - [ - "14152", - "0.006307292131547903", - "1.7635462587729132", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009064992166424207", - "3.5200892744306995", - "0.0", - "0.0", - "0.0035495920966715977" - ], - [ - "14153", - "0.0062897265885968594", - "1.7635140944056054", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00903975779643378", - "3.5200444727219375", - "0.0", - "0.0", - "0.003539695380759937" - ], - [ - "14154", - "0.006272284377598774", - "1.7634821626406072", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009014698280072442", - "3.5199999905101365", - "0.0", - "0.0", - "0.003529870475125104" - ], - [ - "14155", - "0.0062548905222450085", - "1.7634503194106372", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008989708187977247", - "3.519955631556245", - "0.0", - "0.0", - "0.0035200728565127695" - ], - [ - "14156", - "0.00623754488855378", - "1.7634185644703344", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008964787328061554", - "3.5199113955190864", - "0.0", - "0.0", - "0.0035103024490460073" - ], - [ - "14157", - "0.006220247342914116", - "1.763386897575016", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008939935508768846", - "3.5198672820584256", - "0.0", - "0.0", - "0.0035005591770593853" - ], - [ - "14158", - "0.006202997752084831", - "1.7633553184806776", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008915152539071287", - "3.5198232908349683", - "0.0", - "0.0", - "0.0034908429650983746" - ], - [ - "14159", - "0.0061857800114080005", - "1.7633237961829415", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008890415792990998", - "3.519779379653414", - "0.0", - "0.0", - "0.003481144229825004" - ], - [ - "14160", - "0.006167349183261987", - "1.7632899333258896", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008863976393374568", - "3.5197322861796323", - "0.0", - "0.0", - "0.0034707219731494065" - ], - [ - "14161", - "0.006150246247222668", - "1.7632586230828282", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008839403865778417", - "3.519688669033135", - "0.0", - "0.0", - "0.00346108862866692" - ], - [ - "14162", - "0.006132978272873386", - "1.7632269908020075", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008814600869991453", - "3.519644616215201", - "0.0", - "0.0", - "0.003451355675755318" - ], - [ - "14163", - "0.006115970625963871", - "1.7631958550775864", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008790165135226362", - "3.5196012420037754", - "0.0", - "0.0", - "0.0034417761167013805" - ], - [ - "14164", - "0.006095792412352185", - "1.7631586096914067", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008761276729237478", - "3.5195495561783003", - "0.0", - "0.0", - "0.0034303080954668917" - ], - [ - "14165", - "0.006077095535874593", - "1.7631242128578284", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008734470607964047", - "3.5195017491228313", - "0.0", - "0.0", - "0.0034197204637851394" - ], - [ - "14166", - "0.006060216498285185", - "1.7630933114280085", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008710219895419506", - "3.5194587018356187", - "0.0", - "0.0", - "0.003410213101150865" - ], - [ - "14167", - "0.006048240297797559", - "1.7630712715212014", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008693051705628157", - "3.5194280738482338", - "0.0", - "0.0", - "0.003403428889966961" - ], - [ - "14168", - "0.006031489950560694", - "1.7630405997653709", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008668987807008593", - "3.5193853502735095", - "0.0", - "0.0", - "0.0033939920941127937" - ], - [ - "14169", - "0.006014763678856309", - "1.763009980858231", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008644955506071835", - "3.519342694521617", - "0.0", - "0.0", - "0.0033845718516407847" - ], - [ - "14170", - "0.005998083778986219", - "1.762979446847557", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00862098978700919", - "3.519300156971643", - "0.0", - "0.0", - "0.0033751777709632477" - ], - [ - "14171", - "0.00598145012245972", - "1.7629489974980634", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008597090465579877", - "3.5192577372963787", - "0.0", - "0.0", - "0.003365809779339561" - ], - [ - "14172", - "0.005964862581141752", - "1.7629186325751152", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00857325735805169", - "3.519215435169517", - "0.0", - "0.0", - "0.0033564678042318154" - ], - [ - "14173", - "0.005948321027251922", - "1.7628883518447276", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0085494902811996", - "3.519173250265654", - "0.0", - "0.0", - "0.003347151773304246" - ], - [ - "14174", - "0.005931825333363518", - "1.7628581550735636", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008525789052304368", - "3.519131182260284", - "0.0", - "0.0", - "0.0033378616144226683" - ], - [ - "14175", - "0.005914751742940852", - "1.7628268411977484", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008501277364484756", - "3.5190875966332276", - "0.0", - "0.0", - "0.0033282261213969486" - ], - [ - "14176", - "0.005898349118182551", - "1.7627968149787165", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008477709714175606", - "3.5190457659856857", - "0.0", - "0.0", - "0.003318988522189496" - ], - [ - "14177", - "0.00588183104762371", - "1.762766562130491", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008453981291812308", - "3.5190036295518072", - "0.0", - "0.0", - "0.003309680803435111" - ], - [ - "14178", - "0.005865519693332792", - "1.7627367030480225", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008430544679707757", - "3.5189620315881176", - "0.0", - "0.0", - "0.0033004947069578267" - ], - [ - "14179", - "0.005849253561169621", - "1.7627069267561748", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00840717300107388", - "3.5189205488980666", - "0.0", - "0.0", - "0.003291334121265363" - ], - [ - "14180", - "0.005833032525825843", - "1.7626772330254927", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008383866076220433", - "3.5188791811625344", - "0.0", - "0.0", - "0.0032821989754312536" - ], - [ - "14181", - "0.005816830543545707", - "1.7626475719331853", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008360587240761951", - "3.5188378603016814", - "0.0", - "0.0", - "0.0032730738463294627" - ], - [ - "14182", - "0.005800699399199152", - "1.7626180427768563", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008337409387522468", - "3.5187967217092138", - "0.0", - "0.0", - "0.003263989410875837" - ], - [ - "14183", - "0.005784612977624783", - "1.7625885954967515", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008314295751683493", - "3.518755697118665", - "0.0", - "0.0", - "0.0032549302035660738" - ], - [ - "14184", - "0.005770119214168271", - "1.7625614328941928", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008293682585290322", - "3.518718267729336", - "0.0", - "0.0", - "0.0032465558430462226" - ], - [ - "14185", - "0.005753655753358217", - "1.7625312533605009", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00827004126711812", - "3.518676250369037", - "0.0", - "0.0", - "0.0032372702395983143" - ], - [ - "14186", - "0.0057376997696815795", - "1.762502046741422", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008247114300985594", - "3.5186355596511056", - "0.0", - "0.0", - "0.003228285238377565" - ], - [ - "14187", - "0.005721788023344359", - "1.7624729211045458", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00822425085786121", - "3.518594981695039", - "0.0", - "0.0", - "0.0032193251888275078" - ], - [ - "14188", - "0.005705920391764508", - "1.7624438762254255", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008201450761949284", - "3.518554516188658", - "0.0", - "0.0", - "0.0032103900215797315" - ], - [ - "14189", - "0.0057028448840927", - "1.7624383328532554", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008197002602683787", - "3.518546736785314", - "0.0", - "0.0", - "0.003208687165501615" - ], - [ - "14190", - "0.005697821602341495", - "1.7624291059457982", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008189795447914369", - "3.51853390273507", - "0.0", - "0.0", - "0.0032058477567686217" - ], - [ - "14191", - "0.005693874918575262", - "1.7624218817100636", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0081841244849371", - "3.5185238378918147", - "0.0", - "0.0", - "0.0032036253522134237" - ], - [ - "14192", - "0.005689284108232856", - "1.7624133774165491", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008177561940468574", - "3.5185120556868914", - "0.0", - "0.0", - "0.0032010062759971368" - ], - [ - "14193", - "0.005685791166076", - "1.7624069800615194", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00817254418651419", - "3.518503145252904", - "0.0", - "0.0", - "0.00319903814563781" - ], - [ - "14194", - "0.00568209969884237", - "1.7624001864003656", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008167252237433907", - "3.518493704193597", - "0.0", - "0.0", - "0.0031969471602508325" - ], - [ - "14195", - "0.005678805035660786", - "1.762394134267906", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008162525343169046", - "3.5184852863017944", - "0.0", - "0.0", - "0.0031950847281525274" - ], - [ - "14196", - "0.00566305657504581", - "1.762365307847267", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008139896272280874", - "3.5184451247888835", - "0.0", - "0.0", - "0.0031862168778107464" - ], - [ - "14197", - "0.005638922046961571", - "1.7623203319913157", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008105485860441748", - "3.518382985867147", - "0.0", - "0.0", - "0.0031723582334813936" - ], - [ - "14198", - "0.005623253656713234", - "1.7622916515003957", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008082971960039976", - "3.518343027935301", - "0.0", - "0.0", - "0.003163535353386493" - ], - [ - "14199", - "0.005605998458082264", - "1.7622599148426015", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008058228881790678", - "3.51829891109178", - "0.0", - "0.0", - "0.003153768034373852" - ], - [ - "14200", - "0.005590290359304431", - "1.7622311539533948", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00803566043824442", - "3.5182588460698745", - "0.0", - "0.0", - "0.003144920280364443" - ], - [ - "14201", - "0.005574725495618429", - "1.7622026605304073", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008013295998420366", - "3.5182191501811144", - "0.0", - "0.0", - "0.003136154992816492" - ], - [ - "14202", - "0.0055592656103778965", - "1.762174365044232", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00799108042453936", - "3.518179726231951", - "0.0", - "0.0", - "0.003127450796216432" - ], - [ - "14203", - "0.005544122550117349", - "1.762146624591773", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007969328435651795", - "3.5181410917848495", - "0.0", - "0.0", - "0.003118916664582902" - ], - [ - "14204", - "0.0055287475120025485", - "1.7621184844808642", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007947234686196186", - "3.5181018841579803", - "0.0", - "0.0", - "0.0031102603378089116" - ], - [ - "14205", - "0.005513390768067832", - "1.7620903788544084", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007925166852836358", - "3.5180627238703477", - "0.0", - "0.0", - "0.0031016146832993073" - ], - [ - "14206", - "0.005498100934090998", - "1.7620623947001999", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00790319546555914", - "3.518023733423754", - "0.0", - "0.0", - "0.0030930064026228558" - ], - [ - "14207", - "0.005482497598135069", - "1.7620338030359137", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007880784877445913", - "3.5179839185129738", - "0.0", - "0.0", - "0.003084210318824224" - ], - [ - "14208", - "0.005467293416550369", - "1.762005975754858", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007858936464565877", - "3.5179451464612987", - "0.0", - "0.0", - "0.00307565036853486" - ], - [ - "14209", - "0.005452131388907418", - "1.761978225632873", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00783714858957683", - "3.5179064818592525", - "0.0", - "0.0", - "0.003067114188238006" - ], - [ - "14210", - "0.005437011398392083", - "1.7619505524561008", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007815421084926586", - "3.5178679244093365", - "0.0", - "0.0", - "0.00305860171185758" - ], - [ - "14211", - "0.005421120935583167", - "1.7619213921502774", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007792612245545933", - "3.517827345166131", - "0.0", - "0.0", - "0.0030496296256204017" - ], - [ - "14212", - "0.005406086923794611", - "1.7618938765628558", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007771008145511601", - "3.5177890070331315", - "0.0", - "0.0", - "0.003041165702077621" - ], - [ - "14213", - "0.00539922684716363", - "1.7618795077407823", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0077617594995623256", - "3.5177701710829137", - "0.0", - "0.0", - "0.0030366941947649337" - ], - [ - "14214", - "0.00538728588053491", - "1.7618569567167623", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00774483408854781", - "3.5177392048174037", - "0.0", - "0.0", - "0.003029737672522011" - ], - [ - "14215", - "0.005381545889265435", - "1.7618435382673927", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0077375639835934335", - "3.517722409188839", - "0.0", - "0.0", - "0.0030255277949374367" - ], - [ - "14216", - "0.005408164804603052", - "1.7618824460352287", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007779107113452855", - "3.517783007287663", - "0.0", - "0.0", - "0.0030372224957532492" - ], - [ - "14217", - "0.005405261677579472", - "1.761873181345517", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0077762591276721756", - "3.517772664468158", - "0.0", - "0.0", - "0.003034264227486769" - ], - [ - "14218", - "0.005409685326295863", - "1.7618764450466045", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007784233800667503", - "3.5177803451723806", - "0.0", - "0.0", - "0.003035136851924223" - ], - [ - "14219", - "0.0054359717247734135", - "1.761914069059654", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007825513384689413", - "3.517839548393166", - "0.0", - "0.0", - "0.0030464300648574134" - ], - [ - "14220", - "0.005438347330122588", - "1.7619162092762322", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007829664355238679", - "3.5178439547411053", - "0.0", - "0.0", - "0.0030470303050064975" - ], - [ - "14221", - "0.0054365306516444166", - "1.7619084262867508", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00782854143665406", - "3.5178359830881134", - "0.0", - "0.0", - "0.003044519866634774" - ], - [ - "14222", - "0.005458160629343222", - "1.7619397844079236", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007862367390107405", - "3.5178849671031407", - "0.0", - "0.0", - "0.0030539538685790393" - ], - [ - "14223", - "0.0054491964285444585", - "1.7619228252266985", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007849669658987481", - "3.5178616917592964", - "0.0", - "0.0", - "0.0030487231981014356" - ], - [ - "14224", - "0.00544029899695822", - "1.7619061138684693", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007837026007504008", - "3.517838680991148", - "0.0", - "0.0", - "0.0030435719864124297" - ], - [ - "14225", - "0.005433434290020265", - "1.7618932183473288", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007827271619817043", - "3.517820925695738", - "0.0", - "0.0", - "0.0030395969602234865" - ], - [ - "14226", - "0.005425965465331621", - "1.7618795790999382", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007816528562661093", - "3.5178019018440803", - "0.0", - "0.0", - "0.0030354023680021496" - ], - [ - "14227", - "0.005426331078676602", - "1.7618788268622085", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00781752718895614", - "3.517801765524279", - "0.0", - "0.0", - "0.003035134968397064" - ], - [ - "14228", - "0.005435303572020805", - "1.7618928834519287", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00783120811206618", - "3.517822867627978", - "0.0", - "0.0", - "0.003039399031975429" - ], - [ - "14229", - "0.005438521760433473", - "1.7618969156717799", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007836450833391401", - "3.517829676078027", - "0.0", - "0.0", - "0.003040592687475546" - ], - [ - "14230", - "0.005448631913041163", - "1.7619115335262212", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00785227166055622", - "3.517852530994009", - "0.0", - "0.0", - "0.0030449921655261057" - ], - [ - "14231", - "0.005461530250420621", - "1.7619301523758968", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0078724643601259", - "3.517881661194538", - "0.0", - "0.0", - "0.0030505961407153413" - ], - [ - "14232", - "0.00545682535546636", - "1.761921487849686", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007865721015921806", - "3.517869622417485", - "0.0", - "0.0", - "0.0030479296950109125" - ], - [ - "14233", - "0.005455764482095258", - "1.7619186341458608", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007864499374501423", - "3.517866228299302", - "0.0", - "0.0", - "0.0030470295896890915" - ], - [ - "14234", - "0.005451036555177335", - "1.7619100382018862", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007857686151644871", - "3.5178542143808635", - "0.0", - "0.0", - "0.003044386958709799" - ], - [ - "14235", - "0.00544677559836797", - "1.7619022625008172", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007851555408935491", - "3.5178433653310934", - "0.0", - "0.0", - "0.003041995787800448" - ], - [ - "14236", - "0.005442640409617491", - "1.761894744249905", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007845596343812884", - "3.5178328576020346", - "0.0", - "0.0", - "0.0030396844754220984" - ], - [ - "14237", - "0.005439857577662733", - "1.7618893944013696", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007841682510377722", - "3.5178255670061516", - "0.0", - "0.0", - "0.0030380326449477436" - ], - [ - "14238", - "0.005439407812316806", - "1.761888194133085", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007841161379811844", - "3.5178241351895405", - "0.0", - "0.0", - "0.0030376542448217673" - ], - [ - "14239", - "0.005435217508910806", - "1.761879491708792", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007835482729809733", - "3.5178126684855084", - "0.0", - "0.0", - "0.003034952288011879" - ], - [ - "14240", - "0.005423917779467534", - "1.761856799152468", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007819912052325026", - "3.5177823314013055", - "0.0", - "0.0", - "0.003027923506610043" - ], - [ - "14241", - "0.0054143914566585445", - "1.7618391890705043", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0078062802466418255", - "3.517757905077563", - "0.0", - "0.0", - "0.0030225026666752634" - ], - [ - "14242", - "0.00540980135776019", - "1.7618293693361946", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0078001547159235116", - "3.5177451261934483", - "0.0", - "0.0", - "0.0030194479995968686" - ], - [ - "14243", - "0.005400160507422379", - "1.7618118512554768", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007786258234004532", - "3.517720635827994", - "0.0", - "0.0", - "0.003014062780840226" - ], - [ - "14244", - "0.0053914827330397335", - "1.7617956257497958", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007773901641708762", - "3.517698245859872", - "0.0", - "0.0", - "0.003009063824370705" - ], - [ - "14245", - "0.0053825095590002816", - "1.7617791809444856", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007761013946105816", - "3.5176753456520635", - "0.0", - "0.0", - "0.003004005171894747" - ], - [ - "14246", - "0.005371411071716807", - "1.7617582853474458", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007745258074699105", - "3.5176466008334284", - "0.0", - "0.0", - "0.0029975640687345093" - ], - [ - "14247", - "0.005356050570414788", - "1.761727318126366", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0077241302296631835", - "3.517605266748452", - "0.0", - "0.0", - "0.002987970911166391" - ], - [ - "14248", - "0.005341198152008285", - "1.7617003424328836", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007702717543143887", - "3.5175675465969563", - "0.0", - "0.0", - "0.0029796787608726842" - ], - [ - "14249", - "0.0053273086850524785", - "1.7616748906110888", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00768276770571891", - "3.517532101449839", - "0.0", - "0.0", - "0.0029718496643860474" - ], - [ - "14250", - "0.005330366704699632", - "1.7616760048569005", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007688647190017983", - "3.5175365017681406", - "0.0", - "0.0", - "0.0029720862193812815" - ], - [ - "14251", - "0.0053140611641848525", - "1.7616447967768922", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007665666904526917", - "3.517493882084399", - "0.0", - "0.0", - "0.002962455423842788" - ], - [ - "14252", - "0.005298406217550496", - "1.7616155273368337", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00764337385764298", - "3.517453488832582", - "0.0", - "0.0", - "0.0029534385774580125" - ], - [ - "14253", - "0.005284488482175248", - "1.7615900268258935", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007623382181946711", - "3.5174179733562254", - "0.0", - "0.0", - "0.002945594782403786" - ], - [ - "14254", - "0.005269834583413977", - "1.7615634319883713", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007602248811779236", - "3.517380772512835", - "0.0", - "0.0", - "0.002937420355048719" - ], - [ - "14255", - "0.005255221317112932", - "1.761536910903313", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007581174005369593", - "3.517343674780915", - "0.0", - "0.0", - "0.0029292686288562714" - ], - [ - "14256", - "0.0052408996233594225", - "1.7615104931502796", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007560660583525615", - "3.5173069938364843", - "0.0", - "0.0", - "0.00292113866319323" - ], - [ - "14257", - "0.005226506383303852", - "1.7614843412158872", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007539913012507846", - "3.5172704316683188", - "0.0", - "0.0", - "0.002913099754099858" - ], - [ - "14258", - "0.005212013223612407", - "1.7614580393962527", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0075190109001202505", - "3.5172336396819373", - "0.0", - "0.0", - "0.0029050155471045643" - ], - [ - "14259", - "0.0051975602404477645", - "1.761431810497011", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007498166696526726", - "3.5171969496476234", - "0.0", - "0.0", - "0.002896953784368804" - ], - [ - "14260", - "0.0051831473225091166", - "1.761405654316101", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0074773802414908", - "3.517160361283157", - "0.0", - "0.0", - "0.0028889144035274335" - ], - [ - "14261", - "0.005168774358803591", - "1.7613795706520212", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00745665137521829", - "3.517123874307096", - "0.0", - "0.0", - "0.0028808973423888923" - ], - [ - "14262", - "0.005154441238645403", - "1.7613535593038279", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007435979938356087", - "3.517087488438776", - "0.0", - "0.0", - "0.002872902538934719" - ], - [ - "14263", - "0.005139593981490156", - "1.7613263904443262", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007414641248228391", - "3.5170496268617932", - "0.0", - "0.0", - "0.0028645467147519195" - ], - [ - "14264", - "0.0051253417565305616", - "1.7613005265417283", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007394086206154349", - "3.51701344674637", - "0.0", - "0.0", - "0.002856597306906774" - ], - [ - "14265", - "0.005111188545236653", - "1.761274812472119", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007373683811806868", - "3.516977495267421", - "0.0", - "0.0", - "0.0028486932786664374" - ], - [ - "14266", - "0.005097667869625872", - "1.7612502280922961", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0073541996739083515", - "3.5169431356622263", - "0.0", - "0.0", - "0.002841136065343393" - ], - [ - "14267", - "0.00508425130834333", - "1.761225880920215", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007334849695938812", - "3.5169090769795623", - "0.0", - "0.0", - "0.002833652920747848" - ], - [ - "14268", - "0.00507090379896328", - "1.7612016590650685", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007315599278737162", - "3.516875193555596", - "0.0", - "0.0", - "0.002826208319189398" - ], - [ - "14269", - "0.0050582382171916", - "1.7611785793750343", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007297363888985278", - "3.5168429687954053", - "0.0", - "0.0", - "0.002819112545397922" - ], - [ - "14270", - "0.0050457730669789804", - "1.761155958934515", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007279385942544334", - "3.5168113253642868", - "0.0", - "0.0", - "0.0028121601914136278" - ], - [ - "14271", - "0.005033700364742497", - "1.7611340507313458", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007261973963646048", - "3.516780678198902", - "0.0", - "0.0", - "0.0028054267658389467" - ], - [ - "14272", - "0.005021870286604362", - "1.7611125828216492", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007244911888857807", - "3.516750646920649", - "0.0", - "0.0", - "0.0027988286843509164" - ], - [ - "14273", - "0.005010276508802789", - "1.7610904895919188", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007228539330571441", - "3.5167204146382924", - "0.0", - "0.0", - "0.002792013687034138" - ], - [ - "14274", - "0.004998877704739867", - "1.7610697877978512", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007212104687525065", - "3.5166914655635653", - "0.0", - "0.0", - "0.0027856507219546694" - ], - [ - "14275", - "0.004988807555968143", - "1.7610515157797115", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007197580123409197", - "3.5166659035278873", - "0.0", - "0.0", - "0.0027800349885270877" - ], - [ - "14276", - "0.004978981889149334", - "1.7610336761257461", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007183411889154971", - "3.5166409535208123", - "0.0", - "0.0", - "0.0027745518891436976" - ], - [ - "14277", - "0.004969897559834697", - "1.7610170793225999", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007170346736807704", - "3.516617807580376", - "0.0", - "0.0", - "0.0027694483828616893" - ], - [ - "14278", - "0.0049604833319800805", - "1.760999997703238", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007156768110704145", - "3.516593910661043", - "0.0", - "0.0", - "0.002764198553256017" - ], - [ - "14279", - "0.0049512191826951496", - "1.760982877557457", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00714350874994915", - "3.5165701584653712", - "0.0", - "0.0", - "0.002758929615441148" - ], - [ - "14280", - "0.004937926257239135", - "1.7609586590854371", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007124368434111307", - "3.5165363405024865", - "0.0", - "0.0", - "0.0027514840803669637" - ], - [ - "14281", - "0.004924196947544469", - "1.760933715067036", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007104576757828074", - "3.516501465134304", - "0.0", - "0.0", - "0.002743817137260863" - ], - [ - "14282", - "0.004923456345850996", - "1.7609323713521945", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007103508522818253", - "3.5164995852480234", - "0.0", - "0.0", - "0.0027434041688837387" - ], - [ - "14283", - "0.0049225367892646674", - "1.760930615915651", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00710221095039082", - "3.516497184968481", - "0.0", - "0.0", - "0.0027428626281385143" - ], - [ - "14284", - "0.0049098057719871155", - "1.76090731163825", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007083915893667593", - "3.5164647131798974", - "0.0", - "0.0", - "0.0027356956503066386" - ], - [ - "14285", - "0.004896190590042554", - "1.7608826096790116", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007064277203817117", - "3.5164301540129363", - "0.0", - "0.0", - "0.0027281039762679917" - ], - [ - "14286", - "0.0048823196366157935", - "1.7608572011426111", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007044349764584643", - "3.516394761228617", - "0.0", - "0.0", - "0.002720289508646943" - ], - [ - "14287", - "0.004868780655397171", - "1.7608326381215278", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007024820704687064", - "3.51636039592076", - "0.0", - "0.0", - "0.0027127406061072776" - ], - [ - "14288", - "0.004870474662672435", - "1.7608357114643307", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007027264196638393", - "3.5163646957351924", - "0.0", - "0.0", - "0.002713685128706476" - ], - [ - "14289", - "0.004885427496195321", - "1.7608584494800603", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007050283765900086", - "3.5163993101315683", - "0.0", - "0.0", - "0.0027205712264905557" - ], - [ - "14290", - "0.0048877282644476895", - "1.7608626215734955", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007053603146824513", - "3.5164051484826313", - "0.0", - "0.0", - "0.002721853382070865" - ], - [ - "14291", - "0.004894310099191183", - "1.7608736015486777", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007063414494568628", - "3.5164211230426194", - "0.0", - "0.0", - "0.0027252057038137383" - ], - [ - "14292", - "0.004896655754703338", - "1.7608778545823351", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00706679878337353", - "3.516427074946847", - "0.0", - "0.0", - "0.002726512726033146" - ], - [ - "14293", - "0.004898960597222262", - "1.7608818210893948", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007070194390118352", - "3.516432761441912", - "0.0", - "0.0", - "0.0027277268043261736" - ], - [ - "14294", - "0.0049006831975233", - "1.7608847009262916", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00707276017160557", - "3.516436946942453", - "0.0", - "0.0", - "0.00272860622344103" - ], - [ - "14295", - "0.004908223458773929", - "1.7608968236043727", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0070841507296020905", - "3.516454899657685", - "0.0", - "0.0", - "0.0027322961879457683" - ], - [ - "14296", - "0.004909449821153228", - "1.7608988674455441", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007085979460959133", - "3.5164578744745856", - "0.0", - "0.0", - "0.0027329201813473215" - ], - [ - "14297", - "0.004928768554083425", - "1.7609298541232945", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007115186079816288", - "3.516503812378342", - "0.0", - "0.0", - "0.002742351028350562" - ], - [ - "14298", - "0.004930817848045744", - "1.76093335593569", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007118213331737032", - "3.5165088490718617", - "0.0", - "0.0", - "0.0027434223643544565" - ], - [ - "14299", - "0.004932457206317768", - "1.7609361649372763", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007120632482543117", - "3.51651288409262", - "0.0", - "0.0", - "0.0027442819300924183" - ], - [ - "14300", - "0.004934145763033429", - "1.760939224296508", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007123069451341764", - "3.516517166934665", - "0.0", - "0.0", - "0.002745222074725094" - ], - [ - "14301", - "0.00493586138233238", - "1.7609423326883769", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007125545477086666", - "3.516521518417498", - "0.0", - "0.0", - "0.0027461772875780944" - ], - [ - "14302", - "0.004922004257979899", - "1.7609171407132893", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007105574671048886", - "3.5164863061465246", - "0.0", - "0.0", - "0.0027384338449109127" - ], - [ - "14303", - "0.004908355445898247", - "1.7608924117830536", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0070858762335171376", - "3.516451687540932", - "0.0", - "0.0", - "0.0027308346582793556" - ], - [ - "14304", - "0.004894720397495339", - "1.7608676979914646", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007066200865068832", - "3.516417096326425", - "0.0", - "0.0", - "0.0027232399299218467" - ], - [ - "14305", - "0.004881139265162064", - "1.7608430911321244", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0070466002324981025", - "3.51638264888087", - "0.0", - "0.0", - "0.0027156782978260247" - ], - [ - "14306", - "0.004867603736053431", - "1.7608185675019514", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007027065189513608", - "3.5163483175245984", - "0.0", - "0.0", - "0.0027081422825932532" - ], - [ - "14307", - "0.004863590584670215", - "1.7608112854203435", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007021276886539515", - "3.516338130161144", - "0.0", - "0.0", - "0.002705904282800916" - ], - [ - "14308", - "0.0048622854549840895", - "1.7608083305385815", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007019587966360599", - "3.5163343693050804", - "0.0", - "0.0", - "0.002704982943607579" - ], - [ - "14309", - "0.004858196316249441", - "1.76080056478603", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007013804110029596", - "3.516323725059467", - "0.0", - "0.0", - "0.0027025885224692863" - ], - [ - "14310", - "0.004854406923775593", - "1.7607936999256213", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007008334842301489", - "3.516314114245201", - "0.0", - "0.0", - "0.002700479005249696" - ], - [ - "14311", - "0.0048699474531491175", - "1.76081705694586", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0070323457038387995", - "3.516349864114889", - "0.0", - "0.0", - "0.002707549202459435" - ], - [ - "14312", - "0.004867128095058867", - "1.7608119376946247", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007028280355901859", - "3.516342704594305", - "0.0", - "0.0", - "0.0027059758342158763" - ], - [ - "14313", - "0.004864921664634194", - "1.7608079427015355", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0070250950781202675", - "3.51633711021754", - "0.0", - "0.0", - "0.002704748251148122" - ], - [ - "14314", - "0.004863456030622407", - "1.7608051014195945", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00702304104444782", - "3.5163332506711122", - "0.0", - "0.0", - "0.0027038710167969935" - ], - [ - "14315", - "0.004861133909829212", - "1.7608004062413105", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007019850420487018", - "3.5163269876609733", - "0.0", - "0.0", - "0.0027024173991714055" - ], - [ - "14316", - "0.004864396169684266", - "1.760804576946209", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007025131734736281", - "3.5163339309030888", - "0.0", - "0.0", - "0.0027036606046322497" - ], - [ - "14317", - "0.0048629460403472055", - "1.7608019520407436", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0070230380412599274", - "3.5163302546663386", - "0.0", - "0.0", - "0.0027028540394344845" - ], - [ - "14318", - "0.004857819923272561", - "1.7607926715078581", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007015637507569357", - "3.5163172581274993", - "0.0", - "0.0", - "0.002700002338975764" - ], - [ - "14319", - "0.004852487529052098", - "1.7607830192481184", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0070079386007931895", - "3.516303739917041", - "0.0", - "0.0", - "0.002697036457311006" - ], - [ - "14320", - "0.004847182907342488", - "1.760773416565286", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007000280016536998", - "3.516290291575248", - "0.0", - "0.0", - "0.002694085798147978" - ], - [ - "14321", - "0.004841902936621367", - "1.7607638592016168", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006992656789402423", - "3.5162769062545585", - "0.0", - "0.0", - "0.0026911490838403117" - ], - [ - "14322", - "0.004836686763549236", - "1.760754401248176", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006985130961826245", - "3.516263670362746", - "0.0", - "0.0", - "0.002688242565272226" - ], - [ - "14323", - "0.004831495101667674", - "1.7607449944724043", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006977638277030668", - "3.5162505018151133", - "0.0", - "0.0", - "0.0026853519263046795" - ], - [ - "14324", - "0.004818441251507976", - "1.7607213655593092", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0069587910506757715", - "3.516217408839863", - "0.0", - "0.0", - "0.00267809145234018" - ], - [ - "14325", - "0.004805343473405242", - "1.7606975967835763", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0069399002490819275", - "3.5161841582783158", - "0.0", - "0.0", - "0.0026707866977285573" - ], - [ - "14326", - "0.004789613899771865", - "1.7606681824230275", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006917499941820839", - "3.516143560804998", - "0.0", - "0.0", - "0.002661727857722892" - ], - [ - "14327", - "0.004776590134184602", - "1.7606445863900388", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006898703173640387", - "3.5161105274563322", - "0.0", - "0.0", - "0.0026544770947288165" - ], - [ - "14328", - "0.0047652681784747675", - "1.7606239679428868", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0068823973499961034", - "3.5160817296061344", - "0.0", - "0.0", - "0.002648139006953431" - ], - [ - "14329", - "0.004756141668830166", - "1.76060703453077", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00686935645740604", - "3.5160582761953596", - "0.0", - "0.0", - "0.0026429268802542925" - ], - [ - "14330", - "0.004745406316756701", - "1.76058760591227", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006853855402089624", - "3.51603106341802", - "0.0", - "0.0", - "0.0026369572314237782" - ], - [ - "14331", - "0.004736300009185245", - "1.7605707707860336", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0068408233217472055", - "3.516007708401387", - "0.0", - "0.0", - "0.0026317766966232844" - ], - [ - "14332", - "0.004727949506110681", - "1.760554462106676", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006829159465606616", - "3.5159856246544328", - "0.0", - "0.0", - "0.0026267395466147456" - ], - [ - "14333", - "0.0049727528722101535", - "1.7609974229503453", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007182659976080763", - "3.5166061047325194", - "0.0", - "0.0", - "0.002762845768339543" - ], - [ - "14334", - "0.005521346895507564", - "1.7619877757908344", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007975565873888655", - "3.517994761929021", - "0.0", - "0.0", - "0.003067127917126472" - ], - [ - "14335", - "0.006077387815611312", - "1.7629928304074007", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008778775948903333", - "3.519403166965182", - "0.0", - "0.0", - "0.0033759996823192902" - ], - [ - "14336", - "0.006407491288366513", - "1.7635899622055502", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009255441767811394", - "3.5202396149124024", - "0.0", - "0.0", - "0.0035595408089216323" - ], - [ - "14337", - "0.006436431560929048", - "1.7636389237613619", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00929834551250153", - "3.5203103467408785", - "0.0", - "0.0", - "0.0035745176093565662" - ], - [ - "14338", - "0.00642923839139508", - "1.7636258081216218", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009287992977214192", - "3.5202920406994713", - "0.0", - "0.0", - "0.0035704838055759676" - ], - [ - "14339", - "0.006426226242927565", - "1.7636192720298116", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009284001163325875", - "3.5202835741137246", - "0.0", - "0.0", - "0.003568451322529256" - ], - [ - "14340", - "0.006418819180181542", - "1.7636058781111965", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009273304029359936", - "3.5202648094151154", - "0.0", - "0.0", - "0.0035643343310031465" - ], - [ - "14341", - "0.006413567756960943", - "1.7635956725421695", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009265953372099265", - "3.520250961149495", - "0.0", - "0.0", - "0.003561182141822621" - ], - [ - "14342", - "0.006402827609493135", - "1.7635760576982336", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009250506374083868", - "3.520223603775689", - "0.0", - "0.0", - "0.0035551488449024" - ], - [ - "14343", - "0.006389125847652613", - "1.7635512798780109", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009230718974907867", - "3.5201888912083543", - "0.0", - "0.0", - "0.0035475327203973593" - ], - [ - "14344", - "0.006372287056926062", - "1.7635208954366122", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009206379404429223", - "3.5201462819865124", - "0.0", - "0.0", - "0.0035381947094229008" - ], - [ - "14345", - "0.006354481689424737", - "1.7634884751781228", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009180738564434228", - "3.520101002969631", - "0.0", - "0.0", - "0.003528224814415247" - ], - [ - "14346", - "0.006360235221570033", - "1.763498352405317", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009189220919137153", - "3.5201151745025845", - "0.0", - "0.0", - "0.003531249524002913" - ], - [ - "14347", - "0.006362114358347038", - "1.7635017510359112", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009191934532755838", - "3.5201199355478487", - "0.0", - "0.0", - "0.0035322941839382384" - ], - [ - "14348", - "0.006344474258458369", - "1.7634698576570607", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009166457365335853", - "3.5200752501932433", - "0.0", - "0.0", - "0.0035224911515808863" - ], - [ - "14349", - "0.006326877295089943", - "1.7634380418778908", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009141042582126146", - "3.520030673743181", - "0.0", - "0.0", - "0.0035127120080537403" - ], - [ - "14350", - "0.006315088156616223", - "1.7634167270824381", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009124015753845218", - "3.5200008097950373", - "0.0", - "0.0", - "0.00350616055938723" - ], - [ - "14351", - "0.006303487315747712", - "1.7633957526282444", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009107260893626873", - "3.5199714227304604", - "0.0", - "0.0", - "0.0034997137378685508" - ], - [ - "14352", - "0.0062921637962491585", - "1.7633752796756992", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009090906510684317", - "3.5199427382216837", - "0.0", - "0.0", - "0.003493421081814001" - ], - [ - "14353", - "0.0062808204328677645", - "1.7633546459511678", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009074564508557897", - "3.5199139075379855", - "0.0", - "0.0", - "0.0034870763571776303" - ], - [ - "14354", - "0.006269981356248124", - "1.763335049109388", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009058909685270271", - "3.5198864503388343", - "0.0", - "0.0", - "0.0034810530272259754" - ], - [ - "14355", - "0.006257726109687333", - "1.7633128918664849", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009041209471920058", - "3.519855405718301", - "0.0", - "0.0", - "0.0034742427474546075" - ], - [ - "14356", - "0.006245683843555961", - "1.763291039985906", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009023843045955444", - "3.51982483939356", - "0.0", - "0.0", - "0.003467524641156479" - ], - [ - "14357", - "0.006234311118572849", - "1.7632704784824627", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009007417363870049", - "3.519796030412307", - "0.0", - "0.0", - "0.003461204873275648" - ], - [ - "14358", - "0.006334655819842493", - "1.7634518985364975", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009152344978750615", - "3.520050219229587", - "0.0", - "0.0", - "0.003516966660934372" - ], - [ - "14359", - "0.006497991420315578", - "1.7637470480884196", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009388298350099043", - "3.520463849377204", - "0.0", - "0.0", - "0.0036076844905321144" - ], - [ - "14360", - "0.006661543247283587", - "1.7640427430274808", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009624509314588312", - "3.5208781400445113", - "0.0", - "0.0", - "0.003698577179978862" - ], - [ - "14361", - "0.006824641275623743", - "1.764337618808219", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009860060546601464", - "3.5212912764256203", - "0.0", - "0.0", - "0.003789222004646021" - ], - [ - "14362", - "0.006987287809598693", - "1.7646316795856811", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010094955410609783", - "3.5217032643975026", - "0.0", - "0.0", - "0.0038796202085876023" - ], - [ - "14363", - "0.007149461639361006", - "1.764924862192234", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01032917147086926", - "3.5221140312339343", - "0.0", - "0.0", - "0.003969751807852751" - ], - [ - "14364", - "0.007307899868734484", - "1.765211190186287", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01055802205670974", - "3.5225152530128234", - "0.0", - "0.0", - "0.00405777768075923" - ], - [ - "14365", - "0.007457198822014299", - "1.7654811192187985", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010773629745659192", - "3.5228934160785217", - "0.0", - "0.0", - "0.004140767898369406" - ], - [ - "14366", - "0.007606561548865457", - "1.7657511646508908", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010989325902642606", - "3.523271736695424", - "0.0", - "0.0", - "0.004223797195088308" - ], - [ - "14367", - "0.007773175991792558", - "1.7660482038158325", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011231311643093328", - "3.5236905262412193", - "0.0", - "0.0", - "0.004315040340491788" - ], - [ - "14368", - "0.007922946248113127", - "1.7663188326331323", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011447639894285216", - "3.524069751196649", - "0.0", - "0.0", - "0.0043982526019410405" - ], - [ - "14369", - "0.008073156494539359", - "1.766590331877233", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011664575589855487", - "3.524450143258038", - "0.0", - "0.0", - "0.0044817373992232295" - ], - [ - "14370", - "0.008224954372998984", - "1.7668643422319557", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011883918665235225", - "3.5248342755808184", - "0.0", - "0.0", - "0.0045659900807627435" - ], - [ - "14371", - "0.00837476768354625", - "1.7671351193136011", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012100276040845154", - "3.52521364906814", - "0.0", - "0.0", - "0.004649259326247348" - ], - [ - "14372", - "0.00852418380167365", - "1.7674051795893768", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01231605616978855", - "3.5255920127527878", - "0.0", - "0.0", - "0.004732311433558752" - ], - [ - "14373", - "0.00867374983051252", - "1.7676755119110237", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012532049163591175", - "3.525970752064183", - "0.0", - "0.0", - "0.004815450497433865" - ], - [ - "14374", - "0.008823049894081565", - "1.767945364604251", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012747654447371387", - "3.526348813903303", - "0.0", - "0.0", - "0.004898445340791744" - ], - [ - "14375", - "0.008972016015244458", - "1.7682146093429143", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012962775670625341", - "3.5267260219731007", - "0.0", - "0.0", - "0.004981256359863574" - ], - [ - "14376", - "0.008952420211543563", - "1.7681782453293058", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012934788761218776", - "3.526675675751683", - "0.0", - "0.0", - "0.004970051661868349" - ], - [ - "14377", - "0.008928568132558138", - "1.7681344251364226", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012900577488532338", - "3.5266147335271545", - "0.0", - "0.0", - "0.004956558776583937" - ], - [ - "14378", - "0.008904432210566011", - "1.768090804888681", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012865721816076205", - "3.5265536200100636", - "0.0", - "0.0", - "0.004943142605055819" - ], - [ - "14379", - "0.00888408570230022", - "1.7680528376389297", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012836731552217541", - "3.5265011830552777", - "0.0", - "0.0", - "0.004931439852382897" - ], - [ - "14380", - "0.00886050701802782", - "1.768010149890453", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012802704971056239", - "3.5264414229647536", - "0.0", - "0.0", - "0.004918309064999402" - ], - [ - "14381", - "0.008837041053804796", - "1.7679677438707724", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012768815448647379", - "3.526382008103135", - "0.0", - "0.0", - "0.004905266658962213" - ], - [ - "14382", - "0.009053664299947112", - "1.7683592110031259", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013081659132009376", - "3.5269304855775903", - "0.0", - "0.0", - "0.005025669467884846" - ], - [ - "14383", - "0.009496374020666441", - "1.7691592537429544", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013720989454258892", - "3.5280513748916564", - "0.0", - "0.0", - "0.005271758587073988" - ], - [ - "14384", - "0.00993773474032797", - "1.7699568234319258", - "0.0", - "0.0", - "0.0", - "0.0", - "0.014358354718609738", - "3.529168779589475", - "0.0", - "0.0", - "0.0055171147620462" - ], - [ - "14385", - "0.010371285168973588", - "1.7707402792938052", - "0.0", - "0.0", - "0.0", - "0.0", - "0.014984413542828935", - "3.530266369828386", - "0.0", - "0.0", - "0.00575815679511824" - ], - [ - "14386", - "0.01065506481963633", - "1.771235212680325", - "0.0", - "0.0", - "0.0", - "0.0", - "0.015400059321712243", - "3.530971029130672", - "0.0", - "0.0", - "0.005910070317560415" - ], - [ - "14387", - "0.01063831459449388", - "1.7712049688859963", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01537586447630383", - "3.530928644668999", - "0.0", - "0.0", - "0.005900764712683933" - ], - [ - "14388", - "0.010639235314682307", - "1.771203009875552", - "0.0", - "0.0", - "0.0", - "0.0", - "0.015378383372991297", - "3.530928185495208", - "0.0", - "0.0", - "0.005900087256373317" - ], - [ - "14389", - "0.010617837944667075", - "1.7711643834873623", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01534747321411507", - "3.530874048177617", - "0.0", - "0.0", - "0.005888202675219081" - ], - [ - "14390", - "0.010593233043056751", - "1.771119966913343", - "0.0", - "0.0", - "0.0", - "0.0", - "0.015311929435575937", - "3.53081179541016", - "0.0", - "0.0", - "0.005874536650537568" - ], - [ - "14391", - "0.010568877223017864", - "1.7710760000095365", - "0.0", - "0.0", - "0.0", - "0.0", - "0.015276745378929642", - "3.5307501727383075", - "0.0", - "0.0", - "0.005861009067106085" - ], - [ - "14392", - "0.010689232231036051", - "1.7712932408332611", - "0.0", - "0.0", - "0.0", - "0.0", - "0.015450615128324281", - "3.531054664092793", - "0.0", - "0.0", - "0.00592784933374782" - ], - [ - "14393", - "0.010969857854779828", - "1.7717975283836234", - "0.0", - "0.0", - "0.0", - "0.0", - "0.015856746036794694", - "3.5317628919301916", - "0.0", - "0.0", - "0.006082969672764961" - ], - [ - "14394", - "0.010973422444138573", - "1.7718039624668023", - "0.0", - "0.0", - "0.0", - "0.0", - "0.015861895411623087", - "3.5317719098781843", - "0.0", - "0.0", - "0.006084949476654059" - ], - [ - "14395", - "0.010977350905462523", - "1.7718110532245044", - "0.0", - "0.0", - "0.0", - "0.0", - "0.015867570468111145", - "3.531781848283744", - "0.0", - "0.0", - "0.006087131342813902" - ], - [ - "14396", - "0.010980069436330531", - "1.7718159601731591", - "0.0", - "0.0", - "0.0", - "0.0", - "0.015871497631099185", - "3.5317887258102463", - "0.0", - "0.0", - "0.006088641241561876" - ], - [ - "14397", - "0.01098286379138878", - "1.7718210039849205", - "0.0", - "0.0", - "0.0", - "0.0", - "0.015875534327705852", - "3.5317957951606838", - "0.0", - "0.0", - "0.006090193255071705" - ], - [ - "14398", - "0.010985785650249559", - "1.7718262760884245", - "0.0", - "0.0", - "0.0", - "0.0", - "0.015879755821871615", - "3.531803185649678", - "0.0", - "0.0", - "0.006091815478627505" - ], - [ - "14399", - "0.01098873073085587", - "1.7718315919602172", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01588401025245484", - "3.531810636312539", - "0.0", - "0.0", - "0.006093451209256899" - ], - [ - "14400", - "0.010991798718533275", - "1.7718371295350774", - "0.0", - "0.0", - "0.0", - "0.0", - "0.015888442279226585", - "3.5318183978008464", - "0.0", - "0.0", - "0.006095155157839967" - ], - [ - "14401", - "0.010994924931078265", - "1.7718427723510253", - "0.0", - "0.0", - "0.0", - "0.0", - "0.015892958367908237", - "3.5318263067000824", - "0.0", - "0.0", - "0.006096891494248291" - ], - [ - "14402", - "0.010997677636219833", - "1.7718474022440978", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01589704607356979", - "3.5318330096654975", - "0.0", - "0.0", - "0.006098309198869876" - ], - [ - "14403", - "0.01100158411925622", - "1.771854356790898", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01590272105277835", - "3.5318428180602384", - "0.0", - "0.0", - "0.006100447185734087" - ], - [ - "14404", - "0.011006047200239682", - "1.7718621525596046", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01590925372506719", - "3.531853908627317", - "0.0", - "0.0", - "0.006102840675412175" - ], - [ - "14405", - "0.011002317378571016", - "1.771855377747129", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01590387961826569", - "3.5318444399501674", - "0.0", - "0.0", - "0.006100755138876339" - ], - [ - "14406", - "0.010972478913804498", - "1.7718015212981044", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01586077464896348", - "3.5317689541276347", - "0.0", - "0.0", - "0.006084183178645518" - ], - [ - "14407", - "0.0109428918976375", - "1.771748059017695", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01581805238382291", - "3.5316940582460843", - "0.0", - "0.0", - "0.006067731411452092" - ], - [ - "14408", - "0.010916506761901982", - "1.7716995282978416", - "0.0", - "0.0", - "0.0", - "0.0", - "0.015780233667401913", - "3.5316266091582182", - "0.0", - "0.0", - "0.006052779856402051" - ], - [ - "14409", - "0.011051982579852817", - "1.7719440399564417", - "0.0", - "0.0", - "0.0", - "0.0", - "0.015975947911344903", - "3.531969327985526", - "0.0", - "0.0", - "0.006128017248360731" - ], - [ - "14410", - "0.011042871368294366", - "1.77192759560106", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01596278558001302", - "3.531946279011419", - "0.0", - "0.0", - "0.006122957156575713" - ], - [ - "14411", - "0.011012914515749908", - "1.77187340775551", - "0.0", - "0.0", - "0.0", - "0.0", - "0.015919548390487762", - "3.531870403219707", - "0.0", - "0.0", - "0.006106280641012055" - ], - [ - "14412", - "0.01098229053983023", - "1.7718180942934851", - "0.0", - "0.0", - "0.0", - "0.0", - "0.015875321574836555", - "3.5317929000314097", - "0.0", - "0.0", - "0.006089259504823903" - ], - [ - "14413", - "0.010951851325503192", - "1.7717631566988388", - "0.0", - "0.0", - "0.0", - "0.0", - "0.015831347622789902", - "3.531715896722835", - "0.0", - "0.0", - "0.006072355028216483" - ], - [ - "14414", - "0.010921496410308186", - "1.771708371296637", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01578749530376219", - "3.5316391065075248", - "0.0", - "0.0", - "0.006055497516854182" - ], - [ - "14415", - "0.010891225561159342", - "1.7716537376658128", - "0.0", - "0.0", - "0.0", - "0.0", - "0.015743764282264115", - "3.531562528797173", - "0.0", - "0.0", - "0.006038686840054566" - ], - [ - "14416", - "0.01086103348159696", - "1.7715992459081853", - "0.0", - "0.0", - "0.0", - "0.0", - "0.015700147019036693", - "3.531486149933359", - "0.0", - "0.0", - "0.006021919944157226" - ], - [ - "14417", - "0.010831040882372134", - "1.7715450156768262", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01565685012944648", - "3.5314101995919818", - "0.0", - "0.0", - "0.006005231635297784" - ], - [ - "14418", - "0.010801016618111794", - "1.7714908272377792", - "0.0", - "0.0", - "0.0", - "0.0", - "0.015613474895156477", - "3.5313342452125753", - "0.0", - "0.0", - "0.00598855834106711" - ], - [ - "14419", - "0.010784663648581749", - "1.7714610679868568", - "0.0", - "0.0", - "0.0", - "0.0", - "0.015589930565353937", - "3.5312926870459393", - "0.0", - "0.0", - "0.005979396731809563" - ], - [ - "14420", - "0.010754771765535773", - "1.7714071194818939", - "0.0", - "0.0", - "0.0", - "0.0", - "0.015546746045133095", - "3.531217068039713", - "0.0", - "0.0", - "0.00596279748593845" - ], - [ - "14421", - "0.010724962668157825", - "1.7713533204327319", - "0.0", - "0.0", - "0.0", - "0.0", - "0.015503680980329606", - "3.5311416583046973", - "0.0", - "0.0", - "0.0059462443559860426" - ], - [ - "14422", - "0.01069523927792662", - "1.7712996763221969", - "0.0", - "0.0", - "0.0", - "0.0", - "0.015460739523716654", - "3.531066465395146", - "0.0", - "0.0", - "0.005929739032136587" - ], - [ - "14423", - "0.010665595076852916", - "1.7712461749659654", - "0.0", - "0.0", - "0.0", - "0.0", - "0.015417912397882188", - "3.5309914724993465", - "0.0", - "0.0", - "0.005913277755823644" - ], - [ - "14424", - "0.010636034705086067", - "1.771192823827283", - "0.0", - "0.0", - "0.0", - "0.0", - "0.015375206606510317", - "3.5309166906549296", - "0.0", - "0.0", - "0.005896862803661818" - ], - [ - "14425", - "0.01060655445399912", - "1.7711396184556276", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01533261605687616", - "3.530842112210268", - "0.0", - "0.0", - "0.00588049285112208" - ], - [ - "14426", - "0.010576605139612626", - "1.7710855297654127", - "0.0", - "0.0", - "0.0", - "0.0", - "0.015289359777381844", - "3.5307663186107696", - "0.0", - "0.0", - "0.005863850501843411" - ], - [ - "14427", - "0.01055782419884639", - "1.7710516344132639", - "0.0", - "0.0", - "0.0", - "0.0", - "0.015262226491638236", - "3.530718806901354", - "0.0", - "0.0", - "0.005853421906054544" - ], - [ - "14428", - "0.010539103386956013", - "1.7710178475979943", - "0.0", - "0.0", - "0.0", - "0.0", - "0.015235180018639473", - "3.530671447243464", - "0.0", - "0.0", - "0.005843026755272554" - ], - [ - "14429", - "0.010520471761230816", - "1.7709842217612015", - "0.0", - "0.0", - "0.0", - "0.0", - "0.015208262338931066", - "3.530624313146572", - "0.0", - "0.0", - "0.005832681183530565" - ], - [ - "14430", - "0.010502176565018735", - "1.77095120312016", - "0.0", - "0.0", - "0.0", - "0.0", - "0.015181830654461362", - "3.5305780300864553", - "0.0", - "0.0", - "0.005822522475576108" - ], - [ - "14431", - "0.010485021503036115", - "1.7709202421758692", - "0.0", - "0.0", - "0.0", - "0.0", - "0.015157046110902439", - "3.530534631276708", - "0.0", - "0.0", - "0.005812996895169792" - ], - [ - "14432", - "0.010467930940718817", - "1.7708893976535347", - "0.0", - "0.0", - "0.0", - "0.0", - "0.015132354704910117", - "3.5304913955866963", - "0.0", - "0.0", - "0.005803507176527516" - ], - [ - "14433", - "0.01044848975140893", - "1.7708543108098096", - "0.0", - "0.0", - "0.0", - "0.0", - "0.015104267198283486", - "3.530442213220303", - "0.0", - "0.0", - "0.005792712304534373" - ], - [ - "14434", - "0.01042734876011458", - "1.7708161562390303", - "0.0", - "0.0", - "0.0", - "0.0", - "0.015073723846436436", - "3.5303887306156994", - "0.0", - "0.0", - "0.005780973673792725" - ], - [ - "14435", - "0.010406115658368046", - "1.7707778354531967", - "0.0", - "0.0", - "0.0", - "0.0", - "0.015043047345479036", - "3.530335014910711", - "0.0", - "0.0", - "0.005769183971257056" - ], - [ - "14436", - "0.010382160890471625", - "1.770734602723628", - "0.0", - "0.0", - "0.0", - "0.0", - "0.015008438632505696", - "3.530274413813697", - "0.0", - "0.0", - "0.005755883148437555" - ], - [ - "14437", - "0.010354678667902288", - "1.7706850903680034", - "0.0", - "0.0", - "0.0", - "0.0", - "0.014968705104706737", - "3.5302049555244537", - "0.0", - "0.0", - "0.005740652231097839" - ], - [ - "14438", - "0.010325977662987238", - "1.7706332916349956", - "0.0", - "0.0", - "0.0", - "0.0", - "0.014927239081740297", - "3.5301323468783967", - "0.0", - "0.0", - "0.00572471624423418" - ], - [ - "14439", - "0.0102971767166569", - "1.7705812460338903", - "0.0", - "0.0", - "0.0", - "0.0", - "0.014885650363419474", - "3.5300594339558535", - "0.0", - "0.0", - "0.005708703069894329" - ], - [ - "14440", - "0.010268607700991283", - "1.7705296839552995", - "0.0", - "0.0", - "0.0", - "0.0", - "0.014844375304568872", - "3.5299871576682214", - "0.0", - "0.0", - "0.005692840097413695" - ], - [ - "14441", - "0.010240244732895414", - "1.7704784956127348", - "0.0", - "0.0", - "0.0", - "0.0", - "0.014803397206310335", - "3.52991540391484", - "0.0", - "0.0", - "0.005677092259480492" - ], - [ - "14442", - "0.010211971575040873", - "1.7704274693968085", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01476254873376393", - "3.5298438772266527", - "0.0", - "0.0", - "0.005661394416317815" - ], - [ - "14443", - "0.010189032909195735", - "1.7703848730073464", - "0.0", - "0.0", - "0.0", - "0.0", - "0.014729800223836974", - "3.529784922426952", - "0.0", - "0.0", - "0.005648265594554496" - ], - [ - "14444", - "0.010161029963766909", - "1.7703343378108687", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01468934083729612", - "3.5297140816030184", - "0.0", - "0.0", - "0.005632719090237697" - ], - [ - "14445", - "0.010132998904565288", - "1.770283640486891", - "0.0", - "0.0", - "0.0", - "0.0", - "0.014648877255988483", - "3.5296430835921253", - "0.0", - "0.0", - "0.0056171205531420935" - ], - [ - "14446", - "0.010105459367090978", - "1.7702339380661074", - "0.0", - "0.0", - "0.0", - "0.0", - "0.014609088340180808", - "3.5295734120450626", - "0.0", - "0.0", - "0.005601830394001148" - ], - [ - "14447", - "0.010078434670911242", - "1.7701851686768233", - "0.0", - "0.0", - "0.0", - "0.0", - "0.014570041888644704", - "3.5295050458025057", - "0.0", - "0.0", - "0.005586827453177779" - ], - [ - "14448", - "0.010051629420096268", - "1.7701367963845203", - "0.0", - "0.0", - "0.0", - "0.0", - "0.014531312041794161", - "3.5294372353848478", - "0.0", - "0.0", - "0.0055719467983983756" - ], - [ - "14449", - "0.010025681210522101", - "1.7700899697155814", - "0.0", - "0.0", - "0.0", - "0.0", - "0.014493820721305504", - "3.5293715921606967", - "0.0", - "0.0", - "0.0055575416997386985" - ], - [ - "14450", - "0.009999940760091627", - "1.7700435180069551", - "0.0", - "0.0", - "0.0", - "0.0", - "0.014456629474101776", - "3.529306474404687", - "0.0", - "0.0", - "0.005543252046081479" - ], - [ - "14451", - "0.00997461212169768", - "1.7699978094951747", - "0.0", - "0.0", - "0.0", - "0.0", - "0.014420033131121026", - "3.52924239833055", - "0.0", - "0.0", - "0.005529191112274337" - ], - [ - "14452", - "0.009946963848199472", - "1.7699479149659312", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01438008512076178", - "3.529172453944158", - "0.0", - "0.0", - "0.0055138425756371635" - ], - [ - "14453", - "0.009919392155547909", - "1.769898158674561", - "0.0", - "0.0", - "0.0", - "0.0", - "0.014340247635857945", - "3.5291027031580904", - "0.0", - "0.0", - "0.005498536675237874" - ], - [ - "14454", - "0.009891884618963852", - "1.769848512987258", - "0.0", - "0.0", - "0.0", - "0.0", - "0.014300504434522068", - "3.529033110522073", - "0.0", - "0.0", - "0.005483264803405635" - ], - [ - "14455", - "0.009864465487164012", - "1.7697990321007926", - "0.0", - "0.0", - "0.0", - "0.0", - "0.014260887130665334", - "3.528963745430962", - "0.0", - "0.0", - "0.005468043843662691" - ], - [ - "14456", - "0.009837122302450887", - "1.7697496883075103", - "0.0", - "0.0", - "0.0", - "0.0", - "0.014221379439628049", - "3.528894572340158", - "0.0", - "0.0", - "0.005452865165273727" - ], - [ - "14457", - "0.009809854854767016", - "1.7697004812280237", - "0.0", - "0.0", - "0.0", - "0.0", - "0.014181981058908473", - "3.528825590719343", - "0.0", - "0.0", - "0.005437728650625558" - ], - [ - "14458", - "0.009782662934634243", - "1.7696514104839922", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01414269168683544", - "3.528756800039657", - "0.0", - "0.0", - "0.005422634182433045" - ], - [ - "14459", - "0.009755546333152143", - "1.7696024756981197", - "0.0", - "0.0", - "0.0", - "0.0", - "0.014103511022566104", - "3.5286881997736956", - "0.0", - "0.0", - "0.005407581643738182" - ], - [ - "14460", - "0.009728504841996433", - "1.7695536764941522", - "0.0", - "0.0", - "0.0", - "0.0", - "0.014064438766083692", - "3.528619789395504", - "0.0", - "0.0", - "0.005392570917909175" - ], - [ - "14461", - "0.009701538253417385", - "1.7695050124968748", - "0.0", - "0.0", - "0.0", - "0.0", - "0.014025474618195246", - "3.5285515683805744", - "0.0", - "0.0", - "0.005377601888639525" - ], - [ - "14462", - "0.009674628569199597", - "1.7694564500392929", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013986592963382687", - "3.528483490281792", - "0.0", - "0.0", - "0.005362664175016508" - ], - [ - "14463", - "0.00964776708269099", - "1.769407941186676", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013947791789778646", - "3.5284155082216406", - "0.0", - "0.0", - "0.0053477423756033305" - ], - [ - "14464", - "0.009621097018295385", - "1.7693597543832094", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013909274771761751", - "3.5283479922348424", - "0.0", - "0.0", - "0.005332919264829021" - ], - [ - "14465", - "0.009594515093635072", - "1.769311784955332", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013870865879121931", - "3.52828074405548", - "0.0", - "0.0", - "0.005318164308148214" - ], - [ - "14466", - "0.009569179417596111", - "1.7692660645265808", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013834257615788239", - "3.5282166485781947", - "0.0", - "0.0", - "0.005304101219403982" - ], - [ - "14467", - "0.009543917492216723", - "1.7692204772199112", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013797755813240808", - "3.5281527395671377", - "0.0", - "0.0", - "0.005290079171192637" - ], - [ - "14468", - "0.009518841427524783", - "1.7691751586019442", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01376154435327681", - "3.5280892491655274", - "0.0", - "0.0", - "0.005276138501772757" - ], - [ - "14469", - "0.009493873344462885", - "1.769130007583076", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013725497769084749", - "3.5280260107783534", - "0.0", - "0.0", - "0.005262248919841022" - ], - [ - "14470", - "0.00946905216389235", - "1.7690852161520467", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013689632373234673", - "3.5279632167834323", - "0.0", - "0.0", - "0.005248471954550026" - ], - [ - "14471", - "0.009444335830540189", - "1.769040613955874", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013653918377150577", - "3.5279006879295904", - "0.0", - "0.0", - "0.0052347532839298015" - ], - [ - "14472", - "0.00941955656700163", - "1.7689957508800105", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013618161670006493", - "3.527837886105214", - "0.0", - "0.0", - "0.005220951463996768" - ], - [ - "14473", - "0.009395128253456526", - "1.7689516688761728", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013582863528741041", - "3.5277760859827008", - "0.0", - "0.0", - "0.00520739297817201" - ], - [ - "14474", - "0.009370916484874595", - "1.7689079776676437", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01354787819253792", - "3.5277148335847097", - "0.0", - "0.0", - "0.005193954777211269" - ], - [ - "14475", - "0.00934677565208855", - "1.7688644144957", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013512995261872185", - "3.5276537605421856", - "0.0", - "0.0", - "0.005180556042304912" - ], - [ - "14476", - "0.009322397100775705", - "1.768820281556751", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013477814915174701", - "3.527591977369192", - "0.0", - "0.0", - "0.005166979286376709" - ], - [ - "14477", - "0.009298149855308826", - "1.7687762083379508", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013442882327618248", - "3.527530389531605", - "0.0", - "0.0", - "0.0051534173829994034" - ], - [ - "14478", - "0.009274262350249288", - "1.7687331035700842", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013408364781443399", - "3.5274699579735462", - "0.0", - "0.0", - "0.005140159919055177" - ], - [ - "14479", - "0.0092504411483278", - "1.7686901184746173", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013373942951348746", - "3.527409694052314", - "0.0", - "0.0", - "0.005126939345306853" - ], - [ - "14480", - "0.00922669408347465", - "1.768647267187535", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013339628158239802", - "3.5273496175874057", - "0.0", - "0.0", - "0.005113760008709498" - ], - [ - "14481", - "0.009203051129775113", - "1.7686046037963834", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01330546371605719", - "3.5272898044098118", - "0.0", - "0.0", - "0.005100638543493037" - ], - [ - "14482", - "0.009179522127709675", - "1.7685621460577818", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013271463845704325", - "3.527230279415845", - "0.0", - "0.0", - "0.005087580409715024" - ], - [ - "14483", - "0.009156279619041436", - "1.7685202053200877", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013237877875706404", - "3.527171479113838", - "0.0", - "0.0", - "0.0050746813623764675" - ], - [ - "14484", - "0.009133931191824419", - "1.768479743683328", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013205627818690963", - "3.52711483702548", - "0.0", - "0.0", - "0.005062234564957876" - ], - [ - "14485", - "0.009111468627316977", - "1.7684385664844293", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01317337983085788", - "3.52705751287729", - "0.0", - "0.0", - "0.005049557423776074" - ], - [ - "14486", - "0.009086432062655723", - "1.7683933818353657", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013137203306875423", - "3.526994168422481", - "0.0", - "0.0", - "0.005035660818436022" - ], - [ - "14487", - "0.009061244093604292", - "1.76834793283434", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013100805003378525", - "3.5269304476302383", - "0.0", - "0.0", - "0.0050216831838300596" - ], - [ - "14488", - "0.009036125899645694", - "1.7683026097673586", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013064507426995284", - "3.5268669032452054", - "0.0", - "0.0", - "0.005007744372296104" - ], - [ - "14489", - "0.009011077287749312", - "1.7682574122858508", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013028310299633071", - "3.526803534779967", - "0.0", - "0.0", - "0.004993844275865551" - ], - [ - "14490", - "0.008995192236410755", - "1.768225056379412", - "0.0", - "0.0", - "0.0", - "0.0", - "0.013006565611000009", - "3.5267604977526132", - "0.0", - "0.0", - "0.004983818861821501" - ], - [ - "14491", - "0.008969992182181858", - "1.7681793275887436", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012970234035532872", - "3.5266965466610665", - "0.0", - "0.0", - "0.004969750328830842" - ], - [ - "14492", - "0.00894512688568386", - "1.768134471878507", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012934297957612218", - "3.526633650063916", - "0.0", - "0.0", - "0.0049559558137555046" - ], - [ - "14493", - "0.008919511838523467", - "1.7680875488002996", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012897512456155195", - "3.5265683047912986", - "0.0", - "0.0", - "0.004941511220891738" - ], - [ - "14494", - "0.008894786402924551", - "1.7680429474309607", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012861777657954153", - "3.526505763274444", - "0.0", - "0.0", - "0.0049277951478949485" - ], - [ - "14495", - "0.008870129462088061", - "1.7679984696484006", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012826141753950082", - "3.5264433949048106", - "0.0", - "0.0", - "0.004914117170226042" - ], - [ - "14496", - "0.008845539671164648", - "1.7679541129501832", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012790602826270427", - "3.526381196222659", - "0.0", - "0.0", - "0.0049004765160588675" - ], - [ - "14497", - "0.008821019155096857", - "1.76790988132187", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01275516389681576", - "3.526319172721744", - "0.0", - "0.0", - "0.004886874413377953" - ], - [ - "14498", - "0.008796566566868027", - "1.7678657722569067", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01271982304464471", - "3.5262573209366748", - "0.0", - "0.0", - "0.004873310089091345" - ], - [ - "14499", - "0.008772181718548556", - "1.767821785416038", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012684579998952436", - "3.526195640392958", - "0.0", - "0.0", - "0.004859783438144676" - ], - [ - "14500", - "0.00874786425700492", - "1.767777919967126", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012649434314010357", - "3.5261341300477027", - "0.0", - "0.0", - "0.004846294199999485" - ], - [ - "14501", - "0.008728054321109914", - "1.767741153266946", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0126211413957264", - "3.526083223958758", - "0.0", - "0.0", - "0.004834967246493428" - ], - [ - "14502", - "0.008703859298887078", - "1.7676975117838483", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012586171496511353", - "3.5260220254813857", - "0.0", - "0.0", - "0.004821547101262801" - ], - [ - "14503", - "0.00868052121171917", - "1.7676551234282394", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012552535910612063", - "3.525962768392789", - "0.0", - "0.0", - "0.004808506512826277" - ], - [ - "14504", - "0.008656451942867311", - "1.7676117092481192", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012517747443852655", - "3.5259018881156248", - "0.0", - "0.0", - "0.004795156441881965" - ], - [ - "14505", - "0.00863245528845231", - "1.7675684264645029", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01248306370856794", - "3.525841191709115", - "0.0", - "0.0", - "0.004781846868336679" - ], - [ - "14506", - "0.008608488051129957", - "1.767525176278439", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012448429110533555", - "3.5257805537778353", - "0.0", - "0.0", - "0.004768546991726358" - ], - [ - "14507", - "0.008584592006008286", - "1.767482072955371", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012413891282895455", - "3.525720110052236", - "0.0", - "0.0", - "0.004755292729121119" - ], - [ - "14508", - "0.008561073613189482", - "1.767439652961298", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012379898512580041", - "3.525660623099898", - "0.0", - "0.0", - "0.004742248713798925" - ], - [ - "14509", - "0.008538117798400968", - "1.7673982477136834", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012346718788806993", - "3.5256025590282", - "0.0", - "0.0", - "0.004729516807994941" - ], - [ - "14510", - "0.008515435238123918", - "1.7673572147884566", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012313973429231932", - "3.5255450928781777", - "0.0", - "0.0", - "0.004716897047015904" - ], - [ - "14511", - "0.008493229679358704", - "1.7673170249883918", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012281923089417947", - "3.5254888198206427", - "0.0", - "0.0", - "0.004704536269299462" - ], - [ - "14512", - "0.008524253648932972", - "1.7673592829086322", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012331248182334352", - "3.5255566932252065", - "0.0", - "0.0", - "0.004717259115531594" - ], - [ - "14513", - "0.008501474605287924", - "1.7673181576087467", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012298336509439449", - "3.5254990458513875", - "0.0", - "0.0", - "0.004704612701136399" - ], - [ - "14514", - "0.008478916647840812", - "1.7672775070596956", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012265719469670146", - "3.525442016437563", - "0.0", - "0.0", - "0.0046921138260114775" - ], - [ - "14515", - "0.008456389796286967", - "1.7672368956646765", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012233152859387518", - "3.525385052463374", - "0.0", - "0.0", - "0.0046796267331864145" - ], - [ - "14516", - "0.008433989780590406", - "1.7671965298325847", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01220076401254521", - "3.525328422207208", - "0.0", - "0.0", - "0.004667215548635602" - ], - [ - "14517", - "0.008411658581239064", - "1.7671562880371205", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01216847458813564", - "3.5252719658418763", - "0.0", - "0.0", - "0.0046548425743424895" - ], - [ - "14518", - "0.008389706529506838", - "1.7671167295079868", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0121367333069024", - "3.525216467930404", - "0.0", - "0.0", - "0.004642679752111275" - ], - [ - "14519", - "0.008367883383745915", - "1.7670774032982208", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012105178337945032", - "3.5251612958291805", - "0.0", - "0.0", - "0.004630588429546797" - ], - [ - "14520", - "0.008346121039070165", - "1.7670381866796765", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01207371120666345", - "3.525106277360174", - "0.0", - "0.0", - "0.00461853087147688" - ], - [ - "14521", - "0.00832504275496414", - "1.767000202789683", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012043233115269912", - "3.5250529882209265", - "0.0", - "0.0", - "0.0046068523946583674" - ], - [ - "14522", - "0.008304673158503648", - "1.7669634960048568", - "0.0", - "0.0", - "0.0", - "0.0", - "0.012013779680374457", - "3.5250014906800606", - "0.0", - "0.0", - "0.00459556663663284" - ], - [ - "14523", - "0.008284665600643438", - "1.7669274416487362", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011984849669848426", - "3.52495090835999", - "0.0", - "0.0", - "0.004584481531438451" - ], - [ - "14524", - "0.008265174037140983", - "1.7668923171538722", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01195666570092265", - "3.5249016304901324", - "0.0", - "0.0", - "0.004573682373359317" - ], - [ - "14525", - "0.0082458097985096", - "1.766857422122939", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011928665777183956", - "3.5248526744535353", - "0.0", - "0.0", - "0.004562953819835245" - ], - [ - "14526", - "0.00822654506813285", - "1.7668227064290776", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01190080967797473", - "3.5248039699262725", - "0.0", - "0.0", - "0.004552280458290972" - ], - [ - "14527", - "0.008208536039109844", - "1.7667902535692108", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011874769222686701", - "3.524758439968504", - "0.0", - "0.0", - "0.004542302855532989" - ], - [ - "14528", - "0.008191845406880637", - "1.7667601765188903", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011850635078122701", - "3.524716243097189", - "0.0", - "0.0", - "0.004533055735638572" - ], - [ - "14529", - "0.008175875238269745", - "1.7667313977807688", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011827542659563383", - "3.5246758676403784", - "0.0", - "0.0", - "0.004524207816976109" - ], - [ - "14530", - "0.008160020159108406", - "1.7667028264507827", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011804616616132486", - "3.5246357831068575", - "0.0", - "0.0", - "0.004515423702084324" - ], - [ - "14531", - "0.008144487111004997", - "1.7666748354433919", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01178215618184321", - "3.5245965126845626", - "0.0", - "0.0", - "0.004506818040166785" - ], - [ - "14532", - "0.008129054298443142", - "1.7666470250760586", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011759840647029425", - "3.524557495635057", - "0.0", - "0.0", - "0.0044982679498568575" - ], - [ - "14533", - "0.008113671709255421", - "1.7666191102707722", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011737661438577884", - "3.5245184544800416", - "0.0", - "0.0", - "0.004489681979932958" - ], - [ - "14534", - "0.008096087919008213", - "1.76658742423136", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011712235404297257", - "3.524473999583529", - "0.0", - "0.0", - "0.004479940433719171" - ], - [ - "14535", - "0.008079108976551163", - "1.7665568281449386", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011687683927878506", - "3.5244310737973805", - "0.0", - "0.0", - "0.004470534025223819" - ], - [ - "14536", - "0.008062827880306692", - "1.7665274895930834", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011664141490015524", - "3.524389912243861", - "0.0", - "0.0", - "0.004461514270597862" - ], - [ - "14537", - "0.008048882262061146", - "1.7665018591764259", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01164413971985355", - "3.5243542674430484", - "0.0", - "0.0", - "0.004453624804268742" - ], - [ - "14538", - "0.008032792776764866", - "1.7664728669305725", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011620873945372192", - "3.5243135910035845", - "0.0", - "0.0", - "0.004444711608157542" - ], - [ - "14539", - "0.008016873487325406", - "1.7664441813805412", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011597854236690283", - "3.5242733447988037", - "0.0", - "0.0", - "0.004435892737960531" - ], - [ - "14540", - "0.00800139144853334", - "1.766416283741363", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011575466764360396", - "3.5242342039832986", - "0.0", - "0.0", - "0.004427316132706285" - ], - [ - "14541", - "0.007985897115160037", - "1.7663879849097481", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011553185392708411", - "3.524194738320568", - "0.0", - "0.0", - "0.004418608837611661" - ], - [ - "14542", - "0.007971559407297936", - "1.7663621495282371", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011532452511121824", - "3.5241584906346373", - "0.0", - "0.0", - "0.004410666303474049" - ], - [ - "14543", - "0.00795595217202425", - "1.766333955776709", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011509906949626092", - "3.5241189785062015", - "0.0", - "0.0", - "0.004401997394422409" - ], - [ - "14544", - "0.007937413724990678", - "1.7663003851784402", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01148315375816628", - "3.5240719821412956", - "0.0", - "0.0", - "0.004391673691815077" - ], - [ - "14545", - "0.007915393349969718", - "1.7662606486593253", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011451330101972789", - "3.5240162667381125", - "0.0", - "0.0", - "0.004379456597966648" - ], - [ - "14546", - "0.00789345013174075", - "1.7662211103699093", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011419598596230542", - "3.5239607921737304", - "0.0", - "0.0", - "0.004367301667250957" - ], - [ - "14547", - "0.007871567707869445", - "1.7661816816480465", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011387954925639298", - "3.523905471220682", - "0.0", - "0.0", - "0.004355180490099593" - ], - [ - "14548", - "0.0078498553798873", - "1.7661425302636848", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011356566686262393", - "3.5238505575955243", - "0.0", - "0.0", - "0.004343144073512207" - ], - [ - "14549", - "0.00782809373794352", - "1.7661033193030926", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011325097495188058", - "3.5237955418902924", - "0.0", - "0.0", - "0.004331089980698982" - ], - [ - "14550", - "0.007806392387897368", - "1.766064217003848", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011293715414666044", - "3.523740678527995", - "0.0", - "0.0", - "0.004319069361128693" - ], - [ - "14551", - "0.007784751162907526", - "1.766025223065122", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011262420204064939", - "3.523685967087515", - "0.0", - "0.0", - "0.004307082121750113" - ], - [ - "14552", - "0.007763169896593257", - "1.7659863371869173", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011231211623415291", - "3.5236314071488932", - "0.0", - "0.0", - "0.004295128169771223" - ], - [ - "14553", - "0.007741601251095581", - "1.7659474564251463", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011200026986873014", - "3.5235768653584096", - "0.0", - "0.0", - "0.004283175515318147" - ], - [ - "14554", - "0.007718771265717285", - "1.7659055907967651", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011167251015896459", - "3.5235185826599724", - "0.0", - "0.0", - "0.00427029151553811" - ], - [ - "14555", - "0.007696839524690996", - "1.7658660287763983", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011135549993788293", - "3.523463101759527", - "0.0", - "0.0", - "0.0042581290555936974" - ], - [ - "14556", - "0.007675501845675734", - "1.7658275840915034", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011104692641587248", - "3.52340915900779", - "0.0", - "0.0", - "0.004246311049764219" - ], - [ - "14557", - "0.0076543392722952215", - "1.7657894623241381", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011074086025396463", - "3.523355664591691", - "0.0", - "0.0", - "0.004234592519193981" - ], - [ - "14558", - "0.0076331193452739655", - "1.7657512298238094", - "0.0", - "0.0", - "0.0", - "0.0", - "0.011043398819766938", - "3.5233020193521085", - "0.0", - "0.0", - "0.004222839870780993" - ], - [ - "14559", - "0.00761195821095839", - "1.7657131032757467", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01101279656431226", - "3.5232485226667434", - "0.0", - "0.0", - "0.004211119857604519" - ], - [ - "14560", - "0.0075908557066466575", - "1.7656750823866083", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010982279024345397", - "3.5231951741249175", - "0.0", - "0.0", - "0.004199432388947919" - ], - [ - "14561", - "0.00756981167008614", - "1.7656371668638626", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010951845965825047", - "3.523141973317082", - "0.0", - "0.0", - "0.004187777374347236" - ], - [ - "14562", - "0.007548825939472182", - "1.7655993564157868", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010921497155353883", - "3.5230889198348176", - "0.0", - "0.0", - "0.00417615472359048" - ], - [ - "14563", - "0.0075278983534468645", - "1.7655616507514635", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010891232360176792", - "3.5230360132708305", - "0.0", - "0.0", - "0.004164564346716937" - ], - [ - "14564", - "0.007507028751097787", - "1.7655240495807802", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01086105134817912", - "3.522983253218949", - "0.0", - "0.0", - "0.004153006154016456" - ], - [ - "14565", - "0.007486216971956837", - "1.7654865526144254", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010830953887884921", - "3.5229306392741195", - "0.0", - "0.0", - "0.004141480056028752" - ], - [ - "14566", - "0.007465462855998967", - "1.7654491595638877", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010800939748455226", - "3.5228781710324064", - "0.0", - "0.0", - "0.004129985963542708" - ], - [ - "14567", - "0.0074447662436409835", - "1.7654118701414523", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01077100869968629", - "3.5228258480909855", - "0.0", - "0.0", - "0.004118523787595677" - ], - [ - "14568", - "0.007424126975740327", - "1.7653746840602003", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010741160512007866", - "3.5227736700481436", - "0.0", - "0.0", - "0.004107093439472786" - ], - [ - "14569", - "0.007403544893593862", - "1.765337601034005", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010711394956481475", - "3.522721636503274", - "0.0", - "0.0", - "0.004095694830706249" - ], - [ - "14570", - "0.007381389744933256", - "1.7652975798166026", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010679388360737485", - "3.522665545381611", - "0.0", - "0.0", - "0.004083391129129027" - ], - [ - "14571", - "0.007360926078948454", - "1.7652607104765239", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010649793820977993", - "3.5226138112764236", - "0.0", - "0.0", - "0.004072058336918914" - ], - [ - "14572", - "0.0073421906758229395", - "1.76522695496326", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010622698634057855", - "3.522566446321814", - "0.0", - "0.0", - "0.004061682717588023" - ], - [ - "14573", - "0.007321878891146976", - "1.7651903620704834", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010593322713540142", - "3.5225150981905355", - "0.0", - "0.0", - "0.00405043506875381" - ], - [ - "14574", - "0.007301580115427761", - "1.7651537898695258", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010563966444256898", - "3.522463780729996", - "0.0", - "0.0", - "0.004039193786598626" - ], - [ - "14575", - "0.00728133758310312", - "1.7651173190238918", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010534691447925307", - "3.5224126053880402", - "0.0", - "0.0", - "0.004027983718280932" - ], - [ - "14576", - "0.007261151138510394", - "1.7650809492529438", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010505497499977852", - "3.5223615717717243", - "0.0", - "0.0", - "0.004016804777042936" - ], - [ - "14577", - "0.007240982351657865", - "1.765044591593861", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010476335467864669", - "3.5223105674342623", - "0.0", - "0.0", - "0.0040056292354510616" - ], - [ - "14578", - "0.0072209077237635555", - "1.7650084233799264", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010447303081495166", - "3.5222598164060144", - "0.0", - "0.0", - "0.003994512366031946" - ], - [ - "14579", - "0.0072008887188903465", - "1.764972355402723", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010418351073129701", - "3.5222092059301895", - "0.0", - "0.0", - "0.0039834263646509925" - ], - [ - "14580", - "0.00718092518308877", - "1.7649363873847048", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010389479220664126", - "3.522158735618158", - "0.0", - "0.0", - "0.003972371145513414" - ], - [ - "14581", - "0.00716101696283451", - "1.764900519049093", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010360687302605677", - "3.5221084050823626", - "0.0", - "0.0", - "0.003961346623063342" - ], - [ - "14582", - "0.007141050491229591", - "1.764864420489023", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010331852015841513", - "3.5220578300647913", - "0.0", - "0.0", - "0.0039502489666176695" - ], - [ - "14583", - "0.007121252760278196", - "1.7648287516087462", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010303219649305643", - "3.5220077789922652", - "0.0", - "0.0", - "0.003939285871250748" - ], - [ - "14584", - "0.007101590777906097", - "1.7647933273226446", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01027478354534462", - "3.5219580710418352", - "0.0", - "0.0", - "0.003928398010467574" - ], - [ - "14585", - "0.007083956269439275", - "1.7647615558808687", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010249279618096279", - "3.5219134887423493", - "0.0", - "0.0", - "0.003918632920782272" - ], - [ - "14586", - "0.007066571778481114", - "1.764730234902637", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010224137229423174", - "3.5218695384667575", - "0.0", - "0.0", - "0.003909006327539055" - ], - [ - "14587", - "0.007046980418032892", - "1.764694937910648", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010195803088111213", - "3.521820008872952", - "0.0", - "0.0", - "0.003898157747954571" - ], - [ - "14588", - "0.007027443343005351", - "1.7646597387429888", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010167547395280523", - "3.5217706164541416", - "0.0", - "0.0", - "0.0038873392907301796" - ], - [ - "14589", - "0.00700814615909457", - "1.76462497179757", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01013963858644795", - "3.521721830448591", - "0.0", - "0.0", - "0.0038766537317411883" - ], - [ - "14590", - "0.006990455451801184", - "1.7645927077507966", - "0.0", - "0.0", - "0.0", - "0.0", - "0.01011418100748356", - "3.5216768022533684", - "0.0", - "0.0", - "0.0038667298961188074" - ], - [ - "14591", - "0.006971147765128455", - "1.7645579065656027", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010086261908697745", - "3.521627977662731", - "0.0", - "0.0", - "0.0038560336215591653" - ], - [ - "14592", - "0.006951820824245031", - "1.76452308719108", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010058309518007121", - "3.5215791171100337", - "0.0", - "0.0", - "0.003845332130482941" - ], - [ - "14593", - "0.006932547436843747", - "1.7644883643182656", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010030434520739538", - "3.521530391882147", - "0.0", - "0.0", - "0.003834660352947955" - ], - [ - "14594", - "0.006913327454691181", - "1.7644537376799376", - "0.0", - "0.0", - "0.0", - "0.0", - "0.010002636703007974", - "3.5214818016048524", - "0.0", - "0.0", - "0.003824018206374389" - ], - [ - "14595", - "0.006894160729963343", - "1.7644192070096134", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009974915851514327", - "3.5214333459049634", - "0.0", - "0.0", - "0.0038134056084123597" - ], - [ - "14596", - "0.006875047115244542", - "1.7643847720415466", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00994727175354781", - "3.5213850244103218", - "0.0", - "0.0", - "0.003802822476941273" - ], - [ - "14597", - "0.006855986463526265", - "1.7643504325107255", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009919704196983346", - "3.521336836749796", - "0.0", - "0.0", - "0.003792268730069183" - ], - [ - "14598", - "0.006836978628206059", - "1.7643161881528713", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009892212970279961", - "3.521288782553277", - "0.0", - "0.0", - "0.003781744286132156" - ], - [ - "14599", - "0.006818023689573542", - "1.764282039126906", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009864798185335307", - "3.521240862035459", - "0.0", - "0.0", - "0.0037712491938117773" - ], - [ - "14600", - "0.006799121048232869", - "1.764247984323897", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009837458985165236", - "3.5211930736590893", - "0.0", - "0.0", - "0.0037607831113005024" - ], - [ - "14601", - "0.0067802707859098464", - "1.764214023905396", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009810195483724504", - "3.521145417642516", - "0.0", - "0.0", - "0.0037503460880951903" - ], - [ - "14602", - "0.006761472757615113", - "1.7641801576100347", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009783007471792636", - "3.521097893619695", - "0.0", - "0.0", - "0.0037399380434375907" - ], - [ - "14603", - "0.006742726818759812", - "1.7641463851771664", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009755894740725326", - "3.521050501225592", - "0.0", - "0.0", - "0.0037295588967942972" - ], - [ - "14604", - "0.0067240328251544895", - "1.7641127063468656", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009728857082452863", - "3.521003240096179", - "0.0", - "0.0", - "0.0037192085678561153" - ], - [ - "14605", - "0.006705390633007995", - "1.7640791208599251", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00970189428947855", - "3.520956109868431", - "0.0", - "0.0", - "0.003708886976537441" - ], - [ - "14606", - "0.00668680009892639", - "1.7640456284578545", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009675006154877151", - "3.520909110180326", - "0.0", - "0.0", - "0.003698594042975631" - ], - [ - "14607", - "0.006668261079911849", - "1.764012228882878", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009648192472293314", - "3.5208622406708368", - "0.0", - "0.0", - "0.003688329687530383" - ], - [ - "14608", - "0.006649773433361572", - "1.763978921877932", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009621453035940027", - "3.520815500979935", - "0.0", - "0.0", - "0.003678093830783115" - ], - [ - "14609", - "0.006631337017066699", - "1.7639457071866647", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009594787640597055", - "3.5207688907485837", - "0.0", - "0.0", - "0.0036678863935363424" - ], - [ - "14610", - "0.006612951689211228", - "1.7639125845534316", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00956819608160939", - "3.5207224096187355", - "0.0", - "0.0", - "0.0036577072968130638" - ], - [ - "14611", - "0.0065946173083709266", - "1.7638795537232959", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00954167815488571", - "3.520676057233331", - "0.0", - "0.0", - "0.0036475564618561438" - ], - [ - "14612", - "0.006576333733512265", - "1.7638466144420257", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009515233656896833", - "3.5206298332362955", - "0.0", - "0.0", - "0.003637433810127698" - ], - [ - "14613", - "0.006559684672057542", - "1.7638162467661946", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009491275075313934", - "3.5205874521301563", - "0.0", - "0.0", - "0.0036280942688011503" - ], - [ - "14614", - "0.006541572322599919", - "1.7637836170220995", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009465077790484716", - "3.520541661706726", - "0.0", - "0.0", - "0.0036180668547151212" - ], - [ - "14615", - "0.006524534806525578", - "1.7637529236269265", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009440435071153039", - "3.5204985885531883", - "0.0", - "0.0", - "0.003608634541898117" - ], - [ - "14616", - "0.006507854694867941", - "1.7637228741173554", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009416309248584187", - "3.5204564189181125", - "0.0", - "0.0", - "0.0035994001411516945" - ], - [ - "14617", - "0.006490440794402736", - "1.7636910711768559", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009391262984155574", - "3.520412059388354", - "0.0", - "0.0", - "0.0035896186046498984" - ], - [ - "14618", - "0.006472445919891338", - "1.7636586543260544", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009365235019076185", - "3.5203665666665174", - "0.0", - "0.0", - "0.0035796568207064916" - ], - [ - "14619", - "0.006454500911415453", - "1.7636263273236463", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009339279128235279", - "3.520321199955166", - "0.0", - "0.0", - "0.0035697226945956267" - ], - [ - "14620", - "0.006436427068949511", - "1.7635937568932445", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009313140546844035", - "3.5202754986723006", - "0.0", - "0.0", - "0.003559713591054987" - ], - [ - "14621", - "0.006419322577009238", - "1.7635629441005114", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00928840028094994", - "3.5202322567862767", - "0.0", - "0.0", - "0.003550244873068536" - ], - [ - "14622", - "0.006402709227394871", - "1.7635330160884137", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00926437036716338", - "3.520190256509529", - "0.0", - "0.0", - "0.0035410480876263595" - ], - [ - "14623", - "0.006386388325855476", - "1.763503614919418", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009240763412946324", - "3.520148995525689", - "0.0", - "0.0", - "0.0035320132387646284" - ], - [ - "14624", - "0.00637040596175957", - "1.7634748236200548", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009217646085608933", - "3.5201085903562617", - "0.0", - "0.0", - "0.0035231658379102086" - ], - [ - "14625", - "0.006354621276544974", - "1.7634463884411264", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009194814645583275", - "3.5200686848975726", - "0.0", - "0.0", - "0.003514427907506673" - ], - [ - "14626", - "0.00633918799852771", - "1.7634186050554614", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00917248533132896", - "3.5200296823331607", - "0.0", - "0.0", - "0.0035058906657264594" - ], - [ - "14627", - "0.006321559129513947", - "1.763386803264181", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00914700083541189", - "3.5199850799860832", - "0.0", - "0.0", - "0.0034961174236160047" - ], - [ - "14628", - "0.006304032253309433", - "1.7633552297487805", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009121649273181412", - "3.519940769977777", - "0.0", - "0.0", - "0.0034864152334374548" - ], - [ - "14629", - "0.0062865539475236674", - "1.7633237437461826", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009096367915310263", - "3.519896582708555", - "0.0", - "0.0", - "0.0034767399797370722" - ], - [ - "14630", - "0.006269124077689828", - "1.7632923450140185", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009071156567713299", - "3.519852517838905", - "0.0", - "0.0", - "0.0034670915876663564" - ], - [ - "14631", - "0.006258827614294393", - "1.7632737966389476", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009056263276759216", - "3.5198264870796407", - "0.0", - "0.0", - "0.0034613919518295694" - ], - [ - "14632", - "0.006251894506838711", - "1.7632613071229248", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00904623489296291", - "3.519808959298493", - "0.0", - "0.0", - "0.0034575541207145116" - ], - [ - "14633", - "0.006245291210917126", - "1.7632494117420812", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009036683557332866", - "3.519792265315334", - "0.0", - "0.0", - "0.003453898864501386" - ], - [ - "14634", - "0.006238716987562739", - "1.7632375512268457", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009027179984885092", - "3.519775631240313", - "0.0", - "0.0", - "0.0034502539902403874" - ], - [ - "14635", - "0.006232543821026751", - "1.7632264307159062", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009018250791106276", - "3.519760024679284", - "0.0", - "0.0", - "0.0034468368509472246" - ], - [ - "14636", - "0.006226986261043497", - "1.7632163969866226", - "0.0", - "0.0", - "0.0", - "0.0", - "0.009010219284962616", - "3.5197459572295813", - "0.0", - "0.0", - "0.0034437532371243778" - ], - [ - "14637", - "0.006221547964136907", - "1.763206600312564", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00900235302899956", - "3.519732208518067", - "0.0", - "0.0", - "0.0034407428992742533" - ], - [ - "14638", - "0.006218685097707645", - "1.7632008458849802", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008998407042843772", - "3.5197245074716226", - "0.0", - "0.0", - "0.0034389631525715172" - ], - [ - "14639", - "0.006201443320104129", - "1.7631697878121384", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00897346699362513", - "3.519680919285059", - "0.0", - "0.0", - "0.003429419646583128" - ], - [ - "14640", - "0.006184395606599039", - "1.763139045528971", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008948818645462079", - "3.519637795426962", - "0.0", - "0.0", - "0.003419972567736" - ], - [ - "14641", - "0.006167248854077974", - "1.7631081587523223", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008924015922833975", - "3.5195944474405545", - "0.0", - "0.0", - "0.0034104817853219736" - ], - [ - "14642", - "0.006150149619514556", - "1.7630773575863994", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008899281887107773", - "3.519551219531937", - "0.0", - "0.0", - "0.0034010173519213372" - ], - [ - "14643", - "0.0061330977713505395", - "1.7630466417940935", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008874616348380203", - "3.51950811136894", - "0.0", - "0.0", - "0.003391579194320877" - ], - [ - "14644", - "0.006116093178391225", - "1.763016011138952", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008850019117271306", - "3.5194651226203106", - "0.0", - "0.0", - "0.0033821672395111437" - ], - [ - "14645", - "0.0060991357098044464", - "1.7629854653851753", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008825490004923008", - "3.5194222529557107", - "0.0", - "0.0", - "0.0033727814146858855" - ], - [ - "14646", - "0.006082225235119581", - "1.7629550042976172", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008801028822997683", - "3.519379502045713", - "0.0", - "0.0", - "0.0033634216472414793" - ], - [ - "14647", - "0.006065361624226548", - "1.762924627641781", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008776635383676732", - "3.5193368695617977", - "0.0", - "0.0", - "0.003354087864776365" - ], - [ - "14648", - "0.006048544747374823", - "1.7628943351838178", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008752309499659163", - "3.5192943551763536", - "0.0", - "0.0", - "0.0033447799950904835" - ], - [ - "14649", - "0.006032267148448567", - "1.7628647645321867", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008728845151749395", - "3.519253010374623", - "0.0", - "0.0", - "0.003335689145147738" - ], - [ - "14650", - "0.0060155419912842085", - "1.7628346380101978", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008704651625810803", - "3.519210728303414", - "0.0", - "0.0", - "0.0033264323567576137" - ], - [ - "14651", - "0.005998863184797677", - "1.7628045949932483", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008680525102389751", - "3.519168563361229", - "0.0", - "0.0", - "0.0033172012672056037" - ], - [ - "14652", - "0.005982230600656593", - "1.7627746352500528", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008656465396225131", - "3.519126515224033", - "0.0", - "0.0", - "0.0033079958050880546" - ], - [ - "14653", - "0.005965644110883232", - "1.7627447585499663", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00863247232256644", - "3.519084583568688", - "0.0", - "0.0", - "0.0032988158992000244" - ], - [ - "14654", - "0.005949187587624941", - "1.7627150973984205", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008608673270202828", - "3.519042966017908", - "0.0", - "0.0", - "0.0032897019050470537" - ], - [ - "14655", - "0.005932692671625459", - "1.7626853857277685", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008584812556519194", - "3.519001265812807", - "0.0", - "0.0", - "0.003280572786731724" - ], - [ - "14656", - "0.005916243468820372", - "1.762655756413123", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008561017925112487", - "3.5189596811269888", - "0.0", - "0.0", - "0.0032714690125282575" - ], - [ - "14657", - "0.005899841392324491", - "1.762626211999751", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008537291420499568", - "3.518918215533296", - "0.0", - "0.0", - "0.003262391364149414" - ], - [ - "14658", - "0.005883492173341818", - "1.762596762810912", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008513641333581816", - "3.5188768835210342", - "0.0", - "0.0", - "0.0032533430131018197" - ], - [ - "14659", - "0.005867210532546998", - "1.7625674353622054", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008490088959143249", - "3.5188357223056457", - "0.0", - "0.0", - "0.003244332105950748" - ], - [ - "14660", - "0.005850989177698554", - "1.7625382165182495", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008466623749025255", - "3.5187947134523303", - "0.0", - "0.0", - "0.003235354606371854" - ], - [ - "14661", - "0.0058348295427252264", - "1.7625091088617608", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008443247777978849", - "3.518753860586683", - "0.0", - "0.0", - "0.003226411307471603" - ], - [ - "14662", - "0.005818720249917608", - "1.762480091898414", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008419944587843646", - "3.5187131349453993", - "0.0", - "0.0", - "0.0032174959119915703" - ], - [ - "14663", - "0.005802702506540495", - "1.7624512398528664", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008396773788294443", - "3.518672640704485", - "0.0", - "0.0", - "0.0032086312247865487" - ], - [ - "14664", - "0.005786841861139997", - "1.7624226707944655", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008373830200913913", - "3.518632543577361", - "0.0", - "0.0", - "0.0031998535213660826" - ], - [ - "14665", - "0.005771260725848123", - "1.7623946052180546", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008351290905520158", - "3.5185931530346037", - "0.0", - "0.0", - "0.0031912305461760876" - ], - [ - "14666", - "0.005755861110723548", - "1.7623667208529568", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008329061743513218", - "3.518554108217238", - "0.0", - "0.0", - "0.0031826604779338773" - ], - [ - "14667", - "0.005739901980184078", - "1.762337974841204", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008305975436352662", - "3.518513762294559", - "0.0", - "0.0", - "0.0031738285240154934" - ], - [ - "14668", - "0.005723987079302141", - "1.762309308510721", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008282953070028989", - "3.5184735281442703", - "0.0", - "0.0", - "0.003165021088575293" - ], - [ - "14669", - "0.0057081162856075325", - "1.762280721640798", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008259994467720742", - "3.5184334054571207", - "0.0", - "0.0", - "0.0031562381034943234" - ], - [ - "14670", - "0.005692289476968562", - "1.7622522140113361", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008237099453093949", - "3.5183933939247103", - "0.0", - "0.0", - "0.0031474795008431767" - ], - [ - "14671", - "0.0056765065315911205", - "1.7622237854028449", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008214267850300782", - "3.5183534932394918", - "0.0", - "0.0", - "0.0031387452128814595" - ], - [ - "14672", - "0.005687287799939112", - "1.7622432143402587", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008229860942573993", - "3.518380756594653", - "0.0", - "0.0", - "0.0031447146573042317" - ], - [ - "14673", - "0.005733164361658833", - "1.7623258484106763", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008296225741420951", - "3.5184967364653015", - "0.0", - "0.0", - "0.0031701029818967134" - ], - [ - "14674", - "0.005778922934292807", - "1.7624082700687131", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008362419516379926", - "3.5186124176888685", - "0.0", - "0.0", - "0.003195426352205687" - ], - [ - "14675", - "0.005826237406042328", - "1.7624933994331309", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008430894673723975", - "3.5187319582791927", - "0.0", - "0.0", - "0.0032215801383606805" - ], - [ - "14676", - "0.005875637463908109", - "1.7625823796879276", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008502355674625685", - "3.5188568440317174", - "0.0", - "0.0", - "0.003248919253190534" - ], - [ - "14677", - "0.0059233924760923", - "1.7626683940597068", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008571437566170702", - "3.5189775683615565", - "0.0", - "0.0", - "0.0032753473860138976" - ], - [ - "14678", - "0.005971503602221215", - "1.7627550521749702", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008641033513977431", - "3.5190991942572003", - "0.0", - "0.0", - "0.003301973690464999" - ], - [ - "14679", - "0.006019662248623081", - "1.762840923675312", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00871098262284359", - "3.5192202627902405", - "0.0", - "0.0", - "0.003328341874402572" - ], - [ - "14680", - "0.006068008800431958", - "1.7629279998129297", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008780920425368958", - "3.5193424781828027", - "0.0", - "0.0", - "0.0033550971754949593" - ], - [ - "14681", - "0.006116329384880918", - "1.7630150293069395", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008850820283372335", - "3.519464627531206", - "0.0", - "0.0", - "0.0033818384863895014" - ], - [ - "14682", - "0.006165421417043146", - "1.7631034492735815", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00892183542305207", - "3.5195887273066577", - "0.0", - "0.0", - "0.003409007411034221" - ], - [ - "14683", - "0.006199828439596631", - "1.7631654194284683", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008971607615404472", - "3.5196757041052256", - "0.0", - "0.0", - "0.0034280492637887893" - ], - [ - "14684", - "0.006182638946959945", - "1.7631344595918947", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008946741822277568", - "3.5196322511687894", - "0.0", - "0.0", - "0.0034185360716423225" - ], - [ - "14685", - "0.006165497090455685", - "1.7631035855681616", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008921944890208559", - "3.519588918600131", - "0.0", - "0.0", - "0.003409049290702811" - ], - [ - "14686", - "0.006148402738199911", - "1.7630727971196025", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00889721662881547", - "3.519545706066282", - "0.0", - "0.0", - "0.0033995888475843532" - ], - [ - "14687", - "0.006131355175955148", - "1.763042092922826", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008872556017325698", - "3.519502611733539", - "0.0", - "0.0", - "0.003390154334584598" - ], - [ - "14688", - "0.006114355439616829", - "1.7630114749172558", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008847964530537648", - "3.5194596382782417", - "0.0", - "0.0", - "0.0033807463486960096" - ], - [ - "14689", - "0.006097402814053277", - "1.7629809417777886", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008823441146415175", - "3.519416783864343", - "0.0", - "0.0", - "0.0033713644816913786" - ], - [ - "14690", - "0.006080497168832281", - "1.7629504932693765", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008798985676666187", - "3.519374048162534", - "0.0", - "0.0", - "0.0033620086609983764" - ], - [ - "14691", - "0.0060636383738820665", - "1.762920129157621", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008774597933517484", - "3.519331430844416", - "0.0", - "0.0", - "0.003352678814246649" - ], - [ - "14692", - "0.006046826299490298", - "1.7628898492087726", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008750277729713344", - "3.519288931582495", - "0.0", - "0.0", - "0.003343374869267251" - ], - [ - "14693", - "0.006030187771626673", - "1.762859678781077", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008726274822212337", - "3.519246713342066", - "0.0", - "0.0", - "0.0033341007210410094" - ], - [ - "14694", - "0.006013772458742029", - "1.7628300304896556", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008702555566510388", - "3.519205152545303", - "0.0", - "0.0", - "0.0033249893509736702" - ], - [ - "14695", - "0.00599786920187199", - "1.7628012174118828", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008679605424165161", - "3.51916481854554", - "0.0", - "0.0", - "0.003316132979578818" - ], - [ - "14696", - "0.005981239404924396", - "1.7627712670803968", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008655548310780472", - "3.5191227808529173", - "0.0", - "0.0", - "0.003306930499068321" - ], - [ - "14697", - "0.005966456864327466", - "1.7627446435253389", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008634163500205133", - "3.5190854125959095", - "0.0", - "0.0", - "0.0032987502284497986" - ], - [ - "14698", - "0.00595517378731911", - "1.7627243226757314", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008617841043414788", - "3.5190568905731743", - "0.0", - "0.0", - "0.0032925065312234313" - ], - [ - "14699", - "0.005944091403601948", - "1.7627043632819193", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008601808895717046", - "3.519028875853412", - "0.0", - "0.0", - "0.0032863739114868495" - ], - [ - "14700", - "0.005933913412438407", - "1.7626860327066214", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008587085054976813", - "3.5190031472932626", - "0.0", - "0.0", - "0.003280741769900002" - ], - [ - "14701", - "0.005923945354622422", - "1.7626680802269685", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00857266489486386", - "3.5189779493984665", - "0.0", - "0.0", - "0.003275225814380983" - ], - [ - "14702", - "0.005914246386434304", - "1.7626506123830805", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008558633994199321", - "3.518953431709285", - "0.0", - "0.0", - "0.003269858778669286" - ], - [ - "14703", - "0.00590307170069521", - "1.762630486777839", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00854246824473546", - "3.518925183584271", - "0.0", - "0.0", - "0.0032636751566549613" - ], - [ - "14704", - "0.005906071290350558", - "1.7626327075255732", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00854784578937758", - "3.5189302949705232", - "0.0", - "0.0", - "0.0032642967913235356" - ], - [ - "14705", - "0.0058934674856259495", - "1.7626102511095698", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008529533309619055", - "3.5188986230318826", - "0.0", - "0.0", - "0.0032574016616328436" - ], - [ - "14706", - "0.005877127073846758", - "1.7625808301825079", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008505891893048323", - "3.5188573228716966", - "0.0", - "0.0", - "0.0032483622546451946" - ], - [ - "14707", - "0.0058611281562638545", - "1.7625509169406057", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008483105694113443", - "3.518816025346863", - "0.0", - "0.0", - "0.003239150618414265" - ], - [ - "14708", - "0.005844877388700443", - "1.7625216605092913", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008459592888738638", - "3.5187749540470117", - "0.0", - "0.0", - "0.003230161888662247" - ], - [ - "14709", - "0.005828671657754037", - "1.7624924851722046", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008436145202813992", - "3.5187339965252815", - "0.0", - "0.0", - "0.0032211981126940813" - ], - [ - "14710", - "0.005812510838727117", - "1.7624633907047325", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00841276245627324", - "3.518693152466891", - "0.0", - "0.0", - "0.0032122592211809944" - ], - [ - "14711", - "0.005796394807266795", - "1.7624343768828834", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008389444469546465", - "3.5186524215579293", - "0.0", - "0.0", - "0.003203345144987124" - ], - [ - "14712", - "0.005780323439363863", - "1.7624054434832845", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008366191063558744", - "3.5186118034853497", - "0.0", - "0.0", - "0.003194455815168984" - ], - [ - "14713", - "0.005764296611351852", - "1.762376590283182", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008343002059728781", - "3.5185712979369708", - "0.0", - "0.0", - "0.0031855911629749233" - ], - [ - "14714", - "0.00574831419990608", - "1.7623478170604372", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008319877279967566", - "3.5185309046014717", - "0.0", - "0.0", - "0.003176751119844594" - ], - [ - "14715", - "0.005732376082042719", - "1.7623191235935258", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008296816546677022", - "3.518490623168391", - "0.0", - "0.0", - "0.003167935617408415" - ], - [ - "14716", - "0.005716482135117849", - "1.7622905096615369", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008273819682748656", - "3.5184504533281244", - "0.0", - "0.0", - "0.0031591445874870412" - ], - [ - "14717", - "0.0057006322368265295", - "1.76226197504417", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008250886511562226", - "3.518410394771921", - "0.0", - "0.0", - "0.003150377962090832" - ], - [ - "14718", - "0.005684826265201858", - "1.7622335195217338", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008228016856984394", - "3.5183704471918835", - "0.0", - "0.0", - "0.0031416356734193223" - ], - [ - "14719", - "0.005669064098614048", - "1.7622051428751453", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008205210543367402", - "3.518330610280963", - "0.0", - "0.0", - "0.003132917653860693" - ], - [ - "14720", - "0.00565334561576949", - "1.7621768448859267", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008182467395547732", - "3.5182908837329574", - "0.0", - "0.0", - "0.003124223835991247" - ], - [ - "14721", - "0.005637670695709834", - "1.7621486253362053", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008159787238844786", - "3.5182512672425115", - "0.0", - "0.0", - "0.003115554152574883" - ], - [ - "14722", - "0.005622039217811064", - "1.7621204840087101", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008137169899059559", - "3.518211760505112", - "0.0", - "0.0", - "0.0031069085365625702" - ], - [ - "14723", - "0.005606418730746336", - "1.7620923604623024", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00811456908076176", - "3.5181722799346278", - "0.0", - "0.0", - "0.0030982683807309116" - ], - [ - "14724", - "0.005590869652960645", - "1.762064367248526", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008092070971438037", - "3.5181329811707442", - "0.0", - "0.0", - "0.0030896683344832513" - ], - [ - "14725", - "0.005575367882203474", - "1.7620364594783795", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008069641186102988", - "3.5180938021340378", - "0.0", - "0.0", - "0.0030810945783039598" - ], - [ - "14726", - "0.005559909074155976", - "1.7620086290668482", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008047273525280426", - "3.5180547316399844", - "0.0", - "0.0", - "0.003072544623031525" - ], - [ - "14727", - "0.005544493109852811", - "1.7619808757996516", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008024967817160694", - "3.518015769388252", - "0.0", - "0.0", - "0.0030640184025449275" - ], - [ - "14728", - "0.005529119870657488", - "1.7619531994631012", - "0.0", - "0.0", - "0.0", - "0.0", - "0.008002723890407867", - "3.5179769150793363", - "0.0", - "0.0", - "0.0030555158509071086" - ], - [ - "14729", - "0.0055137892382614495", - "1.7619255998441004", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007980541574158442", - "3.517938168414561", - "0.0", - "0.0", - "0.0030470369023644565" - ], - [ - "14730", - "0.005498501094683175", - "1.7618980767301413", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007958420698020052", - "3.517899529096074", - "0.0", - "0.0", - "0.003038581491346296" - ], - [ - "14731", - "0.00548325488091477", - "1.761870629087179", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00793636046245162", - "3.517860995689941", - "0.0", - "0.0", - "0.0030301492993779194" - ], - [ - "14732", - "0.005468051363554791", - "1.7618432583504102", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00791436195898088", - "3.517822570176909", - "0.0", - "0.0", - "0.0030217407681287" - ], - [ - "14733", - "0.005452889983017831", - "1.7618159634846744", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007892424387253153", - "3.5177842511215234", - "0.0", - "0.0", - "0.0030133555787825077" - ], - [ - "14734", - "0.005437770622621532", - "1.7617887442798055", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00787054757874774", - "3.517746038229206", - "0.0", - "0.0", - "0.003004993666495325" - ], - [ - "14735", - "0.005422693166006092", - "1.7617616005262193", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007848731365408652", - "3.517707931206192", - "0.0", - "0.0", - "0.002996654966603532" - ], - [ - "14736", - "0.005407657497133373", - "1.7617345320149105", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007826975579643342", - "3.5176699297595286", - "0.0", - "0.0", - "0.0029883394146234038" - ], - [ - "14737", - "0.005392663500286018", - "1.7617075385374528", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00780528005432143", - "3.5176320335970708", - "0.0", - "0.0", - "0.0029800469462506066" - ], - [ - "14738", - "0.005377711060066567", - "1.7616806198859956", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007783644622773432", - "3.5175942424274806", - "0.0", - "0.0", - "0.002971777497359701" - ], - [ - "14739", - "0.00536277924728323", - "1.7616537302898967", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007762041640785433", - "3.5175564970634", - "0.0", - "0.0", - "0.002963516853781027" - ], - [ - "14740", - "0.005347909633228095", - "1.7616269607956978", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007740525974919255", - "3.5175189151722166", - "0.0", - "0.0", - "0.0029552932915369325" - ], - [ - "14741", - "0.005333081231358158", - "1.761600265507041", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007719069905359206", - "3.517481437404248", - "0.0", - "0.0", - "0.0029470925573571102" - ], - [ - "14742", - "0.005318293927547205", - "1.7615736442183676", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007697673267267392", - "3.517444063471361", - "0.0", - "0.0", - "0.0029389145878270175" - ], - [ - "14743", - "0.005303547607984529", - "1.7615470967246871", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007676335896260535", - "3.5174067930862174", - "0.0", - "0.0", - "0.0029307593197085225" - ], - [ - "14744", - "0.005288842159174069", - "1.7615206228215767", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007655057628408726", - "3.517369625962272", - "0.0", - "0.0", - "0.002922626689939412" - ], - [ - "14745", - "0.005274177467933539", - "1.7614942223051788", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00763383830023418", - "3.517332561813772", - "0.0", - "0.0", - "0.0029145166356328977" - ], - [ - "14746", - "0.005259553421393563", - "1.7614678949721996", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007612677748709997", - "3.517295600355752", - "0.0", - "0.0", - "0.0029064290940771314" - ], - [ - "14747", - "0.005244956226208736", - "1.7614416024794186", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007591560421752651", - "3.517258696222658", - "0.0", - "0.0", - "0.002898352030664822" - ], - [ - "14748", - "0.005230392942866827", - "1.7614153701883883", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007570492410241981", - "3.517221877094505", - "0.0", - "0.0", - "0.0028902934754916716" - ], - [ - "14749", - "0.0052158902506661674", - "1.7613892614385351", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007549507326215289", - "3.5171852223042226", - "0.0", - "0.0", - "0.0028822731751170457" - ], - [ - "14750", - "0.005201427754536649", - "1.761363225063847", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007528580370904286", - "3.5171486690715756", - "0.0", - "0.0", - "0.002874275138169013" - ], - [ - "14751", - "0.005187005343161312", - "1.7613372608638285", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007507711383518893", - "3.5171122171155136", - "0.0", - "0.0", - "0.002866299302803729" - ], - [ - "14752", - "0.005172622905530963", - "1.761311368638539", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007486900203712549", - "3.5170758661557624", - "0.0", - "0.0", - "0.0028583456073493774" - ], - [ - "14753", - "0.005158280330943337", - "1.7612855481885918", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007466146671580984", - "3.5170396159128208", - "0.0", - "0.0", - "0.0028504139903056903" - ], - [ - "14754", - "0.005143977509002243", - "1.7612597993151506", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007445450627661016", - "3.5170034661079606", - "0.0", - "0.0", - "0.0028425043903434707" - ], - [ - "14755", - "0.005129714329616725", - "1.7612341218199303", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007424811912929336", - "3.516967416463221", - "0.0", - "0.0", - "0.0028346167463041134" - ], - [ - "14756", - "0.005115490683000217", - "1.7612085155051935", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0074042303688013015", - "3.5169314667014113", - "0.0", - "0.0", - "0.002826750997199132" - ], - [ - "14757", - "0.005101306459669708", - "1.7611829801737506", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0073837058371297335", - "3.5168956165461043", - "0.0", - "0.0", - "0.002818907082209682" - ], - [ - "14758", - "0.005087161550444904", - "1.7611575156289572", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0073632381602037195", - "3.5168598657216372", - "0.0", - "0.0", - "0.0028110849406860886" - ], - [ - "14759", - "0.005073055846447393", - "1.7611321216747124", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007342827180747411", - "3.516824213953107", - "0.0", - "0.0", - "0.002803284512147375" - ], - [ - "14760", - "0.005058989239099814", - "1.7611067981154593", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007322472741918835", - "3.516788660966371", - "0.0", - "0.0", - "0.002795505736280791" - ], - [ - "14761", - "0.005044974508497734", - "1.7610815687635244", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0073021930744020525", - "3.5167532396889274", - "0.0", - "0.0", - "0.002787755942593416" - ], - [ - "14762", - "0.0050309857341822905", - "1.7610563853431722", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007281951197079694", - "3.5167178833543566", - "0.0", - "0.0", - "0.002780020271284888" - ], - [ - "14763", - "0.005018536166020582", - "1.7610335340310308", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0072640796413987975", - "3.516686076067118", - "0.0", - "0.0", - "0.0027729926906423672" - ], - [ - "14764", - "0.005004620678180584", - "1.7610084837798672", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007243943353641971", - "3.5166509058425324", - "0.0", - "0.0", - "0.0027652980027191966" - ], - [ - "14765", - "0.00499074376014871", - "1.7609835029714622", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007223862846563143", - "3.5166158330669326", - "0.0", - "0.0", - "0.002757624673734278" - ], - [ - "14766", - "0.004976905305104811", - "1.7609585914134347", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007203837965849905", - "3.516580857470612", - "0.0", - "0.0", - "0.0027499726443597186" - ], - [ - "14767", - "0.004963105206524111", - "1.7609337489139345", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007183868557615589", - "3.5165459787846114", - "0.0", - "0.0", - "0.0027423418554326337" - ], - [ - "14768", - "0.004949343358176396", - "1.7609089752816434", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0071639544683981", - "3.5165111967407126", - "0.0", - "0.0", - "0.0027347322479546916" - ], - [ - "14769", - "0.0049356196541252015", - "1.7608842703257719", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007144095545158752", - "3.5164765110714375", - "0.0", - "0.0", - "0.002727143763091652" - ], - [ - "14770", - "0.0049219339887270055", - "1.7608596338560587", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0071242916352811025", - "3.5164419215100486", - "0.0", - "0.0", - "0.0027195763421729085" - ], - [ - "14771", - "0.004908286256630415", - "1.7608350656827687", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007104542586569796", - "3.5164074277905435", - "0.0", - "0.0", - "0.0027120299266910346" - ], - [ - "14772", - "0.004894676352775368", - "1.760810565616692", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00708484824724941", - "3.5163730296476547", - "0.0", - "0.0", - "0.0027045044583013248" - ], - [ - "14773", - "0.004881104172392322", - "1.7607861334691421", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007065208465963297", - "3.5163387268168482", - "0.0", - "0.0", - "0.0026969998788213454" - ], - [ - "14774", - "0.004867569611001461", - "1.7607617690519548", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007045623091772444", - "3.516304519034319", - "0.0", - "0.0", - "0.002689516130230478" - ], - [ - "14775", - "0.004854072564411893", - "1.7607374721774862", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007026091974154315", - "3.5162704060369916", - "0.0", - "0.0", - "0.0026820531546694715" - ], - [ - "14776", - "0.004840612928720854", - "1.7607132426586118", - "0.0", - "0.0", - "0.0", - "0.0", - "0.007006614963001719", - "3.5162363875625173", - "0.0", - "0.0", - "0.0026746108944399887" - ], - [ - "14777", - "0.004827190600312912", - "1.760689080308725", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006987191908621662", - "3.5162024633492717", - "0.0", - "0.0", - "0.0026671892920041612" - ], - [ - "14778", - "0.004813805475859177", - "1.7606649849417353", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006967822661734213", - "3.5161686331363518", - "0.0", - "0.0", - "0.00265978828998414" - ], - [ - "14779", - "0.0048002920546035815", - "1.7606406483149624", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0069482710934370435", - "3.516134470607493", - "0.0", - "0.0", - "0.0026523130157701195" - ], - [ - "14780", - "0.004784576753207877", - "1.7606122084215259", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006925578697323553", - "3.5160946343766817", - "0.0", - "0.0", - "0.0026435748090922018" - ], - [ - "14781", - "0.004771309748600263", - "1.7605883261633017", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006906380141614593", - "3.516061102953293", - "0.0", - "0.0", - "0.002636239355585934" - ], - [ - "14782", - "0.00475807951773289", - "1.760564510111959", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006887234772256656", - "3.5160276644429977", - "0.0", - "0.0", - "0.002628924263209122" - ], - [ - "14783", - "0.004744885958752455", - "1.7605407600840697", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006868142442095915", - "3.5159943185886164", - "0.0", - "0.0", - "0.0026216294754089946" - ], - [ - "14784", - "0.004731728970087342", - "1.7605170758967137", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006849103004384632", - "3.5159610651336815", - "0.0", - "0.0", - "0.0026143549357900524" - ], - [ - "14785", - "0.004718608450446838", - "1.7604934573674764", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006830116312780046", - "3.515927903822433", - "0.0", - "0.0", - "0.002607100588113631" - ], - [ - "14786", - "0.0047054909481667635", - "1.760469842200419", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006811134637262247", - "3.5158947484912444", - "0.0", - "0.0", - "0.0025998472590712794" - ], - [ - "14787", - "0.0046924431562972635", - "1.7604463546144364", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006792253132327088", - "3.5158617709410303", - "0.0", - "0.0", - "0.002592633180267438" - ], - [ - "14788", - "0.0046794315310016285", - "1.7604229321418756", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006773423936523994", - "3.5158288847707952", - "0.0", - "0.0", - "0.0025854391254792625" - ], - [ - "14789", - "0.004666455972105755", - "1.7603995746023342", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006754646905120033", - "3.5157960897275946", - "0.0", - "0.0", - "0.002578265039091477" - ], - [ - "14790", - "0.004653516379712592", - "1.7603762818159094", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0067359218937817185", - "3.515763385559184", - "0.0", - "0.0", - "0.002571110865643466" - ], - [ - "14791", - "0.004640612654201377", - "1.7603530536031962", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0067172487585739115", - "3.5157307720140145", - "0.0", - "0.0", - "0.0025639765498288417" - ], - [ - "14792", - "0.004631898392373324", - "1.7603376260780812", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006704553742006938", - "3.5157089486655795", - "0.0", - "0.0", - "0.00255924304273971" - ], - [ - "14793", - "0.004619052815819288", - "1.7603145017276078", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0066859649798927155", - "3.5156764813987516", - "0.0", - "0.0", - "0.0025521406517458605" - ], - [ - "14794", - "0.004606244615425993", - "1.760291444780324", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006667430241830622", - "3.515644108658144", - "0.0", - "0.0", - "0.002545058989021364" - ], - [ - "14795", - "0.004593471917999902", - "1.7602684517533616", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006648946853449844", - "3.515611825623393", - "0.0", - "0.0", - "0.0025379969825499596" - ], - [ - "14796", - "0.0045807346252021795", - "1.76024552246962", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006630514672665358", - "3.5155796320461787", - "0.0", - "0.0", - "0.0025309545777390014" - ], - [ - "14797", - "0.0045679620110148905", - "1.7602225011388841", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0066120406336632135", - "3.51554732702459", - "0.0", - "0.0", - "0.002523883388366567" - ], - [ - "14798", - "0.004555295429732926", - "1.760199699244269", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0065937107014105946", - "3.515515312177143", - "0.0", - "0.0", - "0.002516880158055259" - ], - [ - "14799", - "0.0045426639591460635", - "1.7601769605633073", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006575431552130736", - "3.515483386044836", - "0.0", - "0.0", - "0.0025098963661613904" - ], - [ - "14800", - "0.004530518846575439", - "1.760154975363853", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006557895981247607", - "3.5154525942416726", - "0.0", - "0.0", - "0.0025031417119032715" - ], - [ - "14801", - "0.004517956056550254", - "1.7601323606737647", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006539716059419598", - "3.515420841909178", - "0.0", - "0.0", - "0.002496196053680911" - ], - [ - "14802", - "0.004505428089715774", - "1.7601098086786295", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006521586505456374", - "3.5153891775651003", - "0.0", - "0.0", - "0.0024892696739751753" - ], - [ - "14803", - "0.004492934849613443", - "1.760087319204738", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006503507179983062", - "3.5153576009658636", - "0.0", - "0.0", - "0.0024823625192438247" - ], - [ - "14804", - "0.00448047624005151", - "1.7600648920788613", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006485477944009519", - "3.515326111868566", - "0.0", - "0.0", - "0.0024754745360935" - ], - [ - "14805", - "0.004468052165104293", - "1.7600425271282505", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006467498658929277", - "3.5152947100309766", - "0.0", - "0.0", - "0.002468605671279309" - ], - [ - "14806", - "0.004455662529111448", - "1.7600202241806342", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006449569186518485", - "3.5152633952115333", - "0.0", - "0.0", - "0.0024617558717044117" - ], - [ - "14807", - "0.004443307236677235", - "1.7599979830642178", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006431689388934863", - "3.5152321671693416", - "0.0", - "0.0", - "0.002454925084419607" - ], - [ - "14808", - "0.004430986192669784", - "1.759975803607683", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006413859128716646", - "3.515201025664173", - "0.0", - "0.0", - "0.0024481132566229226" - ], - [ - "14809", - "0.004418695978706987", - "1.7599536794501711", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006396073526752758", - "3.515169961895051", - "0.0", - "0.0", - "0.002441318430661216" - ], - [ - "14810", - "0.00440642338105791", - "1.7599315859870759", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006378313727766663", - "3.515138941827997", - "0.0", - "0.0", - "0.0024345330343491555" - ], - [ - "14811", - "0.0043942045781917285", - "1.759909590606259", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006360631349968794", - "3.5151080586640204", - "0.0", - "0.0", - "0.002427777806414663" - ], - [ - "14812", - "0.004381173901729853", - "1.7598858031306037", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006341881821706989", - "3.5150748662866067", - "0.0", - "0.0", - "0.0024204659817527166" - ], - [ - "14813", - "0.004369025094739551", - "1.7598639346831357", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0063243003893257", - "3.515044160696506", - "0.0", - "0.0", - "0.0024137498001534025" - ], - [ - "14814", - "0.004070992346135289", - "1.759327463670613", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0058929877335918", - "3.5142908877717085", - "0.0", - "0.0", - "0.002248996958678777" - ], - [ - "14815", - "0.003665789163996235", - "1.758598089335729", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00530655490499162", - "3.5132667189691973", - "0.0", - "0.0", - "0.00202502342300085" - ], - [ - "14816", - "0.0033935735835423685", - "1.7581081005560717", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0049125741656704", - "3.512578666398258", - "0.0", - "0.0", - "0.0018745730014143368" - ], - [ - "14817", - "0.0032393739957807485", - "1.757830542682182", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0046893939634783865", - "3.5121889056336255", - "0.0", - "0.0", - "0.0017893540280831107" - ], - [ - "14818", - "0.0032303905354529963", - "1.757814372574372", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004676391665800957", - "3.5121661985710384", - "0.0", - "0.0", - "0.001784389405105035" - ], - [ - "14819", - "0.003221808359319909", - "1.7577988303629044", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004664000920269675", - "3.5121444323329936", - "0.0", - "0.0", - "0.0017796157983701421" - ], - [ - "14820", - "0.003206643602571436", - "1.7577715344656348", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0046420518678786295", - "3.512106101394832", - "0.0", - "0.0", - "0.001771235337264243" - ], - [ - "14821", - "0.003197750888258836", - "1.7577555279756223", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004629180779974487", - "3.51208362385923", - "0.0", - "0.0", - "0.0017663209965431842" - ], - [ - "14822", - "0.003188882829083851", - "1.7577395658680761", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004616345364431722", - "3.5120612086293543", - "0.0", - "0.0", - "0.0017614202937359807" - ], - [ - "14823", - "0.0031800394200539282", - "1.7577236481379177", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004603545612846124", - "3.512038855695766", - "0.0", - "0.0", - "0.0017565332272617322" - ], - [ - "14824", - "0.003174109540083826", - "1.7577129749541025", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004594962724599203", - "3.5120238673536703", - "0.0", - "0.0", - "0.0017532563555684494" - ], - [ - "14825", - "0.0031682013415597543", - "1.7577023404691234", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004586411318994223", - "3.5120089335526883", - "0.0", - "0.0", - "0.0017499913641252857" - ], - [ - "14826", - "0.0031623100907988196", - "1.7576917364912414", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004577884437560607", - "3.5119940425836145", - "0.0", - "0.0", - "0.0017467357440370326" - ], - [ - "14827", - "0.0031565860690472396", - "1.757681433461545", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004569599613632247", - "3.5119795742586124", - "0.0", - "0.0", - "0.0017435725244622322" - ], - [ - "14828", - "0.0031507240587654375", - "1.7576708817429656", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004561115165676233", - "3.5119647568948107", - "0.0", - "0.0", - "0.0017403329518546422" - ], - [ - "14829", - "0.0031421692270448276", - "1.7576554834530018", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004548733042466084", - "3.5119431333217506", - "0.0", - "0.0", - "0.0017356054116235717" - ], - [ - "14830", - "0.0031337300000543887", - "1.7576402932499804", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0045365182319407745", - "3.5119218019440885", - "0.0", - "0.0", - "0.0017309417681680027" - ], - [ - "14831", - "0.0031254145448909956", - "1.7576253258341175", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0045244825555282465", - "3.511900783405871", - "0.0", - "0.0", - "0.0017263465342537442" - ], - [ - "14832", - "0.0031181815376917525", - "1.7576122458742596", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0045140334318545935", - "3.511882453510539", - "0.0", - "0.0", - "0.0017223296435289112" - ], - [ - "14833", - "0.003110513764969991", - "1.7575984444113406", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004502935134333046", - "3.5118630721814568", - "0.0", - "0.0", - "0.0017180923956069362" - ], - [ - "14834", - "0.00310319110849367", - "1.7575852638055718", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0044923364554000185", - "3.5118445629129633", - "0.0", - "0.0", - "0.001714045761587322" - ], - [ - "14835", - "0.0030988097772114633", - "1.7575773777146224", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004485994927781881", - "3.511833488497962", - "0.0", - "0.0", - "0.001711624626641045" - ], - [ - "14836", - "0.0030946120179350086", - "1.7575698220414764", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004479919098872507", - "3.511822878083274", - "0.0", - "0.0", - "0.0017093049369975093" - ], - [ - "14837", - "0.0030912205558874493", - "1.757563717647663", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00447501030096003", - "3.511814305693676", - "0.0", - "0.0", - "0.001707430810814869" - ], - [ - "14838", - "0.003087917101447196", - "1.7575577716619766", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0044702288833425655", - "3.5118059557535926", - "0.0", - "0.0", - "0.0017056053195518266" - ], - [ - "14839", - "0.0030847962243842984", - "1.7575521543032795", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0044657117264551216", - "3.5117980673014846", - "0.0", - "0.0", - "0.0017038807223134745" - ], - [ - "14840", - "0.0030818441973651848", - "1.7575468408454928", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004461438967411456", - "3.511790605626064", - "0.0", - "0.0", - "0.0017022494273189132" - ], - [ - "14841", - "0.0030810070514970655", - "1.7575453340421787", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0044602272819602275", - "3.5117884896224068", - "0.0", - "0.0", - "0.0017017868210339035" - ], - [ - "14842", - "0.00308018821367446", - "1.7575438601920879", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004459042095474794", - "3.511786419894788", - "0.0", - "0.0", - "0.0017013343318741264" - ], - [ - "14843", - "0.0030794382492252657", - "1.7575425095131454", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0044579568556222075", - "3.511784523634654", - "0.0", - "0.0", - "0.001700919642828324" - ], - [ - "14844", - "0.0030793848165735103", - "1.7575424133381736", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004457879517146688", - "3.5117843885761206", - "0.0", - "0.0", - "0.001700890116000333" - ], - [ - "14845", - "0.0030817744400408104", - "1.757546714490563", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004461338260173768", - "3.5117904286846326", - "0.0", - "0.0", - "0.0017022106199078523" - ], - [ - "14846", - "0.003084329996638943", - "1.7575513143111399", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004465037173923083", - "3.5117968882113284", - "0.0", - "0.0", - "0.0017036228193548029" - ], - [ - "14847", - "0.003087242091961011", - "1.7575565558765625", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004469252140679196", - "3.51180424893815", - "0.0", - "0.0", - "0.0017052320432428259" - ], - [ - "14848", - "0.0030903714456178228", - "1.7575621884921253", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004473781565604736", - "3.5118121588140787", - "0.0", - "0.0", - "0.0017069613256309097" - ], - [ - "14849", - "0.0030938286840733378", - "1.757568411277792", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00447878556896589", - "3.5118208974624223", - "0.0", - "0.0", - "0.0017088717991807856" - ], - [ - "14850", - "0.003095875534744402", - "1.7575720954651137", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00448174817758838", - "3.5118260711596165", - "0.0", - "0.0", - "0.001710002891900425" - ], - [ - "14851", - "0.003098923098934573", - "1.7575775808668488", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004486159216205375", - "3.5118337742968344", - "0.0", - "0.0", - "0.0017116869816637713" - ], - [ - "14852", - "0.003102196016015967", - "1.757583471888545", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004490896428480203", - "3.51184204704268", - "0.0", - "0.0", - "0.0017134956035517305" - ], - [ - "14853", - "0.003105794608777821", - "1.757589949104352", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004496105020929422", - "3.5118511429762655", - "0.0", - "0.0", - "0.0017154841966262205" - ], - [ - "14854", - "0.00310961229403111", - "1.757596820672128", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004501630724887233", - "3.511860792693559", - "0.0", - "0.0", - "0.0017175938631749875" - ], - [ - "14855", - "0.0031180685059611544", - "1.7576117737442913", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004513957361765606", - "3.5118819586978995", - "0.0", - "0.0", - "0.001722179650156703" - ], - [ - "14856", - "0.0031351167090072013", - "1.7576412446247152", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004539028459496114", - "3.511924104548613", - "0.0", - "0.0", - "0.0017312049585182883" - ], - [ - "14857", - "0.0031469298370016704", - "1.7576624970240444", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004556130073462739", - "3.5119539556473094", - "0.0", - "0.0", - "0.001737729600540602" - ], - [ - "14858", - "0.003160889203938279", - "1.757687616335423", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0045763368622531615", - "3.511989234587341", - "0.0", - "0.0", - "0.0017454415456233964" - ], - [ - "14859", - "0.0031762484756204727", - "1.7577152547307138", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00459857003708929", - "3.5120280514113054", - "0.0", - "0.0", - "0.0017539269141516557" - ], - [ - "14860", - "0.0031942496648717494", - "1.757747414326866", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004624703268621392", - "3.5120733636428834", - "0.0", - "0.0", - "0.0017637960611221067" - ], - [ - "14861", - "0.0032106865722897034", - "1.757776990718705", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00464849666445921", - "3.5121149029031513", - "0.0", - "0.0", - "0.0017728764801201965" - ], - [ - "14862", - "0.003228353973534583", - "1.7578087812643524", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004674071223717732", - "3.512159551809211", - "0.0", - "0.0", - "0.0017826367233514347" - ], - [ - "14863", - "0.003249528078040508", - "1.757846881759602", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004704721866493304", - "3.512213062755873", - "0.0", - "0.0", - "0.0017943342895877128" - ], - [ - "14864", - "0.00327142267307345", - "1.7578862787251421", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004736415380664882", - "3.512268394437383", - "0.0", - "0.0", - "0.0018064299654820166" - ], - [ - "14865", - "0.0032942950053446063", - "1.7579274350518146", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0047695241344890655", - "3.5123261969541106", - "0.0", - "0.0", - "0.0018190658762001469" - ], - [ - "14866", - "0.0033171284984917808", - "1.7579685215048553", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0048025765867834285", - "3.5123839012163467", - "0.0", - "0.0", - "0.001831680410200133" - ], - [ - "14867", - "0.003340240566732226", - "1.7580101092692775", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0048360321965921806", - "3.5124423094087343", - "0.0", - "0.0", - "0.0018444489368722714" - ], - [ - "14868", - "0.0033797064287464304", - "1.758081102713312", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004893167301280585", - "3.512542029634247", - "0.0", - "0.0", - "0.0018662455562122753" - ], - [ - "14869", - "0.0034325906952651485", - "1.7581762552717137", - "0.0", - "0.0", - "0.0", - "0.0", - "0.004969721059852567", - "3.5126756708518387", - "0.0", - "0.0", - "0.00189546033067773" - ], - [ - "14870", - "0.0034876047327438028", - "1.7582752061053124", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005049368369862081", - "3.5128146672001783", - "0.0", - "0.0", - "0.0019258410956255246" - ], - [ - "14871", - "0.0035426965260450475", - "1.7583743375184222", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005129114549609588", - "3.5129538910741793", - "0.0", - "0.0", - "0.0019562785024805074" - ], - [ - "14872", - "0.0035985747253761344", - "1.7584748841509656", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005209998557589052", - "3.5130951017670182", - "0.0", - "0.0", - "0.001987150893163217" - ], - [ - "14873", - "0.003653827834607378", - "1.7585743057178325", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005289977391173596", - "3.5132347319077133", - "0.0", - "0.0", - "0.00201767827804116" - ], - [ - "14874", - "0.0037068002803202936", - "1.7586696240828101", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0053666543583596685", - "3.5133685984297545", - "0.0", - "0.0", - "0.002046946202280918" - ], - [ - "14875", - "0.003760469807735098", - "1.7587661969313142", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005444339875759472", - "3.51350422605786", - "0.0", - "0.0", - "0.0020765997397107243" - ], - [ - "14876", - "0.0038146137759364784", - "1.758863623648884", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0055227116599593845", - "3.5136410521427845", - "0.0", - "0.0", - "0.0021065158919135727" - ], - [ - "14877", - "0.003868911416694001", - "1.7589613270476046", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00560130540019544", - "3.513778266069216", - "0.0", - "0.0", - "0.002136517433192562" - ], - [ - "14878", - "0.003923462505389455", - "1.759059486665531", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005680265512090666", - "3.51391611997087", - "0.0", - "0.0", - "0.002166659498688245" - ], - [ - "14879", - "0.00397706037548282", - "1.759155931215139", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005757845412391994", - "3.5140515645380836", - "0.0", - "0.0", - "0.002196275338573646" - ], - [ - "14880", - "0.004031600941306846", - "1.7592540722237993", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005836789330548821", - "3.514189390843791", - "0.0", - "0.0", - "0.0022264125520648696" - ], - [ - "14881", - "0.004088837559219083", - "1.759357064720512", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005919635086667676", - "3.514334029642115", - "0.0", - "0.0", - "0.0022580400317704892" - ], - [ - "14882", - "0.00414811589090296", - "1.7594637313006771", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006005435508517076", - "3.5144838273298524", - "0.0", - "0.0", - "0.0022907962732888437" - ], - [ - "14883", - "0.004207695335952788", - "1.7595709399055273", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00609167118912076", - "3.5146343853352344", - "0.0", - "0.0", - "0.002323719482784816" - ], - [ - "14884", - "0.004266412296049383", - "1.759676596727088", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0061766579367773244", - "3.514782763239206", - "0.0", - "0.0", - "0.002356166655321441" - ], - [ - "14885", - "0.004327009869573989", - "1.7597856184654244", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006264372378172022", - "3.5149358778095143", - "0.0", - "0.0", - "0.002389647360975955" - ], - [ - "14886", - "0.004321615830775319", - "1.7597759116994824", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006256565324316198", - "3.5149222466989944", - "0.0", - "0.0", - "0.00238666633723444" - ], - [ - "14887", - "0.004317809397102751", - "1.7597690623040738", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006251055949535204", - "3.5149126278987883", - "0.0", - "0.0", - "0.0023845628446702988" - ], - [ - "14888", - "0.004314507902548899", - "1.7597631215098501", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006246277414117438", - "3.5149042850700862", - "0.0", - "0.0", - "0.00238273839098036" - ], - [ - "14889", - "0.004311328161781444", - "1.7597573998030904", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006241675101686528", - "3.5148962499096776", - "0.0", - "0.0", - "0.0023809812218763596" - ], - [ - "14890", - "0.004309012595943321", - "1.7597532331151242", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006238323582955684", - "3.5148903985061355", - "0.0", - "0.0", - "0.002379701608930958" - ], - [ - "14891", - "0.004308694485637305", - "1.7597526606993852", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006237863154325343", - "3.514889594645625", - "0.0", - "0.0", - "0.002379525816949266" - ], - [ - "14892", - "0.004308720909696586", - "1.7597527082475062", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006237901400158292", - "3.514889661418872", - "0.0", - "0.0", - "0.0023795404192348806" - ], - [ - "14893", - "0.004308798414929952", - "1.7597528477123852", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006238013580204476", - "3.5148898572735665", - "0.0", - "0.0", - "0.002379583249655429" - ], - [ - "14894", - "0.0042968526272379485", - "1.7597313523087832", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006220723346754315", - "3.5148596705278723", - "0.0", - "0.0", - "0.002372981907721583" - ], - [ - "14895", - "0.004284937596225267", - "1.7597099121117046", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0062034776544039995", - "3.5148295613663207", - "0.0", - "0.0", - "0.0023663975380465345" - ], - [ - "14896", - "0.004272968899624859", - "1.7596883405955153", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006186165586403728", - "3.5147992895024207", - "0.0", - "0.0", - "0.00235977221284599" - ], - [ - "14897", - "0.0042611200751916396", - "1.7596670196439925", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006169015643280143", - "3.5147693476709447", - "0.0", - "0.0", - "0.0023532245071031365" - ], - [ - "14898", - "0.004249304095995869", - "1.7596457578023983", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006151913217420903", - "3.5147394888151804", - "0.0", - "0.0", - "0.0023466949745708362" - ], - [ - "14899", - "0.00423752087105171", - "1.7596245549069474", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006134858177322722", - "3.514709712705405", - "0.0", - "0.0", - "0.0023401835647806975" - ], - [ - "14900", - "0.004225770309625023", - "1.7596034107943077", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006117850391845406", - "3.514680019112532", - "0.0", - "0.0", - "0.0023336902274046388" - ], - [ - "14901", - "0.004214052321232677", - "1.7595823253015994", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0061008897302108536", - "3.5146504078081047", - "0.0", - "0.0", - "0.0023272149122545004" - ], - [ - "14902", - "0.004202366815641858", - "1.7595612982663933", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006083976062002062", - "3.5146208785643007", - "0.0", - "0.0", - "0.002320757569281653" - ], - [ - "14903", - "0.004190713702869372", - "1.7595403295267102", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006067109257162135", - "3.514591431153926", - "0.0", - "0.0", - "0.0023143181485766086" - ], - [ - "14904", - "0.004179092893180963", - "1.7595194189210188", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006050289185993292", - "3.5145620653504146", - "0.0", - "0.0", - "0.0023078966003686335" - ], - [ - "14905", - "0.004167504297090624", - "1.759498566288235", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006033515719155884", - "3.5145327809278264", - "0.0", - "0.0", - "0.002301492875025363" - ], - [ - "14906", - "0.004155725914826806", - "1.7594772342159057", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006016512462344005", - "3.514502909474233", - "0.0", - "0.0", - "0.002294939367309608" - ], - [ - "14907", - "0.004144202095444284", - "1.7594564985396988", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005999832585616881", - "3.5144737889938247", - "0.0", - "0.0", - "0.002288571605271688" - ], - [ - "14908", - "0.0041327102209651675", - "1.7594358203516673", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00598319892520131", - "3.5144447492150994", - "0.0", - "0.0", - "0.0022822215167290242" - ], - [ - "14909", - "0.00411915707363023", - "1.7594114331708135", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005963581693135945", - "3.514410500604725", - "0.0", - "0.0", - "0.002274732454124516" - ], - [ - "14910", - "0.0041060821255211105", - "1.7593879064588267", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005944656592576511", - "3.514377460367365", - "0.0", - "0.0", - "0.0022675076584657097" - ], - [ - "14911", - "0.004092935992413396", - "1.7593642516679777", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005925628428441245", - "3.514344240217039", - "0.0", - "0.0", - "0.0022602435563855478" - ], - [ - "14912", - "0.004079760313085417", - "1.7593405437220504", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005906557469802603", - "3.5143109453741954", - "0.0", - "0.0", - "0.0022529631563682306" - ], - [ - "14913", - "0.004066616843995505", - "1.7593168937438723", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005887533105218265", - "3.5142777318969505", - "0.0", - "0.0", - "0.002245700582772745" - ], - [ - "14914", - "0.004053489403768681", - "1.7592932726170925", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005868531913296304", - "3.5142445588952165", - "0.0", - "0.0", - "0.0022384468942410586" - ], - [ - "14915", - "0.004040362442059786", - "1.7592696523608633", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005849531385886219", - "3.5142113870733733", - "0.0", - "0.0", - "0.0022311934982333524" - ], - [ - "14916", - "0.0040291584216514175", - "1.7592494921943398", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0058333141839536995", - "3.51418307449948", - "0.0", - "0.0", - "0.0022250026593491363" - ], - [ - "14917", - "0.004017985460212059", - "1.759229387921267", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005817141917770874", - "3.514154840390369", - "0.0", - "0.0", - "0.0022188290026532447" - ], - [ - "14918", - "0.004007656853583115", - "1.759210802959642", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005802191792056321", - "3.514128739949655", - "0.0", - "0.0", - "0.00221312191510991" - ], - [ - "14919", - "0.003997468552506937", - "1.7591924704650774", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005787444734344734", - "3.514102994043991", - "0.0", - "0.0", - "0.002207492370669139" - ], - [ - "14920", - "0.0039875373940442705", - "1.7591746003897033", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005773069952736913", - "3.5140778977041545", - "0.0", - "0.0", - "0.002202004835351629" - ], - [ - "14921", - "0.003978913187132462", - "1.7591590822846617", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005760586815918354", - "3.514056104247105", - "0.0", - "0.0", - "0.0021972395583465705" - ], - [ - "14922", - "0.0039703953248410835", - "1.759143755536552", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005748257596060392", - "3.51403457951155", - "0.0", - "0.0", - "0.002192533053621776" - ], - [ - "14923", - "0.00396195644996907", - "1.7591285709196378", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005736042695240297", - "3.514013254365933", - "0.0", - "0.0", - "0.002187870204697843" - ], - [ - "14924", - "0.003953637391192253", - "1.7591136018994746", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005724001211583384", - "3.513992231985272", - "0.0", - "0.0", - "0.0021832735708011233" - ], - [ - "14925", - "0.003945997540864648", - "1.759099733039476", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005712982572685182", - "3.5139728309610767", - "0.0", - "0.0", - "0.002179012509044113" - ], - [ - "14926", - "0.003937967540266472", - "1.7590852843952463", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005701359386889811", - "3.513952539205742", - "0.0", - "0.0", - "0.0021745756936431323" - ], - [ - "14927", - "0.003930375774752025", - "1.7590716242850966", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00569037052360072", - "3.513933354857309", - "0.0", - "0.0", - "0.002170381025903331" - ], - [ - "14928", - "0.003922985360683219", - "1.7590583264761999", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005679673101732631", - "3.513914679313419", - "0.0", - "0.0", - "0.0021662976196338063" - ], - [ - "14929", - "0.003918044139439329", - "1.7590494355801338", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005672520814399741", - "3.5139021928638563", - "0.0", - "0.0", - "0.0021635674644789166" - ], - [ - "14930", - "0.003912720924085693", - "1.7590398573514636", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005664815596217449", - "3.513888741111807", - "0.0", - "0.0", - "0.0021606262519539374" - ], - [ - "14931", - "0.003913272836023606", - "1.7590408494982235", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0056656147763239715", - "3.51389013507121", - "0.0", - "0.0", - "0.002160930895723241" - ], - [ - "14932", - "0.003903750440185378", - "1.7590236939049644", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0056518383921478135", - "3.5138660551270826", - "0.0", - "0.0", - "0.0021556624882229426" - ], - [ - "14933", - "0.003892925131202671", - "1.7590042156590302", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005636168983557662", - "3.5138386996152526", - "0.0", - "0.0", - "0.0021496812788476794" - ], - [ - "14934", - "0.003882148923804643", - "1.7589848269443509", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005620570246788446", - "3.5138114690783557", - "0.0", - "0.0", - "0.0021437276008208403" - ], - [ - "14935", - "0.0038715569645474597", - "1.7589656211132048", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0056052865955051245", - "3.5137845883430905", - "0.0", - "0.0", - "0.0021378273335897952" - ], - [ - "14936", - "0.003860820903850932", - "1.7589463038780617", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005589746183530114", - "3.5137574586176874", - "0.0", - "0.0", - "0.00213189562417175" - ], - [ - "14937", - "0.0038501130565536464", - "1.758927037317933", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0055742466226527156", - "3.5137304000930087", - "0.0", - "0.0", - "0.0021259794904545768" - ], - [ - "14938", - "0.003839523004067035", - "1.7589079881306462", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005558915786057173", - "3.5137036434353206", - "0.0", - "0.0", - "0.0021201302220768973" - ], - [ - "14939", - "0.0038278451983924052", - "1.7588869764328152", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005542012144611579", - "3.51367413386975", - "0.0", - "0.0", - "0.0021136782521732314" - ], - [ - "14940", - "0.003816143073734021", - "1.7588659209857742", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005525073279076862", - "3.513644562827358", - "0.0", - "0.0", - "0.002107212868391181" - ], - [ - "14941", - "0.0038046323903462172", - "1.758845210003361", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005508411503635927", - "3.513615475530624", - "0.0", - "0.0", - "0.0021008532770565077" - ], - [ - "14942", - "0.003793152285865099", - "1.7588245540483696", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005491793969789517", - "3.513586465483807", - "0.0", - "0.0", - "0.002094510601940681" - ], - [ - "14943", - "0.003781701873843297", - "1.758803951525773", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00547521939456786", - "3.513557530447045", - "0.0", - "0.0", - "0.0020881843531187338" - ], - [ - "14944", - "0.0037702753347822696", - "1.7587833919646", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005458679354344017", - "3.5135286557147", - "0.0", - "0.0", - "0.002081871315220523" - ], - [ - "14945", - "0.0037588538299836694", - "1.758762841468701", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005442146579976855", - "3.5134997936816825", - "0.0", - "0.0", - "0.0020755610799904835" - ], - [ - "14946", - "0.0037470140646842956", - "1.7587414004492883", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005425053271698546", - "3.513469767220431", - "0.0", - "0.0", - "0.0020689748576700464" - ], - [ - "14947", - "0.0037346532702608524", - "1.7587191603781411", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005407160667529177", - "3.5134385319152024", - "0.0", - "0.0", - "0.0020621458729925277" - ], - [ - "14948", - "0.0037223206120792153", - "1.7586969709393547", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005389308766526361", - "3.5134073676834", - "0.0", - "0.0", - "0.00205533245763207" - ], - [ - "14949", - "0.003710508506838102", - "1.7586757181092687", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005372210358599812", - "3.513377518847936", - "0.0", - "0.0", - "0.002048806655076392" - ], - [ - "14950", - "0.003698792576775906", - "1.7586546383291861", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005355251144890838", - "3.513347913020823", - "0.0", - "0.0", - "0.0020423340086609737" - ], - [ - "14951", - "0.0036869820318942", - "1.7586333883219445", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005338154950286623", - "3.513318068081083", - "0.0", - "0.0", - "0.002035809113501777" - ], - [ - "14952", - "0.003675336507743975", - "1.7586124351392345", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00532129763784407", - "3.5132886400472363", - "0.0", - "0.0", - "0.002029375377643879" - ], - [ - "14953", - "0.003664125547351135", - "1.7585922639431737", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00530506932119935", - "3.513260310197979", - "0.0", - "0.0", - "0.00202318177350292" - ], - [ - "14954", - "0.0036528602357485556", - "1.7585720182434095", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005288754727809861", - "3.5132318611176143", - "0.0", - "0.0", - "0.0020169657436872506" - ], - [ - "14955", - "0.003641201034777759", - "1.7585510404959166", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0052718775458730684", - "3.513202398471575", - "0.0", - "0.0", - "0.0020105245236824495" - ], - [ - "14956", - "0.003629539559402343", - "1.7585300586637413", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005254997049447519", - "3.5131729300550174", - "0.0", - "0.0", - "0.0020040820693571666" - ], - [ - "14957", - "0.003617087958973972", - "1.7585076033827851", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005236989664561027", - "3.513141424600722", - "0.0", - "0.0", - "0.001997186253386917" - ], - [ - "14958", - "0.003605320259261728", - "1.7584864306112988", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005219955302443307", - "3.513111687839111", - "0.0", - "0.0", - "0.001990685216080149" - ], - [ - "14959", - "0.003596417657546598", - "1.7584704128086348", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005207068304828341", - "3.513089191112007", - "0.0", - "0.0", - "0.0019857670102648556" - ], - [ - "14960", - "0.003591970872127543", - "1.758462412513165", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005200631181250655", - "3.513077954527707", - "0.0", - "0.0", - "0.001983310563004431" - ], - [ - "14961", - "0.003597539821032648", - "1.7584724323160603", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005208692541386593", - "3.513092027175735", - "0.0", - "0.0", - "0.0019863871006787033" - ], - [ - "14962", - "0.0036019713866550468", - "1.7584804057095396", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005215107472986021", - "3.5131032256699735", - "0.0", - "0.0", - "0.0019888353003240733" - ], - [ - "14963", - "0.0036065871197033567", - "1.7584887104632199", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005221788993515464", - "3.5131148895487505", - "0.0", - "0.0", - "0.001991385245891249" - ], - [ - "14964", - "0.003612323770807904", - "1.7584990320050993", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005230093098053993", - "3.5131293859633086", - "0.0", - "0.0", - "0.0019945544435618153" - ], - [ - "14965", - "0.0036195635377091273", - "1.7585120579972375", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00524057303418844", - "3.5131476807165654", - "0.0", - "0.0", - "0.0019985540412298147" - ], - [ - "14966", - "0.0036276300533855275", - "1.758526571502432", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005252249721756265", - "3.5131680646377528", - "0.0", - "0.0", - "0.00200301038501479" - ], - [ - "14967", - "0.00363568051231349", - "1.7585410561214583", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005263903155783997", - "3.5131884079728306", - "0.0", - "0.0", - "0.002007457868842982" - ], - [ - "14968", - "0.0036437475580478043", - "1.7585555705875466", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005275580589416795", - "3.513208793211352", - "0.0", - "0.0", - "0.002011914526678813" - ], - [ - "14969", - "0.0036518136652972663", - "1.7585700833686877", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005287256653928579", - "3.513229176067278", - "0.0", - "0.0", - "0.002016370676665953" - ], - [ - "14970", - "0.00365998214332061", - "1.7585847803420542", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005299080894063845", - "3.513249817600372", - "0.0", - "0.0", - "0.002020883392577376" - ], - [ - "14971", - "0.0036681287145178087", - "1.7585994379036742", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005310873412234682", - "3.5132704037641798", - "0.0", - "0.0", - "0.002025384016800935" - ], - [ - "14972", - "0.0036763695373328194", - "1.7586142647829", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005322802439517378", - "3.5132912278801447", - "0.0", - "0.0", - "0.0020299366351482604" - ], - [ - "14973", - "0.003684608755921271", - "1.758629089045457", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005334729046935994", - "3.5133120481378994", - "0.0", - "0.0", - "0.002034488464906548" - ], - [ - "14974", - "0.0036929855956731976", - "1.7586441609242152", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005346854855284728", - "3.5133332161483626", - "0.0", - "0.0", - "0.002039116336061667" - ], - [ - "14975", - "0.003700160691106544", - "1.758656754320325", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005357344062187418", - "3.513351100995105", - "0.0", - "0.0", - "0.0020429773200256697" - ], - [ - "14976", - "0.003708532545464452", - "1.7586718165218818", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005369462865696118", - "3.513372255829524", - "0.0", - "0.0", - "0.0020476022252327855" - ], - [ - "14977", - "0.003716947122298881", - "1.7586869555913933", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005381643501240991", - "3.513393518607344", - "0.0", - "0.0", - "0.002052250743356771" - ], - [ - "14978", - "0.0037256954791517836", - "1.7587026951847355", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005394307292355022", - "3.513415624800482", - "0.0", - "0.0", - "0.002057083665948545" - ], - [ - "14979", - "0.003734749263013189", - "1.7587189842910969", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005407413194923978", - "3.513438502762391", - "0.0", - "0.0", - "0.0020620853311023994" - ], - [ - "14980", - "0.003743800980829953", - "1.758735269684878", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0054205160933945735", - "3.513461375489695", - "0.0", - "0.0", - "0.0020670858682653322" - ], - [ - "14981", - "0.0037529249709232627", - "1.7587516851118863", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0054337235967404415", - "3.5134844308272544", - "0.0", - "0.0", - "0.002072126345106084" - ], - [ - "14982", - "0.003762148861952584", - "1.7587682798135216", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00544707585066202", - "3.513507738225611", - "0.0", - "0.0", - "0.0020772218732431473" - ], - [ - "14983", - "0.0037713690300432115", - "1.7587848682874345", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00546042254991334", - "3.5135310365648658", - "0.0", - "0.0", - "0.002082315510173083" - ], - [ - "14984", - "0.0037805431209635113", - "1.7588013707318337", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005473703556741347", - "3.513554216015984", - "0.0", - "0.0", - "0.0020873826851856747" - ], - [ - "14985", - "0.0037897323807155017", - "1.7588179016165244", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00548700613481422", - "3.5135774346744113", - "0.0", - "0.0", - "0.0020924586266167842" - ], - [ - "14986", - "0.003798943757967223", - "1.7588344742760347", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005500340071440368", - "3.513600710747341", - "0.0", - "0.0", - "0.002097547444494079" - ], - [ - "14987", - "0.0038081562012388793", - "1.7588510488581794", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005513675537335369", - "3.5136239894995547", - "0.0", - "0.0", - "0.0021026368651423898" - ], - [ - "14988", - "0.003817340716175724", - "1.7588675731976977", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005526970561801654", - "3.5136471976658186", - "0.0", - "0.0", - "0.0021077108705497946" - ], - [ - "14989", - "0.0038265980574879815", - "1.7588842285676747", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005540370991997966", - "3.51367058984108", - "0.0", - "0.0", - "0.002112825122977997" - ], - [ - "14990", - "0.0038366641843256997", - "1.7589023390716474", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005554942160820847", - "3.513696025702439", - "0.0", - "0.0", - "0.002118386207830552" - ], - [ - "14991", - "0.003846695196214112", - "1.7589203864040341", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005569462482735205", - "3.5137213728155205", - "0.0", - "0.0", - "0.002123927909693019" - ], - [ - "14992", - "0.0038568070114383636", - "1.7589385788493304", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00558409984237272", - "3.5137469238806016", - "0.0", - "0.0", - "0.0021295141805040075" - ], - [ - "14993", - "0.0038668855149232464", - "1.758956711636958", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005598688877482045", - "3.513772390963919", - "0.0", - "0.0", - "0.002135082152364449" - ], - [ - "14994", - "0.003877114600858224", - "1.7589751153514752", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005613495869735049", - "3.513798238532088", - "0.0", - "0.0", - "0.0021407333319813987" - ], - [ - "14995", - "0.003887147136337053", - "1.7589931654468234", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0056280183311166005", - "3.513823589425575", - "0.0", - "0.0", - "0.0021462759415575056" - ], - [ - "14996", - "0.0038973295791860448", - "1.7590114852546037", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005642757772095044", - "3.513849319097717", - "0.0", - "0.0", - "0.0021519013862770445" - ], - [ - "14997", - "0.0039074493978450454", - "1.759029692397361", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005657406545612432", - "3.513874890509443", - "0.0", - "0.0", - "0.002157492250077659" - ], - [ - "14998", - "0.003916456294453048", - "1.7590458972233733", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005670444313453119", - "3.5138976497031753", - "0.0", - "0.0", - "0.002162468275452977" - ], - [ - "14999", - "0.003925464356020596", - "1.7590620998108346", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0056834851672377135", - "3.5139204084465963", - "0.0", - "0.0", - "0.002167443544803478" - ], - [ - "15000", - "0.003936067605491518", - "1.759081176726501", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005698833677625352", - "3.5139472013622983", - "0.0", - "0.0", - "0.0021733015333576826" - ], - [ - "15001", - "0.003946645279483658", - "1.759100207634061", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005714145148488339", - "3.513973929633336", - "0.0", - "0.0", - "0.002179145410478977" - ], - [ - "15002", - "0.003955394213941613", - "1.759115948354809", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005726809455330605", - "3.5139960369264593", - "0.0", - "0.0", - "0.002183978972552621" - ], - [ - "15003", - "0.003964255144836892", - "1.7591318905792344", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005739635867155479", - "3.514018427205137", - "0.0", - "0.0", - "0.0021888744225183046" - ], - [ - "15004", - "0.003975879645786053", - "1.7591528049124594", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00575646259405852", - "3.5140478006016265", - "0.0", - "0.0", - "0.0021952966975135857" - ], - [ - "15005", - "0.003987527003078619", - "1.7591737603754054", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005773322383919449", - "3.514077231729687", - "0.0", - "0.0", - "0.0022017316222377884" - ], - [ - "15006", - "0.0040000414982155775", - "1.759196275966721", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005791437349022665", - "3.514108853959562", - "0.0", - "0.0", - "0.0022086456474084896" - ], - [ - "15007", - "0.004012732770581977", - "1.7592188830411668", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0058098819545872", - "3.5141407463381675", - "0.0", - "0.0", - "0.002215583586576754" - ], - [ - "15008", - "0.004023495952558187", - "1.7592382471459251", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00582546201635751", - "3.5141679427489", - "0.0", - "0.0", - "0.0022215298887588645" - ], - [ - "15009", - "0.004034710337612276", - "1.7592583020121473", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005841734590672848", - "3.514196184962655", - "0.0", - "0.0", - "0.002227686084551705" - ], - [ - "15010", - "0.004045555352289378", - "1.7592778130311082", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005857433174910152", - "3.5142235878550423", - "0.0", - "0.0", - "0.002233677529668604" - ], - [ - "15011", - "0.004056389515187092", - "1.7592973029841743", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005873116536047779", - "3.5142509621004923", - "0.0", - "0.0", - "0.002239662494326406" - ], - [ - "15012", - "0.00406767127183609", - "1.7593175997450747", - "0.0", - "0.0", - "0.0", - "0.0", - "0.00588944728251936", - "3.514279468495483", - "0.0", - "0.0", - "0.0022458952611528193" - ], - [ - "15013", - "0.0040790202467471", - "1.7593380174439999", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005905875308878097", - "3.5143081447136972", - "0.0", - "0.0", - "0.0022521651846161028" - ], - [ - "15014", - "0.004090815062515475", - "1.759359221007612", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005922953972508244", - "3.5143379347878105", - "0.0", - "0.0", - "0.0022586761525227057" - ], - [ - "15015", - "0.004103375912994235", - "1.7593818189327943", - "0.0", - "0.0", - "0.0", - "0.0", - "0.0059411361974482215", - "3.514369673044117", - "0.0", - "0.0", - "0.002265615628540249" - ], - [ - "15016", - "0.004116108362252189", - "1.759404725586162", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005959566790730317", - "3.514401844862033", - "0.0", - "0.0", - "0.002272649933774061" - ], - [ - "15017", - "0.004129282031197491", - "1.7594284256283568", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005978636167679101", - "3.514435131187912", - "0.0", - "0.0", - "0.0022799278947158814" - ], - [ - "15018", - "0.004141332619636258", - "1.7594501055776806", - "0.0", - "0.0", - "0.0", - "0.0", - "0.005996079697576323", - "3.5144655800553086", - "0.0", - "0.0", - "0.002286585541696193" - ], - [ - "15019", - "0.004155825570580491", - "1.7594761795384832", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006017058577256424", - "3.5145022001382276", - "0.0", - "0.0", - "0.0022945925639045574" - ], - [ - "15020", - "0.004170742272445795", - "1.7595025953968289", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006038787718547715", - "3.5145395632857355", - "0.0", - "0.0", - "0.0023026968263438747" - ], - [ - "15021", - "0.004186169253762631", - "1.7595303482247406", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006061119059779167", - "3.514578542144724", - "0.0", - "0.0", - "0.002311219447746094" - ], - [ - "15022", - "0.004203771717809918", - "1.759562014526025", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006086599538250595", - "3.5146230175270046", - "0.0", - "0.0", - "0.002320943897369239" - ], - [ - "15023", - "0.00422399470133055", - "1.7595983953039425", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006115873220372989", - "3.514674114168662", - "0.0", - "0.0", - "0.0023321161822881112" - ], - [ - "15024", - "0.0042460328690235374", - "1.759638041590893", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006147774387605507", - "3.514729797087954", - "0.0", - "0.0", - "0.002344291350441568" - ], - [ - "15025", - "0.004268591847921467", - "1.7596786248362393", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006180429368722821", - "3.5147867958338335", - "0.0", - "0.0", - "0.002356754327120113" - ], - [ - "15026", - "0.004291594092371357", - "1.7597200055383904", - "0.0", - "0.0", - "0.0", - "0.0", - "0.006213725908124508", - "3.514844914469698", - "0.0", - "0.0", - "0.002369462276618207" - ], - [ - "15027", - "0.00431280324184809", - "1.761481048805589", - "0.0052784401436562186", - "2.639353147220324", - "0.005519849369108251", - "2.858821171824008", - "0.006244077045464347", - "3.5172252456350597", - "0.006726895496368412", - "3.9561612948424276", - "0.002381529438231832" - ], - [ - "15028", - "0.004334958649913964", - "1.7615297592214643", - "0.005305551327150283", - "2.639411467380832", - "0.0055481994964593625", - "2.858881894420674", - "0.006276144004386601", - "3.5172931755402", - "0.0067614403430047605", - "3.956234029619884", - "0.0023937732954413273" - ], - [ - "15029", - "0.004374785961587995", - "1.761611900659437", - "0.005354875652390211", - "2.639511187224006", - "0.005599898075090764", - "2.858986008865148", - "0.0063349653431924256", - "3.517410473788574", - "0.006825010188593533", - "3.9563601170708584", - "0.0024146065799835643" - ], - [ - "15030", - "0.004399486862265069", - "1.76166617715992", - "0.005385104875395881", - "2.6395761790444805", - "0.005631509378678583", - "2.8590536795156205", - "0.006370722888526692", - "3.517486180929041", - "0.0068635318950920985", - "3.956441181871321", - "0.0024282508360034456" - ], - [ - "15031", - "0.004426738163871246", - "1.7617260578571208", - "0.005418455235003212", - "2.6396478813231186", - "0.005666384502786203", - "2.8591283371896177", - "0.006410172306135178", - "3.517569704789116", - "0.0069060308417011615", - "3.9565306165221146", - "0.0024433040216073135" - ], - [ - "15032", - "0.004453475123805322", - "1.7617841015596036", - "0.005451252751205006", - "2.639717562803039", - "0.005700697158054928", - "2.8592009281138977", - "0.0064490303786046916", - "3.5176510240464745", - "0.006947919192304534", - "3.9566177546681924", - "0.0024579198690059525" - ], - [ - "15033", - "0.004480887719803915", - "1.7618443219648399", - "0.005484801969663858", - "2.639789675361231", - "0.005735780532128844", - "2.859276013710329", - "0.006488716219523801", - "3.517735028757622", - "0.006990673344453773", - "3.956707705455818", - "0.002473059220084029" - ], - [ - "15034", - "0.0045084384968034725", - "1.7619048565273447", - "0.005518519085634877", - "2.639862161318885", - "0.005771039232842728", - "2.85935148751677", - "0.006528599674466282", - "3.517819466110425", - "0.007033639968881985", - "3.956798118506195", - "0.002488277319140663" - ], - [ - "15035", - "0.004536068553921809", - "1.7619655536382661", - "0.005552334421749816", - "2.6399348447521636", - "0.005806400888706818", - "2.859427167530638", - "0.0065686002895778235", - "3.517904135866061", - "0.007076733223491827", - "3.95688878142301", - "0.002503536818265796" - ], - [ - "15036", - "0.004561270309209627", - "1.7620209270113556", - "0.0055831766350517426", - "2.6400011503189704", - "0.005838653216512272", - "2.859496206145874", - "0.006605082960893858", - "3.5179813736265855", - "0.007116036123814917", - "3.956971485280393", - "0.0025174576575253955" - ], - [ - "15037", - "0.00458732821644448", - "1.7620781207525007", - "0.005615073150910573", - "2.6400696509307378", - "0.005872009384527096", - "2.859567533475297", - "0.006642818085376666", - "3.518061181108975", - "0.007156690552609713", - "3.9570569461980933", - "0.002531838347512295" - ], - [ - "15038", - "0.004610664419985514", - "1.7621293949465513", - "0.005643632195217936", - "2.640131047902001", - "0.005901874139026041", - "2.859631461140863", - "0.006676599970450358", - "3.51813270085745", - "0.0071930838580665695", - "3.957133527335175", - "0.002544728869520669" - ], - [ - "15039", - "0.004636516578336337", - "1.7621861972524562", - "0.005675270222672902", - "2.6401990642574407", - "0.005934958633757043", - "2.8597022810086865", - "0.006714023867009466", - "3.518211931262425", - "0.007233400689177749", - "3.957218364764917", - "0.002559009289663209" - ], - [ - "15040", - "0.004622518808598935", - "1.7621554413744587", - "0.005658139675883435", - "2.640162236493721", - "0.00591704489270456", - "2.8596639352735367", - "0.006693760543167934", - "3.5181690316129837", - "0.0072115709768101844", - "3.957172429172615", - "0.0025512770740299356" - ], - [ - "15041", - "0.00460860845436438", - "1.7621248819766713", - "0.005641115612939497", - "2.6401256428540334", - "0.005899242402583277", - "2.8596258330733737", - "0.006673622771514616", - "3.518126403731395", - "0.007189876350802175", - "3.957126784170076", - "0.0025435941372141425" - ], - [ - "15042", - "0.0045946864264258345", - "1.76209429254674", - "0.005624077721916055", - "2.6400890143339746", - "0.00588142554578861", - "2.859587694780783", - "0.006653469017406274", - "3.5180837361212087", - "0.007168164665151384", - "3.957081097014826", - "0.002535903835445395" - ], - [ - "15043", - "0.004580802039956538", - "1.7620637858431747", - "0.005607085877476463", - "2.640052484838494", - "0.0058636568368564445", - "2.8595496595873238", - "0.0066333697149963886", - "3.5180411838338137", - "0.007146511633756352", - "3.957035533331473", - "0.002528234364916687" - ], - [ - "15044", - "0.004568030010162502", - "1.7620357211531872", - "0.005591455553124726", - "2.640018879965506", - "0.005847311938865282", - "2.859514669668586", - "0.006614881096086951", - "3.518002038777825", - "0.007126593867568064", - "3.9569936181839847", - "0.0025211789242380518" - ], - [ - "15045", - "0.0045561216246260226", - "1.7620090600623914", - "0.0055769357396722365", - "2.6399870808374595", - "0.005832139268433791", - "2.8594815860312264", - "0.006597749854718451", - "3.517965101612527", - "0.007108156912241558", - "3.956954112000061", - "0.0025144933945335933" - ], - [ - "15046", - "0.004543489095143293", - "1.76198130536229", - "0.005561475731880665", - "2.6399538462261773", - "0.0058159723910650085", - "2.8594469814421495", - "0.0065794623686180375", - "3.517926387090065", - "0.007088455686986723", - "3.956912657522009", - "0.0025075158216685484" - ], - [ - "15047", - "0.004542612090317552", - "1.761979378511599", - "0.005560402430691642", - "2.639951538935439", - "0.005814850015785165", - "2.8594445790413987", - "0.006578192771065732", - "3.5179236993592786", - "0.007087087941252778", - "3.9569097795711983", - "0.002507031409569371" - ], - [ - "15048", - "0.004574894803581411", - "1.7620503063037585", - "0.005599910799336061", - "2.640036470719134", - "0.005856164798274724", - "2.859533011822978", - "0.006624926795090712", - "3.51802263513451", - "0.007137434792968037", - "3.957015717342198", - "0.00252486281207211" - ], - [ - "15049", - "0.004607159442135841", - "1.7621211944958721", - "0.005639396943316062", - "2.64012135490093", - "0.005897456318611118", - "2.8596213950021947", - "0.006671634444496284", - "3.518121515305988", - "0.007187753195086395", - "3.957121595508517", - "0.0025426844397753987" - ], - [ - "15050", - "0.004640697878556123", - "1.7621948814499413", - "0.0056804418773186306", - "2.640209590231185", - "0.005940377877009258", - "2.859713267426496", - "0.006720185876081139", - "3.5182242990124286", - "0.007240057875462393", - "3.9572316534030505", - "0.0025612098810311075" - ], - [ - "15051", - "0.004672775118841609", - "1.762265358137759", - "0.005719698468045987", - "2.640293981291446", - "0.005981429305347082", - "2.859801137079868", - "0.006766621817250365", - "3.5183226044451335", - "0.007290083491852554", - "3.957336916021977", - "0.0025789284204328538" - ], - [ - "15052", - "0.004705296067495942", - "1.7623368098067795", - "0.00575949797019684", - "2.640379539640862", - "0.0060230484458720646", - "2.8598902220993825", - "0.006813699872897738", - "3.5184222694749443", - "0.007340800824248187", - "3.9574436343919857", - "0.0025968922620941467" - ], - [ - "15053", - "0.004702679955413456", - "1.762331061951361", - "0.005756296346774406", - "2.6403726569950496", - "0.006019700444614644", - "2.859883055755972", - "0.006809912738135357", - "3.5184142520387387", - "0.007336720933815832", - "3.957435049560583", - "0.0025954471726915554" - ], - [ - "15054", - "0.004658886831104556", - "1.7622348442611109", - "0.005702701793251424", - "2.640257443013093", - "0.005963655533788141", - "2.8597630927010886", - "0.006746516755398293", - "3.5182800417650757", - "0.0072684242364717275", - "3.9572913411410666", - "0.0025712569068108183" - ], - [ - "15055", - "0.004614440429408271", - "1.7621371914679573", - "0.005648307554404896", - "2.640140510250369", - "0.005906774335654052", - "2.859641339945972", - "0.00668217467940152", - "3.5181438290327813", - "0.007199108241899833", - "3.957145488423987", - "0.0025467061794150216" - ], - [ - "15056", - "0.004601537632749404", - "1.762108639655309", - "0.005632538907382088", - "2.6401063727252123", - "0.005890289226040259", - "2.8596058059926883", - "0.006663540182014772", - "3.518104105795116", - "0.007179040819331114", - "3.9571029723300675", - "0.002539535083484037" - ], - [ - "15057", - "0.004632182601810253", - "1.7621759680284337", - "0.005670042933136817", - "2.6401869944495133", - "0.005929508015968458", - "2.859689751054783", - "0.006707903264463381", - "3.518198020870593", - "0.007226833430126664", - "3.957203534081133", - "0.0025564619391571244" - ], - [ - "15058", - "0.004666024323990594", - "1.7622503199286792", - "0.005711459110306426", - "2.6402760262380283", - "0.005972817806885383", - "2.8597824528153657", - "0.006756893896622256", - "3.5183017325473775", - "0.007279611289780172", - "3.957314585702052", - "0.0025751547513589326" - ], - [ - "15059", - "0.004699750965608651", - "1.7623244191134995", - "0.0057527343353558965", - "2.640364755215032", - "0.006015980177792707", - "2.8598748392404154", - "0.006805717705103141", - "3.518405091316565", - "0.007332209389976764", - "3.9574252593673314", - "0.0025937842261141604" - ], - [ - "15060", - "0.004685271300917129", - "1.7622926065225513", - "0.0057350138948081275", - "2.640326661721278", - "0.005997449543280877", - "2.85983517552096", - "0.006784756488699126", - "3.518360716920005", - "0.007309627785644625", - "3.9573777445193685", - "0.0025857861131351324" - ], - [ - "15061", - "0.004670826264024219", - "1.7622608700331046", - "0.005717335811360861", - "2.6402886593173336", - "0.0059789631981950215", - "2.8597956066383907", - "0.006763845358697503", - "3.5183164486015626", - "0.007287100132365824", - "3.9573303432436773", - "0.002577807169350934" - ], - [ - "15062", - "0.004657042145678116", - "1.762230422448967", - "0.005700484253236589", - "2.640252241569778", - "0.005961344780126207", - "2.8597576963499804", - "0.006743926360795061", - "3.5182740606905885", - "0.007265647414574298", - "3.957284970250994", - "0.002570157930561172" - ], - [ - "15063", - "0.004643569420648041", - "1.7622008206310376", - "0.005683996236344042", - "2.640216795633474", - "0.005944102940268042", - "2.8597207893840833", - "0.006724423052040043", - "3.5182327706359104", - "0.007244636459888043", - "3.9572407581371287", - "0.002562715789256039" - ], - [ - "15064", - "0.004630694543409328", - "1.762172534375424", - "0.005668239638811807", - "2.64018292445419", - "0.005927625912662425", - "2.8596855219738817", - "0.006705784734214284", - "3.518193314532956", - "0.007224557281915523", - "3.957198509572339", - "0.0025556043526043727" - ], - [ - "15065", - "0.004617855346756885", - "1.7621443265281762", - "0.0056525266915267046", - "2.640149147135413", - "0.00591119452771916", - "2.859650352287222", - "0.006687198036296525", - "3.5181539677426494", - "0.007204533708681435", - "3.957156378046268", - "0.0025485126572172456" - ], - [ - "15066", - "0.0046017393393857405", - "1.7621089195190587", - "0.005632803473521255", - "2.640106749182057", - "0.005890569507055133", - "2.8596062065978067", - "0.006663867607656768", - "3.518104578845056", - "0.007179399674724525", - "3.9571034936765552", - "0.0025396110711147133" - ], - [ - "15067", - "0.0045862641749132935", - "1.7620749201557646", - "0.005613864546846662", - "2.6400660368448943", - "0.005870764639830005", - "2.8595638160171766", - "0.006641464918780031", - "3.518057153534024", - "0.007155265104746715", - "3.957052711878589", - "0.0025310634310465566" - ], - [ - "15068", - "0.004575367007628516", - "1.762051142740315", - "0.005600510500024582", - "2.64003752319251", - "0.005856796373123598", - "2.8595341183055587", - "0.006625653992420648", - "3.518023903644705", - "0.00713822573861868", - "3.9570170938708027", - "0.002525080022836386" - ], - [ - "15069", - "0.004562682133684271", - "1.7620232736541546", - "0.005584986386107413", - "2.64000415148994", - "0.005840562449213198", - "2.8594993709488863", - "0.006607290638530554", - "3.5179850293257253", - "0.007118442764742125", - "3.956975468243618", - "0.002518073628837988" - ], - [ - "15070", - "0.00454923066275553", - "1.7619937202529932", - "0.005568524081412305", - "2.63996876290563", - "0.005823347436076499", - "2.859462523568789", - "0.006587817500069081", - "3.5179438055582666", - "0.0070974642093974685", - "3.9569313268845847", - "0.002510643825441978" - ], - [ - "15071", - "0.004535794597286686", - "1.7619642007175873", - "0.005552080612261007", - "2.6399334148419302", - "0.005806152116004586", - "2.8594257183730156", - "0.006568366627235327", - "3.5179026289662727", - "0.007076509634722487", - "3.9568872360284444", - "0.0025032225673380457" - ], - [ - "15072", - "0.004522361853025119", - "1.761934688498345", - "0.005535641189612001", - "2.6398980755071912", - "0.005788961023758721", - "2.859388922259403", - "0.006548920526198883", - "3.517861462516038", - "0.007055560194492323", - "3.956843156020461", - "0.002495803179851355" - ], - [ - "15073", - "0.004508912410170367", - "1.7619051351607016", - "0.005519181795283875", - "2.6398626880300826", - "0.005771749141562252", - "2.859352076247428", - "0.006529451180397384", - "3.517820240899463", - "0.007034585872954138", - "3.9567990173341534", - "0.00248837363994335" - ], - [ - "15074", - "0.0044954954840332444", - "1.7618756577463153", - "0.005502761693774603", - "2.639827390305535", - "0.005754578246209943", - "2.85931532344534", - "0.0065100279035159615", - "3.517779122864755", - "0.007013661008386641", - "3.9567549891443647", - "0.0024809630645505278" - ], - [ - "15075", - "0.0044823170294561385", - "1.7618467042803367", - "0.005486633424495632", - "2.6397927199520783", - "0.005737712523255506", - "2.8592792238700135", - "0.006490949819535126", - "3.5177387356238197", - "0.006993108017054872", - "3.95671174345969", - "0.0024736842393771516" - ], - [ - "15076", - "0.004469140974501379", - "1.7618177559945136", - "0.005470508086538509", - "2.639758055799024", - "0.005720849864547791", - "2.8592431307501514", - "0.006471875198575639", - "3.5176983556035344", - "0.006972558754594204", - "3.9566685055057893", - "0.0024664067504271184" - ], - [ - "15077", - "0.004455922090621667", - "1.7617887137418349", - "0.005454330303424159", - "2.639723279066422", - "0.005703932356624783", - "2.8592069203975687", - "0.006452738516226653", - "3.517657844391009", - "0.006951942622627899", - "3.9566251270533024", - "0.0024591056650166802" - ], - [ - "15078", - "0.004427194653570113", - "1.7617255988344598", - "0.005419172490641443", - "2.639647701825207", - "0.005667166949909275", - "2.859128227572894", - "0.006411150327712773", - "3.5175698048159543", - "0.006907139246248437", - "3.956530856311328", - "0.0024432389794274536" - ], - [ - "15079", - "0.004389718099345086", - "1.7616432620279097", - "0.005373307025919024", - "2.6395491070125616", - "0.005619204257562508", - "2.8590255682587244", - "0.006356895952492962", - "3.5174549519972134", - "0.006848690415779931", - "3.9564078744895395", - "0.0024225402461972093" - ], - [ - "15080", - "0.004352272815516287", - "1.7615609940735257", - "0.005327479690630743", - "2.6394505944005937", - "0.005571281409409357", - "2.858922994482361", - "0.006302686565745199", - "3.517340194727662", - "0.006790290003302426", - "3.9562849948911962", - "0.002401859065287376" - ], - [ - "15081", - "0.004314715211637398", - "1.7614781424210217", - "0.005281551309453692", - "2.6393514679045484", - "0.005523260333907765", - "2.8588197992754303", - "0.0062483874072699844", - "3.517224793388076", - "0.006731805456178131", - "3.956161456129839", - "0.0023810430160048105" - ], - [ - "15082", - "0.004277461961722136", - "1.7613962981716", - "0.005235958550965887", - "2.6392534617890844", - "0.005475582698276825", - "2.858717752693455", - "0.006194455140209639", - "3.5171106254065685", - "0.006673703434831514", - "3.9560392072153103", - "0.0023604687832346326" - ], - [ - "15083", - "0.004240320122806379", - "1.7613147002452971", - "0.005190501852644795", - "2.639155750038809", - "0.0054280472851043985", - "2.858616012487187", - "0.00614068358248321", - "3.516996799832321", - "0.006615774447402418", - "3.955917324729077", - "0.002339956663129549" - ], - [ - "15084", - "0.004203740252165415", - "1.761234337067268", - "0.0051457327939336064", - "2.639059516635543", - "0.005381230929375654", - "2.8585158115276115", - "0.006087725335701798", - "3.5168846962038174", - "0.0065587216065858935", - "3.9557972859879547", - "0.0023197551686290328" - ], - [ - "15085", - "0.004168479236234307", - "1.761156871448128", - "0.0051025777167924774", - "2.6389667527819407", - "0.00533610233693202", - "2.858419223115394", - "0.0060366761973506475", - "3.516776634115754", - "0.006503725437629733", - "3.95568157478266", - "0.0023002822751179665" - ], - [ - "15086", - "0.0041332488447664625", - "1.761079473241773", - "0.00505945999562332", - "2.6388740694355195", - "0.005291012783337535", - "2.858322718483956", - "0.005985671146480178", - "3.516668665629266", - "0.0064487767219086065", - "3.9555659637261393", - "0.002280826543052747" - ], - [ - "15087", - "0.004098111600750513", - "1.761002279604592", - "0.0050164561733835", - "2.638781630891203", - "0.005246042316541747", - "2.858226468712856", - "0.005934800746016487", - "3.5165609821778143", - "0.006393973032332981", - "3.9554506578211197", - "0.002261422455484539" - ], - [ - "15088", - "0.0040633606442613", - "1.7609259413283465", - "0.004973924285014333", - "2.6386902147510427", - "0.005201565195202591", - "2.858131283106717", - "0.005884487925767365", - "3.516454488173739", - "0.006339769746143881", - "3.9553366248850876", - "0.002242233362755235" - ], - [ - "15089", - "0.004028595960435479", - "1.760849566581133", - "0.004931376173438311", - "2.638598756355195", - "0.005157071226689018", - "2.85803605379871", - "0.005834156386441142", - "3.516347946129257", - "0.006285546492942559", - "3.955222541016288", - "0.002223035534429815" - ], - [ - "15090", - "0.003994512225243017", - "1.7607746879401307", - "0.004889661349655169", - "2.6385090893328575", - "0.0051134486307582066", - "2.857942689681039", - "0.005784810474067321", - "3.516243490725584", - "0.006232385036273397", - "3.955110691421947", - "0.002204213976418714" - ], - [ - "15091", - "0.003960609114393414", - "1.760700206236939", - "0.004848167475014448", - "2.6384198974398623", - "0.0050700570651697075", - "2.857849820240593", - "0.005735725835635483", - "3.516139588642786", - "0.006179505015946001", - "3.9549994342442476", - "0.0021854923931513446" - ], - [ - "15092", - "0.003928704172273934", - "1.760630114420943", - "0.004809119045353194", - "2.638335962255115", - "0.005029222763623009", - "2.857762424213658", - "0.005689533918432455", - "3.5160418100892867", - "0.006129741354972086", - "3.954894734006373", - "0.002167874426115411" - ], - [ - "15093", - "0.003898012273485878", - "1.7605626876372455", - "0.004771555161950194", - "2.6382552182863632", - "0.0049899408840662724", - "2.8576783509486425", - "0.00564509805041451", - "3.515947748935481", - "0.0060818694946466675", - "3.9547940142600395", - "0.002150926496557246" - ], - [ - "15094", - "0.003867497392488296", - "1.7604956498427877", - "0.004734207837323951", - "2.63817493997009", - "0.004950885448532866", - "2.8575947625019156", - "0.005600918282159608", - "3.5158542300973923", - "0.006034273504577436", - "3.9546938751610434", - "0.002134076502816984" - ], - [ - "15095", - "0.003838437075608835", - "1.7604318076566394", - "0.004698640674583069", - "2.6380984882689296", - "0.004913691574326627", - "2.857515158422002", - "0.005558844273557302", - "3.5157651688812197", - "0.005988946073044419", - "3.954598509187365", - "0.002118029877660368" - ], - [ - "15096", - "0.0038336729302023043", - "1.7604213413837606", - "0.004692809789440837", - "2.6380859547809594", - "0.00490759400425047", - "2.857502108130259", - "0.00555194664867937", - "3.5157505681781585", - "0.005981515078298636", - "3.9545828748767575", - "0.002115399211725238" - ], - [ - "15097", - "0.0038296087347089304", - "1.760412412821289", - "0.004687835578187664", - "2.638075262716584", - "0.004902392289057348", - "2.857490975190408", - "0.005546062421666397", - "3.515738112611879", - "0.005975175843405765", - "3.954569537559527", - "0.002113155047751463" - ], - [ - "15098", - "0.0038262511670241785", - "1.7604050366388597", - "0.004683726214829339", - "2.638066429644383", - "0.004898094976780629", - "2.8574817778957637", - "0.0055412012626345", - "3.515727822649906", - "0.00596993878653708", - "3.9545585191526675", - "0.002111301071413857" - ], - [ - "15099", - "0.0038208402121898567", - "1.760393149408231", - "0.004677103686377398", - "2.638052194530456", - "0.0048911695549242835", - "2.857466955811012", - "0.005533367160564939", - "3.515711239652681", - "0.00596149889765871", - "3.9545407622137936", - "0.0021083132638147735" - ], - [ - "15100", - "0.0038168948660217295", - "1.7603844819492482", - "0.004672274930996567", - "2.638041815131876", - "0.004886119947240277", - "2.8574561484275334", - "0.005527654995971405", - "3.515699148314504", - "0.005955345028458824", - "3.954527814905818", - "0.002106134736072054" - ], - [ - "15101", - "0.003812985714465828", - "1.7603758940071974", - "0.004667490473085148", - "2.6380315309531874", - "0.004881116662739978", - "2.857445440189685", - "0.005521995231704468", - "3.5156871678991775", - "0.005949247611014129", - "3.9545149863721725", - "0.0021039761972271886" - ], - [ - "15102", - "0.0037758475982992206", - "1.7602943060552034", - "0.004622036606655825", - "2.6379338281246456", - "0.004833583858744976", - "2.857343708642006", - "0.005468225615012429", - "3.515573350194088", - "0.005891320119190731", - "3.954393111228809", - "0.002083469581586012" - ], - [ - "15103", - "0.003708593417521978", - "1.760146557126735", - "0.004539722909922634", - "2.63775689589012", - "0.004747505283022798", - "2.8571594805809664", - "0.005370852402323291", - "3.515367234653505", - "0.005786417148523618", - "3.9541724040351975", - "0.002046334432720665" - ], - [ - "15104", - "0.0036437853929648404", - "1.7600041825537833", - "0.004460402681827129", - "2.63758639879799", - "0.004664557004042701", - "2.8569819528590417", - "0.005277019970689418", - "3.515168615042197", - "0.005685328615120562", - "3.9539597231643", - "0.002010550815240263" - ], - [ - "15105", - "0.0035866468030113117", - "1.7598786570784737", - "0.0043904689247391635", - "2.637436078305816", - "0.004591424455171127", - "2.8568254336126517", - "0.005194291046467015", - "3.5149934995331584", - "0.005596202107330941", - "3.95377221014683", - "0.0019790025595556086" - ], - [ - "15106", - "0.003553274961620504", - "1.7598053439815928", - "0.004349623903683174", - "2.6373482834246187", - "0.004548711139198841", - "2.8567340182853753", - "0.005145972845745843", - "3.5148912228676448", - "0.0055441473167771775", - "3.9536626925891576", - "0.001960577077495165" - ], - [ - "15107", - "0.003562504974055465", - "1.759825620968662", - "0.004360920865723588", - "2.6373725658132376", - "0.004560524838640619", - "2.8567593020243813", - "0.005159336757391711", - "3.5149195106578133", - "0.005558544703225772", - "3.953692983080101", - "0.0019656731907192184" - ], - [ - "15108", - "0.00357211660939152", - "1.7598467363351469", - "0.004372684901408531", - "2.6373978521740615", - "0.004572826974412783", - "2.8567856311337905", - "0.005173253193425541", - "3.5149489680129764", - "0.005573537339434047", - "3.953724525932434", - "0.0019709800253574984" - ], - [ - "15109", - "0.003580796596878834", - "1.7598658050151847", - "0.004383308650895172", - "2.6374206875451174", - "0.004583936664399256", - "2.8568094081776008", - "0.005185820704911509", - "3.51497557007505", - "0.005587076731919678", - "3.9537530113400163", - "0.0019757724888461586" - ], - [ - "15110", - "0.003592265020174577", - "1.7598909994987524", - "0.0043973452558594885", - "2.6374508587468832", - "0.004598615314780716", - "2.856840823558916", - "0.005202425491544399", - "3.5150107179950143", - "0.005604965609386855", - "3.95379064761908", - "0.001982104548804755" - ], - [ - "15111", - "0.0036060786619640426", - "1.7599213461102494", - "0.00441425223835719", - "2.637487199756261", - "0.004616295632455478", - "2.856878663167764", - "0.0052224258147503385", - "3.515053053402273", - "0.005626512602946913", - "3.9538359802252785", - "0.001989731509177746" - ], - [ - "15112", - "0.0035857083263596532", - "1.7598765948059614", - "0.004389320352465249", - "2.6374336088135113", - "0.004590223358991649", - "2.856822862315399", - "0.005192932378570846", - "3.5149906228210615", - "0.005594738391623644", - "3.9537691298248365", - "0.001978484274148461" - ], - [ - "15113", - "0.0035431986336026482", - "1.759783207206491", - "0.004337291155630034", - "2.637321774002288", - "0.004535814286136881", - "2.8567064157012374", - "0.00513138367765742", - "3.5148603407980854", - "0.0055284299386711136", - "3.953629624195984", - "0.0019550135895478765" - ], - [ - "15114", - "0.003539250222929992", - "1.759774533133554", - "0.004332458539488715", - "2.6373113864902047", - "0.004530760618628396", - "2.8566955998293673", - "0.005125666856047438", - "3.5148482398468555", - "0.005522271014326799", - "3.9536166665251806", - "0.0019528335898125462" - ], - [ - "15115", - "0.0035246840921889467", - "1.759742533518082", - "0.004314630461862652", - "2.637273065784258", - "0.004512117054281079", - "2.856655698850802", - "0.005104576831536358", - "3.5148035980504346", - "0.005499550016373211", - "3.9535688641835227", - "0.0019447913528415353" - ], - [ - "15116", - "0.003510324462011251", - "1.7597109875758472", - "0.004297055107799084", - "2.637235288331973", - "0.004493737769246042", - "2.8566163635210042", - "0.005083785753586917", - "3.5147595890880985", - "0.005477151076480833", - "3.953521739466161", - "0.001936863170435585" - ], - [ - "15117", - "0.003495993088047757", - "1.7596795037303465", - "0.00427951431706728", - "2.6371975852066525", - "0.0044753946243221605", - "2.8565771055757287", - "0.005063035546086802", - "3.514715666682958", - "0.005454796160596563", - "3.953474707421111", - "0.0019289506300087123" - ], - [ - "15118", - "0.0034816788880352124", - "1.7596480576354312", - "0.004261994525701894", - "2.6371599272530117", - "0.004457073435118564", - "2.8565378946574067", - "0.005042310163368575", - "3.514671796870592", - "0.005432467982201916", - "3.9534277316793824", - "0.00192104761270185" - ], - [ - "15119", - "0.003467403831158286", - "1.75961669755389", - "0.004244522622894329", - "2.637122372267879", - "0.004438802320828339", - "2.856498790946376", - "0.005021641414630371", - "3.514628046981868", - "0.005410200810498393", - "3.9533808843388623", - "0.0019131662476862005" - ], - [ - "15120", - "0.0034531498958933608", - "1.759585383895098", - "0.0042270765513970085", - "2.6370848728400826", - "0.004420558215272921", - "2.8564597450763287", - "0.005001003206900657", - "3.514584361785067", - "0.005387966534652481", - "3.953334106257559", - "0.001905296584886065" - ], - [ - "15121", - "0.0034388886918605872", - "1.7595540211773475", - "0.004209625152650185", - "2.6370473230058606", - "0.0044023092678475845", - "2.8564206484629886", - "0.0049803616134397825", - "3.514540624834374", - "0.005365729843834581", - "3.95328727574863", - "0.0018974157702813922" - ], - [ - "15122", - "0.0034246671216332262", - "1.7595227787997219", - "0.0041922186387428565", - "2.6370099088342256", - "0.004384106518020264", - "2.8563816913428512", - "0.004959770155852487", - "3.514497038868729", - "0.005343545914407302", - "3.953240603885981", - "0.0018895640874139652" - ], - [ - "15123", - "0.003410408518944991", - "1.7594914550898844", - "0.004174766778514138", - "2.6369723972277948", - "0.004365856343406424", - "2.856342632762272", - "0.004939125038083285", - "3.514453339365705", - "0.005321304167867858", - "3.95319381043466", - "0.0018816919998066966" - ], - [ - "15124", - "0.003396187998144205", - "1.7594602150612004", - "0.004157361508401601", - "2.636934985797789", - "0.00434765488596595", - "2.8563036784819356", - "0.004918535018658997", - "3.514409756534377", - "0.005299121773787695", - "3.953147141902671", - "0.0018738409776294137" - ], - [ - "15125", - "0.003383073738688484", - "1.7594314053177464", - "0.004141310233736219", - "2.6369004847189217", - "0.004330869357498154", - "2.8562677545692154", - "0.0048995467287839545", - "3.5143695641200967", - "0.0052786649763078225", - "3.9531041038206842", - "0.0018666007485930133" - ], - [ - "15126", - "0.0033736017516073627", - "1.7594105970231062", - "0.004129716929001138", - "2.636875565748221", - "0.004318745723349581", - "2.8562418079295", - "0.0048858321063949125", - "3.514340534473336", - "0.005263889695091801", - "3.9530730188358936", - "0.0018613713968198126" - ], - [ - "15127", - "0.0033641128838194636", - "1.7593897516543011", - "0.0041181029539640495", - "2.6368506023634835", - "0.004306600471500196", - "2.856215815040779", - "0.004872093024108636", - "3.514311453072666", - "0.005249088059180929", - "3.953041878427257", - "0.001856132743530291" - ], - [ - "15128", - "0.003354596337006238", - "1.7593688454891614", - "0.004106455091899153", - "2.6368255661561566", - "0.0042944197806223825", - "2.856189746322906", - "0.004858313846792068", - "3.5142822868231525", - "0.005234243224238527", - "3.95301064715665", - "0.0018508788272204074" - ], - [ - "15129", - "0.003322364617663303", - "1.7592980381919048", - "0.004067004724960654", - "2.636740770659698", - "0.004253164751784991", - "2.8561014537766463", - "0.004811644832258005", - "3.5141835031274913", - "0.005183964885906681", - "3.9529048693613875", - "0.0018330844030686004" - ], - [ - "15130", - "0.0033101745311649934", - "1.759271258790813", - "0.004052084507509198", - "2.6367087008579184", - "0.004237562001595249", - "2.8560680613746947", - "0.004793994483853403", - "3.514146142925024", - "0.005164949472025506", - "3.9528648639585766", - "0.001826354578476584" - ], - [ - "15131", - "0.0033009954275980804", - "1.7592510939816792", - "0.0040408496125586175", - "2.6366845523755726", - "0.004225813158798751", - "2.856042916974046", - "0.004780703797519154", - "3.514118010769466", - "0.005150630889999423", - "3.9528347399664128", - "0.0018212870576770062" - ], - [ - "15132", - "0.0032918417691846493", - "1.7592309850799066", - "0.004029645853143859", - "2.6366604708306256", - "0.004214096874133661", - "2.8560178422683054", - "0.004767449937103068", - "3.5140899565813446", - "0.005136351979082673", - "3.9528046994567045", - "0.0018162336012662302" - ], - [ - "15133", - "0.0032829326661940167", - "1.7592113407110188", - "0.004018749295893504", - "2.636636963977508", - "0.004202703453318376", - "2.8559933697941298", - "0.0047545659255929925", - "3.514062587243996", - "0.005122474240442736", - "3.9527753988772405", - "0.0018112994067950414" - ], - [ - "15134", - "0.0032738290798562204", - "1.7591913420273464", - "0.0040076067846177435", - "2.6366130143449995", - "0.004191051210808125", - "2.8559684324244126", - "0.004741384489379267", - "3.5140346866626526", - "0.005108273341760028", - "3.952745522821479", - "0.0018062736703331741" - ], - [ - "15135", - "0.0032639492808799486", - "1.7591688753573484", - "0.003995596887038474", - "2.6365863021305187", - "0.004178508788578105", - "2.855940658823811", - "0.004727244493196998", - "3.5140037289036887", - "0.005093068296276261", - "3.9527124422902737", - "0.0018006540685628983" - ], - [ - "15136", - "0.003254836368177382", - "1.7591488527727903", - "0.003984443314769065", - "2.6365623247117798", - "0.004166845051416985", - "2.855915692696527", - "0.004714050261360747", - "3.513975796650769", - "0.0050788537346565885", - "3.9526825326202637", - "0.0017956224749940165" - ], - [ - "15137", - "0.0032457865112352565", - "1.7591289721082917", - "0.003973366545167121", - "2.636538516378842", - "0.004155261553650088", - "2.85589090244648", - "0.004700946579098987", - "3.5139480606493927", - "0.005064736596064919", - "3.952652832784668", - "0.0017906264433715266" - ], - [ - "15138", - "0.0032368275313855595", - "1.759109296976492", - "0.003962400360542149", - "2.6365149526810105", - "0.0041437935678312965", - "2.85586636660714", - "0.004687973189698738", - "3.513920608385529", - "0.005050759604277033", - "3.952623436237788", - "0.0017856818730723806" - ], - [ - "15139", - "0.0032278517595321424", - "1.7590895812243714", - "0.003951414020282557", - "2.6364913412697977", - "0.004132304585470161", - "2.8558417812811543", - "0.004674976281032972", - "3.513893101315224", - "0.0050367574114081794", - "3.9525939813379374", - "0.0017807272380313123" - ], - [ - "15140", - "0.0032189008695090115", - "1.7590699201351379", - "0.003940458127315602", - "2.6364677953082434", - "0.004120847441767249", - "2.85581726410152", - "0.004662015385122192", - "3.513865670481349", - "0.005022794014025487", - "3.952564608067902", - "0.0017757863538958307" - ], - [ - "15141", - "0.003209974792385836", - "1.7590503135573112", - "0.0039295325973374455", - "2.636444314615053", - "0.004109422048575348", - "2.8557928148794884", - "0.004649090402289055", - "3.5138383156727953", - "0.005008869304764859", - "3.952535316201666", - "0.0017708591824826178" - ], - [ - "15142", - "0.003201073459422997", - "1.7590307613398297", - "0.003918637346277251", - "2.6364208990094333", - "0.004098028317990814", - "2.8557684334268343", - "0.004636201233131505", - "3.513811036679037", - "0.004994983176558632", - "3.952506105513839", - "0.001765945685714489" - ], - [ - "15143", - "0.003192196802071058", - "1.75901126333205", - "0.003907772290296537", - "2.6363975483110913", - "0.004086666162352907", - "2.8557441195558515", - "0.004623347778522017", - "3.513783833290132", - "0.004981135522634756", - "3.9524769757796525", - "0.0017610458256200998" - ], - [ - "15144", - "0.003183344751970244", - "1.7589918193837464", - "0.0038969373457885415", - "2.6363742623402318", - "0.004075335494243116", - "2.8557198730793534", - "0.004610529939606839", - "3.5137567052967174", - "0.0049673262365159876", - "3.95244792677496", - "0.0017561595643336494" - ], - [ - "15145", - "0.0031754040544156796", - "1.7589740882243543", - "0.003887249219591926", - "2.636353100704239", - "0.004065210510885988", - "2.85569785382421", - "0.004599094384768173", - "3.5137321131841235", - "0.004955016967356296", - "3.9524216194240656", - "0.0017517137240631864" - ], - [ - "15146", - "0.003169515623850637", - "1.75896115455193", - "0.00388004169004551", - "2.6363376112542625", - "0.004057673206594228", - "2.855681725429845", - "0.004590567756240383", - "3.513714067956595", - "0.00494583078933782", - "3.9524022963077607", - "0.00174846349146089" - ], - [ - "15147", - "0.003162201964127516", - "1.7589450236321882", - "0.003871096892565019", - "2.6363183096493783", - "0.004048320624674395", - "2.855661631153676", - "0.004579991821002522", - "3.5136915956665686", - "0.004934439285221274", - "3.9523782386751636", - "0.0017444121072525093" - ], - [ - "15148", - "0.00315197638885661", - "1.7589225638494594", - "0.003858580592028615", - "2.6362914115855838", - "0.0040352316428216165", - "2.8556336235196147", - "0.0045651847952006205", - "3.513660259321708", - "0.004918486896786623", - "3.95234468318977", - "0.0017387679825125995" - ], - [ - "15149", - "0.0031417740026549916", - "1.7589001550111927", - "0.00384609266489488", - "2.6362645745150344", - "0.004022172330454852", - "2.8556056793909947", - "0.004550411327134769", - "3.513628994018876", - "0.004902570658254713", - "3.9523112037707966", - "0.001733136678175215" - ], - [ - "15150", - "0.0031315605461593524", - "1.7588777218690368", - "0.0038335911770284933", - "2.636237708319512", - "0.004009098834745779", - "2.8555777049321307", - "0.004535621807897634", - "3.5135976947699867", - "0.004886637123332205", - "3.952277687995224", - "0.0017274992844210704" - ], - [ - "15151", - "0.0031212001020757773", - "1.7588549510066402", - "0.003820911375465154", - "2.6362104414123495", - "0.003995839193812498", - "2.855549314013777", - "0.004520622648854531", - "3.513565931818059", - "0.004870478285549219", - "3.9522436770209133", - "0.001721777555297024" - ], - [ - "15152", - "0.003110890819256456", - "1.7588323074606966", - "0.0038082925674675964", - "2.636183323184877", - "0.003982643004520382", - "2.855521077115922", - "0.004505694315678737", - "3.513534338909057", - "0.004854395189784306", - "3.9522098467711477", - "0.0017160873228341754" - ], - [ - "15153", - "0.003100941433756596", - "1.7588104544123795", - "0.0037961142722509437", - "2.6361571516506666", - "0.003969907481874531", - "2.8554938259602385", - "0.0044912871107452915", - "3.513503848888954", - "0.004838873529992465", - "3.9521771975080977", - "0.001710595756767901" - ], - [ - "15154", - "0.0030912619254909084", - "1.7587891941385843", - "0.0037842663039392268", - "2.636131690015262", - "0.003957517398551306", - "2.8554673139844313", - "0.004477270682387545", - "3.5134741858919396", - "0.004823772871611704", - "3.9521454338302786", - "0.0017052531685942717" - ], - [ - "15155", - "0.003081630068417896", - "1.758768038536898", - "0.0037724766525799834", - "2.636106353720421", - "0.003945188298620506", - "2.8554409325163013", - "0.004463323236742071", - "3.513444668903943", - "0.004808746528823115", - "3.9521138264957045", - "0.0016999369000937213" - ], - [ - "15156", - "0.003072409080269858", - "1.758747785385238", - "0.0037611899070749003", - "2.636082098199186", - "0.0039333851137761605", - "2.8554156764026732", - "0.004449970733879942", - "3.513416411013134", - "0.004794361147282464", - "3.9520835674201082", - "0.0016948474266597741" - ], - [ - "15157", - "0.003063889104564645", - "1.7587290719586375", - "0.0037507612126734444", - "2.6360596866657318", - "0.003922479239700644", - "2.8553923403425054", - "0.004437633320782244", - "3.5133903013728265", - "0.004781069374836644", - "3.952055608726374", - "0.0016901448883470448" - ], - [ - "15158", - "0.003055392747938555", - "1.7587104104172044", - "0.0037403614214424103", - "2.6360373372581427", - "0.003911603589818374", - "2.8553690689683773", - "0.004425330094946266", - "3.513364264099081", - "0.004767814431698193", - "3.9520277275195506", - "0.0016854554009308438" - ], - [ - "15159", - "0.003046919944955242", - "1.7586918006171488", - "0.003729990453346087", - "2.6360150498043184", - "0.0039007580804437986", - "2.8553458621011107", - "0.004413060961736932", - "3.513338298991488", - "0.004754596215932354", - "3.951999923585073", - "0.001680778928173552" - ], - [ - "15160", - "0.0030385155734804353", - "1.7586733054461", - "0.003719707107099867", - "2.635992908645664", - "0.003890004990504725", - "2.855322809445555", - "0.004400898640719299", - "3.513312511845228", - "0.004741494407529015", - "3.95197231344501", - "0.0016761325062415715" - ], - [ - "15161", - "0.0030300757918176433", - "1.7586547682889193", - "0.00370937653307432", - "2.6359707081401966", - "0.003879201718388489", - "2.855299693103016", - "0.004388677274330997", - "3.5132866479914737", - "0.004728327644959335", - "3.9519446179171123", - "0.0016714743093042903" - ], - [ - "15162", - "0.0030216566518142963", - "1.758636276369236", - "0.003699071229655741", - "2.635948561826847", - "0.0038684248741161025", - "2.8552766331912496", - "0.004376485807497187", - "3.5132608472844575", - "0.004715193096417909", - "3.9519169900132627", - "0.001666827496131406" - ], - [ - "15163", - "0.0030132619453267393", - "1.7586178382308342", - "0.0036887958149208755", - "2.635926479883458", - "0.0038576792823194093", - "2.8552536402966138", - "0.004364329684515012", - "3.513235121536081", - "0.004702096619312079", - "3.951889442362393", - "0.0016621942061384675" - ], - [ - "15164", - "0.003004872905849625", - "1.758599412547056", - "0.0036785273297353076", - "2.635904412843611", - "0.0038469409357067283", - "2.8552306629177493", - "0.00435218175362099", - "3.5132094131401654", - "0.004689008965563832", - "3.9518619132884427", - "0.0016575640580782595" - ], - [ - "15165", - "0.002997431164433639", - "1.758582743468847", - "0.0036694534783843318", - "2.6358845315046664", - "0.0038374590568720046", - "2.855209978513621", - "0.004341475792335024", - "3.5131863195404853", - "0.0046774869493103706", - "3.951837213558395", - "0.0016533865365322544" - ], - [ - "15166", - "0.0029890436768645785", - "1.7585643221134015", - "0.0036591867812223603", - "2.6358624693957893", - "0.003826722557311806", - "2.855187006216386", - "0.004329329885580142", - "3.5131606166781766", - "0.004664401437759033", - "3.9518096903193705", - "0.001648757468149015" - ], - [ - "15167", - "0.002980618622830393", - "1.758545818258755", - "0.0036488740937473127", - "2.6358403084702826", - "0.0038159379614765426", - "2.8551639310231645", - "0.004317129564664232", - "3.51313479868181", - "0.004651257300122692", - "3.951782043787574", - "0.0016441076809965535" - ], - [ - "15168", - "0.0029721991154029923", - "1.7585273265937225", - "0.0036385681884746604", - "2.6358181621310295", - "0.0038051604567425775", - "2.8551408710153563", - "0.004304937261546328", - "3.5131089976683367", - "0.004638121798082162", - "3.95175441543699", - "0.0016394609692596566" - ], - [ - "15169", - "0.002963692666736382", - "1.7585086439884485", - "0.003628155855473674", - "2.6357957871016104", - "0.0037942716526579976", - "2.855117572879901", - "0.004292619044210967", - "3.5130829302147726", - "0.0046248506385796135", - "3.9517265017713537", - "0.0016347662892617963" - ], - [ - "15170", - "0.0029551910316134807", - "1.7584899719629115", - "0.003617749407237977", - "2.635773424730164", - "0.0037833890011441007", - "2.855094287921977", - "0.004280307782862473", - "3.5130568774974167", - "0.004611586970674721", - "3.951698603881043", - "0.0016300742803644888" - ], - [ - "15171", - "0.0029466659333145305", - "1.7584712484133622", - "0.003607314231552384", - "2.6357510006386917", - "0.003772476306111847", - "2.855070938695024", - "0.004267962529790237", - "3.513030752864021", - "0.004598286678909163", - "3.951670628976686", - "0.0016253693368388242" - ], - [ - "15172", - "0.002958002428450995", - "1.758489259046833", - "0.0036219364053941784", - "2.635774309888764", - "0.0037879198996299745", - "2.855095572599247", - "0.004285870382337362", - "3.5130593607306952", - "0.0046178373708089535", - "3.951701886151661", - "0.001630134474564628" - ], - [ - "15173", - "0.0029497996708927553", - "1.758471262518227", - "0.003611893726990483", - "2.6357527516891706", - "0.0037774172410149154", - "2.8550731239819065", - "0.004273987783088211", - "3.5130342408601143", - "0.004605034811137075", - "3.9516749854455857", - "0.0016256115586972993" - ], - [ - "15174", - "0.0029416176289885675", - "1.7584533112702647", - "0.003601876423184262", - "2.6357312477642747", - "0.0037669411217331854", - "2.855050731887777", - "0.004262135217379956", - "3.5130091842582845", - "0.004592264614477803", - "3.9516481525052893", - "0.001621100040597179" - ], - [ - "15175", - "0.002933460293838838", - "1.7584354144118655", - "0.003591889342207002", - "2.6357098089368516", - "0.003756496604299043", - "2.855028407568098", - "0.004250318390575165", - "3.5129842034618375", - "0.004579532914759247", - "3.9516214007243304", - "0.0016166021971025103" - ], - [ - "15176", - "0.002925325572742988", - "1.7584175671750875", - "0.0035819299411121047", - "2.6356884295399916", - "0.0037460810332043838", - "2.8550061451312176", - "0.004238534309481221", - "3.5129592919048958", - "0.00456683649366578", - "3.9515947230873474", - "0.0016121168360047542" - ], - [ - "15177", - "0.0029172134030474996", - "1.7583997694224112", - "0.0035719981432477065", - "2.6356671094090554", - "0.0037356943282977582", - "2.8549839444057166", - "0.004226782883447913", - "3.5129344493956993", - "0.0045541752535480165", - "3.9515681193890217", - "0.0016076439226470854" - ], - [ - "15178", - "0.0029091220565739925", - "1.758382017217327", - "0.00356209184851906", - "2.635645843865107", - "0.0037253342965053267", - "2.854961800527052", - "0.004215061640464127", - "3.512909670512887", - "0.004541546536436661", - "3.951541583836777", - "0.0016031824726838579" - ], - [ - "15179", - "0.002901054807030552", - "1.758364318032352", - "0.003552215033617217", - "2.6356246417864377", - "0.0037150050902638836", - "2.8549397227249593", - "0.004203375260203882", - "3.5128849655405237", - "0.004528955373497215", - "3.951515127417567", - "0.0015987343538572216" - ], - [ - "15180", - "0.00289300992195246", - "1.7583466679211701", - "0.003542365593243858", - "2.635603498482467", - "0.0037047045110667077", - "2.8549177061227913", - "0.004191721264535256", - "3.512860329043764", - "0.0045163991001809555", - "3.9514887443244127", - "0.0015942985793696634" - ], - [ - "15181", - "0.002884986844941866", - "1.7583290656199986", - "0.0035325428509016088", - "2.635582412450239", - "0.0036944318523915443", - "2.8548957491577993", - "0.004180098856861351", - "3.5128357592804798", - "0.004503876859841222", - "3.9514624326956", - "0.0015898748330223807" - ], - [ - "15182", - "0.002876961947163938", - "1.7583114236306387", - "0.0035227217349701593", - "2.6355612878712256", - "0.003684161681921715", - "2.8548737539313724", - "0.004168481522776381", - "3.5128111521118126", - "0.004491361416679491", - "3.9514360842321063", - "0.0015854423715514947" - ], - [ - "15183", - "0.0028689781098785202", - "1.7582939075759092", - "0.003512947006030146", - "2.635540305096354", - "0.003673939230068053", - "2.8548519044764658", - "0.004156915902181773", - "3.5127867026167996", - "0.004478900350257585", - "3.951409901377022", - "0.0015810403175752685" - ], - [ - "15184", - "0.0028610158675377827", - "1.7582764389061882", - "0.0035031987097185443", - "2.635519379073589", - "0.0036637444202637344", - "2.8548301141154386", - "0.004145381551899306", - "3.512762319240989", - "0.004466472972989686", - "3.951383789324689", - "0.0015766501831762597" - ], - [ - "15185", - "0.0028532724282821506", - "1.7582592318592205", - "0.0034937419193514343", - "2.6354988215495285", - "0.0036538592921187547", - "2.854808718972105", - "0.004134211410420717", - "3.512738411239836", - "0.004454446155955359", - "3.9513582060849903", - "0.001572333446143584" - ], - [ - "15186", - "0.002845179905129411", - "1.7582414775643513", - "0.0034838340848929385", - "2.635477553301063", - "0.003643497629833821", - "2.854786572235241", - "0.0041224882646564666", - "3.5127136290377745", - "0.00444181535453823", - "3.9513316669061305", - "0.0015678715456023547" - ], - [ - "15187", - "0.0028371142664264343", - "1.7582237826883942", - "0.003473959112578551", - "2.635456356111925", - "0.00363317032411658", - "2.8547644994678074", - "0.0041108039587306675", - "3.5126889295354555", - "0.004429226381806726", - "3.951305216247221", - "0.0015634245741222008" - ], - [ - "15188", - "0.0028290656385540317", - "1.758206125138971", - "0.0034641049605525303", - "2.6354352036258613", - "0.003622864791052155", - "2.8547424732475837", - "0.004099144282551029", - "3.5126642821127514", - "0.004416663943550278", - "3.9512788213561962", - "0.0015589869945570342" - ], - [ - "15189", - "0.0028210125376684947", - "1.7581884343297378", - "0.003454247862589061", - "2.635414017202521", - "0.0036125566938192025", - "2.8547204129207167", - "0.004087483187509627", - "3.512639600075304", - "0.004404100849969911", - "3.9512523915116957", - "0.0015545418878273618" - ], - [ - "15190", - "0.002812981624566285", - "1.758170815724967", - "0.0034444153790260507", - "2.6353929113297516", - "0.0036022738176409923", - "2.8546984352309477", - "0.0040758491334858165", - "3.5126150069345363", - "0.0043915660107156996", - "3.951226054736929", - "0.0015501141156467535" - ], - [ - "15191", - "0.00280496795781598", - "1.7581532349631803", - "0.003434604004219881", - "2.635371850778935", - "0.003592013015820856", - "2.8546765047328737", - "0.004064240050623781", - "3.51259046659469", - "0.004379058073825733", - "3.9511997745025673", - "0.0015456958650081779" - ], - [ - "15192", - "0.0027969720606943653", - "1.758135693192321", - "0.0034248143788764033", - "2.6353508369253027", - "0.003581774958421913", - "2.854654622858548", - "0.004052656697058441", - "3.5125659806582843", - "0.00436657785614946", - "3.951173552524775", - "0.0015412874243302898" - ], - [ - "15193", - "0.002788981791816177", - "1.7581181637760224", - "0.003415031637948468", - "2.6353298378603403", - "0.003571544099481541", - "2.85463275638142", - "0.004041081484080759", - "3.5125415119446584", - "0.004354106407146905", - "3.9511473489868174", - "0.0015368820995515955" - ], - [ - "15194", - "0.0027809929750249682", - "1.7581006375524326", - "0.003405250668443072", - "2.6353088426087794", - "0.003561315091797598", - "2.854610893872866", - "0.004029508361861176", - "3.512517047665126", - "0.004341637208570228", - "3.9511211501932997", - "0.0015324775881887611" - ], - [ - "15195", - "0.002773025768515318", - "1.7580831587454702", - "0.003395496150724387", - "2.6352879041479844", - "0.0035511137462766545", - "2.854589090498613", - "0.0040179665329334565", - "3.5124926495504987", - "0.0043292017240379906", - "3.951095022251756", - "0.0015280850040971794" - ], - [ - "15196", - "0.0027651375152723274", - "1.7580657963500697", - "0.003385844436419608", - "2.635267119460542", - "0.0035410211667064287", - "2.85456745023816", - "0.004006551357566889", - "3.512468442571014", - "0.00431690481814053", - "3.9510691041262507", - "0.001523723672977765" - ], - [ - "15197", - "0.0027572078252752776", - "1.7580484000250367", - "0.0033761358211864437", - "2.635246279744438", - "0.003530867820164235", - "2.8545457496742883", - "0.00399506381709761", - "3.512444159463839", - "0.004304527815053193", - "3.95104309932354", - "0.0015193518334529457" - ], - [ - "15198", - "0.002749299342505102", - "1.758031050231799", - "0.0033664531644585684", - "2.6352254957594936", - "0.003520741619946935", - "2.854524107141417", - "0.003983606986412034", - "3.5124199412871877", - "0.004292183897388768", - "3.9510171640510348", - "0.00151499169859817" - ], - [ - "15199", - "0.0027414127668086243", - "1.7580137485056389", - "0.003356797323136453", - "2.635204769344972", - "0.00351064346221841", - "2.8545025245548055", - "0.003972181879464282", - "3.5123957901843053", - "0.0042798741576281964", - "3.9509913006039716", - "0.001510643654152967" - ], - [ - "15200", - "0.0027335469226625908", - "1.757996492267614", - "0.0033471668580319055", - "2.635184097411547", - "0.003500571841874234", - "2.8544809986975306", - "0.00396078679340122", - "3.5123717025554804", - "0.004267596761085878", - "3.950965505127447", - "0.0015063070519239614" - ], - [ - "15201", - "0.0027256608924270988", - "1.7579791697236444", - "0.003337514054707687", - "2.635163351593748", - "0.003490477345277834", - "2.854459397061274", - "0.003949367216988275", - "3.5123475334638514", - "0.00425529379812857", - "3.9509396243989032", - "0.0015019545678659227" - ], - [ - "15202", - "0.0027178266551028444", - "1.7579619829021211", - "0.003327922267853209", - "2.635142762779406", - "0.0034804461710408", - "2.8544379577487273", - "0.003938017880603573", - "3.5123235426566906", - "0.004243065686978756", - "3.9509139325953333", - "0.0014976354296021151" - ], - [ - "15203", - "0.002709983364085937", - "1.7579447762253215", - "0.0033183193900026835", - "2.6351221501687587", - "0.0034704033964818703", - "2.8544164936546177", - "0.003926655415919429", - "3.5122995241121955", - "0.004230823428877803", - "3.950888211083914", - "0.0014933113122524448" - ], - [ - "15204", - "0.0027021260871811217", - "1.7579275388729851", - "0.0033086993824304575", - "2.6351015007997067", - "0.0034603427062427916", - "2.8543949912813873", - "0.003915272677679793", - "3.5122754627264285", - "0.0042185593253044615", - "3.9508624436897892", - "0.0014889794966824496" - ], - [ - "15205", - "0.0026946326972927524", - "1.757911099825043", - "0.00329952489185868", - "2.635081807743839", - "0.003450747940500162", - "2.854374484723538", - "0.0039044170864246074", - "3.5122525156626354", - "0.004206863183707571", - "3.9508378696220334", - "0.0014848483081608978" - ], - [ - "15206", - "0.0026871600818592295", - "1.7578947063584185", - "0.0032903758307564713", - "2.6350621692819725", - "0.0034411797679807818", - "2.8543540350128613", - "0.003893591579653713", - "3.5122296322055266", - "0.004195199454102334", - "3.950813363667304", - "0.001480728584064746" - ], - [ - "15207", - "0.0026797041520425493", - "1.7578783491527639", - "0.0032812472308932287", - "2.6350425743372634", - "0.003431633000605899", - "2.8543336306333886", - "0.003882790309743908", - "3.512206799521763", - "0.004183561849169248", - "3.950788912114013", - "0.0014766179943411907" - ], - [ - "15208", - "0.002672272924169567", - "1.7578620464956265", - "0.0032721488312148733", - "2.635023044640342", - "0.0034221178079762", - "2.854313294176521", - "0.0038720247382601795", - "3.5121840427850572", - "0.004171962691782833", - "3.950764541857415", - "0.001472521110078955" - ], - [ - "15209", - "0.0026648622985107682", - "1.757845789041789", - "0.0032630756502635546", - "2.6350035690848217", - "0.0034126289882017513", - "2.85429301409558", - "0.003861289002016341", - "3.5121613491278545", - "0.004160395677892735", - "3.9507402391493707", - "0.001468435595005195" - ], - [ - "15210", - "0.0026574709829475076", - "1.757829573849263", - "0.003254026117685574", - "2.6349841441735022", - "0.0034031649013700907", - "2.854272786754562", - "0.0038505812524236406", - "3.5121387144977416", - "0.004148858819792674", - "3.9507159996598613", - "0.001464360713471374" - ], - [ - "15211", - "0.002650101394042807", - "1.7578134064343274", - "0.00324500316900116", - "2.6349647764604676", - "0.0033937286127407483", - "2.8542526189670028", - "0.003839904943959513", - "3.512116146486608", - "0.004137355831438689", - "3.950691831499678", - "0.001460297844126101" - ], - [ - "15212", - "0.0026427522365593415", - "1.7577972838478542", - "0.003236005230070853", - "2.6349454624400397", - "0.003384318478448731", - "2.8542325070880863", - "0.0038292582235823647", - "3.512093641032225", - "0.0041258847203381206", - "3.9506677303283184", - "0.0014562462495363183" - ], - [ - "15213", - "0.0026354234538841603", - "1.757781205965596", - "0.0032270322316257723", - "2.634926201963456", - "0.003374934426061175", - "2.854212450962921", - "0.0038186410093673843", - "3.512071197961316", - "0.00411444539823819", - "3.9506436959602462", - "0.0014522058984009364" - ], - [ - "15214", - "0.002628114989561008", - "1.7577651726636496", - "0.0032180841045885947", - "2.634906994882366", - "0.003365576383345491", - "2.854192450437045", - "0.0038080532196161808", - "3.512048817101082", - "0.0041030377771299744", - "3.95061972821044", - "0.0014481767595058356" - ], - [ - "15215", - "0.0026208267872898944", - "1.7577491838184554", - "0.00320916078007303", - "2.634887841048829", - "0.0033562442782688142", - "2.8541725053564218", - "0.003797494772856166", - "3.512026498279202", - "0.004091661769247734", - "3.9505958268943884", - "0.001444158801723623" - ], - [ - "15216", - "0.002613558790926659", - "1.7577332393067953", - "0.003200262189383293", - "2.634868740315314", - "0.0033469380389974514", - "2.8541526155674437", - "0.003786965587839927", - "3.5120042413238326", - "0.004080317287068244", - "3.9505719918280917", - "0.0014401519940133909" - ], - [ - "15217", - "0.002606310944482544", - "1.7577173390057925", - "0.003191388264013577", - "2.634849692534699", - "0.0033376575938963353", - "2.8541327809169257", - "0.00377646558354461", - "3.511982046063605", - "0.004069004243310127", - "3.950548222828058", - "0.0014361563054204774" - ], - [ - "15218", - "0.0025990831921237634", - "1.7577014827929112", - "0.003182538935647532", - "2.634830697560268", - "0.0033284028715284742", - "2.8541130012521077", - "0.0037659946791713007", - "3.5119599123276255", - "0.004057722550933185", - "3.950524519711304", - "0.0014321717050762256" - ], - [ - "15219", - "0.002591873974560883", - "1.7576856671167225", - "0.003173712309332254", - "2.6348117511706075", - "0.0033191718930250967", - "2.8540932721840786", - "0.003755550644103625", - "3.5119378352244923", - "0.00404646981148931", - "3.950500877251435", - "0.0014281973050181411" - ], - [ - "15220", - "0.002591394620995273", - "1.7576823560000456", - "0.0031733697216705255", - "2.634808354242855", - "0.003318863496839339", - "2.8540898538035573", - "0.0037553448223457786", - "3.5119343524856643", - "0.004046332372683405", - "3.950497351607069", - "0.0014274444196447674" - ], - [ - "15221", - "0.0025998207428891327", - "1.757695322119269", - "0.003184282444529894", - "2.6348252753625623", - "0.003330397869940084", - "2.854107763673386", - "0.003768744146170655", - "3.511955228605856", - "0.004060974996991036", - "3.9505202052275026", - "0.00143089733960761" - ], - [ - "15222", - "0.0025966133758569612", - "1.757686863048812", - "0.003180509034245595", - "2.63481549898591", - "0.0033264829488427535", - "2.8540976579701844", - "0.003764404692634229", - "3.5119441349230076", - "0.004056352521828546", - "3.950508452891557", - "0.0014288220590796938" - ], - [ - "15223", - "0.0025893584051921606", - "1.7576709683058378", - "0.0031716240828845005", - "2.6347964525027208", - "0.0033171905023075855", - "2.8540778235519415", - "0.0037538897605768405", - "3.5119219366996037", - "0.00404502259942301", - "3.950484678798045", - "0.0014248270498074807" - ], - [ - "15224", - "0.00258217771570742", - "1.757655240777831", - "0.0031628296141874455", - "2.6347776052593144", - "0.0033079925888074516", - "2.854058196379685", - "0.003743481512667471", - "3.511899969740798", - "0.004033807461907483", - "3.9504611519815396", - "0.0014208739187473692" - ], - [ - "15225", - "0.00257501693387081", - "1.7576395568584766", - "0.003154059521994755", - "2.6347588102657276", - "0.0032988201690257414", - "2.8540386236175403", - "0.0037331021101187", - "3.5118780636729787", - "0.004022623404180673", - "3.9504376903766043", - "0.0014169317576229197" - ], - [ - "15226", - "0.002567874698692745", - "1.7576239107171323", - "0.0031453124469710274", - "2.63474006125111", - "0.0032896718840405978", - "2.854019098884604", - "0.0037227501952493097", - "3.5118562117850876", - "0.004011469069388451", - "3.950414287052076", - "0.00141299920213618" - ], - [ - "15227", - "0.002560753570461087", - "1.757608313668685", - "0.003136590909032329", - "2.6347213703402903", - "0.0032805502436751392", - "2.8539996345081917", - "0.0037124282476035703", - "3.5118344270118955", - "0.004000346916889191", - "3.950390955347698", - "0.001409078893318604" - ], - [ - "15228", - "0.002553255718670468", - "1.757591255018085", - "0.0031274766478089624", - "2.63470108784785", - "0.003271031880093586", - "2.8539785460552913", - "0.0037016975769474563", - "3.5118109206776156", - "0.003988808041516703", - "3.950365837092498", - "0.0014048138603934802" - ], - [ - "15229", - "0.0025460662648663034", - "1.7575755101215156", - "0.0031186712248152007", - "2.6346822192924555", - "0.003261822464802425", - "2.8539588965851905", - "0.003691276184764098", - "3.5117889284633956", - "0.003977578664738547", - "3.9503422830488653", - "0.0014008563449685089" - ], - [ - "15230", - "0.0025388922709325074", - "1.7575597990879426", - "0.00310988473141587", - "2.6346633913091146", - "0.0032526328465367106", - "2.8539392893644075", - "0.003680877191899233", - "3.5117669835302867", - "0.003966373422140915", - "3.9503187796408725", - "0.0013969073499657816" - ], - [ - "15231", - "0.002531751238166303", - "1.7575441439271817", - "0.0031011403631077566", - "2.6346446343748617", - "0.00324348764434312", - "2.8539197569867816", - "0.00367052948804921", - "3.5117451248225415", - "0.0039552240505199366", - "3.9502953700463816", - "0.0013929729882833958" - ], - [ - "15232", - "0.00252459384376271", - "1.7575284693043398", - "0.0030923741850425886", - "2.6346258499962167", - "0.003234319270362558", - "2.853900195169186", - "0.003660154526322467", - "3.5117232306880934", - "0.003944044696962406", - "3.950271921034032", - "0.0013890331612029534" - ], - [ - "15233", - "0.0025174552779339983", - "1.75751283592173", - "0.003083631062561521", - "2.6346071150306334", - "0.0032251750087184013", - "2.8538806848078595", - "0.003649806847189043", - "3.5117013941395374", - "0.003932894739502805", - "3.950248533693989", - "0.0013851037086789538" - ], - [ - "15234", - "0.0025103333994896714", - "1.7574972390901245", - "0.0030749083732305215", - "2.634588423858633", - "0.0032160521166657344", - "2.85386122005076", - "0.003639483346971372", - "3.5116796086271416", - "0.0039217708338417975", - "3.950225201011396", - "0.0013811834520079704" - ], - [ - "15235", - "0.0025035238968128624", - "1.7574823293558581", - "0.0030665679459143742", - "2.6345705553405887", - "0.003207328958189752", - "2.8538426118367712", - "0.0036296119950158857", - "3.5116587813253193", - "0.003911134019566642", - "3.950202894317685", - "0.0013774357986098393" - ], - [ - "15236", - "0.0024980068032152743", - "1.757470377196179", - "0.0030597967012000035", - "2.6345561991941913", - "0.003200244175696186", - "2.8538276546936943", - "0.0036215865991847326", - "3.5116420211922033", - "0.003902481548177097", - "3.9501849321912093", - "0.0013744270072458156" - ], - [ - "15237", - "0.0024909331902033317", - "1.7574548857043444", - "0.0030511331529633114", - "2.6345376343314517", - "0.0031911831436533065", - "2.8538083214882284", - "0.003611333115723291", - "3.511620382958559", - "0.0038914330971032813", - "3.950161757272112", - "0.0013705332646833724" - ], - [ - "15238", - "0.0024838349623112674", - "1.757439340310704", - "0.003042439452103783", - "2.63451900486441", - "0.003182090574551912", - "2.8537889210028364", - "0.0036010439418962988", - "3.511598669418116", - "0.0038803461867925565", - "3.950138501694969", - "0.0013666259827262361" - ], - [ - "15239", - "0.0024767469228849943", - "1.7574238172359493", - "0.0030337582247209373", - "2.634500402135265", - "0.003173011050179923", - "2.8537695483600944", - "0.0035907695265568803", - "3.5115769870345814", - "0.003869275177474852", - "3.9501152794842396", - "0.001362724319213108" - ], - [ - "15240", - "0.00246967623974449", - "1.7574083319915397", - "0.0030250982698831136", - "2.634481844779697", - "0.003163953777417769", - "2.8537502229767364", - "0.003580520300021737", - "3.5115553575678544", - "0.003858231315091049", - "3.9500921139619334", - "0.0013588321794672429" - ], - [ - "15241", - "0.0024625404602938157", - "1.7573927043764386", - "0.00301635856165063", - "2.6344631167522534", - "0.0031548130869898335", - "2.853730719846207", - "0.0035701766630074445", - "3.5115335291280685", - "0.0038470857136858514", - "3.950068735315976", - "0.001354904257580187" - ], - [ - "15242", - "0.0024553338208350138", - "1.757376921581269", - "0.0030075320608129847", - "2.6344442027489605", - "0.003145581620807477", - "2.8537110230408835", - "0.003559730300790955", - "3.511511483916652", - "0.0038358294207799406", - "3.950045124500498", - "0.001350937340879072" - ], - [ - "15243", - "0.0024480937263815696", - "1.7573610409298397", - "0.0029986672331758788", - "2.6344251776466883", - "0.003136310609874456", - "2.8536912118259004", - "0.0035492407399701875", - "3.5114893143635366", - "0.003824527493367342", - "3.950021382721961", - "0.0013469467127929517" - ], - [ - "15244", - "0.002440819263059794", - "1.7573451095931971", - "0.0029897576546859634", - "2.63440608561786", - "0.003126992252592506", - "2.853671329624026", - "0.0035386960463121334", - "3.5114670616425236", - "0.003813165242125218", - "3.949997549654855", - "0.0013429424798074541" - ], - [ - "15245", - "0.002433549684473273", - "1.7573291884011926", - "0.002980854113899585", - "2.634387005877504", - "0.003117680221256163", - "2.853651460246582", - "0.003528158543325897", - "3.5114448233538154", - "0.0038018107580390526", - "3.949973732091971", - "0.001338940825620649" - ], - [ - "15246", - "0.002427402030974828", - "1.7573157249062787", - "0.0029733246065124343", - "2.634370871262328", - "0.003109805250396836", - "2.853634657851341", - "0.00351924718205004", - "3.511426017618378", - "0.003792208469818843", - "3.9499535907964027", - "0.0013355568798996164" - ], - [ - "15247", - "0.0024219837532485308", - "1.7573038587637595", - "0.0029666884189733134", - "2.634356650904332", - "0.003102864585404509", - "2.8536198489394753", - "0.0035113930846980964", - "3.511409443044905", - "0.0037837454175604877", - "3.9499358391151915", - "0.0013325744217989653" - ], - [ - "15248", - "0.002416780834484889", - "1.757292461364229", - "0.0029603163085173113", - "2.634342993010956", - "0.003096200177025417", - "2.8536056259226372", - "0.0035038517825497334", - "3.5113935246576826", - "0.0037756195195659445", - "3.9499187904810458", - "0.0013297098864200442" - ], - [ - "15249", - "0.0024120063666451387", - "1.7572819855440596", - "0.0029544707589944375", - "2.6343304437389268", - "0.0030900868570817625", - "2.853592558287644", - "0.003496935151343736", - "3.5113789019337944", - "0.003768167347518386", - "3.949903131031228", - "0.0013270775819465412" - ], - [ - "15250", - "0.00240746464129042", - "1.7572720391198904", - "0.0029489081421343356", - "2.634318523944356", - "0.0030842690173453146", - "2.853580145150472", - "0.0034903516429782514", - "3.5113650087688213", - "0.0037610733934002093", - "3.949888251181054", - "0.0013245776396025885" - ], - [ - "15251", - "0.00240557799856341", - "1.7572669853463951", - "0.0029466968682001046", - "2.6343126991299064", - "0.0030819765856092782", - "2.853574127575784", - "0.0034878157378367995", - "3.5113584129134177", - "0.003758375172655147", - "3.9498812698051737", - "0.0013233402592900203" - ], - [ - "15252", - "0.0024010725179626972", - "1.7572571200266554", - "0.002941178454073891", - "2.634300876091949", - "0.0030762049381016896", - "2.853561815108272", - "0.0034812843901850846", - "3.511344632157242", - "0.0037513373582406815", - "3.9498665101898887", - "0.0013208606457403098" - ], - [ - "15253", - "0.0023965770033984187", - "1.7572472765311364", - "0.002935672244538383", - "2.63428907920554", - "0.003070446054823374", - "2.8535495298741407", - "0.0034747674856783466", - "3.511330881879943", - "0.0037443151062483285", - "3.9498517832171447", - "0.0013183865211184908" - ], - [ - "15254", - "0.002398373561996675", - "1.7572512103222535", - "0.0029378727110344295", - "2.634293793637632", - "0.003072747498293868", - "2.8535544394664765", - "0.003477371860072184", - "3.51133637695301", - "0.003747121434591061", - "3.9498576686106994", - "0.0013193752639211662" - ], - [ - "15255", - "0.0024066497071746676", - "1.7572693319883186", - "0.0029480095207469036", - "2.634315511449433", - "0.0030833494741399625", - "2.853577056314711", - "0.003489369334319139", - "3.511361690910547", - "0.0037600492411052574", - "3.949884780641104", - "0.0013239300800301963" - ], - [ - "15256", - "0.002415295505738121", - "1.7572882630655986", - "0.002958599082924098", - "2.6343381992827872", - "0.003094424977220592", - "2.8536006833370844", - "0.0035019026601100746", - "3.511388135499976", - "0.003773554448703063", - "3.94991310360857", - "0.0013286883513661672" - ], - [ - "15257", - "0.0024239085525715872", - "1.7573071224373278", - "0.002969148522593326", - "2.6343608011679573", - "0.0031054585150987603", - "2.853624220850615", - "0.0035143884926150644", - "3.5114144798985873", - "0.0037870084776259333", - "3.9499413192639024", - "0.0013334286125281107" - ], - [ - "15258", - "0.002433315856550968", - "1.7573277209467713", - "0.0029806707764789366", - "2.6343854872958903", - "0.003117509506460929", - "2.8536499288831703", - "0.003528025696406905", - "3.5114432536450093", - "0.0038017031563708894", - "3.949972136819569", - "0.001338606016695031" - ], - [ - "15259", - "0.0024428813105579457", - "1.7573486657565844", - "0.0029923867265507463", - "2.634410588428882", - "0.0031297630805489467", - "2.8536760690969567", - "0.0035418921425435473", - "3.51147251110118", - "0.0038166448505399476", - "3.950003472437329", - "0.001343870478572344" - ], - [ - "15260", - "0.002450369496424442", - "1.7573650615050342", - "0.0030015584594188446", - "2.634430237921385", - "0.003139355700167445", - "2.8536965320254724", - "0.0035527474224132474", - "3.5114954143377353", - "0.003828341903910449", - "3.9500280025459102", - "0.0013479915704356364" - ], - [ - "15261", - "0.0024577620292702764", - "1.7573812484320919", - "0.003010612962635949", - "2.6344496369890438", - "0.003148825695977367", - "2.853716734128282", - "0.003563463896001621", - "3.511518025545996", - "0.0038398893626844575", - "3.9500522198244723", - "0.0013520601625389317" - ], - [ - "15262", - "0.0024651769605959026", - "1.757397484409882", - "0.0030196948943798617", - "2.6344690948314033", - "0.0031583243778258514", - "2.853736997436784", - "0.003574212828163821", - "3.5115407052529246", - "0.0038514717950558007", - "3.9500765104636852", - "0.001356141093027984" - ], - [ - "15263", - "0.00247305556870049", - "1.7574147356765322", - "0.0030293447391278095", - "2.6344897694257416", - "0.003168417031734639", - "2.853758527863044", - "0.0035856339095551287", - "3.5115648031749513", - "0.0038637784947687884", - "3.950102320049556", - "0.001360477227845851" - ], - [ - "15264", - "0.0024828390966450385", - "1.7574361580299809", - "0.003041327751359133", - "2.634515442798804", - "0.0031809499150376565", - "2.8537852639910097", - "0.003599816406073227", - "3.5115947275676267", - "0.0038790607334302746", - "3.950134369952038", - "0.0013658617872168498" - ], - [ - "15265", - "0.002493796100948548", - "1.7574601498811704", - "0.003054748043662127", - "2.6345441955368396", - "0.0031949860293405213", - "2.853815206950757", - "0.003615699986375705", - "3.511628241192509", - "0.0038961759577324944", - "3.9501702640203438", - "0.0013718922155213913" - ], - [ - "15266", - "0.0025051875939291848", - "1.7574850252446417", - "0.0030687078113862433", - "2.63457402413666", - "0.003209587865750508", - "2.8538462738596646", - "0.003632228028843302", - "3.5116630230286785", - "0.003913988137571832", - "3.9502075224746878", - "0.0013781471590150677" - ], - [ - "15267", - "0.0025168664436673975", - "1.7575105973890202", - "0.003083012237529698", - "2.6346046707902917", - "0.0032245486859952734", - "2.8538781891406098", - "0.003649158031391999", - "3.5116987441915635", - "0.003932230928323149", - "3.950245780892199", - "0.0013845748559427966" - ], - [ - "15268", - "0.0025293948718067413", - "1.757538029797498", - "0.003098357224484957", - "2.634637546830123", - "0.003240597812654511", - "2.8539124260882796", - "0.003667319577163173", - "3.511737063862748", - "0.003951800753502281", - "3.9502868223790606", - "0.0013914701664503092" - ], - [ - "15269", - "0.0025224207594604403", - "1.7575227547892405", - "0.003089815714494678", - "2.634619241788792", - "0.0032316644532532374", - "2.85389336353868", - "0.0036572106695289155", - "3.511715728788343", - "0.003940908147046034", - "3.950263972288119", - "0.001387630849391965" - ], - [ - "15270", - "0.0025154220471968096", - "1.7575074281698249", - "0.00308124382688088", - "2.6346008743215057", - "0.0032226992718018977", - "2.8538742358594256", - "0.0036470656065649503", - "3.5116943204731865", - "0.003929976496406986", - "3.9502410435490267", - "0.0013837784878286692" - ], - [ - "15271", - "0.0025084463500954085", - "1.7574921541202395", - "0.003072699889620929", - "2.6345825693022458", - "0.003213763274502309", - "2.8538551730977475", - "0.0036369534291464493", - "3.5116729844842522", - "0.0039190801989092095", - "3.9502181920752553", - "0.0013799392710443675" - ], - [ - "15272", - "0.002501489992569933", - "1.7574769224223294", - "0.0030641796348863343", - "2.6345643150303477", - "0.0032048520454654346", - "2.8538361631823523", - "0.0036268692772027356", - "3.5116517076383666", - "0.003908214098360937", - "3.950195403942376", - "0.0013761107079371298" - ], - [ - "15273", - "0.0024945529210318165", - "1.75746173295871", - "0.003055682997081492", - "2.634546111365205", - "0.003195965516093911", - "2.8538172059668288", - "0.0036168130731311678", - "3.5116304897717", - "0.003897378111156006", - "3.950172678974947", - "0.0013722927689324652" - ], - [ - "15274", - "0.002487757448074781", - "1.7574468097704128", - "0.003047364507980815", - "2.634528237802751", - "0.003187266272957323", - "2.853798594810835", - "0.0036069715678868483", - "3.511609665835089", - "0.0038867750978398654", - "3.950150379851258", - "0.0013685433282627133" - ], - [ - "15275", - "0.0024808584493772328", - "1.7574317038034777", - "0.0030389144798025057", - "2.634510134156221", - "0.003178428487408824", - "2.8537797417444066", - "0.003596970510227778", - "3.511588564508964", - "0.0038759985254404146", - "3.9501277796853356", - "0.0013647463885266876" - ], - [ - "15276", - "0.0024739785777273303", - "1.7574166397223465", - "0.003030487874037649", - "2.634492080699099", - "0.0031696151981152284", - "2.853760940943287", - "0.0035869971703479673", - "3.5115675216758513", - "0.003865251818503126", - "3.9501052421642275", - "0.0013609599851066938" - ], - [ - "15277", - "0.002467619293006451", - "1.757402498169831", - "0.003022722329180992", - "2.6344751874243144", - "0.0031614980882246277", - "2.853743359737935", - "0.0035778253653555338", - "3.5115478766787973", - "0.0038553768834428044", - "3.950084221306039", - "0.001357413220657368" - ], - [ - "15278", - "0.0024607761276108802", - "1.7573875150726366", - "0.003014340607886364", - "2.634457230854553", - "0.003152731727955235", - "2.853724659800032", - "0.0035679050881618477", - "3.511526946636469", - "0.00384468732829959", - "3.9500618045274276", - "0.0013536471670599127" - ], - [ - "15279", - "0.0024539519345427472", - "1.7573725735206762", - "0.0030059821197961165", - "2.6344393240666673", - "0.003143989666109459", - "2.8537060117031654", - "0.003558012305049486", - "3.5115060746126585", - "0.0038340273976761705", - "3.9500394498856544", - "0.0013498915640360089" - ], - [ - "15280", - "0.002447146666642398", - "1.7573576733300746", - "0.0029976468158758604", - "2.634421466860597", - "0.003135271853184226", - "2.8536874152432277", - "0.003548146965109323", - "3.5114852603911197", - "0.0038233970397260546", - "3.9500171571563807", - "0.0013461463681754724" - ], - [ - "15281", - "0.002440360260644273", - "1.7573428145236407", - "0.0029893346012720414", - "2.6344036592232145", - "0.0031265781864289834", - "2.853668870398108", - "0.0035383089418998094", - "3.511464503922788", - "0.0038127961122136934", - "3.9499949262725753", - "0.0013424115793887368" - ], - [ - "15282", - "0.002433658644203428", - "1.757328059359227", - "0.0029811350789988177", - "2.63438599638548", - "0.003118004187697665", - "2.853650480642043", - "0.003528611513794207", - "3.511443933411732", - "0.0038023497311919017", - "3.9499729019248586", - "0.0013387057746126496" - ], - [ - "15283", - "0.00242690963378484", - "1.7573132826678495", - "0.002972868634072522", - "2.6343682870862914", - "0.003109358384144443", - "2.8536320381909017", - "0.003518827634360204", - "3.5114232915047334", - "0.0037918071345040454", - "3.9499507937139544", - "0.0013349916332094757" - ], - [ - "15284", - "0.002420168734105599", - "1.7572985228674842", - "0.002964612212987507", - "2.6343505982414124", - "0.0031007230827079842", - "2.8536136170848945", - "0.003509055691869415", - "3.5114026736153403", - "0.0037812774313103694", - "3.9499287113023045", - "0.001331281776341783" - ], - [ - "15285", - "0.0024134209342626563", - "1.75728374586139", - "0.0029563475625523977", - "2.6343328892963442", - "0.0030920792196248333", - "2.8535951751550828", - "0.003499274190842139", - "3.5113820327312983", - "0.00377073750498701", - "3.9499066044487754", - "0.0013275676776831739" - ], - [ - "15286", - "0.00240672803237111", - "1.7572690920436247", - "0.002948149826729318", - "2.634315327229946", - "0.0030835052753188704", - "2.8535768860265267", - "0.0034895716210875264", - "3.5113615624162677", - "0.0037602825182666303", - "3.9498846800094283", - "0.0013238844436546941" - ], - [ - "15287", - "0.002400053686422329", - "1.7572544788584192", - "0.0029399748144849267", - "2.6342978138523234", - "0.003074955096500576", - "2.8535586476007997", - "0.0034798959425475246", - "3.5113411488462276", - "0.0037498565065788234", - "3.9498628163431797", - "0.001320211430297134" - ], - [ - "15288", - "0.0023933978449969607", - "1.7572399061931505", - "0.002931822462875988", - "2.6342803490285664", - "0.003066428617345745", - "2.8535404597374208", - "0.0034702470807550156", - "3.511320791863983", - "0.003739459389694529", - "3.9498410132816906", - "0.001316548609238906" - ], - [ - "15289", - "0.0023867604568179896", - "1.7572253739355075", - "0.0029236927091333673", - "2.63426293262414", - "0.0030579257722122117", - "2.853522322296298", - "0.003460624961448745", - "3.511300491312772", - "0.0037290910876064337", - "3.9498192706570885", - "0.0013128959521872346" - ], - [ - "15290", - "0.0023801414707503472", - "1.75721088197349", - "0.002915585490661552", - "2.6342455645048797", - "0.003049446495639353", - "2.853504235137727", - "0.0034510295105727564", - "3.5112802470362694", - "0.003718751520528359", - "3.9497975883019643", - "0.0013092534309279379" - ], - [ - "15291", - "0.002373540835800516", - "1.7571964301954082", - "0.0029075007450381695", - "2.634228244536994", - "0.003040990722347583", - "2.8534861981223902", - "0.0034414606542758235", - "3.5112600588785794", - "0.0037084406088946503", - "3.9497759660493723", - "0.0013056210173252082" - ], - [ - "15292", - "0.0023667252358571997", - "1.7571815077668964", - "0.002899152696314082", - "2.6342103605024025", - "0.0030322595614283025", - "2.853467573686279", - "0.003431580156770964", - "3.5112392132379084", - "0.003697793886999405", - "3.949753639605661", - "0.0013018703149434356" - ], - [ - "15293", - "0.0023601617974562013", - "1.7571671374390117", - "0.002891113501800192", - "2.6341931381343193", - "0.0030238514278861897", - "2.8534496383081462", - "0.0034220652061441826", - "3.511219138829627", - "0.0036875410583161778", - "3.949732139177281", - "0.0012982583887682201" - ], - [ - "15294", - "0.0023536165562457268", - "1.7571528069579203", - "0.002883096591707876", - "2.63417596351375", - "0.0030154666005734135", - "2.8534317526527073", - "0.003412576627170025", - "3.5111991200695796", - "0.0036773166449011", - "3.949710698347494", - "0.001294656485321428" - ], - [ - "15295", - "0.0023470894617995323", - "1.7571385162131758", - "0.0028751019043086372", - "2.6341588365083903", - "0.0030071050149359136", - "2.853413916582194", - "0.0034031143468177425", - "3.5111791568036046", - "0.003667120568072295", - "3.9496893169512117", - "0.001291064576781322" - ], - [ - "15296", - "0.002340908248213993", - "1.7571239559610716", - "0.0028676415708545873", - "2.634141644295638", - "0.0029993249015147355", - "2.8533960663792794", - "0.0033943748934951814", - "3.511159332630204", - "0.0036577415548154787", - "3.9496681767974873", - "0.0012874416029328047" - ], - [ - "15297", - "0.0023344163942065122", - "1.7571097452271311", - "0.0028596897323246336", - "2.634124612451216", - "0.002991008066854164", - "2.8533783292572372", - "0.0033849630704427553", - "3.511139479675301", - "0.0036475997395018158", - "3.949646913287343", - "0.0012838697179702692" - ], - [ - "15298", - "0.002327942538985659", - "1.7570955738975615", - "0.0028517599361932077", - "2.6341076278263067", - "0.0029827142854950946", - "2.8533606413084933", - "0.003375577333400756", - "3.5111196817550523", - "0.0036374860320045306", - "3.9496257087194246", - "0.0012803077445705617" - ], - [ - "15299", - "0.002321486632674631", - "1.7570814418631417", - "0.0028438521214015316", - "2.6340906902900683", - "0.0029744434935832565", - "2.8533430023968003", - "0.003366217610128432", - "3.511099938716995", - "0.003627400354491882", - "3.949604562930458", - "0.0012767556552208306" - ], - [ - "15300", - "0.0023150486255347027", - "1.7570673490149535", - "0.00283596622705973", - "2.634073799712021", - "0.0029661956274409868", - "2.8533254123862877", - "0.0033568838285847574", - "3.5110802504090883", - "0.003617342629347271", - "3.949583475757622", - "0.0012732134224846478" - ], - [ - "15301", - "0.002330857306021586", - "1.7571019543492397", - "0.0028553302217426114", - "2.6341152749275145", - "0.0029864484506728676", - "2.8533686050720832", - "0.0033798031374636366", - "3.5111285955057894", - "0.0036420395953241495", - "3.949635255794927", - "0.0012819114745795356" - ], - [ - "15302", - "0.0023466268218477757", - "1.7571364739805004", - "0.002874646218725903", - "2.6341566473822327", - "0.003006651067945435", - "2.8534116907326657", - "0.00340266561560403", - "3.511176820783965", - "0.0036666753140430935", - "3.949686907484831", - "0.0012905880280915216" - ], - [ - "15303", - "0.0023626681627729206", - "1.7571715886691361", - "0.0028942951471733827", - "2.6341987329798826", - "0.003027201893273498", - "2.8534555190575692", - "0.0034259221315738443", - "3.511225877290629", - "0.0036917356237740756", - "3.9497394494460023", - "0.001299414193971997" - ], - [ - "15304", - "0.0023786661731325866", - "1.75720660852586", - "0.0029138909756424363", - "2.6342407048771554", - "0.0030476971762698987", - "2.853499228964979", - "0.003449115778152286", - "3.511274801228451", - "0.003716728179407211", - "3.949791849404099", - "0.001308216568112887" - ], - [ - "15305", - "0.0023919341072087476", - "1.7572356522403674", - "0.0029301427361576532", - "2.634275514229382", - "0.0030646948933948795", - "2.8535354797266357", - "0.003468351365106559", - "3.5113153762183966", - "0.0037374556795810115", - "3.9498353072129038", - "0.0013155168493109368" - ], - [ - "15306", - "0.0024053942283243103", - "1.7572651166760653", - "0.0029466298865696247", - "2.6343108277909026", - "0.003081938801130953", - "2.853572255569612", - "0.003487865544814939", - "3.5113565389057397", - "0.003758483373937596", - "3.9498793944631583", - "0.0013229229118336815" - ], - [ - "15307", - "0.002419140266636349", - "1.7572952070109897", - "0.002963467234916572", - "2.634346891468919", - "0.003099548976986627", - "2.853609812583401", - "0.0035077942031967943", - "3.511398575926848", - "0.0037799576873369053", - "3.9499244181558124", - "0.001330486330075904" - ], - [ - "15308", - "0.0024337462562353577", - "1.7573269314924298", - "0.0029813846760896193", - "2.6343849759934863", - "0.003118294281053185", - "2.85364948711875", - "0.003529023095943881", - "3.5114430204945424", - "0.003802842305871012", - "3.9499720427450704", - "0.001338469416526834" - ], - [ - "15309", - "0.0024478970626924997", - "1.7573579064769602", - "0.0029987179347905862", - "2.6344221002273636", - "0.0031364231528151075", - "2.853688148664965", - "0.0035495388068886723", - "3.511486293977767", - "0.0038249492429377157", - "3.950018390852969", - "0.0013462553184963272" - ], - [ - "15310", - "0.0024410934173510843", - "1.7573430125986096", - "0.002990384316575335", - "2.634404249885943", - "0.0031277070413813974", - "2.8536695592077765", - "0.0035396752157995856", - "3.5114654871732767", - "0.003814320665411711", - "3.9499961058169433", - "0.0013425116189025835" - ], - [ - "15311", - "0.0024343238029262497", - "1.7573281944594679", - "0.00298209224405424", - "2.6343864899995926", - "0.003119034354336237", - "2.853651063884624", - "0.0035298606851822296", - "3.5114447855397173", - "0.0038037449057462245", - "3.94997393330978", - "0.0013387869206702703" - ], - [ - "15312", - "0.0024275729569688325", - "1.7573134174082579", - "0.0029738231563595846", - "2.6343687793500417", - "0.0031103857062072726", - "2.8536326198354875", - "0.003520073355750337", - "3.5114241412918257", - "0.003793198455445713", - "3.9499518222627175", - "0.0013350725581873285" - ], - [ - "15313", - "0.0024208408274714447", - "1.7572986813310962", - "0.0029655769898258564", - "2.634351117800865", - "0.0031017610304144593", - "2.853614226918307", - "0.0035103131521802677", - "3.511403554270634", - "0.0037826812333574735", - "3.9499297725055182", - "0.0013313685027626213" - ], - [ - "15314", - "0.002414140985208905", - "1.7572840170464565", - "0.0029573702473057566", - "2.6343335420094136", - "0.003093177562829969", - "2.853595923250153", - "0.003500599509402608", - "3.511383066972371", - "0.0037722141404510335", - "3.9499078294538497", - "0.0013276824610152019" - ], - [ - "15315", - "0.002407446095409299", - "1.757269362491219", - "0.00294916968687189", - "2.634315978151198", - "0.0030846005847375377", - "2.8535776320661927", - "0.0034908932783344806", - "3.5113625938111768", - "0.003761755074065776", - "3.9498859016411663", - "0.0013239989124841178" - ], - [ - "15316", - "0.002400769767014453", - "1.7572547485705055", - "0.0029409918577842863", - "2.634298462986624", - "0.003076047380476745", - "2.8535593915906534", - "0.0034812139485541197", - "3.5113421774027422", - "0.0037513249939390364", - "3.9498640346108016", - "0.0013203255854747863" - ], - [ - "15317", - "0.002394112979565232", - "1.7572401775126547", - "0.0029328379508381246", - "2.6342809991653335", - "0.003067519193656348", - "2.853541204578503", - "0.003471562922111017", - "3.511321820818012", - "0.003740925407747463", - "3.949842231644351", - "0.001316663037019448" - ], - [ - "15318", - "0.0023874736169607375", - "1.7572256445169243", - "0.0029247053922479807", - "2.6342635809759285", - "0.0030590133360697915", - "2.8535230650906795", - "0.0034619371675352235", - "3.5113015174349327", - "0.003730553055178845", - "3.949820485664435", - "0.0013130100663862516" - ], - [ - "15319", - "0.0023808526618930227", - "1.7572111518187865", - "0.0029165953766425", - "2.63424621107654", - "0.003050531055329869", - "2.8535049758909783", - "0.003452338091391977", - "3.511281270334293", - "0.0037202094487667156", - "3.94979879996317", - "0.001309367232394069" - ], - [ - "15320", - "0.002374250063353806", - "1.7571966993065467", - "0.0029085078415782813", - "2.634228889333362", - "0.0030420722861344003", - "2.8534869368400657", - "0.003442765619802757", - "3.5112610793601773", - "0.0037098945089149944", - "3.949777174373585", - "0.0013057345069048551" - ], - [ - "15321", - "0.002367587582360104", - "1.7571820672443428", - "0.0029003521775728468", - "2.6342113645549468", - "0.003033543326376032", - "2.853468688882598", - "0.0034331167727855894", - "3.511240661865551", - "0.0036994990703919602", - "3.949755310520853", - "0.0013020583919346191" - ], - [ - "15322", - "0.002415079460267657", - "1.757286021926641", - "0.002958525104906632", - "2.634335957299694", - "0.0030943865160663756", - "2.8535984411429567", - "0.003501970749545607", - "3.511385892672746", - "0.0037736935718650946", - "3.9499108603592723", - "0.0013281881709897067" - ], - [ - "15323", - "0.002462451024238119", - "1.7573897135141496", - "0.003016550433332686", - "2.634460234321362", - "0.003155075285606328", - "2.8537278645231656", - "0.0035706498424272533", - "3.511530755128575", - "0.003847699546974537", - "3.9500660155321814", - "0.0013542522060489845" - ], - [ - "15324", - "0.002509626078784651", - "1.7574929693635102", - "0.0030743354647679083", - "2.634583990176545", - "0.0032155128112637222", - "2.8538567453798036", - "0.003639044850751165", - "3.51167501098958", - "0.003921399543742794", - "3.9502205213960973", - "0.0013802073068181374" - ], - [ - "15325", - "0.0025567260284136513", - "1.757596065682079", - "0.0031320277804040026", - "2.6347075532819257", - "0.0032758532184015902", - "2.8539854251818872", - "0.0037073295323943535", - "3.511819040881772", - "0.003994980408389529", - "3.9503747846816957", - "0.0014061225244329494" - ], - [ - "15326", - "0.0026038425364983647", - "1.7576991996176279", - "0.00318974003477825", - "2.634831160800555", - "0.0033362144093482212", - "2.854114151096286", - "0.003775637533058135", - "3.5119631219834813", - "0.004068586282198077", - "3.9505291025749445", - "0.0014320475399385948" - ], - [ - "15327", - "0.0026508626373609474", - "1.7578021227818443", - "0.0032473339788861785", - "2.63495451531647", - "0.0033964518142674868", - "2.8542426134501264", - "0.00384380532041141", - "3.512106907851096", - "0.004142040991174026", - "3.9506831041184087", - "0.0014579199543104844" - ], - [ - "15328", - "0.002698032902935158", - "1.7579053749009927", - "0.0033051116331925473", - "2.635078263696734", - "0.0034568813157568948", - "2.854371485895669", - "0.003912190363449936", - "3.5122511524924747", - "0.004215729728578631", - "3.9508375968903455", - "0.0014838754424203791" - ], - [ - "15329", - "0.002745097392725715", - "1.7580083957411639", - "0.003362759502412868", - "2.6352017344965866", - "0.0035171750298346564", - "2.854500069185442", - "0.003980421612100021", - "3.512395073252009", - "0.004289252666943598", - "3.9509917426297205", - "0.001509773173351409" - ], - [ - "15330", - "0.0027920409329251716", - "1.7581111520860988", - "0.0034202590022299334", - "2.6353248879090754", - "0.0035773135195561238", - "2.8546283218648196", - "0.004048477071534695", - "3.512538623732052", - "0.0043625861061870755", - "3.9511454916435405", - "0.0015356047943156487" - ], - [ - "15331", - "0.0028388612475544997", - "1.7582136389518244", - "0.003477607346616414", - "2.6354477179639586", - "0.0036372938713818926", - "2.8547562377169924", - "0.004116353445678328", - "3.512681796976093", - "0.004435726495209285", - "3.95129883648216", - "0.0015613690494306717" - ], - [ - "15332", - "0.0028855019836188244", - "1.7583156963847413", - "0.0035347394590667654", - "2.635570042148683", - "0.003697048827928751", - "2.8548836285896684", - "0.004183976934514707", - "3.512824387912625", - "0.004508595672238677", - "3.9514515607945957", - "0.0015870270327229422" - ], - [ - "15333", - "0.0029321246284278466", - "1.7584177504752971", - "0.003591845311576768", - "2.6356923529056124", - "0.0037567754823639985", - "2.8550110035131913", - "0.0042515659947256895", - "3.5129669553359277", - "0.0045814263363001505", - "3.951604256551085", - "0.0016126832621300034" - ], - [ - "15334", - "0.0029786106225735006", - "1.7585195056959138", - "0.0036487835696080895", - "2.6358143050886027", - "0.0038163268063667365", - "2.8551380049367747", - "0.004318956516642678", - "3.5131091044812917", - "0.004654042990159973", - "3.951756504177636", - "0.0016382647285043228" - ], - [ - "15335", - "0.0030248606996373063", - "1.7586207447549815", - "0.003705432649547575", - "2.635935638281345", - "0.003875575637025142", - "2.8552643616629356", - "0.004386004599457843", - "3.5132505318077083", - "0.004726290574412978", - "3.95190797857089", - "0.0016637167998167686" - ], - [ - "15336", - "0.003070962861422071", - "1.7587216602808629", - "0.0037619003424705", - "2.6360565833501806", - "0.0039346347127326075", - "2.85539031411751", - "0.0044528378235189296", - "3.5133915064194987", - "0.004798306564043143", - "3.9520589679541573", - "0.0016890878993252127" - ], - [ - "15337", - "0.003116940624332426", - "1.758822303747701", - "0.003818215454073355", - "2.636177201989089", - "0.003993534161508588", - "2.855515926549436", - "0.004519490283814285", - "3.513532100230477", - "0.004870127698684749", - "3.9522095493511706", - "0.0017143909648505674" - ], - [ - "15338", - "0.0031630416924488536", - "1.7589232173697025", - "0.003874681380669187", - "2.636298144028053", - "0.0040525913027242705", - "2.8556418756926405", - "0.004586321068889521", - "3.5136730706864037", - "0.004942140912999687", - "3.952360534015579", - "0.0017397623160081866" - ], - [ - "15339", - "0.0032090029460914793", - "1.7590236438259148", - "0.0039309954020077835", - "2.63641854736925", - "0.00411149351598686", - "2.8557672732550836", - "0.004652987857924088", - "3.513813450912585", - "0.00501398408588224", - "3.9525109026842524", - "0.0017650180342588706" - ], - [ - "15340", - "0.0032552581065363136", - "1.7591248926327794", - "0.003987649918756209", - "2.636539891022775", - "0.004170747871811184", - "2.855893640620274", - "0.0047200417309761055", - "3.513954889412771", - "0.005086237637086054", - "3.9526623886077688", - "0.001790474482096522" - ], - [ - "15341", - "0.003304660176481631", - "1.759230962101578", - "0.004048381559704958", - "2.6366675305801883", - "0.00423431190551079", - "2.856026672699841", - "0.004792102942928286", - "3.514104099058799", - "0.00516396363453995", - "3.952822383298104", - "0.0018172174100349761" - ], - [ - "15342", - "0.0033505505289255764", - "1.7593313842115814", - "0.004104591904973327", - "2.6367878898964623", - "0.004293102248985264", - "2.856152016317683", - "0.004858633281021076", - "3.514244395581344", - "0.005235653969044952", - "3.9529726484237844", - "0.0018424677768300762" - ], - [ - "15343", - "0.003396336275809481", - "1.7594315774775433", - "0.004160673928907799", - "2.6369079746104305", - "0.004351758342182379", - "2.856277073893652", - "0.004925011582006117", - "3.5143843717433176", - "0.005307180408555276", - "3.953122570309761", - "0.0018676609696128444" - ], - [ - "15344", - "0.003442212264526698", - "1.7595319683585802", - "0.0042168662882946005", - "2.6370282958282614", - "0.004410529794236576", - "2.856402377695682", - "0.004991520312062503", - "3.514524623297943", - "0.005378847323946454", - "3.9532727870327835", - "0.001892904216990893" - ], - [ - "15345", - "0.0034882173671550256", - "1.759632642305836", - "0.004273216553540446", - "2.6371489558661887", - "0.0044694663501368016", - "2.856528034256277", - "0.005058215739925867", - "3.514665269426542", - "0.005450715333118576", - "3.9534234262067183", - "0.0019182189943841852" - ], - [ - "15346", - "0.0035340925817016755", - "1.7597330322608755", - "0.004329407510972219", - "2.63726927516163", - "0.004528236243289854", - "2.8566533358868185", - "0.0051247224402427615", - "3.514805518062384", - "0.005522379904878033", - "3.953573639512761", - "0.0019434627231605895" - ], - [ - "15347", - "0.003580242176884376", - "1.7598340228968523", - "0.0043859343343131685", - "2.6373903140106627", - "0.004587357373670367", - "2.856779386789115", - "0.005191626491741961", - "3.514946605124473", - "0.005594472570456357", - "3.9537247506813777", - "0.001968857862026791" - ], - [ - "15348", - "0.0036262626351841816", - "1.7599347306035569", - "0.004442302832473181", - "2.637511013536734", - "0.004646312881795431", - "2.856905084270028", - "0.005258343029762179", - "3.515087296469911", - "0.005666363128406679", - "3.9538754379364995", - "0.001994182240606184" - ], - [ - "15349", - "0.0036721652505559447", - "1.7600351812487471", - "0.004498526716157952", - "2.637631404455954", - "0.004705117082558453", - "2.8570304602577554", - "0.0053248881817599585", - "3.5152276276631604", - "0.0057380689145609615", - "3.954025739266764", - "0.0020194423193519314" - ], - [ - "15350", - "0.0037179710391233092", - "1.7601354202474717", - "0.0045546317903366685", - "2.6377515413451804", - "0.004763796978140009", - "2.8571555716196073", - "0.0053912925415500286", - "3.5153676624428885", - "0.005809622917156708", - "3.9541757229917427", - "0.0020446495366965903" - ], - [ - "15351", - "0.0037626750071548267", - "1.7602332479472544", - "0.0046093871394415654", - "2.637868788017585", - "0.0048210651725132505", - "2.857277673035168", - "0.005456099271728305", - "3.515504328087916", - "0.005879455337871675", - "3.954322098123081", - "0.002069250742581348" - ], - [ - "15352", - "0.0038068006539347336", - "1.7603298106661496", - "0.004663433900205278", - "2.6379845181731194", - "0.004877592211772914", - "2.857398195049862", - "0.005520067146475822", - "3.515639225680089", - "0.005948383769611094", - "3.954466579433574", - "0.0020935341613936447" - ], - [ - "15353", - "0.003851630648953532", - "1.760427914982604", - "0.004718343172993478", - "2.6381020955779473", - "0.004935021304003464", - "2.8575206407267832", - "0.005585055697033423", - "3.5157762761732907", - "0.006018411959053395", - "3.9546133664709626", - "0.0021182056008736414" - ], - [ - "15354", - "0.0038967396215871457", - "1.7605266299480244", - "0.004773593952853261", - "2.6382204045072255", - "0.00499280753566979", - "2.857643848147026", - "0.005650448284119376", - "3.515914179066427", - "0.006088875449752434", - "3.9547610663460278", - "0.002143030959054915" - ], - [ - "15355", - "0.003941677126351367", - "1.7606249019894893", - "0.0048286418340135915", - "2.6383381992830977", - "0.005050383010929148", - "2.8577665236064997", - "0.005715606541675817", - "3.516051496576706", - "0.006159088895506929", - "3.9549081452235106", - "0.0021677477110269177" - ], - [ - "15356", - "0.004030839026205934", - "1.760819995546117", - "0.00493785177437366", - "2.6385720219149866", - "0.005164604961415592", - "2.858010028507204", - "0.005844864522541386", - "3.516324048283856", - "0.006298370896625249", - "3.955200061468291", - "0.002216813529870482" - ], - [ - "15357", - "0.004391259433138618", - "1.7616087338461754", - "0.005379293797306287", - "2.639517297689176", - "0.005626302388348205", - "2.858994438649926", - "0.006367328161473958", - "3.5174258615321765", - "0.006861345343557792", - "3.9563801434536767", - "0.0024151907048032776" - ], - [ - "15358", - "0.00475075780737394", - "1.7623954693885517", - "0.005819593523164537", - "2.6404601504477236", - "0.006086802452112187", - "2.8599763207125166", - "0.006888429238955135", - "3.518524831506896", - "0.007422847096850433", - "3.957557172036482", - "0.0026130863757927456" - ], - [ - "15359", - "0.005131150063205217", - "1.763227942773139", - "0.00628546948594307", - "2.6414577931492955", - "0.006574049341627533", - "2.861015255743335", - "0.007439788908680923", - "3.5196876435254523", - "0.00801694862004985", - "3.958802568713531", - "0.002822511217729511" - ], - [ - "15360", - "0.005532376746713952", - "1.7641060327401703", - "0.006776845828895181", - "2.6425100747628743", - "0.007087963099440488", - "2.8621110852685505", - "0.00802131491107641", - "3.5209141167855784", - "0.008643549452167025", - "3.9601161377969305", - "0.0030434385823514937" - ], - [ - "15361", - "0.005932560565920745", - "1.7649818589453672", - "0.007266928908711875", - "2.6435596153412932", - "0.007600520994409657", - "2.863204054440275", - "0.008601297251503005", - "3.5221373717372195", - "0.00926848142289857", - "3.9614262499351827", - "0.0032638238803384843" - ], - [ - "15362", - "0.006331650442453521", - "1.7658553091118825", - "0.0077556563432259005", - "2.6446062806562005", - "0.008111657818418995", - "2.8642940235422802", - "0.00917966224399828", - "3.523357252200519", - "0.00989166519438447", - "3.962732737972678", - "0.0034836386409087634" - ], - [ - "15363", - "0.00672796120714666", - "1.766721450395817", - "0.008241099024578393", - "2.6456444724576316", - "0.008619383478936326", - "2.8653752279730855", - "0.009754236842010126", - "3.5245674945194465", - "0.010510805750725992", - "3.9640290055503535", - "0.003701685572283194" - ], - [ - "15364", - "0.007124828763067167", - "1.7675898287003702", - "0.008727099829903847", - "2.646685066178149", - "0.009127667596613017", - "2.8664588755475937", - "0.010329370896740526", - "3.525780303655928", - "0.011130506430158867", - "3.9653279223948172", - "0.003920286629393807" - ], - [ - "15365", - "0.007520831545500765", - "1.768456494731935", - "0.00921200846126552", - "2.6477235398769867", - "0.009634802690206707", - "2.86754030116325", - "0.010903185377030274", - "3.526990585022039", - "0.011748773834912652", - "3.9666241075945647", - "0.004138477713971255" - ], - [ - "15366", - "0.00791615897035794", - "1.7693216979528905", - "0.009696074763108804", - "2.6487602340379537", - "0.01014105371129652", - "2.8686198680592194", - "0.011475990555859667", - "3.528198770123017", - "0.0123659484522351", - "3.9679180381655486", - "0.004356327384856211" - ], - [ - "15367", - "0.008253247582873768", - "1.7700502203706365", - "0.010109814124047715", - "2.6496354515419087", - "0.0105739557593412", - "2.869531759334727", - "0.01196638066522166", - "3.529220682713181", - "0.012894663935808633", - "3.969013298298817", - "0.004540114500525877" - ], - [ - "15368", - "0.008507774768557423", - "1.770589660133283", - "0.010423359854694732", - "2.6502861980333883", - "0.010902256126229058", - "2.8702103325084147", - "0.012338944940832038", - "3.529982735933494", - "0.013296737483900693", - "3.969831004883547", - "0.004676604596282807" - ], - [ - "15369", - "0.008756253003723418", - "1.7711327197164273", - "0.010727675562436308", - "2.650937053247232", - "0.011220531202114532", - "2.870888136629933", - "0.0126990981211492", - "3.5307413867780366", - "0.013684809400505645", - "3.970643553543439", - "0.004813407886297636" - ], - [ - "15370", - "0.009003828907124053", - "1.771673799028134", - "0.01103088169443827", - "2.651585528216936", - "0.011537644891266824", - "2.8715634605141362", - "0.013057934481752487", - "3.531497257405738", - "0.014071460875409596", - "3.971453122000139", - "0.004949723332495618" - ], - [ - "15371", - "0.009250893411665755", - "1.7722137757864398", - "0.011333454558144749", - "2.6522326691123537", - "0.011854094844764499", - "2.8722373924438322", - "0.013416015704623745", - "3.5322515624382675", - "0.014457296277863243", - "3.9722610091012243", - "0.005085771118707765" - ], - [ - "15372", - "0.009491137730291449", - "1.7727310446630746", - "0.01162851090127563", - "2.6528545390701863", - "0.012162854194021674", - "2.8728854126719643", - "0.01376588407225981", - "3.5329780334772987", - "0.0148345706577519", - "3.9730397806808546", - "0.00521639138832309" - ], - [ - "15373", - "0.009742427479838903", - "1.7732800717407564", - "0.011936267536556126", - "2.6535125548733802", - "0.012484727550735434", - "2.873570675656536", - "0.014130107593273352", - "3.533745038006004", - "0.015227027621631965", - "3.973861279572316", - "0.005354747366404452" - ], - [ - "15374", - "0.010091497484800207", - "1.7740421669499788", - "0.012363828324660889", - "2.654426061799094", - "0.012931911034626058", - "2.8745220355113723", - "0.01463615916452157", - "3.5348099566482083", - "0.01577232458445191", - "3.9750019040727658", - "0.005546835805078842" - ], - [ - "15375", - "0.010439959220862435", - "1.774803504849894", - "0.012790571982341202", - "2.65533850045682", - "0.013378225172710893", - "2.8754722493585514", - "0.01514118474381997", - "3.535873496063746", - "0.01631649112455935", - "3.976140993867209", - "0.005738733697904899" - ], - [ - "15376", - "0.010787390587471612", - "1.7755625686584036", - "0.013216045747053868", - "2.65624820185498", - "0.013823209536949432", - "2.8764196101541244", - "0.015644700906636125", - "3.5369338350515567", - "0.01685902848642725", - "3.977276651649845", - "0.005930080268307101" - ], - [ - "15377", - "0.011073313538404522", - "1.7761872491042903", - "0.013566186838867584", - "2.656996838252891", - "0.01418940516398335", - "2.8771992355400413", - "0.016059060139330644", - "3.537806427401492", - "0.017305496789562176", - "3.9782112219757924", - "0.006087566937478399" - ], - [ - "15378", - "0.011048310741122851", - "1.7761326146689067", - "0.013535569645955996", - "2.6569313652971562", - "0.01415738437216428", - "2.8771310529542187", - "0.01602282855078914", - "3.537730115925406", - "0.017266458003205712", - "3.978129491239531", - "0.006073792931456563" - ], - [ - "15379", - "0.011023344516939081", - "1.7760780615443896", - "0.013504997034095287", - "2.6568659893436832", - "0.014125410163384339", - "2.8770629712935065", - "0.01598664955125149", - "3.537653917142977", - "0.017227475809829595", - "3.9780478810426234", - "0.006060039482626671" - ], - [ - "15380", - "0.011050133844686196", - "1.7761365934459608", - "0.013537802663984974", - "2.6569361346347624", - "0.014159719868809668", - "2.877136019931963", - "0.016025471483283753", - "3.5377356758235643", - "0.01726930589293314", - "3.9781354464179652", - "0.0060747962060886404" - ], - [ - "15381", - "0.011120975359977792", - "1.7762913780032936", - "0.013624553002114835", - "2.6571216288923662", - "0.014250447412649095", - "2.8773291916146344", - "0.01612813064425188", - "3.537951879781439", - "0.017379919465320397", - "3.978367005225975", - "0.006113820075703709" - ], - [ - "15382", - "0.011107979689651755", - "1.7762629828297472", - "0.013608638979797189", - "2.657087600188528", - "0.014233803802333547", - "2.8772937545282233", - "0.01610929826994262", - "3.537912217547309", - "0.01735962791501534", - "3.9783245262266993", - "0.006106661109360888" - ], - [ - "15383", - "0.01109539221908476", - "1.7762354798560593", - "0.01359322477816381", - "2.657054640597581", - "0.014217682917933573", - "2.8772594307829613", - "0.01609105733724286", - "3.5378738013391025", - "0.017339973616782387", - "3.978283381709863", - "0.0060997271009266595" - ], - [ - "15384", - "0.011082859457406674", - "1.7762080964372164", - "0.013577877555523128", - "2.657021824253733", - "0.014201632080052241", - "2.877225256207862", - "0.016072895653639584", - "3.53783555207025", - "0.01732040470269781", - "3.978242415978508", - "0.006092823261173764" - ], - [ - "15385", - "0.011071858726475352", - "1.7761840604396273", - "0.01356440639624843", - "2.656993019443552", - "0.014187543313691698", - "2.8771952591945333", - "0.016056954066021506", - "3.5378019784474772", - "0.017303227900908043", - "3.9782064579494394", - "0.006086763386929199" - ], - [ - "15386", - "0.011042105792200732", - "1.7761191220882104", - "0.013527964239228961", - "2.6569151794846246", - "0.014149428850986018", - "2.877114193833728", - "0.016013822686257187", - "3.537711236881038", - "0.0172567519097713", - "3.978109265579245", - "0.006070388898144276" - ], - [ - "15387", - "0.011011801008613056", - "1.7760520329972316", - "0.013490948129129614", - "2.6568349983372115", - "0.014110734909258753", - "2.877030739672206", - "0.015970095249646172", - "3.537617963677191", - "0.01720966880990445", - "3.978009446347181", - "0.0060535067675799425" - ], - [ - "15388", - "0.010981266270273248", - "1.7759853167386404", - "0.013453555953097449", - "2.65675504489491", - "0.0140716283738035", - "2.876947476933977", - "0.01592584563592165", - "3.5375247730511794", - "0.01716199047733375", - "3.977909637129314", - "0.006036686904624844" - ], - [ - "15389", - "0.010950379354876073", - "1.7759177979428353", - "0.013415735990605979", - "2.6566741378146546", - "0.014032075149538456", - "2.876863222782609", - "0.015881092626335885", - "3.5374304776864736", - "0.017113770944200836", - "3.977808647622383", - "0.006019666083416262" - ], - [ - "15390", - "0.010918140063467861", - "1.7758472153333327", - "0.013376271595561977", - "2.656589586131456", - "0.013990804478585505", - "2.8767751788309868", - "0.01583440312765609", - "3.5373319569295796", - "0.017063468893703148", - "3.9777031423286413", - "0.006001876999279633" - ], - [ - "15391", - "0.010887877593059033", - "1.7757810957765925", - "0.01333921239074471", - "2.656510346916882", - "0.013952046090166129", - "2.876692659701954", - "0.015790547188430388", - "3.5372395980571714", - "0.017016214587273225", - "3.9776042236273157", - "0.005985207997687681" - ], - [ - "15392", - "0.010854040112439156", - "1.7757071665800253", - "0.0132977750203716", - "2.6564217479676704", - "0.01390870874735471", - "2.8766003933145816", - "0.015741509928304042", - "3.5371363293553157", - "0.016963377382270262", - "3.977493620049138", - "0.0059665702965742695" - ], - [ - "15393", - "0.010815384151710489", - "1.775622709982948", - "0.013250436800581878", - "2.656320532423166", - "0.013859199962799726", - "2.8764949880332207", - "0.015685489449453267", - "3.5370183548633842", - "0.016903015773888964", - "3.977367266083493", - "0.005945278853967711" - ], - [ - "15394", - "0.01077683374794071", - "1.7755384841870223", - "0.013203227697637042", - "2.6562195932178225", - "0.013809826185061125", - "2.8763898704755224", - "0.01562962164733337", - "3.5369007022486225", - "0.016842818622181538", - "3.9772412567640227", - "0.00592404584854805" - ], - [ - "15395", - "0.010737982088661991", - "1.7754535882075435", - "0.013155650837411523", - "2.6561178536222605", - "0.013760068024598907", - "2.87628391997594", - "0.015573319586161058", - "3.5367821190369777", - "0.016782153960535822", - "3.9771142517443363", - "0.0059026445911629245" - ], - [ - "15396", - "0.01069910253797165", - "1.7753686436873894", - "0.013108038352943345", - "2.6560160525331944", - "0.013710272306686271", - "2.876177904744646", - "0.015516974167915042", - "3.536663461379", - "0.01672144207540089", - "3.9769871658019023", - "0.005881230908028259" - ], - [ - "15397", - "0.010660539661176638", - "1.775284391218316", - "0.013060813523023242", - "2.655915080565892", - "0.013660881988484893", - "2.876072752902786", - "0.015461087384869846", - "3.5365457699134684", - "0.01666122431579315", - "3.9768611145872566", - "0.005859991937483428" - ], - [ - "15398", - "0.010624066108667634", - "1.7752041290592708", - "0.013016209134996177", - "2.655819034252534", - "0.013614244891578312", - "2.8759727605508494", - "0.015408352161324718", - "3.536433939445797", - "0.01660442367448899", - "3.9767413920424284", - "0.005839780056010549" - ], - [ - "15399", - "0.010585619426537305", - "1.7751201328651922", - "0.012969126087429722", - "2.6557183683919408", - "0.013565002752652827", - "2.875867927273628", - "0.01535263274832214", - "3.5363166039186895", - "0.01654438607876835", - "3.9766157216820637", - "0.00581860610475247" - ], - [ - "15400", - "0.01054723125526546", - "1.7750362646783917", - "0.012922114546887308", - "2.65561785568443", - "0.013515835369792771", - "2.8757632534359394", - "0.015296997838509158", - "3.5361994466904676", - "0.01648443948432008", - "3.9764902421934867", - "0.005797464672021762" - ], - [ - "15401", - "0.010508934123700804", - "1.7749525955649403", - "0.012875214350225454", - "2.655517581301377", - "0.013466784406856617", - "2.8756588277354864", - "0.015241494576750106", - "3.536082567037814", - "0.01642463469001243", - "3.9763650599060325", - "0.0057763736706515035" - ], - [ - "15402", - "0.010470566329924066", - "1.7748687682709103", - "0.01282822789975581", - "2.6554171180820583", - "0.013417643292213748", - "2.8755542055348453", - "0.015185889469587556", - "3.5359654678932064", - "0.016364720254503428", - "3.9762396427987805", - "0.0057552431902605766" - ], - [ - "15403", - "0.01043438175224282", - "1.7747897148696825", - "0.012783914546248904", - "2.655322374979434", - "0.013371297744750425", - "2.875455540006872", - "0.015133447340254989", - "3.535855035089186", - "0.01630821373725803", - "3.9761213651440617", - "0.005735316164230651" - ], - [ - "15404", - "0.010405460315669251", - "1.7747265286969092", - "0.012748495979194028", - "2.655246648318856", - "0.013334254895075223", - "2.8753766782243426", - "0.015091531642718807", - "3.5357667679408027", - "0.016263049474481196", - "3.976026827751776", - "0.005719388988619695" - ], - [ - "15405", - "0.01037663023554063", - "1.7746635430742046", - "0.012713189115787869", - "2.655171161650552", - "0.013297328835849678", - "2.8752980662946386", - "0.015049747996035107", - "3.535678780226899", - "0.016218027436158727", - "3.9759325895150726", - "0.005703512475046153" - ], - [ - "15406", - "0.010347833992387279", - "1.7746006279839779", - "0.012677923984398702", - "2.655095760241417", - "0.013260446482401557", - "2.8752195433057772", - "0.015008013976410123", - "3.5355908924988566", - "0.016173058972415836", - "3.9758384586275763", - "0.005687654008364436" - ], - [ - "15407", - "0.010319629377192042", - "1.7745389756097347", - "0.012643386538926521", - "2.6550218795101603", - "0.013224325829360142", - "2.8751426054852667", - "0.014967143700661002", - "3.535504783410586", - "0.01612902228152824", - "3.975746235360799", - "0.005672115053723082" - ], - [ - "15408", - "0.010291034017430109", - "1.7744765029654845", - "0.012608366893918095", - "2.6549470072322197", - "0.013187700113040091", - "2.8750646332989036", - "0.01492569977040608", - "3.535417511498955", - "0.016084366208650072", - "3.9756527636323225", - "0.0056563682644541384" - ], - [ - "15409", - "0.010262520610512367", - "1.7744142096756885", - "0.012573447509053391", - "2.6548723497111277", - "0.013151179233688646", - "2.8749868847199878", - "0.014884374407594414", - "3.535330489746567", - "0.016039837856864924", - "3.9755595597642865", - "0.005640666813430321" - ], - [ - "15410", - "0.010234066804991214", - "1.774352045226888", - "0.01253860119314328", - "2.6547978468289", - "0.013114734790181298", - "2.874909297229403", - "0.014843135581295347", - "3.5352436484309124", - "0.01599540277537138", - "3.975466549231918", - "0.0056249980286870805" - ], - [ - "15411", - "0.010204254460026686", - "1.7742868037072035", - "0.012502102798462261", - "2.6547196832709408", - "0.013076564883071155", - "2.8748279031618753", - "0.014799951136897836", - "3.5351525628346785", - "0.015948875306115624", - "3.975369002616547", - "0.005608557783155537" - ], - [ - "15412", - "0.010176063208485476", - "1.7742252210584994", - "0.012467576997569157", - "2.654645875379297", - "0.013040455444840076", - "2.8747510389594964", - "0.014759090786652837", - "3.535066529700094", - "0.015904847681194677", - "3.975276856860493", - "0.005593035630318115" - ], - [ - "15413", - "0.01014784682670659", - "1.7741635757502896", - "0.012433021187275257", - "2.654571994215342", - "0.013004314777417422", - "2.874674098831605", - "0.014718195547843921", - "3.5349804126803943", - "0.015860782728128252", - "3.9751846219129203", - "0.00557749810556926" - ], - [ - "15414", - "0.010255989836995568", - "1.7743966158244235", - "0.01256580797734099", - "2.6548520953906016", - "0.013143262512427345", - "2.874965965282146", - "0.01487562611768641", - "3.53530757495678", - "0.016030535187859123", - "3.975535314739869", - "0.0056363535563047264" - ], - [ - "15415", - "0.010257667518300102", - "1.774400280512472", - "0.012567862637641676", - "2.6548564876031", - "0.01314541141747707", - "2.8749705393757568", - "0.01487805775698325", - "3.5353126946937277", - "0.016033155316654037", - "3.975540798239042", - "0.005637277279616957" - ], - [ - "15416", - "0.010263559988321097", - "1.7744131361511428", - "0.012575080853684962", - "2.6548718993113125", - "0.013152961070025927", - "2.8749865901013547", - "0.014886601719048825", - "3.535330662471482", - "0.016042362151730757", - "3.975560044051567", - "0.00564051825759337" - ], - [ - "15417", - "0.010325545360857582", - "1.7745485084798467", - "0.012650997202459168", - "2.6550341525764263", - "0.013232360162859565", - "2.8751555636005715", - "0.014976449044060753", - "3.535519796673006", - "0.016139174964861547", - "3.975762618721296", - "0.005674641677654409" - ], - [ - "15418", - "0.01047215865746635", - "1.7748687586973002", - "0.012830553957912695", - "2.655417978884645", - "0.01342015278302428", - "2.875555283931481", - "0.01518894925835904", - "3.5359671990719894", - "0.016368146908582213", - "3.9762418091656615", - "0.0057553680565736575" - ], - [ - "15419", - "0.010565307068534494", - "1.7750699259423206", - "0.012944879233922865", - "2.6556596549255693", - "0.013539772275269956", - "2.8758070871713817", - "0.015324451399311234", - "3.5362493839088183", - "0.01651423748200542", - "3.9765442484004425", - "0.005806162737757752" - ], - [ - "15420", - "0.010575218310063158", - "1.7750915539656626", - "0.012957019642100135", - "2.65568558162378", - "0.01355246997510938", - "2.875834088538309", - "0.015338820974137113", - "3.536279609281897", - "0.0165297216401556", - "3.9765766231109554", - "0.005811615645989203" - ], - [ - "15421", - "0.010591592789648099", - "1.7751273190686743", - "0.012977073358823471", - "2.6557284468795346", - "0.013573443501117314", - "2.87587872883225", - "0.015362553927998842", - "3.5363295746903955", - "0.016555294212586526", - "3.9766301385958256", - "0.005820631651297357" - ], - [ - "15422", - "0.010599468605511114", - "1.7751445198087457", - "0.01298671898248688", - "2.655749062727643", - "0.01358353157673082", - "2.8759001984573676", - "0.015373969359462645", - "3.5363536056465406", - "0.016567594547950527", - "3.9766558771059892", - "0.005824967851559584" - ], - [ - "15423", - "0.01060558326216968", - "1.7751578754043107", - "0.012994207554465561", - "2.6557650696892408", - "0.013591363627539531", - "2.8759168682604734", - "0.015382831846761442", - "3.536372263974171", - "0.016577143992909382", - "3.976675861116636", - "0.00582833467757792" - ], - [ - "15424", - "0.010611741027571574", - "1.7751713239262266", - "0.013001749050818998", - "2.6557811883273894", - "0.013599251056630854", - "2.87593365442768", - "0.01539175707406642", - "3.5363910527285523", - "0.01658676108569013", - "3.9766959849291337", - "0.00583172498107673" - ], - [ - "15425", - "0.010619748126766235", - "1.7751888129949314", - "0.013011555271837243", - "2.6558021493250035", - "0.013609507058104995", - "2.875955483407522", - "0.015403362416908251", - "3.536415485655076", - "0.016599265989443755", - "3.9767221538201123", - "0.005836133836624218" - ], - [ - "15426", - "0.010625260778902586", - "1.7752007243773618", - "0.01301832050088014", - "2.6558164576779255", - "0.013616585431374527", - "2.875970391003066", - "0.015411380222857691", - "3.536432190978489", - "0.016607910083846468", - "3.976740057628771", - "0.005839141334947479" - ], - [ - "15427", - "0.01067436792589095", - "1.7753078750792395", - "0.013078473165110547", - "2.6559449069118606", - "0.013679499474915447", - "2.876104164870016", - "0.015482578404330146", - "3.5365819387444817", - "0.016684631023939946", - "3.9769004546607922", - "0.005866157447451751" - ], - [ - "15428", - "0.010962572543244805", - "1.7759373672903171", - "0.013431429963651667", - "2.6566993581550262", - "0.014048644318753384", - "2.8768898558712035", - "0.01590028738405853", - "3.537461349019735", - "0.01713471609426196", - "3.9778423444520894", - "0.006024857702431083" - ], - [ - "15429", - "0.011223259084655745", - "1.7765037434636173", - "0.013751004464711971", - "2.657378906799684", - "0.014382940809726028", - "2.8775976976337003", - "0.0162787498447682", - "3.53825407013575", - "0.01754262253479631", - "3.978691651803783", - "0.006167768324543294" - ], - [ - "15430", - "0.011492910374195902", - "1.777092659102326", - "0.014081232550969875", - "2.6580847188813688", - "0.014728313095163368", - "2.878332733826129", - "0.016669554727743847", - "3.5390767786604114", - "0.017963715816130835", - "3.9795728085499325", - "0.006316266020647956" - ], - [ - "15431", - "0.011756348661539533", - "1.7776680151348878", - "0.01440384476793133", - "2.6587742672930874", - "0.01506571879452928", - "2.879050830332637", - "0.01705134087432313", - "3.5398805194512866", - "0.018375088927519028", - "3.980433645530386", - "0.006461356448755938" - ], - [ - "15432", - "0.011723874336342813", - "1.7775970097278904", - "0.014364085026705468", - "2.65868918996304", - "0.015024137699296131", - "2.8789622350218274", - "0.017004295717068123", - "3.5397813701981895", - "0.01832440106224945", - "3.980327460315764", - "0.006443452955617503" - ], - [ - "15433", - "0.01169138885065818", - "1.7775260599127292", - "0.014324302905931816", - "2.6586041591160687", - "0.014982531419750224", - "2.8788736839169036", - "0.01695721696120545", - "3.539682258319408", - "0.01827367398884227", - "3.980221307921078", - "0.00642556074011091" - ], - [ - "15434", - "0.011658998830837933", - "1.7774553191449547", - "0.014284637543791898", - "2.658519378516405", - "0.01494104722203039", - "2.8787853933592675", - "0.016910276256745863", - "3.5395834378878552", - "0.018223095613222846", - "3.9801154675735804", - "0.006407721404930004" - ], - [ - "15435", - "0.011624748395805783", - "1.7773793602349028", - "0.01424281828187196", - "2.65842863262783", - "0.014897335753388505", - "2.878690950726062", - "0.01686088816793814", - "3.539477905020757", - "0.018169923110971226", - "3.980002541217221", - "0.006388608623673427" - ], - [ - "15436", - "0.011591255554702185", - "1.777306118024512", - "0.01420181219696558", - "2.658340876999573", - "0.01485445135753143", - "2.8785995667433384", - "0.016812368839228976", - "3.539375635974634", - "0.018117647160360673", - "3.9798930154621646", - "0.006370142270175394" - ], - [ - "15437", - "0.011559094469238309", - "1.77723587747923", - "0.014162426886449546", - "2.658256695373685", - "0.014813259990752357", - "2.878511899847299", - "0.016765759303660786", - "3.53927751326814", - "0.018067425512266404", - "3.9797879222153676", - "0.0063524296348158316" - ], - [ - "15438", - "0.011527072526442972", - "1.7771659447002885", - "0.014123211466740112", - "2.6581728814809846", - "0.014772246201814396", - "2.8784246156761584", - "0.016719350407037252", - "3.5391798182616805", - "0.01801741987718582", - "3.9796832866520284", - "0.006334794645848695" - ], - [ - "15439", - "0.011495066178496953", - "1.777096040633104", - "0.014084015632366548", - "2.6580891031866467", - "0.014731252995833945", - "2.8783373688250324", - "0.01667296508623614", - "3.53908216574019", - "0.01796743981317094", - "3.9795786970169615", - "0.006317167270757767" - ], - [ - "15440", - "0.011463160694062025", - "1.7770263579013972", - "0.014044943117239684", - "2.6580055897490618", - "0.014690388723034098", - "2.878250397710978", - "0.016626725540417345", - "3.5389848215967263", - "0.017917616752006173", - "3.9794744375205586", - "0.006299595847706705" - ], - [ - "15441", - "0.01152202606271697", - "1.7771549137264693", - "0.014117032423655187", - "2.65815966342828", - "0.014765784013889742", - "2.878410850853733", - "0.016712038784593406", - "3.539164413130091", - "0.018009541965062516", - "3.9796667879809964", - "0.006332013340840533" - ], - [ - "15442", - "0.011585765154414732", - "1.7772940780662307", - "0.014195093774708211", - "2.6583264596014287", - "0.01484742592978158", - "2.878584554985228", - "0.01680442239500169", - "3.539358841136626", - "0.01810908670514843", - "3.9798750319042253", - "0.006367107913827775" - ], - [ - "15443", - "0.01165521932776297", - "1.7774457551657756", - "0.014280150244412822", - "2.658508243647863", - "0.014936382973575284", - "2.878773865768385", - "0.016905081161062676", - "3.5395707321299503", - "0.0182175466193876", - "3.980101976370994", - "0.006405357494463265" - ], - [ - "15444", - "0.011711355588962793", - "1.7775683510158045", - "0.014348896415880306", - "2.6586551727405823", - "0.015008281622609684", - "2.8789268781717765", - "0.01698643724279782", - "3.53974199446536", - "0.018305207656256574", - "3.980285405327749", - "0.006436273935127769" - ], - [ - "15445", - "0.011767351523889382", - "1.7776906384837903", - "0.014417470674375774", - "2.6588017322685467", - "0.015080000461997372", - "2.8790795057147354", - "0.017067589824862166", - "3.5399128260533024", - "0.018392649400105363", - "3.9804683729456807", - "0.0064671132229165975" - ], - [ - "15446", - "0.011825159887331817", - "1.777816886747209", - "0.014488263909303913", - "2.6589530375937893", - "0.015154039914796935", - "2.879237075305434", - "0.01715136793127601", - "3.540089188440369", - "0.018482919942262057", - "3.9806572638636593", - "0.0064989518433876264" - ], - [ - "15447", - "0.011883267870643421", - "1.7779437907739575", - "0.014559423619039", - "2.6591051279917397", - "0.015228462556137896", - "2.879395462296185", - "0.01723557936743458", - "3.540266465209522", - "0.01857365724163237", - "3.9808471338184126", - "0.0065309563738522635" - ], - [ - "15448", - "0.01193786792713471", - "1.7780630326837736", - "0.01462628732541969", - "2.6592480354016654", - "0.015298392174990934", - "2.8795442860811384", - "0.017314706723704668", - "3.540433038119557", - "0.018658916422847154", - "3.981025539478503", - "0.006561029130564756" - ], - [ - "15449", - "0.011982293252070968", - "1.7781600552409922", - "0.014680690624633896", - "2.6593643129975058", - "0.015355289967774629", - "2.879665377436634", - "0.017379087997196827", - "3.540568570754019", - "0.018728286683478288", - "3.9811706996322758", - "0.006585498506945113" - ], - [ - "15450", - "0.012001232015913745", - "1.7782014167540252", - "0.014703882974936779", - "2.6594138829408385", - "0.015379545714692536", - "2.8797169994875422", - "0.01740653393395981", - "3.540626349127652", - "0.01875785941347133", - "3.981232582221059", - "0.006595930097867681" - ], - [ - "15451", - "0.012011753331003365", - "1.778224393272078", - "0.01471676750520854", - "2.659441419663346", - "0.015393021048759834", - "2.879745676261163", - "0.017421781679413714", - "3.540658446054614", - "0.018774288766516302", - "3.981266959250248", - "0.006601724982593014" - ], - [ - "15452", - "0.01203803289836848", - "1.7782817826351345", - "0.01474894975485581", - "2.659510199193278", - "0.015426678968977644", - "2.879817303332814", - "0.017459866611343144", - "3.5407386157514216", - "0.01881532503958681", - "3.9813528240304934", - "0.006616199185393816" - ], - [ - "15453", - "0.012079790549077766", - "1.7783729793334246", - "0.014800085837691617", - "2.6596194940859017", - "0.01548015965984508", - "2.879931122774021", - "0.017520381126305468", - "3.5408660088383788", - "0.018880528770612394", - "3.9814892662146173", - "0.006639199971850063" - ], - [ - "15454", - "0.012116018569449787", - "1.778452099994038", - "0.014844450213092351", - "2.6597143161166663", - "0.015526558124002993", - "2.880029870147323", - "0.017572881856734914", - "3.540976532239294", - "0.018937097678556197", - "3.981607640300608", - "0.006659155282164657" - ], - [ - "15455", - "0.012147920598071323", - "1.7785217729786287", - "0.014883516925361082", - "2.6597978154050193", - "0.015567416007183523", - "2.8801168260116166", - "0.017619113252650843", - "3.5410738578314094", - "0.018986911416295722", - "3.981711879044605", - "0.0066767279434918015" - ], - [ - "15456", - "0.012194422787749664", - "1.7786232355093263", - "0.014940473031003104", - "2.6599194366517667", - "0.015626985591816463", - "2.880243486937377", - "0.017686523274256544", - "3.5412156377942074", - "0.019059548395883263", - "3.9818637383654276", - "0.006702322301242785" - ], - [ - "15457", - "0.012275876835198752", - "1.7787860891965352", - "0.015041840474961715", - "2.6601183626796834", - "0.015733331384902457", - "2.8804514310504703", - "0.01780780411472468", - "3.541450636162831", - "0.01919078593460616", - "3.982116772904405", - "0.006743949555672823" - ] -]; - export const TOKEN_YIELD_14_000 = [ ["0x1bea0050e63e05fbb5d8ba2f10cf5800b6224449", "6075", "0.0", "1.752", "1659805214"], ["0x1bea3ccd22f4ebd3d37d731ba31eeca95713716d", "6075", "0.0", "3.504", "1659805214"], From 104d6cb818438894d1cd7f9fb00d197087dccba4 Mon Sep 17 00:00:00 2001 From: Cujowolf Date: Fri, 5 Jan 2024 09:46:22 -0600 Subject: [PATCH 13/14] Use correct asset settings for bulk grown stalk changes --- projects/subgraph-beanstalk/src/SiloHandler.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/projects/subgraph-beanstalk/src/SiloHandler.ts b/projects/subgraph-beanstalk/src/SiloHandler.ts index 0816b83527..b25d49517e 100644 --- a/projects/subgraph-beanstalk/src/SiloHandler.ts +++ b/projects/subgraph-beanstalk/src/SiloHandler.ts @@ -935,9 +935,10 @@ export function handleUpdatedStalkPerBdvPerSeason(event: UpdatedStalkPerBdvPerSe for (let i = 0; i < beanstalkSilo.whitelistedTokens.length; i++) { let asset = loadSiloAsset(BEANSTALK, Address.fromString(beanstalkSilo.whitelistedTokens[i])); + let assetSettings = loadWhitelistTokenSetting(Address.fromString(beanstalkSilo.whitelistedTokens[i])); newGrownStalkAmount = newGrownStalkAmount.plus( - asset.depositedBDV.times(siloSettings.stalkEarnedPerSeason).div(BigInt.fromI32(1000000)) + asset.depositedBDV.times(assetSettings.stalkEarnedPerSeason).div(BigInt.fromI32(1000000)) ); } @@ -954,9 +955,10 @@ export function handleUpdatedStalkPerBdvPerSeason(event: UpdatedStalkPerBdvPerSe for (let i = 0; i < beanstalkSilo.whitelistedTokens.length; i++) { let asset = loadSiloAsset(account, Address.fromString(beanstalkSilo.whitelistedTokens[i])); + let assetSettings = loadWhitelistTokenSetting(Address.fromString(beanstalkSilo.whitelistedTokens[i])); newGrownStalkAmount = newGrownStalkAmount.plus( - asset.depositedBDV.times(siloSettings.stalkEarnedPerSeason).div(BigInt.fromI32(1000000)) + asset.depositedBDV.times(assetSettings.stalkEarnedPerSeason).div(BigInt.fromI32(1000000)) ); } From 516089378e37fbd1bd0e65c9c141fc485a939078 Mon Sep 17 00:00:00 2001 From: Cujowolf Date: Thu, 11 Jan 2024 09:23:26 -0600 Subject: [PATCH 14/14] Update codegen to prod --- projects/ui/codegen.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/projects/ui/codegen.yml b/projects/ui/codegen.yml index 8cb73dfea4..5a78004c0e 100644 --- a/projects/ui/codegen.yml +++ b/projects/ui/codegen.yml @@ -1,11 +1,11 @@ overwrite: true schema: [ - "https://graph.node.bean.money/subgraphs/name/beanstalk-testing", - "https://graph.node.bean.money/subgraphs/name/bean-dev", + "https://graph.node.bean.money/subgraphs/name/beanstalk", + "https://graph.node.bean.money/subgraphs/name/bean", "https://hub.snapshot.org/graphql", "https://api.thegraph.com/subgraphs/name/snapshot-labs/snapshot", - "https://graph.node.bean.money/subgraphs/name/beanft-dev" + "https://graph.node.bean.money/subgraphs/name/beanft" ] documents: "src/**/*.graphql" generates: